/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    color: #111;
    line-height: 1.6;
}

/* ================= NAVBAR ================= */
.navbar {
    height: 72px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo */
.logo img {
    width: 260px;
}

/* Hamburger */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Desktop nav */
nav {
    margin-left: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 22px;
}

/* 🔥 Remove underline completely */
.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a:active {
    text-decoration: none;
    color: #2aa845;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .logo img {
        width: 120px;
    }

    nav {
        display: none;
        perspective: 1000px; /* 🔥 enables 3D */
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
        z-index: 1100;
    }

    /* 🔥 HALF SCREEN 3D MENU */
    nav.active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 60vh;
        background: #fff;
        z-index: 1000;

        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;

        transform-origin: top;
        animation: drop3D 0.5s ease forwards;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        gap: 22px;
    }

    .nav-links a {
        display: block;
        font-size: 18px;
        padding: 10px 0;

        /* 🔥 subtle hover/tap 3D */
        transition: transform 0.3s ease, letter-spacing 0.3s ease;
    }

    .nav-links a:active {
        transform: scale(0.95) translateZ(-10px);
    }

    /* 🔥 3D DROP ANIMATION */
    @keyframes drop3D {
        0% {
            transform: rotateX(-90deg) translateY(-50px);
            opacity: 0;
        }
        60% {
            transform: rotateX(20deg);
            opacity: 1;
        }
        100% {
            transform: rotateX(0);
        }
    }
}
/* ================= GLOBAL ================= */
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* ================= HERO  SECTION================= */
.hero {
    padding: 140px 20px 120px;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

/* Content */
.hero-content {
    max-width: 850px;
    text-align: center;
}

/* Heading */
.hero-content h2 {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.25;
    color: #111;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

/* Icon styling */
.hero-content h2 i {
    display: block;
    font-size: 34px;
    color: #1b8f3a;
    margin-bottom: 18px;
}

/* Subheading gradient */
.hero-content h2 span {
    display: block;
    font-size: 24px;
    margin-top: 12px;
    font-weight: 600;

    background: linear-gradient(90deg, #1b8f3a, #66bb6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Paragraph */
.hero-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #2b2b2b;
    text-align: justify;
}

/* Subtle divider line */
.hero-content::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #1b8f3a, transparent);
    margin: 40px auto 0;
    border-radius: 2px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .hero {
        padding: 90px 15px;
    }

    .hero-content h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .hero-content h2 span {
        font-size: 18px;
        -webkit-text-fill-color: #1b8f3a;
        background: none;
    }

    .hero-content h2 i {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.8;
        text-align: left;
    }
}

@media (max-width: 480px) {

    .hero-content h2 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }
}


/* ================= WHY CHOOSE US ================= */

.why-choose-us{
    position: relative;
    background-image: url("images/why_choose_us_Background.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px;
    color: #fff;
    
}

/* overlay */

.why-choose-us .overlay{
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background: rgba(0,0,0,0.6);
    z-index:1;
}

/* content */

.why-content{
    position: relative;
    z-index:2;
    max-width:1000px;
    margin:auto;
}

/* heading */

.why-choose-us h2{
    text-align:center;
    font-size:36px;
    margin-bottom:40px;
}

.why-choose-us h2 span{
    color:#3ecf8e;
}

/* list */

.why-list{
    list-style:none;
    padding:0;
}

.why-list li{
    display:flex;
    gap:20px;
    margin-bottom:25px;
    align-items:flex-start;
}

.why-list i{
    font-size:26px;
    color:#3ecf8e;
}

.why-list h4{
    margin:0;
    font-size:20px;
}

.why-list p{
    margin:5px 0 0;
    font-size:16px;
    line-height:1.6;
}

/* buttons */

.buttons{
    text-align:center;
    margin-top:40px;
}

.btn-primary{
    background:#3ecf8e;
    padding:12px 25px;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
    margin-right:15px;
}

.btn-outline{
    border:2px solid #fff;
    padding:12px 25px;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
}

/* ================= MOBILE ================= */

@media (max-width:768px){

.why-choose-us{
    padding:70px 20px;
}

.why-choose-us h2{
    font-size:28px;
}

.why-list li{
    flex-direction:column;
    gap:10px;
}

.why-list i{
    font-size:22px;
}

.why-list h4{
    font-size:18px;
}

.why-list p{
    font-size:14px;
}

.buttons a{
    display:block;
    margin:10px auto;
    width:200px;
}

}

/* ================= HERO BUTTONS ================= */
.buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-primary {
    background: #2aa845;
    color: #fff;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline {
    border: 2px solid #2aa845;
    color: #2aa845;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
}

/* ================= VALUE SECTION ================= */

.value-section{
    background:#f8fafc;
    padding:100px 20px;
    text-align:center;
}

.value-container{
    max-width:1000px;
    margin:auto;
}

.icon-circle{
    width:70px;
    height:70px;
    background:#22c55e;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin:auto;
    margin-bottom:25px;
}

.value-section h2{
    font-size:32px;
    line-height:1.4;
    margin-bottom:20px;
}

.value-desc{
    font-size:17px;
    color:#555;
    margin-bottom:40px;
}

/* stats */

.stats{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.stat-card{
    background:#fff;
    padding:25px 40px;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.stat-card h3{
    font-size:28px;
    margin-bottom:5px;
}

.purple{color:#8b5cf6;}
.blue{color:#3b82f6;}
.green{color:#22c55e;}

/* button */

.learn-btn{
    display:inline-block;
    margin-top:40px;
    padding:12px 28px;
    background:#22c55e;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
}



/* ================= WHO WE SERVE ================= */

.who-we-serve{
    padding:100px 20px;
    background:#ffffff;
    text-align:center;
}

.serve-container{
    max-width:1100px;
    margin:auto;
}

.who-we-serve h2{
    font-size:32px;
    margin-bottom:15px;
}

.who-we-serve span{
    color:#22c55e;
}

.who-desc{
    font-size:16px;
    color:#666;
    margin-bottom:40px;
}

/* slider */

.serve-slider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
}

.serve-viewport{
    overflow:hidden;
    width:100%;
}

.serve-track{
    display:flex;
    gap:20px;
    transition:0.4s;
}

/* card */

.serve-card{
    background:#f8fafc;
    padding:30px;
    border-radius:10px;
    min-width:300px;
    text-align:left;
    box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

.serve-icon{
    font-size:26px;
    color:#22c55e;
    margin-bottom:15px;
}

.serve-tag{
    font-size:12px;
    color:#999;
    letter-spacing:1px;
}

.serve-card h3{
    margin:8px 0;
}

.arrow{
    background:#22c55e;
    border:none;
    color:#fff;
    width:40px;
    height:40px;
    border-radius:50%;
    cursor:pointer;
}

/* indicator */

.slider-indicator{
    margin-top:20px;
    color:#777;
}

/* partner button */

.partner-btn{
    display:inline-block;
    margin-top:30px;
    padding:12px 28px;
    background:#22c55e;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
}



/* ================= FOOTER ================= */

.footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:20px;
}



/* ================= MOBILE ================= */

@media (max-width:768px){

.value-section{
padding:70px 20px;
}

.value-section h2{
font-size:24px;
}

.value-desc{
font-size:15px;
}

.stats{
flex-direction:column;
align-items:center;
}

.stat-card{
width:80%;
}

.who-we-serve{
padding:70px 20px;
}

.who-we-serve h2{
font-size:24px;
}

.serve-slider{
flex-direction:column;
}

.arrow{
display:none;
}

.serve-card{
min-width:100%;
}

}

/* ================= FAQ SECTION ================= */
.faq-section {
    padding: 80px 20px;
    background: #f0fdf4; /* light green */
}

.faq-container {
    max-width: 900px;
    margin: auto;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.faq-title span {
    color: #16a34a; /* green */
}

/* FAQ BOX */
.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ITEM */
.faq-item {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #dcfce7;
    transition: all 0.3s ease;
}

/* QUESTION */
.faq-question {
    width: 100%;
    padding: 20px;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

/* LEFT ICON */
.faq-question i {
    color: #16a34a;
    margin-right: 10px;
}

/* PLUS ICON */
.faq-question .icon::before {
    content: "+";
    font-size: 22px;
    color: #16a34a;
    font-weight: bold;
}

/* ACTIVE STATE */
.faq-item.active .faq-question .icon::before {
    content: "−";
}

/* ANSWER (FIXED ISSUE HERE) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.4s ease;
}

/* IMPORTANT FIX */
.faq-item.active .faq-answer {
    max-height: 300px; /* increased so content shows */
}

/* TEXT */
.faq-answer p {
    padding: 10px 0 20px;
    color: #444;
    line-height: 1.6;
}

/* HOVER */
.faq-item:hover {
    transform: translateY(-2px);
    border-color: #16a34a;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .faq-section {
        padding: 50px 15px;
    }

    .faq-title {
        font-size: 1.8rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 16px;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}