/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  /* box-sizing: border-box; */
}

body {
  font-family: Arial, sans-serif;
  /* line-height: 1.5; */
}

/* Header and Navigation */
.site-header {
  background: linear-gradient(to right, #b3d9f2 0%, #f6f1e7 30%, #f9c38b 60%, #5ea85b 100%);
  /* color: white; */
  padding: 10px 20px;
  /* display: flex; */
  /* justify-content: center; */
  /* align-items: center; */
  /* flex-wrap: wrap; */
  /* flex-direction: column; */
  /* text-align: center; */
}

.logo-title {
  /* display: flex; */
  /* align-items: center; */
  gap: 15px;
}

.logo {
    height: 50px;  
  /* max-width: 100px; */
  /* object-fit: contain; */
}

.main-nav {
  /* display: flex; */
  /* gap: 20px; */
  /* margin-top: 10px; */
  /* flex-wrap: wrap; */
  justify-content: center;
}

.main-nav a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #f1f1f1;
}

/* Responsive Navigation */
@media screen and (max-width: 768px) {
  .logo {
    height: 40px;
  }

  .main-nav a {
    font-size: 14px;
    padding: 5px 10px;
  }
}

/* Layout */
.content {
  /* display: flex; */
  /* gap: 20px; */
  margin: 30px 20px;
  flex-wrap: wrap;
  /* padding: 10px; */
  /* flex: 1; */
}

 


.banner-img {
  width: 100%;
  max-width: 1000px;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
    object-fit: contain;
}

@media screen and (max-width: 768px) {
  .banner-img {
    border-radius: 0;
  }
}

/* PDF Downloads */
.pdf-downloads {
  margin-top: 40px;
  padding: 15px;
  border: 1px dashed #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.pdf-downloads h3 {
  margin-bottom: 10px;
  color: #2c3e50;
}

.pdf-downloads ul {
  list-style: none;
  padding-left: 0;
}

.pdf-downloads li {
  margin-bottom: 8px;
}

.pdf-downloads a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.pdf-downloads a:hover {
  text-decoration: underline;
}



.pdf-tiles {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.pdf-tile {
  background-color: #f2f2f2;
  border-radius: 6px;
  padding: 10px 15px;
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
  transition: background 0.3s;
}

.pdf-tile:hover {
  background-color: #e0e0e0;
}

@media screen and (max-width: 768px) {
  .pdf-tiles {
    flex-direction: column;
    align-items: center;
  }

  .pdf-tile {
    width: 80%;
    font-size: 14px;
    padding: 10px;
  }
}

/* Video Section */
.video-scroll-section {
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.scroll-container {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-wrapper {
  display: flex;
  gap: 20px;
  padding: 10px;
  width: 90%;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.video-wrapper iframe {
  flex: 0 0 auto;
  width: 300px;
  height: 180px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.scroll-btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 24px;
  z-index: 1;
}

.scroll-btn:hover {
  background-color: #0056b3;
}

.scroll-btn.left {
  margin-right: 10px;
}

.scroll-btn.right {
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  .video-wrapper iframe {
    width: 250px;
    height: 150px;
  }

  .video-scroll-section {
    margin: 20px auto;
    padding: 10px;
  }
}

/* Footer */
.site-footer {
  background-color: #f8f9fa;
  padding: 30px 20px;
  font-size: 14px;
  color: #333;
  border-top: 1px solid #ddd;
}



.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-left {
  flex: 1 1 250px;
  padding: 10px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 10px;
}

.social-icons a img {
  width: 20px;
  margin-right: 10px;
  vertical-align: middle;
}

.disclaimer,
.visitor-counter {
  margin-top: 10px;
  font-size: 12px;
}

.visitor-count {
  background: #007b3e;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: bold;
}

.footer-columns {
  flex: 3 1 600px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 10px;
}

.footer-col {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.footer-col h4 {
  margin-bottom: 10px;
  color: #007b3e;
  font-size: 16px;
}

.footer-col a {
  color: #333;
  text-decoration: none;
  margin-bottom: 6px;
}

.footer-col a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .footer-container,
  .footer-columns {
    flex-direction: column;
  }

  .footer-left,
  .footer-col {
    flex: 1 1 100%;
  }
}

 
 

.site-footer {
  background: #f8f9fa;
  padding: 20px;
  text-align: center;
}


.logo-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.logo {
  height: 50px;
  max-width: 100px;
  object-fit: contain;
}
.site-footer .logo-title {
  justify-content: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .logo {
    height: 40px;
  }

  .logo-title {
    flex-direction: row;
    justify-content: center;
  }
}


.nav-button {
  display: inline-block;
  padding: 8px 16px;
  background-color: white;  /* blue background */
  color: red;
  border: none;
  border-radius: 5px;
  text-decoration: none; /* removes underline */
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.nav-button:hover {
  background-color: #0056b3; /* darker on hover */
}
