* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}




body {
    background-color: #f8f9fa;
    color: #333;
    min-height: 100vh;
}
/* LOADING BAR */
/* FULLSCREEN LOADER */
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #2e7d32;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* CENTER BOX */
.loader-box {
    text-align: center;
    width: 80%;
    max-width: 300px;
}

/* TEXT */
.loader-text {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}

/* PROGRESS BAR BACKGROUND */
.progress-bar {
    width: 100%;
    height: 6px;
    background: #333;
    border-radius: 10px;
    overflow: hidden;
}

/* PROGRESS FILL */
.progress-fill {
    width: 0%;
    height: 100%;
    background: #28a745; /* green */
    transition: width 0.3s ease;
}

.container {
    width: 100%;
}

#header {
    position: fixed;
    display: flex;
    background:rgba(22, 1, 1, 0.025); /* Initial state */
    transition: background 0.3s ease; /* Smooth transition */
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 10px 20px;
    width:100%;
    z-index:1000;
}

    #header.scrolled {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Logo Section */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.logo-icon i {
    color: #2e7d32;
    font-size: 24px;
}

.logo-text {
    color: white;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Navigation Section */
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #c8e6c9;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: white;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

.drop-dwn_ul{
    list-style: none;
}
.dropdown {
    position: relative;
}

.dropdown-content{
    display: none; 
    position: absolute;
    top: 100%; /* Places it directly below the parent link */
    left: -40%;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    list-style: none;
    padding: 0;
    z-index: 1;
}
.dropdown-content li a {
    color: #333;
    padding: 12px 16px;
    display: block;
    transition: background 0.2s;
}
.dropdown-content li a:hover {
    background-color: #2e7d32;;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 101;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: 0.3s;
}

 /* Overlay */
  .modal-overlay {
    width:100%;
    height:100vh;
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  /* Modal */
  .modal {
    background: #fff;
    padding: 24px;
    width: 320px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  }

  .modal h2 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 20px;
  }

  .modal label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
  }

  .modal input {
    width: 100%;
    padding: 8px;
    margin-bottom: 14px;
    border: 1px solid #ccc;
    border-radius: 20px;
  }

  .modal button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
  }

  .submit-btn {
    background: green;
    color: white;
    margin-bottom: 8px;
  }

  .close-btn {
    background: #e0e0e0;
  }
  
  
  
   .custom-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }
        .custom-modal-content {
            background: white;
            padding: 30px;
            border-radius: 8px;
            max-width: 400px;
            text-align: center;
            position: relative;
        }
        .close-modal {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #94a3b8;
        }
        

/* Member Button */
.member-btn {
    background-color: white;
    color: #2e7d32;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
}

.member-btn:hover {
    background-color: #000;
    color: #4caf50;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Active link styling */
.nav-links a.active {
    color: #c8e6c9;
}

.nav-links a.active::after {
    width: 100%;
}

/* Content for demonstration */
.content {
    margin-top: 40px;
    text-align: center;
    max-width: 800px;
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.content h1 {
    color: #2e7d32;
    margin-bottom: 20px;
    font-size: 32px;
}

.content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

/* HERO SECTION STYLES */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Video fills the section */
.hero-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Optional dark overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 1.0) 0%,    /* fully opaque at left */
      rgba(0, 0, 0, 0.8) 30%,   /* stays opaque until 30% */
      rgba(0, 0, 0, 0.4) 50%      /* fully transparent at 50% */
    );
    z-index: 2;
}

/* Content sits on top */
.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    color: white;
    text-align: center;
    padding: 20px 20px;
}

.hero-content-left{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    height: 100%;
    padding-top: 80px;
    padding-left: 20px;
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.15;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    z-index: 3;
    text-align: left;
    white-space: nowrap;
}

.hero-tagline {
    font-size: 1.4rem;
    width:100%;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
    color: #f0f0f0;
    text-align: justify;
}

.buttons{
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    width: 100%;
}


.hero-button {
    background-color: #2e7d32;
    width:40%;
    height: 60px;
    color: white;
    border: none;
    padding: 5px 5px;
    border-radius: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}



.hero-button:hover {
    background-color: #4caf50;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.hero-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-button-demo {
    background-color: #000;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    height: 60px;
    padding: 5px 28px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.hero-button-demo:hover {
    background-color: #222;
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.hero-button-demo:active {
    transform: translateY(-1px);
}


.social-proof {
  font-size: 0.82rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-proof .avatars { display: flex; }
.social-proof .avatars span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #25FF99;
  border: 2px solid #FFFFFC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #000;
  margin-left: -8px;
}
.social-proof .avatars span:first-child { margin-left: 0; }


/* Content for demonstration */
.content {
    margin-top: 40px;
    text-align: center;
    max-width: 800px;
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-left: auto;
    margin-right: auto;
}

.content h1 {
    color: #2e7d32;
    margin-bottom: 20px;
    font-size: 32px;
}

.content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    color: #2e7d32;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #4caf50;
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Cards Container */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Individual Card */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 30px 10px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2e7d32, #4caf50);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card:hover .card-icon {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    transform: scale(1.1);
}

.card-icon i {
    font-size: 32px;
    color: #2e7d32;
    transition: all 0.3s ease;
}

.service-card:hover .card-icon i {
    color: white;
}

.card-title {
    color: #2e7d32;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .card-title {
    color: #1b5e20;
}

.card-description {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-features {
    text-align: left;
    margin-bottom: 30px;
    padding: 0 10px;
}

.card-features p {
    color: #555;
    margin-bottom: 12px;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.card-features i {
    color: #4caf50;
    margin-right: 10px;
    font-size: 0.9rem;
}

.card-button {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
    margin-top: auto;
}

.card-button:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
}

.card-button:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    
    .hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100dvh;
    overflow: hidden;

}
.hero-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}
    .member-btn {
    background-color: white;
    color: #2e7d32;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
}


}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .card-title {
        font-size: 1.6rem;
    }
    
    
    .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1000px;
    padding: 0 30px;
}
    
    .hero-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.hero-tagline {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
    color: #f0f0f0;
}

}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
       display: flex;
        background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        height: auto;
    }
    
    .hamburger {
        display: flex;
        align-items: center;
        margin-top: 40px;
        padding: 0 15px;
        height: 80px;
        overflow: visible; 
        z-index: 10000;/* Prevents the menu from being cut off */
    }
    
    .nav-links {
        position: fixed; /* Changed from absolute to fixed */
    right: -110%;
    top: 0;          /* Usually better to start at 0 for a full-page overlay */
    width: 100vw;    /* 100% of the viewport width */
    height: 100vh;   /* 100% of the viewport height */
    
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Centers links vertically in the "page" */
    gap: 30px;
    transition: 0.4s ease;
    z-index: 9999;   /* Ensure it sits on top of everything else */
}
    
    .nav-links.active {
        right: 0; /* Slide in */
    }

    /* Optional: Animate burger into an 'X' when active */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}
    .content {
        padding: 20px;
    }
    
    .content h1 {
        font-size: 26px;
    }
    
    
    .hero-tagline {
    font-size: 1rem;
    font-weight: 400;
    width:100%;
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
    color: #f0f0f0;
}
}

/* Header decoration elements */
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
    pointer-events: none;
}

.leaf {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 40px;
    z-index: 0;
}

.leaf-1 {
    top: 10px;
    left: 120px;
    transform: rotate(45deg);
}

.leaf-2 {
    bottom: 15px;
    right: 150px;
    transform: rotate(-20deg);
}

/* Main Footer */
.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    width: 100%;
    padding: 60px 10px 30px;
}

/* Footer Top Section */
.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* Brand Section */
.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 36px;
    color: #2e7d32;
    margin-right: 10px;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #ecf0f1;
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #34495e;
    border-radius: 50%;
    color: #2e7d32;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #2e7d32;
    color: #ecf0f1;
    transform: translateY(-3px);
}

/* Links Section */
.footer-links {
    padding: 0 10px;
}

.links-title {
    color: #ecf0f1;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.links-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #2e7d32;
}

.links-list {
    list-style: none;
}

.links-list li {
    margin-bottom: 12px;
}

.footer-link {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-link:hover {
    color: #4caf50;
    padding-left: 8px;
}

.footer-link::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #4caf50;
}

.footer-link:hover::before {
    left: -10px;
    opacity: 1;
}

/* Contact Section */
.footer-contact {
    padding: 0 10px;
}

.contact-list {
    list-style: none;
    margin-bottom: 25px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #bdc3c7;
}

.contact-list i {
    color: #2e7d32;
    margin-right: 12px;
    font-size: 16px;
    margin-top: 3px;
    width: 20px;
}

.contact-list a.footer-link {
    color: #2e7d32;
    font-weight: 500;
}

/* Newsletter */
.newsletter {
    background-color: #34495e;
    padding: 20px;
    border-radius: 8px;
}

.newsletter-title {
    color: #ecf0f1;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.newsletter-text {
    color: #bdc3c7;
    font-size: 14px;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    background-color: #2c3e50;
    color: #ecf0f1;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: #95a5a6;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #2e7d32;
}

.newsletter-form button {
    background-color: #2e7d32;
    color: white;
    border: none;
    border-radius: 4px;
    width: 45px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    background-color: #4caf50;
    transform: scale(1.05);
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #2e7d32, transparent);
    margin: 30px 0;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.copyright {
    color: #95a5a6;
    font-size: 14px;
}

.legal-links {
    display: flex;
    gap: 25px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #2e7d32;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #4caf50;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-top {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 50px 0 25px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        padding-right: 0;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links, .footer-contact {
        text-align: center;
    }
    
    .links-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .contact-list li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 40px 0 20px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .links-title {
        font-size: 1.2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
        height: 45px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}






/* ───────────────────────────────────────────
   SECTION 3 — LEAN METHODOLOGY
─────────────────────────────────────────── */
.lean-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.lean-content {
  background: #268fdf;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lean-content .section-tag {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.lean-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.lean-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}

.lean-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pillar {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 16px 18px;
}
.pillar .p-icon { font-size: 1.3rem; margin-bottom: 8px; }
.pillar .p-title { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.pillar .p-desc { font-size: 0.75rem; color: rgba(255,255,255,0.75); line-height: 1.5; }

.lean-image {
  background-image: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=900&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
}
.lean-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(38,143,223,0.25) 0%, rgba(0,0,0,0.3) 100%);
}

/* ───────────────────────────────────────────
   SECTION 4 — PPAP & APQP
─────────────────────────────────────────── */
.ppap-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.ppap-image {
  background-image: url('https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?w=900&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
}
.ppap-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 100%);
}

.ppap-content {
  background: #000;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ppap-content .section-tag {
  display: inline-block;
  background: rgba(37,255,153,0.15);
  color: #25FF99;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(37,255,153,0.3);
}

.ppap-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.ppap-content h2 span { color: #25FF99; }

.ppap-content > p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}

.ppap-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ppap-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s;
}
.ppap-card:hover { border-color: rgba(37,255,153,0.4); }

.ppap-card .card-icon {
  width: 40px;
  height: 40px;
  background: rgba(37,255,153,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ppap-card .card-body .c-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}
.ppap-card .card-body .c-title em {
  color: #25FF99;
  font-style: normal;
}
.ppap-card .card-body p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

/* ───────────────────────────────────────────
   SECTION 5 — SPC & CAPABILITY STUDIES
─────────────────────────────────────────── */
.spc-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.spc-content {
  background: #ff934f;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spc-content .section-tag {
  display: inline-block;
  background: rgba(255,255,255,0.22);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.spc-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.spc-content > p {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
  text-align: justify;
}

.spc-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spc-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 12px;
  padding: 18px 20px;
  transition: background 0.2s;
}
.spc-feature:hover { background: rgba(255,255,255,0.22); }

.spc-feature .feat-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.spc-feature .feat-body .feat-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.spc-feature .feat-body .feat-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
}

.spc-image {
  background-image: url('https://images.unsplash.com/photo-1581091226033-d5c48150dbaa?w=900&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center top;
  position: relative;
}
.spc-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,147,79,0.15) 0%, rgba(0,0,0,0.25) 100%);
}

/* ───────────────────────────────────────────
   SECTION 6 — MISSION & VISION
─────────────────────────────────────────── */
.mission-section {
  background: #fff;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mission-tag {
  display: inline-block;
  background: #f0f0f0;
  color: #555;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 48px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 0 48px;
  max-width: 900px;
  width: 100%;
  margin-bottom: 56px;
}

.mission-card { text-align: center; }

.mission-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.mission-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.mission-card p {
  font-size: 0.97rem;
  color: #555;
  line-height: 1.75;
  text-align: justify;
}

.mission-divider {
  width: 1px;
  background: #e0e0e0;
  align-self: stretch;
  margin-top: 10px;
}

.mission-quote {
  max-width: 600px;
  font-size: 1.05rem;
  font-style: italic;
  color: #444;
  line-height: 1.7;
  border-left: 3px solid #111;
  padding-left: 20px;
  text-align: left;
  margin-bottom: 48px;
}

.mission-quote cite {
  display: block;
  margin-top: 8px;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 600;
  color: #888;
}

.btn-mission {
  background: #111;
  color: #fff;
  border: none;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
}
.btn-mission:hover { background: #333; transform: translateY(-2px); }


/* ═══════════════════════════════════════════
   MOBILE RESPONSIVE — hero + content sections
═══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Hero ── */
  .hero-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 24px;
    gap: 0;
    top: 0;
    text-align: center;
  }

  .hero-content-left {
    width: 100%;
    padding-top: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    height: auto;
    grid-template-rows: none;
  }

  .hero-content-right {
    display: none;
  }

  .hero-title {
    font-size: 1.75rem;
    text-align: center;
    letter-spacing: 0.5px;
    white-space: normal;
    line-height: 1.2;
  }

  .hero-tagline {
    font-size: 1rem;
    text-align: center;
    width: 100%;
    margin-bottom: 0;
  }

  .buttons {
    justify-content: center;
  }

  .hero-button {
    width: auto;
    min-width: 200px;
    height: 50px;
    font-size: 1rem;
  }

  .hero-button-demo {
    height: 50px;
    font-size: 0.95rem;
    padding: 5px 20px;
  }

  .social-proof {
    color: #ccc;
  }

  /* ── Lean Section ── */
  .lean-section {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .lean-image {
    display: none;
  }

  .lean-content {
    padding: 48px 24px;
  }

  .lean-pillars {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* ── PPAP Section ── */
  .ppap-section {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .ppap-image {
    display: none;
  }

  .ppap-content {
    padding: 48px 24px;
  }

  /* ── SPC Section ── */
  .spc-section {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .spc-image {
    display: none;
  }

  .spc-content {
    padding: 48px 24px;
  }

  /* ── Mission Section ── */
  .mission-section {
    padding: 60px 24px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 36px 0;
  }

  .mission-divider {
    display: none;
  }

  .mission-quote {
    font-size: 0.95rem;
  }
}


/* ═══════════════════════════════════════════
   LEAD MODAL
═══════════════════════════════════════════ */
.lead-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lead-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lead-modal {
    background: #fff;
    border-radius: 20px;
    display: flex;
    width: 100%;
    max-width: 820px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
    position: relative;
    transform: translateY(40px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lead-modal-overlay.active .lead-modal {
    transform: translateY(0) scale(1);
}

/* Close button */
.lead-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.lead-modal-close:hover { background: rgba(255,255,255,0.3); }

/* Left Panel */
.lead-modal-left {
    background: linear-gradient(155deg, #1b5e20 0%, #2e7d32 55%, #388e3c 100%);
    padding: 44px 36px;
    width: 42%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.lead-modal-left h2 {
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.lead-modal-left p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
    margin-bottom: 28px;
}

.lm-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.lm-features li {
    font-size: 0.88rem;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lm-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.lm-avatars {
    display: flex;
}

.lm-avatars span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #25FF99;
    border: 2px solid rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: #000;
    margin-left: -8px;
}
.lm-avatars span:first-child { margin-left: 0; }

.lm-social-text {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

/* Right Panel */
.lead-modal-right {
    padding: 44px 36px;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.lead-modal-right h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.lm-sub {
    font-size: 0.88rem;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.55;
}

.lm-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.lm-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lm-field label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lm-field input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.92rem;
    color: #111;
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
}

.lm-field input:focus {
    border-color: #2e7d32;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(46,125,50,0.1);
}

.lm-field input::placeholder { color: #bbb; }

.lm-submit {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 4px;
    box-shadow: 0 6px 20px rgba(46,125,50,0.3);
}

.lm-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(46,125,50,0.4);
}

.lm-privacy {
    font-size: 0.75rem;
    color: #aaa;
    text-align: center;
    margin-top: 12px;
}

/* Mobile */
@media (max-width: 640px) {
    .lead-modal {
        flex-direction: column;
        max-height: 92vh;
        border-radius: 16px;
    }

    .lead-modal-left {
        width: 100%;
        padding: 28px 24px 24px;
    }

    .lead-modal-left h2 { font-size: 1.3rem; }
    .lead-modal-left p  { display: none; }
    .lm-features        { display: none; }

    .lead-modal-right {
        padding: 24px 24px 28px;
    }

    .lead-modal-close {
        background: rgba(0,0,0,0.2);
        color: #fff;
    }
}

@media (max-width: 480px) {

  /* ── Hero ── */
  .hero-title {
    font-size: 1.5rem;
    white-space: normal;
  }

  .hero-tagline {
    font-size: 0.95rem;
  }

  .hero-button {
    min-width: 170px;
    font-size: 0.95rem;
    height: 46px;
  }

  /* ── Lean ── */
  .lean-content {
    padding: 40px 18px;
  }

  .lean-pillars {
    grid-template-columns: 1fr;
  }

  /* ── PPAP ── */
  .ppap-content {
    padding: 40px 18px;
  }

  .ppap-card {
    flex-direction: column;
    gap: 10px;
  }

  /* ── SPC ── */
  .spc-content {
    padding: 40px 18px;
  }

  /* ── Mission ── */
  .mission-section {
    padding: 50px 18px;
  }

  .btn-mission {
    width: 100%;
    text-align: center;
  }
}

/* ── Toast Notifications ──────────────────────────────────────────────────── */
.aq-toast { position: fixed; bottom: 28px; right: 28px; z-index: 9999; padding: 16px 24px; border-radius: 12px; font-size: 0.95rem; font-weight: 600; color: #fff; box-shadow: 0 8px 32px rgba(0,0,0,0.18); opacity: 1; transform: translateY(0); transition: opacity 0.4s ease, transform 0.4s ease; max-width: 380px; line-height: 1.5; }
.aq-toast--success { background: #2e7d32; }
.aq-toast--error   { background: #c62828; }
.aq-toast--hide    { opacity: 0; transform: translateY(16px); }