@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Sora', sans-serif;
    color: #000;
}
h1, h2, h3, h4, h5, h6, p, ul, li, a, input, button, label {
    font-family: 'Sora', sans-serif;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    font-style: normal;
}
p{
    font-size: 16px;
}
.full-container{
    width: 100%;
}
.container {
    max-width: 1200px;
    margin: 0px auto;
    padding: 0px 15px;
    width: 100%;
}
.header-bg{
    padding: 20px 0px;
    width: 100%;
    position: relative;
    @media (max-width: 767px){
        padding: 15px 0px;
        box-shadow: 0 4px 4px 0 rgba(207, 207, 207, 0.25);
    }
    .main-header{
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 1;
        @media (max-width: 991px){
            justify-content: center;
            gap: 15px;
        }
        .logo a{
            display: flex;
        }
        .header-right{
            margin-left: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap:30px;
            @media (max-width: 767px){
                gap:15px;
            }
            ul{
                display: flex;
                gap: 30px;
                @media (max-width: 767px){
                    display: none;
                }
                li{
                    a{
                        font-size: 14px;
                        color: #000;
                        transition: all 0.3s ease;
                        padding: 12px 0px;
                        &:hover{
                            color: #008558;
                        }
                    }
                }
                li.active a{
                    color: #008558;
                    font-weight: 700;
                }
            }
            .header-buttons{
                display: flex;
                gap:10px;
                a.btn{
                    background: #008558;
                    color: #fff;
                    padding: 7px 15px;
                    border-radius: 8px;
                    font-size: 14px;
                    font-weight: 500;
                    display: flex;
                    align-items: center;
                    transition: background 0.3s ease;
                    &:hover{
                        background: #014e25;
                        transition: 0.3s;
                    }
                    @media (max-width: 767px){
                        padding: 6px 15px;
                    }
                }
                a.signin{
                    background: transparent;
                    color: #008558;
                    border: 2px solid #008558;
                    &:hover{
                        background: #008558;
                        color: #fff;
                    }
                }
            }
            .myaccount-dropdown {
                display: flex;
                align-items: center;
                gap: 7px;
                position: relative;
                &:hover {
                    ul {
                        display: block !important;
                    }
                }
                img {
                    width: 15px;
                    position: relative;
                    top: 1px;
                }
                a {
                    font-size: 14px;
                    color: #000;
                    width: 100%;
                    display: block;
                    padding: 12px 0px;
                    span {
                        margin-left: 3px;
                        display: inline-block;
                        width: 7px;
                        height: 7px;
                        border-top: 1px solid #3D3D3D;
                        border-right: 1px solid #3D3D3D;
                        transform: rotate(135deg);
                        transition: all 0.3s ease;
                        top: -3px;
                        margin-left: 6px;
                        position: relative;
                    }
                }
                ul {
                    flex-direction: column;
                    position: absolute;
                    top: 45px;
                    left: 0;
                    background: #fff;
                    padding: 0;
                    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.10);
                    border-radius: 4px;
                    z-index: 999;
                    width: 160px;
                    gap: 0 !important;
                    display: none !important;
                    li {
                        border-bottom: 1px solid #ebe7e7;
                        padding: 10px !important;
                        a{
                            padding: 0px !important;
                        }
                        button {
                            border: 0;
                            background: transparent;
                            cursor: pointer;
                            width: 100%;
                            text-align: left;
                            transition: all 0.3s;
                            &:hover {
                                color: #008558;
                                transition: all 0.3s;
                                outline: none;
                            }
                        }
                    }
                }
            }

        }
    }
}
.hero-bg{
    background: #E9FFD6;
    padding: 30px 0px 30px;
    text-align: center;
    color: #fff;
    border-radius: 120px 8px 120px 8px;
    max-width: 1170px;
    margin: 0px auto 0px;
    position: relative;
    overflow: hidden;
    @media (max-width: 991px){
        border-radius: 0px;
        padding: 20px 0px 20px;
    }
    &::before{
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 63%;
        height: 5px;
        background: #008558;
        z-index:0;
        @media (max-width: 991px){
            width: 100%;
        }
    }
    .container{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        @media (max-width: 767px){
            flex-direction: column;
            text-align: center;
            gap: 10px;
        }
    }
    .hero-content{
        max-width: 580px;
        padding: 0px 30px;
        text-align: left;
        @media (max-width: 991px){
            max-width: fit-content;
            padding: 0px;
        }
        h1{
            font-size: 52px;
            margin-bottom: 20px;
            text-align: left;
            color: #000626;
            line-height: 63px;
            span{
                color: #008558;
            }
            @media (min-width: 768px) and (max-width: 991px){
                font-size: 32px;
                line-height: 1.4;
                margin-bottom: 10px;
            }
            @media (max-width: 767px){
                font-size: 8vw;
                line-height: 1.3;
                margin-bottom: 10px;
                text-align: center;
            }
        }
        p{
            font-size: 24px;
            margin-bottom: 15px;
            text-align: left;
            color: #000626;
            font-weight: 400;
            line-height: 36px;
            font-family: "Inter", sans-serif;
            @media (max-width: 991px){
                font-size: 16px;
                margin-bottom: 10px;
                line-height: 26px;
                text-align: left;
            }
            @media (max-width: 767px){
                text-align: center;
            }
        }
        a.btn{
            background: #008558;
            color: #fff;
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            transition: background 0.3s ease;
            margin-bottom: 10px;
            display: inline-block;
            &:hover{
                background: #014e25;
                transition: 0.3s;
            }
            @media (max-width: 767px){
                margin: 0px auto 10px;
                display: table;
            }
        }
    }
    .hero-image{
        position: relative;
        margin-bottom: -50px;
        z-index: 0;
        img{
            max-width: 100%;
            height: auto;
        }
    }
}
.discover-section{
    padding: 60px 0px;
    .container{
        max-width: 880px;
        .discover-items{
            display: flex;
            flex-direction: column;
            gap: 3rem;
            .item{
                display: flex;
                align-items: center;
                gap: 3rem;
                @media (max-width: 767px){
                    flex-direction: column-reverse;
                    gap: 1rem;
                }
                &:last-child{
                    @media (max-width: 767px){
                        flex-direction: column;
                    }
                }
                .image{
                    flex-shrink: 0;
                    img{
                        max-width: 100%;
                        height: auto;
                    }
                }
                .content{
                    padding: 0px;
                    h3{
                        font-size: 30px;
                        margin-bottom: 10px;
                        color: #000626;
                        text-align: center;
                        @media (max-width: 767px){
                            font-size: 6vw;
                        }
                    }
                    p{
                        font-size: 18px;
                        color: #343741;
                        line-height: 28px;
                        font-family: "Inter", sans-serif;
                        text-align: center;
                        font-weight: 400;
                    }
                }
            }
        }
    }
}
.stats-section{
    padding: 0px 0px;
    margin-bottom: 60px;
    .container{
        .stats-items{
            display: grid;
            grid-template-columns: 2.3fr 0.75fr 0.75fr;
            gap: 30px;
            align-items: stretch;
            @media (min-width: 768px) and (max-width: 1024px){
                gap: 15px;
            }
            @media (max-width: 767px){
                gap: 15px;
            }
            .info-card,
            .stat-card {
                border-radius: 16px;
                padding: 20px;
                min-height: 160px;
            }
            .info-card {
                background: #FFEAE1;
                display: flex;
                align-items: center;
                padding: 20px 30px;
                border-radius: 45px 16px 45px 16px;
                @media (max-width: 767px){
                    grid-column: 1 / -1;
                    border-radius: 16px;
                    padding: 20px 20px;
                }
                h2{
                    font-size: 30px;
                    line-height: 1.30;
                    font-weight: 600;
                    color: #000626;
                    @media (min-width: 768px) and (max-width: 1024px){
                        font-size: 24px;
                        line-height: 1.30;
                    }
                    @media (max-width: 767px){
                        font-size: 6vw;
                        line-height: 1.4;
                    }
                }
            }
            .stat-card {
                background: #FFDECF;
                display: flex;
                flex-direction: column;
                justify-content: center;
                .number {
                    font-size: 52px;
                    font-weight: 700;
                    color: #000626;
                    margin-bottom: 0px;
                    @media (min-width: 768px) and (max-width: 1024px){
                        font-size: 24px;
                    }
                    @media (max-width: 767px){
                        font-size: 6vw;
                    }
                }
                .label {
                    font-size: 16px;
                    color: #000933;
                    line-height: 1.4;
                    font-family: "Inter", sans-serif;
                }
            }
            .highlight {
                background: #FFCAB2;
            }
        }
    }
}
.howitworks-section{
    margin-bottom: 60px;
    .container{
        .inner{
            background: #ECFFFD;
            border-radius: 16px 16px 120px 16px;
            padding: 60px 30px;
            @media (max-width: 767px){
                padding: 30px 15px;
            }
            h2{
                font-size: 36px;
                margin-bottom: 40px;
                color: #000626;
                @media (max-width: 767px){
                    font-size: 6vw;
                }
            }
            .steps{
                display: flex;
                flex-direction: row;
                gap: 30px;
                @media (max-width: 767px){
                    flex-direction: column;
                }
                .step{
                    .number{
                        font-size: 26px;
                        font-weight: 500;
                        color: #000933;
                        width: 52px;
                        height: 52px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border-radius: 50%;
                        margin-bottom: 20px;
                        background: #fff;
                        border: 2px solid #ccc;
                        font-family: 'Sora', sans-serif;
                        @media (max-width: 767px){
                            width: 40px;
                            height: 40px;
                            font-size: 18px;
                        }
                    }
                    h3{
                        font-size: 24px;
                        margin: 10px 0;
                        color: #000626;
                        font-weight: 600;
                        @media (max-width: 991px){
                            font-size: 20px;
                        }
                    }
                    p{
                        font-size: 16px;
                        color: #000933;
                        line-height: 1.6;
                        font-family: "Inter", sans-serif;
                        font-weight: 400;
                    }
                }
            }
            a.btn{
                background: #008558;
                color: #fff;
                padding: 10px 20px;
                border-radius: 8px;
                font-size: 16px;
                font-weight: 500;
                display: inline-block;
                margin-top: 30px;
                transition: background 0.3s ease;
                &:hover{
                    background: #014e25;
                    transition: 0.3s;
                }
            }
        }
    }
}
.whatdiscover-section{
    margin-bottom: 60px;
    .container{
        .inner{
            h2{
                font-size: 36px;
                margin-bottom: 30px;
                color: #000626;
                text-align: center;
                @media (max-width: 767px){
                    font-size: 6vw;
                }
            }
            .items{
                display: flex;
                flex-direction: row;
                gap: 15px;
                @media (min-width: 768px) and (max-width: 1024px){
                    gap: 10px;
                }
                @media (max-width: 767px){
                    flex-wrap: wrap;
                }
                .item{
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    text-align: center;
                    padding:30px 20px;
                    border-radius: 8px 25px 8px 25px;
                    background: #E9E9FF;
                    @media (min-width: 768px) and (max-width: 1024px){
                        padding:15px;
                        border-radius: 16px;
                    }
                    .image{
                        width: 48px;
                        height: 48px;
                        background: #008558;
                        color: #fff;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border-radius: 50%;
                        font-size: 24px;
                        margin-bottom: 20px;
                    }
                    h3{
                        font-size: 15px;
                        margin-bottom: 15px;
                        color: #000626;
                        font-weight: 600;
                        @media (max-width: 767px){
                            font-size: 20px;
                        }
                    }
                    p{
                        font-size: 14px;
                        color: #000933;
                        line-height: 1.6;
                        font-family: "Inter", sans-serif;
                        font-weight: 400;
                    }
                }
            }
        }
    }
}
footer{
    .footer-content{
        border-top: 1px solid #ccc;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: row;
        width: 100%;
        padding-top: 40px;
        flex-wrap: wrap;
        @media (max-width: 767px){
            gap:30px;
        }
        .logo{
            @media (max-width: 767px){
                flex: 1 0 100%; 
            }
        }
        .footer-links{
            display: flex;
            gap: 20px;
            ul{
                li{
                    text-align: left;
                    margin-bottom: 10px;
                    a{
                        font-size: 14px;
                        color: #000933;
                        transition: color 0.3s ease;
                        &:hover{
                            color: #008558;
                        }
                    }   
                }
            }
        }
    }
    .footer-bottom{
        margin-top: 20px;
        text-align: center;
        border-top: 1px solid #ccc;
        padding: 20px 0px;
        p{
            font-size: 12px;
            color: #000933;
            line-height: 16px;
            &:last-child{
                color: #525252;
                margin-top: 10px;
                font-size: 10px;
            }
        }
    }
}
.inner-banner{
    background: #DBE9FF;
    padding: 60px 0px 60px;
    text-align: center;
    color: #fff;
    border-radius: 120px 8px 120px 8px;
    max-width: 1170px;
    margin: 0px auto 0px;
    min-height: 380px;
    display: flex;
    align-items: center;
    @media (max-width: 991px){
        border-radius: 0px;
        padding: 20px 0px 20px;
        min-height: 280px;
    }
    .hero-content{
        max-width: 920px;
        margin: auto;
        padding: 0px 30px;
        @media (max-width: 767px){
            padding: 0px;
        }
        h1{
            font-size: 48px;
            margin-bottom: 20px;
            text-align: center;
            color: #000626;
            line-height: 63px;
            @media (min-width: 768px) and (max-width: 1024px){
                font-size: 32px;
                line-height: 1.3;
            }
            span{
                color: #008558;
            }
            @media (max-width: 767px){
                font-size: 8vw;
                line-height: 1.4;
                margin-bottom: 10px;
                text-align: center;
            }
        }
        p{
            font-size: 18px;
            text-align: center;
            color: #000626;
            font-weight: 400;
            line-height: 1.6;
            font-family: "Inter", sans-serif;
            @media (max-width: 767px){
                font-size: 16px;
                line-height: 26px;
                text-align: center;
            }
        }
    }
}

.mission-section{
    padding: 60px 0px;
    .container{
        .mission-items{
            display: flex;
            flex-direction: column;
            gap: 30px;
            &:nth-child(even){
                margin-top: 60px;
                .item{
                    @media (max-width: 767px){
                        flex-direction: column-reverse;
                    }
                }
            }
            .item{
                display: flex;
                align-items: center;
                gap: 30px;
                @media (max-width: 767px){
                    flex-direction: column;
                }
                .image{
                    flex-shrink: 0;
                    img{
                        max-width: 100%;
                        height: auto;
                    }
                }
                .content{
                    padding: 0 15px;
                    @media (max-width: 767px){
                        padding: 0px;
                    }
                    .highlight{
                        display: inline-block;
                        color: #008558;
                        font-size: 18px;
                        font-weight: 600;
                        margin-bottom: 15px;
                    }
                    h3{
                        font-size: 30px;
                        margin-bottom: 15px;
                        color: #000626;
                        @media (max-width: 767px){
                            font-size: 6vw;
                        }
                    }
                    p{
                        font-size: 18px;
                        color: #343741;
                        line-height: 28px;
                        font-family: "Inter", sans-serif;
                        font-weight: 400;
                    }
                    ul{
                        li{
                            font-size: 18px;
                            color: #343741;
                            line-height: 28px;
                            font-family: "Inter", sans-serif;
                            font-weight: 400;
                            margin-bottom: 20px;
                        }
                    }
                }
            }
        }
    }
}
.outstanding-section{
    margin-bottom: 30px;
    .container{
        .inner{
            background: #FFECEC;
            border-radius: 120px 16px 120px 16px;
            padding: 60px 40px;
            @media (max-width: 991px){
                border-radius: 16px;
                padding: 30px 15px;
            }
            h5{
                font-size: 18px;
                color: #000933;
                font-weight: 600;
                text-align: center;
                margin-bottom: 15px;
            }
            h2{
                font-size: 32px;
                margin-bottom: 60px;
                color: #000626;
                text-align: center;
                @media (max-width: 767px){
                    font-size: 6vw;
                    margin-bottom: 30px;
                }
            }
            .items{
                display: flex;
                flex-direction: row;
                gap: 30px;
                @media (min-width: 768px) and (max-width: 991px){
                    gap: 15px;
                }
                @media (max-width: 767px){
                    flex-direction: column;
                }
                .item{
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    text-align: center;
                    gap: 15px;
                    .image{
                        width: 48px;
                        height: 48px;
                        background: #008558;
                        color: #fff;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border-radius: 50%;
                        font-size: 24px;
                        margin-bottom: 10px;
                    }
                    h3{
                        font-size: 24px;
                        margin-bottom: 15px;
                        color: #000626;
                        font-weight: 400;
                        @media (max-width: 991px){
                            font-size: 20px;
                        }
                    }
                    p{
                        font-size: 14px;
                        color: #000933;
                        line-height: 1.6;
                        font-family: "Inter", sans-serif;
                        font-weight: 400;
                    }
                }
            }
        }
    }
}
.cta-section{
    margin-bottom: 60px;
    @media (max-width: 767px){
        padding: 0px 15px;
    }
    .container{
        background: #F5F6FA;
        padding: 60px 0px;
        border-radius: 16px;
        @media (max-width: 767px){
            padding: 30px 15px;
        }
        .cta-content{
            max-width: 920px;
            margin: auto;
            h2{
                font-size: 32px;
                margin-bottom: 30px;
                color: #000626;
                text-align: center;
                @media (max-width: 767px){
                    font-size: 6vw;
                }
            }
            p{
                font-size: 16px;
                text-align: center;
                color: #000626;
                font-weight: 400;
                line-height: 1.6;
                font-family: "Inter", sans-serif;
                margin-bottom: 30px;
            }
            a.btn{
                background: #008558;
                color: #fff;
                padding: 10px 20px;
                border-radius: 8px;
                font-size: 16px;
                font-weight: 500;
                display: flex;
                align-items: center;
                justify-content: center;
                max-width: 245px;
                transition: background 0.3s ease;
                margin: 0px auto;
                &:hover{
                    background: #014e25;
                    transition: 0.3s;
                }
            }
        }
    }
}
.journey-section{
    margin:80px 0px 60px;
    .container{
        .inner{
            h5{
                font-size: 18px;
                color: #000933;
                font-weight: 600;
                text-align: center;
                margin-bottom: 15px;
            }
            h2{
                font-size: 32px;
                margin-bottom: 60px;
                color: #000626;
                text-align: center;
                @media (max-width: 767px){
                    font-size: 6vw;
                }
            }
            .items{
                display: flex;
                flex-direction: row;
                gap: 60px;
                @media (min-width: 768px) and (max-width: 991px){
                    gap: 15px;
                }
                @media (max-width: 767px){
                    flex-direction: column;
                    gap: 30px;
                }
                .item{
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    text-align: center;
                    gap: 15px;
                    .image{
                        width: 48px;
                        height: 48px;
                        background: #FFBC89;
                        color: #fff;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border-radius: 50%;
                        font-size: 24px;
                        margin-bottom: 10px;
                    }
                    h3{
                        font-size: 24px;
                        margin-bottom: 15px;
                        color: #000626;
                        font-weight: 400;
                        @media (max-width: 991px){
                            font-size: 20px;
                        }
                    }
                    p{
                        font-size: 14px;
                        color: #000933;
                        line-height: 1.6;
                        font-family: "Inter", sans-serif;
                        font-weight: 400;
                    }
                }
            }
        }
    }
}

.plan-section{
    margin-top: 30px;
    .pricing-section{
        background: #FFF6DA;
        border-radius: 65px 8px 65px 8px;
        padding: 30px;
        @media (max-width: 767px){
            border-radius: 16px;
            padding: 30px;
        }
        .tabs-wrapper{
            width:350px;
            margin:0 auto;
            background:#efe5c8;
            border-radius:12px;
            padding:10px;
            display:flex;
            gap:10px;
        }
        .tab-btn{
            flex:1;
            border:none;
            background:transparent;
            height:48px;
            border-radius:12px;
            cursor:pointer;
            font-size:16px;
            font-weight:600;
            color:#000933;
            transition:.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            img{
                filter: brightness(0%);
            }
        }
        .tab-btn.active{
            background:#02083c;
            color:#fff;
            img{
                filter: contrast(0) brightness(100);
            }
        }
        .subtitle{
            text-align:center;
            margin:30px 0px 60px;
            font-size:15px;
            font-weight:600;
            color:#000933;
        }
        /* Content */
        .tab-content{
            display:none;
        }
        .tab-content.active{
            display:block;
        }
        .pricing-grid{
            display:grid;
            grid-template-columns:1fr 1px 1fr;
            gap:40px;
            align-items:start;
        }
        .divider{
            background:#1e2345;
            width:1px;
            min-height:550px;
        }
        .plan-card{
            text-align:center;
        }
        .plan-card h2{
            font-size:32px;
            font-weight:800;
            color:#02083c;
            margin-bottom:10px;
            @media (max-width: 767px){
                font-size: 6vw;
            }
        }
        .price{
            font-size:16px;
            color:#02083c;
            margin-bottom:40px;
        }
        .plan-card ul{
            list-style:none;
            text-align:left;
            max-width:650px;
            margin:0 auto 50px;
            min-height: 280px;
            @media (max-width: 991px){
                max-width:unset;
                min-height: auto;
            }
        }
        .plan-card ul li{
            position:relative;
            padding-left:20px;
            margin-bottom:24px;
            line-height:1.6;
            color:#48506b;
            font-size:16px;
        }
        .plan-card ul li::before{
            content:"✓";
            position:absolute;
            left:0;
            top:0;
            color:#00843d;
            font-family: 'Sora', sans-serif;
            font-weight:400;
            font-size: 16px;
        }
        .btn{
            display:inline-flex;
            align-items:center;
            justify-content:center;
            min-width:165px;
            height:56px;
            border-radius:8px;
            text-decoration:none;
            font-size:16px;
            font-weight:700;
            transition:.3s;
        }
        .primary-btn{
            background:#00843d;
            color:#fff;
        }
        .primary-btn:hover{
            background:#006e33;
        }
        .secondary-btn{
            border:1px solid #00843d;
            color:#00843d;
            background:transparent;
        }
        .secondary-btn:hover{
            background:#00843d;
            color:#fff;
        }
        @media(max-width:991px){
            .plan-card ul li{
                margin-bottom:15px;
            }
            .pricing-section{
                padding:40px 25px;
                border-radius:30px;
            }
            .pricing-grid{
                grid-template-columns:1fr;
                gap:60px;
            }
            .divider{
                display:none;
            }
            .tabs-wrapper{
                width:100%;
                max-width:350px;
            }
            .price{
                margin-bottom:20px;
            }
        }
    }
}

.accordion-section{
    margin: 60px 0px 100px;
    .accordion {
        .faq-item {
            border-bottom: 1px solid #d8d8d8;
            padding-bottom: 15px;
            margin-bottom: 20px;
            position: relative;
            &:last-child{
                border-bottom: 0px;
            }
            @media (max-width:767px){
                padding-bottom: 15px;
                margin-bottom: 15px;
            }
            .faq-question {
                font-size: 18px;
                display: flex;
                justify-content: space-between;
                margin-bottom: 10px;
                transition: all 0.3s;
                cursor: pointer;
                padding-right: 30px;
                &:hover {
                    transition: all 0.3s;
                }
                .arrow {
                    position: absolute;
                    right: 10px;
                    top: 0;
                    cursor: pointer;
                    &::after{
                        content: '+';
                    }
                }
            }
            .faq-answer {
                display: none;
                p{
                    font-size: 14px;
                    line-height: 1.7;
                }
            }
        }
        .faq-item.active {
            .faq-question {
                .arrow {
                    &::after{
                        content: '_';
                        position: relative;
                        top: -9px;
                    }
                }
            }
        }
    }
}
.contactus-section {
    margin-bottom: 100px;
    .container {
        .inner {
            display: flex;
            column-gap: 10rem;
            margin-top: 5rem;
            @media (min-width: 768px) and (max-width: 991px){
                gap: 25px;
            }
            @media (max-width:767px){
               margin-top: 2rem;
               flex-direction: column;
               gap: 30px;
            }
            h2 {
                font-size: 30px;
                margin-bottom: 20px;
                @media (max-width:767px){
                    font-size: 6vw;
                }
            }
            .address-section {
                p {
                    font-size: 16px;
                }
                h5 {
                    margin: 40px 0 15px;
                }
                .info {
                    margin-top: 30px;
                    h4 {
                        margin-bottom: 10px;
                        display: flex;
                        align-items: center;
                        gap: 7px;
                    }
                    p {
                        font-size: 16px;
                        font-weight: 400;
                        line-height: 1.7;
                        padding-left: 30px;
                    }
                }
            }
            .form {
                width: 100%;
                form {
                    .field {
                        margin-bottom: 20px;
                        input,
                        textarea {
                            width: 100%;
                            height: 50px;
                            border: 1px solid #ccc;
                            border-radius: 8px;
                            padding: 15px;
                            font-size: 14px;
                            font-family: 'Sora', sans-serif;
                        }
                        textarea {
                            height: 160px;
                        }
                    }
                    button {
                        width: 100%;
                        height: 50px;
                        border: 0 solid #ccc;
                        border-radius: 8px;
                        padding: 15px;
                        background: #008558;
                        color: #fff;
                        font-size: 18px;
                        cursor: pointer;
                        &:hover{
                            background: #014e25;
                            transition: 0.3s;
                        }
                    }
                }
            }
        }
    }
}
.sign-section {
    margin-bottom: 100px;
    .container {
        .inner {
            margin: 5rem auto auto;
            max-width: 500px;
            @media (max-width:767px){
               margin-top: 2rem;
            }
            h2 {
                font-size: 30px;
                margin-bottom: 20px;
                @media (max-width:767px){
                    font-size: 30px;
                }
                span{
                    color: #008558;
                }
            }
            .form {
                width: 100%;
                p{
                    margin-bottom: 20px;
                    line-height: 1.7;
                    font-size: 14px;
                    a{
                        color: #000;
                        text-decoration: underline;
                        &:hover{
                            text-decoration: none;
                        }
                    }
                }
                form {
                    .field {
                        margin-bottom: 20px;
                        input,
                        textarea {
                            width: 100%;
                            height: 50px;
                            border: 1px solid #ccc;
                            border-radius: 8px;
                            padding: 15px;
                            font-size: 14px;
                            font-family: 'Sora', sans-serif;
                        }
                        textarea {
                            height: 160px;
                        }
                    }
                    .field-check {
                        display: flex;
                        justify-content: space-between;
                        margin-bottom: 40px;
                        .form-group-checkbox {
                            display: flex;
                            gap: 7px;
                            label {
                                font-size: 16px;
                            }
                        }
                        a {
                            font-size: 16px;
                            color: #000633;
                            &:hover {
                                text-decoration: underline;
                            }
                        }
                    }
                    button {
                        width: 100%;
                        height: 50px;
                        border: 0 solid #ccc;
                        border-radius: 8px;
                        padding: 15px;
                        background: #008558;
                        color: #fff;
                        font-size: 18px;
                        cursor: pointer;
                        &:hover{
                            background: #014e25;
                            transition: 0.3s;
                        }
                    }
                }
                ul{
                    margin-top: 20px;
                    li{
                        margin-bottom: 20px;
                        line-height: 1.7;
                        font-size: 14px;
                        display: flex;
                        align-items: flex-start;
                        gap: 7px;
                    }
                }
            }
        }
    }
}
.content-section{
    margin: 50px 0px 100px;
    .inner{
        p{
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 15px;
        }
    }
}
.congratulations-section {
    padding: 30px 0 50px;
    .congratulations-inner {
        h1 {
            color: #008558;
            text-align: center;
            font-size: 29px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        p {
            color: #000;
            text-align: center;
            font-size: 16px;
            font-weight: 400;
        }
        .loader-wrap {
            display: flex;
            justify-content: center;
            margin: 80px 0;
            .loader {
                position: relative;
                width: 280px;
                height: 280px;
                border-radius: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                background: #FFF;
                box-shadow: 0 0 80px 10px rgba(88, 156, 72, 0.30);
            }
            .ring {
                position: absolute;
                inset: 14px;
                border-radius: 50%;
                background: conic-gradient(#ff4d00 0deg, #e5e7eb 0deg);
            }
            .inner {
                position: absolute;
                inset: 22px;
                background: #fff;
                border-radius: 50%;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }
            .dot {
                width: 24px;
                height: 24px;
                border: 2px solid #ccc;
                border-radius: 50%;
                margin-bottom: 12px;
                position: relative;
            }
            .dot::after {
                content: "";
                position: absolute;
                inset: 4px;
                border-radius: 50%;
                background: #16a34a;
                animation: pulse 1.2s ease-in-out infinite;
            }
            .text strong {
                display: block;
                font-size: 19px;
                text-align: center;
                font-weight: 700;
                margin-bottom: 8px;
            }
            .text span.percent {
                color: #74828D;
                font-size: 13px;
                text-align: center;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                font-style: italic;
                font-weight: 400;
                span {
                    font-size: 13px;
                }
            }
        }

    }
}
@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0.4;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.5);
        opacity: 0.4;
    }
}
@media (max-width: 767px){
    .desktoponly{
        display: none !important;
    }
}
@media (min-width: 768px) and (max-width: 991px){
    .tabremove{
        display: none !important;
    }
}
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    @media (min-width: 992px){
        display: none;
    }
}
.hamburger span {
    display: block;
    width: 22px;
    height: 3px;
    background-color: #000933;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.mobile-menu {
    position: absolute;
    width: 100%;
    left: 0;
    background: #f7f7f7;
    padding: 20px 20px;
    z-index: 99;
    display: none;
    height: 100vh;
    top: 0px;
    .close{
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
        font-size: 22px;
    }
    ul {
        width: 100%;
        list-style-type: none;
        margin-top: 30px;
        li {
            a {
                color: #000;
                text-align: left;
                width: 100%;
                display: block;
                text-decoration: none;
                padding: 15px 0px;
                border-bottom: 1px solid #cccbcb;
                transition: transform 0.3s ease;
                &:hover{
                    color: #008558;
                    transition: transform 0.3s ease;
                }
            }
            button {
                border: 0;
                background: transparent;
                cursor: pointer;
                width: 100%;
                text-align: left;
                transition: all 0.3s;
                font-size: 16px;
                color: #000;
                padding: 15px 0px;
                &:hover {
                    color: #008558;
                    transition: all 0.3s;
                    outline: none;
                }
            }
        }
        li.active a{
            color: #008558;
            font-weight: 700;
        }
    }
}
.guideline-section {
    .inner {
        margin: 5rem auto auto;
        max-width: 500px;
        text-align: center;
        img {
            margin-bottom: 20px;
        }
        h2 {
            font-size: 36px;
            margin-bottom: 30px;
        }
        ul li {
            position: relative;
            padding-left: 20px;
            margin: auto auto 20px;
            line-height: 1.6;
            color: #48506b;
            font-size: 18px;
            text-align: left;
            max-width: 400px;
            &:before {
                content: "✓";
                position: absolute;
                left: 0;
                top: 0;
                color: #00843d;
                font-family: 'Sora', sans-serif;
                font-weight: 400;
                font-size: 16px;
            }
        }
        a.btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 400px;
            height: 60px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 700;
            transition: 0.3s;
            background: #00843d;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 20px;
            &:hover{
                background: #014e25;
                transition: 0.3s;
            }
        }
    }
}
.quizze-section{
    background: #f5f6fa;
    .inner{
        max-width: 685px;
        padding:2rem 0px 70px;
        margin: auto;
        .message{
            text-align: center;
            font-weight: 400;
            font-size: 12px;
            margin-top: 20px;
        }
        .nextbtn{
            width: 100%;
            height: 50px;
            border: 0 solid #ccc;
            border-radius: 8px;
            padding: 15px;
            background: #008558;
            color: #fff;
            font-size: 18px;
            cursor: pointer;
            display: block;
            margin-top: 30px;
            text-align: center;
            transition: 0.3s;
            font-weight: 600;
            text-transform: uppercase;
            &:hover{
                background: #014e25;
                transition: 0.3s;
            }
        }
    }
    .progess-bar{
        width: 100%;
        .process-number{
            display: flex;
            justify-content: space-between;
        }
        p{
            color: #000633;
            font-size: 14px;
            font-weight: 400;
            line-height: normal;
            text-transform: capitalize;
        }
        progress {
            -webkit-appearance: none;
            appearance: none;
            width: 100%;
            height: 8px;
            overflow: hidden;
            background: #1E4A38;
            border: 0px;
        }
        progress::-webkit-progress-bar {
            background: #ccc;
        }
        progress::-webkit-progress-value {
            background: #008558;
        }
        progress::-moz-progress-bar {
            background: #ccc;
        }
        #nativeProgress {
            position: relative;
            border-radius: 50px;
        }
    }
}
.howtouse {
    margin-top: 20px;
    padding: 20px;
    h3 {
        text-align: center;
        font-weight: 500;
    }
    ul {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        margin-top: 30px;
        display: grid;
        column-gap: 2.5rem;
        gap: 10px;
        li {
            .cricle {
                margin: 0 auto 10px;
                span{
                    width: 40px;
                    height: 40px;
                    border-radius: 100px;
                    display: flex;
                    justify-content: center;
                    margin: auto;
                }
            }
            p {
                font-size: 12px;
                text-align: center;
            }
            .red span {
                border: 2px solid #e12b1b;
                background: #ff8a80;
            }
            .orange span {
                border: 2px solid #e26a0f;
                background: #ffb074;
            }
            .gray span {
                border: 2px solid #868686;
                background: #d3d3d3;
            }
            .green span {
                border: 2px solid #2dac34;
                background: #8af490;
            }
            .teal span {
                border: 2px solid #098865;
                background: #14dea6;
            }
        }
    }
}
.quizze-item {
    margin-top: 8px;
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    border: 5px solid #e8edff;
    p {
        text-align: center;
        font-weight: 500;
        font-size: 14px;
        color: #000;
    }
    .rating-group {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        margin-top: 30px;
        gap: 10px;
        .radio-item input {
            display: none;
        }
        .radio-item{
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            margin: auto;
        }
        .radio-item span {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: block;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
            margin: auto;
            opacity: 0.5;
            &:hover{
                opacity: 1;
            }
        }
        input:checked + span::after {
            content: "✓";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 24px;
            color: #000;
        }
        input:checked + span{
            opacity: 1;
        }
    }
    .red span {
        border: 1px solid #b83023;
        background: #ff8a80;
    }
    .orange span {
        border: 1px solid #cb702b;
        background: #ffb074;
    }
    .gray span {
        border: 1px solid #a1a0a0;
        background: #d3d3d3;
    }
    .green span {
        border: 1px solid #69d46f;
        background: #8af490;
    }
    .teal span {
        border: 1px solid #0d9c74;
        background: #14dea6;
    }
    .red input:checked + span {
        background: #ff8a80;
    }
    .orange input:checked + span {
        background: #ffb074;
    }
    .gray input:checked + span {
        background: #d3d3d3;
    }
    .green input:checked + span {
        background: #8af490;
    }
    .teal input:checked + span {
        background: #14dea6;
    }
}
.results-section {
    background: #f5f6fa;
    height: 100%;
    .container {
        padding: 2rem 0;
    }
    .inner {
        display: grid;
        background: #fff;
        grid-template-columns: 0.6fr 1fr;
        grid-gap: 30px;
        padding: 50px 30px;
        border-radius: 16px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
        .image {
            img {
                width: 100%;
            }
        }
        .content {
            .number {
                display: flex;
                gap: 20px;
                margin-bottom: 20px;
                align-items: flex-end;
                span {
                    font-size: 52px;
                    font-weight: 400;
                    position: relative;
                    color: #008558;
                    font-family: "Inter", sans-serif;
                    &:after {
                        position: absolute;
                        top: 0;
                        right: -18px;
                        content: '/';
                        font-weight: 100;
                    }
                    &:last-child {
                        font-size: 28px;
                        color: #000633;
                        line-height: 45px;
                        &:after {
                            display: none;
                        }
                    }
                }
            }
            h3 {
                margin-bottom: 20px;
                font-weight: 400;
                font-size: 24px;
            }
            p {
                font-size: 16px;
                line-height: 1.7;
            }
            .results-buttons {
                display: flex;
                gap: 10px;
                margin-top: 30px;
                a.btn {
                    background: #008558;
                    color: #fff;
                    padding: 12px 25px;
                    border-radius: 8px;
                    font-size: 14px;
                    font-weight: 500;
                    display: flex;
                    align-items: center;
                    transition: background 0.3s ease;
                    &:hover {
                        background: #014e25;
                        transition: 0.3s;
                    }
                    @media (max-width: 767px) {
                        padding: 6px 15px;
                    }
                }
                a.signin {
                    background: transparent;
                    color: #008558;
                    border: 2px solid #008558;
                    &:hover {
                        background: #008558;
                        color: #fff;
                    }
                }
            }
        }
    }
}
.profile-section {
    .inner {
        margin: 5rem auto;
        max-width: 500px;
        .profilepage {
            h2 {
                font-size: 30px;
                margin-bottom: 20px;
                @media (max-width:767px) {
                    font-size: 30px;
                }
                span {
                    color: #008558;
                }
            }
            ul {
                margin-top: 20px;
                background: #f0f0f0;
                border-radius: 5px;
                padding: 40px 20px;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
                li {
                    margin-bottom: 20px;
                    strong {
                        font-weight: 500;
                    }
                    &:last-child {
                        margin-bottom: 0;
                    }
                }
            }
        }
    }
}
