:root {
    --bg: #f3f7f6;
    --card: #ffffff;
    --accent: #1e8f6e;
    --accent-2: #f4b41a;
    --muted: #6b7280;
    --maxw: 1150px;
    font-family: Inter, Poppins, system-ui, sans-serif;
  }
  
  * {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    background: var(--bg);
    color: #052028;
  }
  
  .container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 1rem;
  }
  

 .news-list {
      display: none;
      margin-top: 20px;
    }

    /* ===== Floating video container ===== */
    #floatingVideo {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 320px;
      background: #000;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.5);
      padding: 5px;
      z-index: 9999;
      cursor: move; /* Indicates draggable */
    }

    /* ===== Video styling ===== */
    #myVideo {
      border-radius: 10px;
      display: block;
      width: 100%;
    }

    /* ===== Close button styling ===== */
    #closeVideoBtn {
      position: absolute;
      top: -10px;
      right: -10px;
      background: red;
      color: white;
      border: none;
      border-radius: 50%;
      width: 25px;
      height: 25px;
      font-size: 18px;
      cursor: pointer;
      line-height: 20px;
      z-index: 10000;
    }

    #closeVideoBtn:hover {
      background: darkred;
    }

    /* ===== Responsive: Center video on mobile ===== */
    @media (max-width: 768px) {
      #floatingVideo {
        bottom: 50%;
        right: 50%;
        transform: translate(50%, 50%);
        width: 90%;
        max-width: 350px;
        cursor: default; /* not draggable on mobile */
      }
    }
  /* Skip Link */
  .skip {
    position: absolute;
    left: -999px;
    top: auto;
  }
  
  .skip:focus {
    left: 1rem;
    top: 1rem;
  }
  
  /* Navbar */
 /* NAVBAR STYLING */
/* .nav-wrap {
  position: sticky;
  top: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(245, 245, 245, 0.7));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10, 10, 10, 0.05);
  z-index: 1000;
} */


.nav-wrap {
  position: sticky;
  top: 0;
  background: transparent; /* transparent at start */
  transition: background 0.3s ease, border 0.3s ease;
  border-bottom: 1px solid transparent;
  z-index: 1000;
}

.nav-wrap.scrolled {
  background: rgb(11, 77, 92);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}


.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
}

.nav {
  position: relative;
}


/* Default (Desktop) */
.logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  padding: 0.25rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Tablet */
@media (max-width: 992px) {
  .logo {
    width: 36px;
    height: 36px;
  }

  .brand {
    gap: 0.4rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .logo {
    width: 30px;
    height: 30px;
  }

  .brand {
    gap: 0.35rem;
  }

  .village-name {
    font-size: 0.95rem; /* adjust text size */
  }

  .village-tag {
    font-size: 0.75rem;
  }
}

/* NAV LIST */
.nav-list {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  position: relative;
  text-decoration: none;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  color: #073233;
  /* color: white !important; */
  transition: color 0.3s ease, transform 0.3s ease;
}

/* HOVER EFFECT - underline animation */
.nav-list a::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #06b6d4, #3b82f6);
  border-radius: 4px;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

/* Default nav links */
.nav-list a {
  color: #073233;
  font-size: 1.5rem;
}

/* When navbar is scrolled */
.nav-wrap.scrolled .nav-list a {
  color: white;
}

/* Keep hover/active effect visible on scroll */
.nav-wrap.scrolled .nav-list a:hover,
.nav-wrap.scrolled .nav-list a.active {
  color: #f0f0f0; /* softer white */
  font-size: 1.5rem !important;
}


.nav-list a:hover {
  color: #0284c7;
  transform: translateY(-2px);
}

.nav-list a:hover::after {
  width: 60%;
}

/* ACTIVE LINK */
.nav-list a.active {
  color: #0284c7;
}

.nav-list a.active::after {
  width: 60%;
}

/* NAV TOGGLE (MOBILE MENU) */
.nav-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  background: none;
  border: none;
  color: #073233;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    background: #fff;
    width: 200px;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .nav-list.show {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .nav-list a {
    padding: 0.8rem;
  }
}

/* Hero Section */

/* Typing Effect Cursor */
#typing-text {
  border-right: 0.15em solid #073233;
  overflow: hidden;
  display: inline-block; /* keeps cursor inline */
}

/* When typing is done */
#typing-text.done {
  border-right: none; /* remove cursor */
  white-space: normal; /* allow wrapping on small screens */
}

/* Hero Section */
.hero {
  padding: 60px 0;
  background: linear-gradient(180deg, #e6fff5, #ffffff);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

/* Hero Image */
.hero-image {
  display: flex;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.hero-image img:hover {
  transform: scale(1.03);
}

/* Hero Text */
.hero-text h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #04423a;
}

.hero-text .highlight {
  background: linear-gradient(90deg, #18b07b, #0a664d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

/* CTA Buttons */
.cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn.primary {
  background: linear-gradient(90deg, var(--accent), #18b07b);
  color: #fff;
}

.btn.primary:hover {
  transform: scale(1.05);
}

.btn.outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn.outline:hover {
  background: var(--accent);
  color: #fff;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.hero-stats .stat {
  text-align: center;
}

.hero-stats h3 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 0.3rem;
}

.hero-stats p {
  font-size: 0.95rem;
  color: #666;
}

/* ============================= */
/* ✅ Responsive Breakpoints */
/* ============================= */

/* Tablet */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    order: -1; /* show image first */
  }

  .cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .hero-stats {
    gap: 1.2rem;
  }

  .hero-stats h3 {
    font-size: 1.3rem;
  }
}



  /* .hero-card {
    background: linear-gradient(180deg, #fff, #fcfff9);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(6, 22, 18, 0.06);
  } */
  .enhanced-hero-card {
    background: linear-gradient(145deg, #f0fff7, #ffffff);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(6, 22, 18, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .enhanced-hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(6, 22, 18, 0.15);
  }
  
  .enhanced-stats {
    display: flex;
    gap: 1rem;
    justify-content: space-around;
    margin-bottom: 1.5rem;
  }
  
  .enhanced-stats .stat {
    flex: 1;
    text-align: center;
    background: #ffffffcc;
    border-radius: 16px;
    padding: 1rem;
    transition: transform 0.3s ease;
  }
  
  .enhanced-stats .stat:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #d0fff0, #ffffff);
  }
  
  .enhanced-stats .num {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e8f6e;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
  }
  
  .enhanced-stats .icon {
    font-size: 1.4rem;
  }
  
  .enhanced-stats .label {
    font-weight: 600;
    color: #073233;
    margin-top: 0.25rem;
  }
  
  .enhanced-ticker {
    background: #f7fff8;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    overflow: hidden;
    box-shadow: inset 0 0 5px rgba(30, 143, 110, 0.1);
  }
  
  .enhanced-ticker .ticker-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e8f6e;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
  }
  
  .enhanced-ticker .ticker li {
    animation: slideEnhanced 9s linear infinite;
    padding: 6px 0;
    color: #052028;
    font-weight: 500;
  }
  
  @keyframes slideEnhanced {
    0% { transform: translateY(0); }
    33% { transform: translateY(-100%); }
    66% { transform: translateY(-200%); }
    100% { transform: translateY(0); }
  }
  
  .stats {
    display: flex;
    gap: 0.5rem;
    justify-content: space-between;
    margin-bottom: 1rem;
  }
  
  .stat {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
    border-radius: 8px;
    background: linear-gradient(180deg, #f8fff6, #ffffff);
  }
  
  .num {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
  }
  
  .ticker-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .ticker {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    /* height: 48px; */
  }
  
  .ticker li {
    animation: slide 9s linear infinite;
    padding: 6px 0;
  }
  
  @keyframes slide {
    0% {
      transform: translateY(0);
    }
    33% {
      transform: translateY(-100%);
    }
    66% {
      transform: translateY(-200%);
    }
    100% {
      transform: translateY(0);
    }
  }
  
  /* Section */
  .about-section {
    padding: 60px 0;
    background: #14d4ff0a;
  }
  
  .about-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #073233;
  }
  
  .split {
    display: flex;
    align-items: stretch; /* 🔑 makes both columns equal in height */
    justify-content: space-between;
    gap: 2rem;
  }
  
  .split-text,
  .split-img {
    flex: 1; /* Equal width 50/50 */
  }
  
  .split-text {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .split-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #444;
  }
  
  .split-text .muted {
    font-style: italic;
    color: #777;
  }
  
  .split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills height like text */
    border-radius: 10px;
  }
  
  
  /* Services */
  .services-wrap {
    position: relative;
    padding: 60px 20px;
    background: url('assets/images/bg/3.jpg') center/cover no-repeat !important; /* background image */
    overflow: hidden;
    z-index: 1;
  }
  
  .services-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5); /* black overlay, 50% opacity */
    z-index: 0;
  }
  
  .services-heading,
  .services-sub {
    position: relative;
    z-index: 1; /* above overlay */
    text-align: center;
    color: #fff;
  }
  
  .services-heading {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
  }
  
  .services-sub {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  /* Grid for all 4 cards in a row */
  .services-grid {
    position: relative;
    z-index: 1; /* above overlay */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
  }
  
  .service-card {
    background: rgba(255,255,255,0.95); /* semi-transparent white to show background */
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
  }
  
  .service-img {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
  }
  
  .service-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .service-card:hover .service-img img {
    transform: scale(1.05);
  }
  
  .service-card h3 {
    font-size: 1.5rem;
    color: #073233;
    margin: 10px 0;
  }
  
  .service-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    flex-grow: 1;
  }
  
  .btn {
    display: inline-block;
    padding: 10px 18px;
    background: #0a5c5c;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: #073233;
  }
  
  /* Responsive */
  @media (max-width: 1200px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .services-grid {
      grid-template-columns: 1fr;
    }
  }
    
  /* Members */
  .member-card {
    background: var(--card);
    padding: 14px;
    border-radius: 12px;
    flex: 1 1 220px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(6, 22, 18, 0.05);
  }
  
  /* Gallery */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 1rem;
  }
  
  /* Forms */
/* Section styling */
/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a365d;
}

.section-header p {
  color: #4a5568;
  margin-top: 0.5rem;
  font-size: 1rem;
}

.apply-section {
  padding: 3rem 2rem;
  margin-top: 2rem;
  background: #f8fafc;
  /* padding: 2rem;
  margin-top: 2rem; */
}

.apply-container {
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  background: #fff;
}

/* Left Form */
.form-side {
  flex: 1;
  padding: 2rem;
  background: #f9fafb;
}

.form-side h2 {
  text-align: center;
  font-size: 2rem;
  color: #1a365d;
  margin-bottom: 2rem;
  font-weight: 600;
}

/* Right Map */
.map-side {
  flex: 1;
  min-height: 500px;
}

/* Form */
.app-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row input,
.form-row select,
textarea {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid #cbd5e0;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
  background: white;
}

.form-row input:focus,
.form-row select:focus,
textarea:focus {
  border-color: #3182ce;
  box-shadow: 0 0 0 3px rgba(49,130,206,0.15);
}

textarea {
  resize: vertical;
}

/* Buttons */
.form-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.btn.primary {
  background: linear-gradient(135deg, #3182ce, #2b6cb0);
  color: white;
}

.btn.primary:hover {
  background: linear-gradient(135deg, #2b6cb0, #2c5282);
}

.btn.ghost {
  background: #edf2f7;
  color: #2d3748;
  border: 1px solid #cbd5e0;
}

.btn.ghost:hover {
  background: #e2e8f0;
}

/* Note */
.muted.small {
  text-align: center;
  font-size: 0.85rem;
  color: #718096;
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
  .apply-container {
    flex-direction: column;
  }
  .map-side {
    min-height: 300px;
  }
}



  /* .app-form {
    background: var(--card);
    padding: 18px;
    border-radius: 12px;
  }
  
  .form-row {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
  }
  
  .form-row input,
  .app-form select,
  .app-form textarea {
    flex: 1;
    padding: 0.7rem;
    border-radius: 8px;
    border: 1px solid #e6ece7;
    font-size: 1rem;
  }
  
  .form-actions {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0.6rem;
  }
   */
  /* Contact Section */

/* Footer Base */
.site-footer {
    background: #1a202c; /* dark blue-grey */
    color: #edf2f7;
    padding-top: 3rem;
    font-family: 'Segoe UI', sans-serif;
  }
  
  /* Top Columns */
  .footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem 2rem;
  }
  
  .footer-col h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #63b3ed; /* accent blue */
  }
  
  .footer-col p,
  .footer-col a {
    font-size: 0.95rem;
    color: #cbd5e0;
    margin: 0.5rem 0;
    text-decoration: none;
  }
  
  .footer-col a:hover {
    color: #63b3ed;
  }
  
  /* Logo */
  .footer-logo {
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #fff;
  }
  .footer-logo i {
    font-size: 1.6rem;
    color: #63b3ed;
  }
  
  /* Quick Links */
  .quick-links {
    list-style: none;
    padding: 0;
  }
  .quick-links li {
    margin: 0.5rem 0;
  }
  .quick-links li::before {
    content: "› ";
    color: #63b3ed;
  }
  
  /* Bottom Bar */
  .footer-bottom {
    border-top: 1px solid #2d3748;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  
  /* Social Icons */
  .socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .socials a {
    background: #2d3748;
    color: #edf2f7;
    font-size: 1rem;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
  }
  
  .socials a:hover {
    background: #63b3ed;
    color: #fff;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-top {
      text-align: center;
    }
    .footer-logo {
      justify-content: center;
    }
  }
  
  
  /* .contact-grid {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
  }
  
  .quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  
  .site-footer {
    background: #043330;
    color: #fff;
    padding: 18px;
    margin-top: 30px;
    border-radius: 8px;
  }
  
  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
   */
  /* Utility */
  .muted {
    color: var(--muted);
  }
  
  .small {
    font-size: 0.9rem;
  }
  
  /* Responsive */
  @media (max-width: 1000px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .split {
        flex-direction: column-reverse; /* text below image */
    align-items: center; /* center items horizontally */
    text-align: center; /* center text content */
    gap: 1.5rem; /* add spacing between items */
      /* flex-direction: column-reverse; */
    }
  
    .split-text {
        width: 100%; /* take full width */
        text-align: right;
      }
    
      .split-img {
        width: 80%; /* scale image nicely */
        max-width: 400px;
      }
    
  }
  
  @media (max-width: 700px) {
    .nav-toggle {
      display: block;
    }
  
    .nav-list {
      display: none;
      position: absolute;
      right: 10px;
      top: 64px;
      background: white;
      padding: 8px;
      border-radius: 8px;
      box-shadow: 0 8px 20px rgba(6, 22, 18, 0.08);
    }
  
    .hero-inner {
      grid-template-columns: 1fr;
    }
  
    .services-grid {
      grid-template-columns: 1fr;
    }
  
    .gallery-grid {
      grid-template-columns: 1fr;
    }
  
    .members-grid {
      flex-direction: column;
    }
  }
  
  /* ✅ Members Grid */
.members-grid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  /* ✅ Contact Grid */
  .contact-grid {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .contact-grid > div {
    flex: 1 1 300px;
  }
  
  /* ✅ Hero Stats for Mobile */
  .stats {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .stat {
    flex: 1 1 100px;
  }
  
  /* ✅ Responsive Typography */
  h1, h2, h3, h4 {
    line-height: 1.3;
  }
  
  h1 {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
  }
  
  h2 {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
  }
  
  /* ✅ Extra Breakpoints */
  @media (max-width: 500px) {
    .cta {
      flex-direction: column;
    }
  
    .form-row {
      flex-direction: column;
    }
  
    .footer-inner {
      flex-direction: column;
      gap: 0.75rem;
      text-align: center;
    }
  }
  

  /* slider */
  /* Slider Section */
  
  .slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    /* border-radius: 12px; */
    margin-bottom: 1.5rem;
    background-color: #000; 
  }
  
  .slides {
    position: relative;
    height: 100%;
  }
  
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 1s ease-in-out, transform 1.5s ease;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    /* background-color: #000;  */
  }
  
  .slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
  }
  
  .caption {
    position: absolute;
    bottom: 20px;
    left: 30px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
  }
  
  /* Responsive */
  @media (max-width: 700px) {
    .slider {
      height: 250px;
    }
    .caption {
      font-size: 0.85rem;
      padding: 6px 10px;
      bottom: 10px;
      left: 15px;
    }
  }
  
  .service-card img {
    width: 80px;       /* default size */
    height: 80px;
    object-fit: cover;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    transition: width 0.3s, height 0.3s;
  }
  
  /* Responsive adjustments */
  @media (max-width: 1000px) {
    .service-card img {
      width: 60px;   /* smaller on tablets */
      height: 60px;
    }
  }
  
  @media (max-width: 700px) {
    .service-card img {
      width: 50px;   /* even smaller on mobile */
      height: 50px;
    }
  }

/* Hide Google Translate banner and dropdown */
.goog-te-banner-frame.skiptranslate { display: none !important; }
body { top: 0 !important; }
.container1 {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 50px;
}

/* News + Links Boxes */
.news-section,
.links-section {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 20px;
  flex: 1;
  min-width: 300px;
  transition: transform 0.3s ease;
}

.news-section:hover,
.links-section:hover {
  transform: translateY(-4px);
}

/* Tabs */
.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.tab {
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  background-color: #e0e0e0;
  font-size: 0.95rem;
}
.tab.active {
  background-color: #007bff;
  color: #fff;
}

/* News List */
.news-list li {
  margin-bottom: 10px;
  line-height: 1.5;
  position: relative;
  padding-left: 25px;
}
.news-list li::before {
  content: "\f0da";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #ffb800;
}

/* View All Button */
.view-all-btn {
  display: inline-block;
  margin-top: 15px;
  background-color: #ffb800;
  color: #000;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}
.view-all-btn:hover {
  background-color: #e0a500;
  color: #fff;
}

/* Important Links */
.links-section h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #007bff;
}
.links-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}
.links-list li a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
  font-size: 0.95rem;
}
.links-list li a:hover {
  color: #007bff;
}

/* General Section Styling */
.section {
  padding: 60px 20px;
  /* background: #f9f9f9; */
  text-align: center;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #4CAF50;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* 🌐 RESPONSIVE BREAKPOINTS */

/* Tablets */
@media (max-width: 992px) {
  .container1 {
    margin: 30px;
    gap: 15px;
  }

  .tab {
    font-size: 0.9rem;
    padding: 6px 14px;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Mobiles */
@media (max-width: 576px) {
  .container1 {
    flex-direction: column;
    margin: 20px;
  }

  .news-section,
  .links-section {
    min-width: 100%;
    padding: 15px;
  }

  .tab {
    flex: 1; /* tabs stretch equally */
    text-align: center;
  }

  .view-all-btn {
    width: 100%;
    text-align: center;
  }

  .section-title {
    font-size: 1.6rem;
  }
}

  /* Gallery Grid */
/* Section Background */






#gallery {
  width: 100%;
  padding: 60px 40px;
  background: #abcfaa89; 
}

/* Header & Title */
.gallery-header {
  text-align: center;
  margin-bottom: 2rem;
}

.gallery-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
}

.gallery-header h2 span {
  color: #1e90ff;
}

/* Filter Buttons */
.gallery-filters {
  margin-top: 1rem;
}

/* .filter-btn {
  border: 2px solid #1e90ff;
  background: transparent;
  color: #1e90ff;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 25px;
  margin: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
} */
.filter-btn {
  border: none;
  background: #ffffff;
  color: #1e90ff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px; /* pill-shaped */
  margin: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 4rem;
    width: 10rem;
    font-size: 20px;
}

.filter-btn.active,
.filter-btn:hover {
  background: #1e90ff;
  color: #fff;
  box-shadow: 0 6px 16px rgba(30,144,255,0.4);
  transform: translateY(-2px);
}




/* .filter-btn.active,
.filter-btn:hover {
  background: #1e90ff;
  color: #fff;
} */

/* Full Width Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
  width: 100%;
}

/* Gallery Items */
.gallery-grid figure {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  background: #fff;
}

.gallery-grid figure img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-grid figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

/* Hover Effect */
.gallery-grid figure:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.gallery-grid figure:hover img {
  transform: scale(1.1);
}

.gallery-grid figure:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}


.gallery-grid figure img {
  width: 100%;
  height: 250px;   /* adjust this value as needed (200–300px works well) */
  object-fit: cover;  /* keeps aspect ratio and crops nicely */
  display: block;
  transition: transform 0.5s ease;
}



.gov-section {
  background: #f8fafc;
  padding: 3rem 1rem;
  margin-top: 2rem;
}

.gov-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 2.5rem;
}

.gov-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.gov-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  text-decoration: none;
  color: #2b6cb0;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
  max-width: 180px;
}

.gov-img {
  height: 80px; /* fixed size for all images */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.gov-card img {
  max-height: 70px;
  max-width: 70px;
  object-fit: contain;
  transition: transform 0.3s;
}

.gov-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gov-card:hover img {
  transform: scale(1.1);
}

.gov-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #2d3748;
}


.brand-belt {
  background: #fff;
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}

.brand-belt .section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #073233;
}

.brand-belt-track {
  display: flex;
  width: calc(200%); /* double width for infinite loop */
  animation: scroll 20s linear infinite;
}

.brand-item {
  flex: 0 0 auto;
  width: 180px;
  margin: 0 20px;
  text-align: center;
}

.brand-item img {
  max-height: 70px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.brand-item img:hover {
  filter: grayscale(0%);
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}







  /* ****************************************About Us**************************************************** */
/* Hero */
.hero1 {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url("assets/images/Gallary/1.avif") center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
  }
  .hero h1 { font-size: 3rem; margin-bottom: 20px; }
  .hero p { font-size: 1.2rem; max-width: 700px; margin: auto; }
  
  /* About Section */
  .about { 
    text-align: center;
    padding: 60px 20px;
}
  .about h2 { font-size: 2rem; margin-bottom: 20px; position: relative; }
  .about h2::after {
    content: "";
    display: block;
    width: 60px; height: 4px;
    background: #4CAF50; margin: 10px auto 0; border-radius: 2px;
  }
  .about p { font-size: 1.1rem; line-height: 1.7; max-width: 85%; margin: auto; }
  
  /* Highlights */
  .highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 60px 20px;
  }
  .highlight-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  .highlight-card:hover { transform: translateY(-5px); }
  .highlight-card i {
    font-size: 2rem; color: #4CAF50; margin-bottom: 15px;
  }
  .highlight-card h3 { margin-bottom: 10px; font-size: 1.3rem; }
  
  /* Mini Gallery */
  .mini-gallery { padding: 60px 20px; text-align: center; }
  .mini-gallery h2 { margin-bottom: 30px; font-size: 2rem; }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 15px;
  }
  .gallery-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    cursor: pointer;
  }
  .gallery-grid img:hover { transform: scale(1.05); }
  

  .about-dixi {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }
  .about-dixi h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c3e50;
  }
  .about-dixi p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 40px;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: start;
  }
  
  .table-box h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #2c3e50;
    text-align: left;
  }
  
  .styled-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  }
  .styled-table th, .styled-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 0.95rem;
  }
  .styled-table th {
    background: #4CAF50;
    color: #fff;
    font-weight: 600;
  }
  .styled-table tr:nth-child(even) { background: #f9f9f9; }
  .styled-table tr:last-child td { border-bottom: none; }
  
  .styled-table td i {
    margin-right: 6px;
    color: #4CAF50;
  }
  
  /* Responsive for mobile */
  @media(max-width: 900px){
    .about-grid {
      grid-template-columns: 1fr;
    }
  }








  /* ************************* Gallary Page ************************** */
   /* Section Styling */
   .section { padding: 60px 20px; text-align: center; background: #f8f9fa; }
   .section-title { font-size: 2.5rem; margin-bottom: 30px; display: inline-block; position: relative; }
   .section-title::after { content: ''; display: block; width: 60px; height: 4px; background: #4CAF50; margin: 10px auto 0; border-radius: 2px; }
   
   /* Gallery Grid */
   .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
   .gallery-grid figure { margin: 0; border-radius: 10px; overflow: hidden; box-shadow: 0 8px 20px rgba(0,0,0,0.15); cursor: pointer; transition: transform 0.3s; background: #fff; }
   .gallery-grid figure:hover { transform: scale(1.05); }
   .gallery-grid img { width: 100%; display: block; }
   .gallery-grid figcaption { padding: 10px; background: #333; color: #fff; font-size: 1rem; }
   
   /* Lightbox */
   .lightbox { display: none; position: fixed; z-index: 9999; padding-top: 60px; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); text-align: center; }
   .lightbox-content { max-width: 80%; max-height: 80%; border-radius: 10px; }
   #lightbox-caption { margin-top: 15px; color: #ddd; font-size: 18px; }
   
   /* Close Button */
   .close { position: absolute; top: 20px; right: 40px; color: #fff; font-size: 40px; font-weight: bold; cursor: pointer; transition: 0.3s; }
   .close:hover { color: #f00; }
   
   /* Navigation Arrows */
   .prev, .next {
     cursor: pointer;
     position: absolute;
     top: 50%;
     width: auto;
     padding: 16px;
     margin-top: -50px;
     color: #fff;
     font-weight: bold;
     font-size: 40px;
     transition: 0.3s;
     user-select: none;
   }
   
   .prev { left: 20px; }
   .next { right: 20px; }
   
   .prev:hover, .next:hover { color: #4CAF50; }


   
   @keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
  }
  
  /* Optional: make it responsive */
  @media (max-width: 700px) {
    .ticker-content {
      font-size: 0.9rem;
    }
  }



  /* *********************************Officers************************************************************ */
  #officers {
    padding: 50px 20px;
    background: #faf8f3;
  }
  
  #officers .container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }
  
  .section-title {
    font-size: 28px;
    color: #1e2a47;
    margin-bottom: 40px;
    font-weight: bold;
  }
  
  .officers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .officer-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .officer-card:hover {
    transform: translateY(-5px);
  }
  
  .officer-card img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 15px;
  }
  
  .officer-card h3 {
    color: #145a32;
    font-size: 18px;
    margin: 10px 0;
  }
  
  .officer-card .role {
    margin: 5px 0;
    font-weight: bold;
  }
  
  .officer-card .edu {
    margin: 5px 0;
    color: #555;
  }
  
  .officer-card .phone {
    margin: 5px 0;
    color: #c0392b;
  }