/* --------------------------------------------------
   CLEAN NAVBAR — WORKS PERFECTLY DESKTOP + MOBILE
-------------------------------------------------- */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  background: #f9f9f9;
  color: #333;
}

.nav-navbar {
  width: 100%;
  background: #65c368;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.nav-container {
  top: 0;
  left: 0;
  max-width: 1200px;
  margin: auto;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

/* LOGO */
.logo img {
  width: 160px;
  margin-left: 0px;
}

/* Desktop Menu */
.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 28px;
}

.nav-menu li a {
  color: #111;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: .3s ease;
  margin-right: 20px;
}

.nav-menu li a:hover {
  color: #3f53c1;
}

/* DROPDOWN DESKTOP */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 42px;
  left: 0;
  width: 220px;
  background: #fff;
  padding: 10px 0;
  border-radius: 6px;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: .3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: #222;
  font-size: 15px;
}

.dropdown-menu li a:hover {
  background: #f7c04a;
  color: #fff;
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* HAMBURGER */
.hamburger {
  font-size: 30px;
  display: none;
  color: #111;
  cursor: pointer;
}

/* HAMBURGER ANIMATION */
.hamburger {
  width: 27px;
  height: 25px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: #111;
  border-radius: 3px;
  transition: 0.4s ease;
}

/* Transform to X */
.hamburger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}


/* --------------------------------------------------
      MOBILE RESPONSIVE STYLING
-------------------------------------------------- */
@media (max-width: 768px) {
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;   /* <-- this is why the height is always full screen */
  width: 260px;
  background: #ecf775;
  flex-direction: column;
  padding-top: 100px;
  gap: 25px;
  box-shadow: -3px 0 10px rgba(0,0,0,0.15);
  transition: .4s ease;
  overflow-y: auto;
}


  .nav-menu.active {
    top: 0;
  }

  .hamburger {
    display: flex;
  }

  /* Disable hover dropdown */
  .dropdown:hover .dropdown-menu {
    display: none;
  }

  /* Mobile dropdown click-to-open */
  /* Mobile dropdown click-to-open */
  .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background: #fbfbf8;
    border-radius: 0;
    box-shadow: none;
    display: none;
    opacity: 1;
    transform: translateY(0);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown.active .dropdown-menu {
    display: block;
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .nav-menu.active {
    right: 0;      /* ← SHOW MENU */
  }
}

/* ── ACTIVE NAV LINK ── */
.nav-menu li a.active {
    color: #f7f461;
    font-weight: 800;
}

.nav-menu li a.active::after {
    content: '';
    display: block;
    height: 2px;
    background: #4caf50;
    margin-top: 4px;
}


.dropdown {
    position: relative;
}

.dropdown-arrow {
    display: none;
}

@media (max-width: 768px) {
    .dropdown {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .dropdown-toggle {
        flex: 1;
    }

    .dropdown-arrow {
        display: inline-flex;
        padding: 10px 15px;
        cursor: pointer;
    }

    .dropdown-menu {
        width: 100%;
    }
}


@media (max-width: 768px) {
  .nav-menu.active {
    right: 0;      /* ← SHOW MENU */
  }
}


/* ── GLOBAL RESET ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f9f9f9;
    color: #222;
}

/* ── ACTIVE NAV LINK ── */
.nav-menu li a.active {
    color: #f7f461;
    font-weight: 800;
}

.nav-menu li a.active::after {
    content: '';
    display: block;
    height: 2px;
    background: #4caf50;
    margin-top: 4px;
}

@media (max-width: 768px) {
  .nav-menu li a.active {
    color: #4caf50;
    font-weight: 800;
}
}




/* ── HERO SECTION ── */
.about-hero {
    position: relative;
    width: 100%;
    height: 95vh;
    background: url(../images/wh.jpg) center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: #111111cc;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 80px;
    max-width: 750px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: slideIn 1s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-hero-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.7rem;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
    display: flex;
}

.about-hero-content h1 span {
    color: #f7e337;
}

.about-hero-desc {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
    max-width: 560px;
}

/* ── HERO RESPONSIVE ── */
@media (max-width: 768px) {
    .about-hero {
        height: 90vh;
    }

    .about-hero-content {
        padding: 0 25px;
    }

    .about-hero-content h1 {
        font-size: 3.2rem;
    }

    .about-hero-desc {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2.6rem;
    }

    .about-hero-desc {
        font-size: 0.95rem;
    }
}





/* ── OUR STORY SECTION ── */
.our-story {
    padding: 70px 10px;
    background-color: #fff;
}

.our-story-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.our-story-image {
    width: 100%;
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
}

.our-story-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    border-radius: 3px;
}

.our-story-content {
    flex: 1;
    margin-left: 40px;
}

.section-sub {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #4caf50;
    margin-bottom: 1rem;
}

.our-story-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    line-height: 1.2;
    color: #222;
    margin-bottom: 1.5rem;
}

.our-story-content h2 span {
    color: #4caf50;
}

.our-story-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.our-story-stats {
    display: flex;
    gap: 30px;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    background: #f9f9f9;
    border-bottom: 4px solid #4caf50;
    padding: 20px 25px;
    border-radius: 8px;
    flex: 1;
}

.stat h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #4caf50;
    margin-bottom: 0.3rem;
}

.stat p {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── OUR STORY RESPONSIVE ── */
@media (max-width: 768px) {
    .our-story {
        padding: 60px 0;
    }

    .our-story-container {
        flex-direction: column;
        gap: 40px;
    }

    .our-story-image {
        width: 100%;
        border-radius: 0;
    }

    .our-story-image img {
        height: 450px;
        width: 100%;
        border-radius: 0;
    }

    .our-story-content {
        padding: 0 15px;
        margin-right: 30px;
    }

    .our-story-content h2 {
        font-size: 2.5rem;
    }

    .our-story-stats {
        gap: 15px;
    }

    .stat {
        padding: 15px 10px;
    }

    .stat h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .our-story-content h2 {
        font-size: 2.2rem;
    }

    .our-story-stats {
        flex-direction: column;
    }

    .stat {
        padding: 15px 20px;
    }
}


/* ── MISSION & VISION SECTION ── */
.mission-vision {
    padding: 100px 80px;
    background-color: #f9f9f9;
}

.Heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    text-align: center;
    color: #111;
    margin-bottom: 90px;
}

.mission-vision-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-box,
.vision-box {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-box {
    border-top: 5px solid #4caf50;
}

.vision-box {
    border-top: 5px solid #f7e337;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.mission-box h3,
.vision-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #222;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.mission-box p,
.vision-box p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

/* ── MISSION & VISION RESPONSIVE ── */
@media (max-width: 768px) {
    .mission-vision {
        padding: 60px 25px;
    }

    .mission-vision-container {
        flex-direction: column;
        gap: 30px;
    }

    .mission-box,
    .vision-box {
        padding: 40px 25px;
    }

    .mission-box h3,
    .vision-box h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .mission-box,
    .vision-box {
        padding: 30px 20px;
    }

    .mission-box h3,
    .vision-box h3 {
        font-size: 1.5rem;
    }

    .mv-icon {
        font-size: 2.5rem;
    }
}


/* ── CORE VALUES SECTION ── */
.core-values {
    position: relative;
    padding: 100px 80px;
    background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1600') center/cover no-repeat;
}

.core-values-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.core-values-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.core-values-header {
    text-align: center;
    margin-bottom: 60px;
}

.core-values-header .section-sub {
    color: #f7e337;
}

.core-values-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #fff;
    letter-spacing: 1px;
}

.core-values-header h2 span {
    color: #4caf50;
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: #fff;
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    border-bottom: 4px solid transparent;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    border-bottom-color: #f7e337;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.value-icon{
    width:75px;
    height:75px;
    margin:0 auto 25px;
    border-radius:50%;
    background:rgba(76,175,80,.12);
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.35s ease;
}

.value-icon i{
    font-size:32px;
    color: #f7e337;
    transition:.35s ease;
}

.value-card:hover .value-icon{
    background:#4CAF50;
    transform:translateY(-6px);
}

.value-card:hover .value-icon i{
    color:#fff;
}

.value-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #111;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.value-card p {
    font-size: 1rem;
    font-weight: 300;
    color: #1f1f1f;
    line-height: 1.8;
}

/* ── CORE VALUES RESPONSIVE ── */
@media (max-width: 1024px) {
    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .core-values {
        padding: 60px 25px;
    }

    .core-values-header h2 {
        font-size: 2.2rem;
    }

    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .value-card {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .core-values-grid {
        grid-template-columns: 1fr;
    }

    .core-values-header h2 {
        font-size: 1.8rem;
    }

    .value-card {
        padding: 35px 20px;
    }

    .value-icon {
        font-size: 2rem;
    }
}


/* ── ABOUT CTA SECTION ── */
.about-cta {
    background-color: #65c368;
    padding: 30px 80px;
}

.about-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.about-cta-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #222;
    letter-spacing: 1px;
    margin: 0;
}

.cta-btn {
    display: inline-block;
    background-color: #f7e337;
    color: #222;
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover {
    background-color: #f7e337;
    color: #222;
    transform: translateY(-3px);
}

/* ── ABOUT CTA RESPONSIVE ── */
@media (max-width: 768px) {
    .about-cta {
        padding: 40px 25px;
    }

    .about-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .about-cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-cta-content h2 {
        font-size: 1.7rem;
    }

    .cta-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}



.modern-footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #e2e8f0;
    padding: 70px 0 0;
    font-family: 'Arial', sans-serif;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #4a5568;
}

.footer-section h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #68d391;
}

.company-info { padding-right: 20px; }

.footer-logo h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.tagline {
    color: #68d391;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.company-description {
    color: #a0aec0;
    line-height: 1.6;
    margin: 20px 0;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: #68d391;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(104, 211, 145, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: #68d391;
    padding-left: 8px;
}

.footer-links a::before {
    content: '▸';
    position: absolute;
    left: -12px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #68d391;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -8px;
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-icon {
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item p,
.contact-item a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}

.contact-item a:hover { color: #68d391; }

/* Footer Bottom */
.footer-bottom {
    padding: 5px 0;
    overflow: hidden;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
}

/* Powered by */
.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a0aec0;
    font-size: 0.9rem;
    margin: 0;
}

.contact-icon {
  font-size: 18px;
  color: #4caf50;
  margin-right: 10px;
  width: 25px;
}


.social-link i {
  font-size: 18px;
  color: white;
  transition: 0.3s;
}

.social-link:hover i {
  color: #f7e337;
}

.powered-link {
    display: flex;
    align-items: center;
}

.powered-logo {
    height: 100px;
    max-height: 100px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.powered-link:hover .powered-logo {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
    .company-info { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .modern-footer { padding: 50px 0 0; }
    .footer-main { grid-template-columns: 1fr; gap: 35px; padding-bottom: 40px; }
    .footer-bottom-content { flex-direction: column; gap: 15px; text-align: center; }
    .footer-legal { flex-wrap: wrap; justify-content: center; }
    .company-info { padding-right: 0; text-align: center; }
    .footer-section h4::after { left: 50%; transform: translateX(-50%); }
}

@media (max-width: 480px) {
    .footer-container { padding: 0 15px; }
    .footer-main { gap: 30px; }
    .social-links { justify-content: center; }
}


