﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
    list-style: none;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
}

body {
    background: white
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: white;
}

::-webkit-scrollbar-thumb {
    background: #B9FF66;
    box-shadow: rgb(228, 246, 211) 0px 1px 25px;
    border-radius: 10px;
}
/*--==== HEADER ====--*/
header {
    color: white;
    position: fixed;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    z-index: 5;
    margin-top: 10px;
    position: relative;
}

    header .logo img {
        height: 200px;
        width: auto;
        margin-left: 10px;
    }

.navbar {
    display: flex;
    padding: 0 30px;
    gap: 40px;
}

#circleIcon {
    font-size: 6px;
}

.nav-item {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: black;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.5s ease;
}

.icon {
    position: absolute;
    right: 5%;
    font-size: 36.8px;
    color: black;
    cursor: pointer;
    display: none;
}

#menu-icon {
    font-size: 30px;
}

#check {
    display: none;
}

#menu-icon, #close-icon {
    color: black;
}

.logIn {
    background-color: #B9FF66;
    color: black;
    padding: 5px 25px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
}

@media (max-width: 870px) {
    .container {
        height: auto;
    }

    header {
        margin-top: 0;
        padding: 0px 20px;
    }

        header .logo img {
            height: 100px
        }

    #circleIcon {
        display: none;
    }

    header {
        height: 40px;
    }

        header::before {
            position: absolute;
            content: "";
            inset: 0;
            width: 100%;
            backdrop-filter: blur(20px);
            z-index: -1;
        }

        header::after {
            position: absolute;
            content: "";
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            transition: 0.8s;
        }

    .icon {
        display: inline-flex;
    }

    #check:checked ~ .icon #menu-icon {
        display: none;
    }

    .icon #close-icon {
        display: none;
    }

    #check:checked ~ .icon #close-icon {
        display: block;
    }

    .navbar {
        padding: 0;
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background: black;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    #check:checked ~ .navbar {
        height: 256px;
    }

    .nav-item {
        color: white;
        display: block;
        font-size: 17.6px;
        margin: 32px 0;
        text-align: center;
        transform: translateY(-50px);
        opacity: 0;
        transition: all 0.3s ease;
    }

        .nav-item:hover::after {
            width: auto;
        }

    #check:checked ~ .navbar a {
        transform: translateY(0);
        opacity: 1;
        transition-delay: calc(0.15s * var(--i));
    }
}

@media screen and (max-width: 600px) {
    header .logo img {
        margin-left: 0;
    }
}

@media screen and (max-width: 350px) {
    header h1 {
        font-size: 20px;
    }
}

#check:checked ~ .navbar {
    height: 256px;
}
/*--==== HERO SECTION ====--*/
.heroSec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 85px;
}

    .heroSec .content {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 60px;
    }

        .heroSec .content .title {
            font-size: 50px;
            font-weight: 900;
        }

        .heroSec .content .subTitle {
            text-align: center;
            width: 305px;
            font-size: 25px;
            font-weight: 400;
            background-color: #B9FF66;
        }

        .heroSec .content .para {
            width: 400px;
            font-size: 15px;
            line-height: 1.2;
            letter-spacing: 1px;
        }

    .heroSec .heroImg img {
        animation: fadeIn 1.5s ease-out forwards, float 4s ease-in-out infinite;
        animation-delay: 0s, 1.5s;
        opacity: 0;
    }

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 1100px) {
    .heroSec .heroImg img {
        height: 400px;
    }
}

@media (max-width: 975px) {
    .heroSec {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

        .heroSec .content .title {
            font-size: 36px;
        }

        .heroSec .content .subTitle {
            font-size: 20px;
            margin: 0 auto;
        }

        .heroSec .content .para {
            font-size: 14px;
            margin: 0 auto;
        }
}

@media (max-width: 530px) {
    .heroSec .heroImg img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .heroSec .content .title {
        font-size: 28px;
    }

    .heroSec .content .subTitle {
        width: auto;
        font-size: 15px;
    }

    .heroSec .content .para {
        width: auto;
        font-size: 13px;
    }
}
/*--==== OVERVIEW SECTION ====--*/
.overviewSec {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
}

.overview-title {
    display: flex;
    gap: 30px;
    margin-left: 80px;
}

    .overview-title h4 {
        font-size: 25px;
        background-color: #B9FF66;
        width: 160px;
        text-align: center;
    }

    .overview-title p {
        font-size: 18px;
        color: rgb(118, 117, 117);
        margin-top: 5px;
    }

.overview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.overview-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 25px;
    margin-top: 40px;
    width: 88%;
    height: 350px;
    background-color: black;
    border-radius: 40px;
    color: white;
}

hr {
    background-color: #B9FF66;
    height: 160px;
}

.step1, .step2, .step3 {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 30%;
}

    .step1 a, .step2 a, .step3 a {
        display: flex;
        gap: 5px;
        width: 140px;
        background: none;
        outline: none;
        color: #B9FF66;
        cursor: pointer;
    }

@media screen and (max-width: 800px) {
    .overviewSec {
        height: auto;
    }

    .overview-content {
        padding: 20px 40px;
        flex-direction: column;
        height: auto;
    }

    .step1, .step2, .step3 {
        width: 100%;
        gap: 20px;
    }

    hr {
        height: 2px;
        width: 100%;
        margin: 20px;
    }

    .step2, .step3 {
        margin: 20px;
    }
}

@media screen and (max-width: 580px) {
    .overview-title p {
        font-size: 14px;
    }

    .step1 p, .step2 p, .step3 p {
        font-size: 12px;
    }

    .overview-title {
        flex-direction: column;
        gap: 10px;
        margin-left: 0;
        text-align: center;
        align-items: center;
        justify-content: center;
        margin-top: 80px;
    }

    .overview-content {
        margin-top: 20px;
    }
}

@media screen and (max-width: 350px) {
    hr {
        width: 200px;
    }
}

@media screen and (max-width: 250px) {
    hr {
        width: 140px;
    }
}
/*--==== ABOUT SECTION ====--*/
.aboutSec {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.aboutus {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 90px 80px;
    background-color: #F3F3F3;
    width: 88%;
    border-radius: 40px;
    height: 60vh;
}

.aboutSec .content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .aboutSec .content h4 {
        font-size: 35px;
    }

    .aboutSec .content p {
        letter-spacing: 1px;
        line-height: 1.2;
        width: 400px;
    }

.aboutSec .aboutus .aboutImg img {
    animation: fadeIn 1.5s ease-out forwards, float 4s ease-in-out infinite;
    animation-delay: 0s, 1.5s;
    opacity: 0;
}

@media screen and (max-width: 975px) {
    .aboutSec {
        height: auto;
    }

    .aboutus {
        flex-direction: column;
        height: auto;
    }
}

@media screen and (max-width: 800px) {
    .aboutus {
        padding: 40px 80px;
    }

    .aboutSec {
        margin-top: 30px;
    }

        .aboutSec .content {
            justify-content: center;
            align-items: center;
        }

    .aboutus .content h4 {
        text-align: center;
        font-size: 20px;
        width: 280px;
    }

    .aboutSec .content p {
        width: auto;
        text-align: center;
        font-size: 10px;
    }
}

@media screen and (max-width: 480px) {
    .aboutSec .aboutus .aboutImg img {
        height: 300px;
    }
}

@media screen and (max-width: 345px) {
    .aboutus .content h4 {
        font-size: 15px;
        width: 200px;
    }

    .aboutSec .aboutus .aboutImg img {
        height: 200px;
    }
}


/*--==== FAQS SECTION ====--*/
.faq-section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.faqs-title {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

    .faqs-title h4 {
        font-size: 25px;
        background-color: #B9FF66;
        width: 80px;
        text-align: center;
    }

    .faqs-title p {
        font-size: 18px;
        color: rgb(118, 117, 117);
        margin-top: 5px;
    }

@media screen and (max-width: 580px) {
    .faqs-title p {
        font-size: 14px;
    }

    .faqs-title {
        flex-direction: column;
        gap: 10px;
        margin-left: 0;
        text-align: center;
        align-items: center;
        justify-content: center;
        margin-top: 80px;
    }
}

.faq-item {
    border: 2px solid #dcdcdc;
    border-radius: 40px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: background-color 0.3s;
    box-shadow: 0 15px 10px -6px black;
}

    .faq-item.active {
        background-color: #b9ff66;
    }

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    padding: 40px;
    cursor: pointer;
}

    .faq-header span {
        font-size: 40px;
        margin-right: 10px;
        font-weight: 700;
    }

.faq-content {
    padding: 0 20px 20px;
    font-size: 16px;
    line-height: 1.5;
    display: none;
}

.faq-item.active .faq-content {
    display: block;
}

.toggle-btn {
    background: white;
    border: 1px solid black;
    border-radius: 50%;
    font-size: 18px;
    width: 32px;
    height: 32px;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.item {
    display: flex;
    gap: 5px
}

@media screen and (max-width: 500px) {
    .faq-item {
        border-radius: 20px;
    }

    .item {
        gap: 0px
    }

    .faq-header {
        font-size: 10px;
        padding: 20px;
    }

        .faq-header span {
            font-size: 10px;
        }
}

.question-title {
    margin-top: 13px;
    margin-right: 10px;
}

@media screen and (max-width: 500px) {
    .question-title {
        margin-top: 0;
    }
}

/*--==== TEAM SECTION ====--*/
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

@media screen and (max-width:1000px) {
    .team-grid {
        padding: 20px;
    }
}

.card {
    background: white;
    border: 1px solid black;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 10px -6px black;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 300px;
}

.above-sec {
    display: flex;
    gap: 15px;
    justify-content: space-around;
}

.role {
    color: #444;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.card hr {
    border: none;
    height: 1px;
    background: black;
    margin: 5px 0 10px;
}

.linkedin-icon {
    top: 15px;
    right: 15px;
    background: black;
    color: #b9ff66;
    border: 1px solid #B9FF66;
    font-weight: bold;
    font-size: 14px;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    border-radius: 50%;
    font-family: sans-serif;
}

.member {
    margin-top: 30px;
}

@media (max-width: 1078px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card img {
        height: auto;
      
    }
}

@media (max-width: 736px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-title {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    margin-left: 140px;
    margin-top: 150px;
}

    .team-title h4 {
        font-size: 25px;
        background-color: #B9FF66;
        width: 80px;
        text-align: center;
    }

    .team-title p {
        font-size: 18px;
        color: rgb(118, 117, 117);
        margin-top: 5px;
    }

@media screen and (max-width: 580px) {
    .team-title p {
        font-size: 14px;
    }

    .team-title {
        flex-direction: column;
        gap: 10px;
        margin-left: 0;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
}
/*--==== CONTACT SECTION ====--*/
.contact-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 150px;
}

    .contact-title h4 {
        font-size: 25px;
        background-color: #B9FF66;
        width: 160px;
        text-align: center;
    }

    .contact-title p {
        font-size: 18px;
        color: rgb(118, 117, 117);
        margin-top: 5px;
    }

@media screen and (max-width: 580px) {
    .contact-title p {
        font-size: 14px;
    }

    .contact-title {
        flex-direction: column;
        gap: 10px;
        margin-left: 0;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
}

#contact {
    padding: 2rem 2rem;
    display: flex;
    justify-content: center;
}

.contact-box {
    width: 60%;
    background: black;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
}

@media screen and (max-width: 650px) {
    .contact-box {
        width: 100%;
    }
}

.contact-box h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 3px;
}

@media screen and (max-width: 388px) {
    .contact-box h2 {
        font-size: 20px;
    }

    #contact {
        padding: 2rem 1rem;
    }
}

.contact-box h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #b9ff66;
    margin: 1rem auto 1.5rem;
    border-radius: 2px;
}

.contact-lead {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-item {
    position: relative;
}

    .form-item input,
    .form-item textarea {
        width: 100%;
        padding: 10px 6px;
        border: none;
        border-bottom: 2px solid white;
        background: transparent;
        font-size: 16px;
        outline: none;
        resize: none;
    }

    .form-item label {
        position: absolute;
        left: 6px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 16px;
        color: white;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .form-item:has(textarea) label {
        top: 75%;
    }

    .form-item input {
        color: white;
    }

        .form-item input:focus + label,
        .form-item textarea:focus + label,
        .form-item input:not(:placeholder-shown) + label,
        .form-item textarea:not(:placeholder-shown) + label {
            top: -10px;
            font-size: 12px;
            color: #b9ff66;
        }

.form-button {
    background-color: #b9ff66;
    color: black;
    border: none;
    padding: 12px 0;
    border-radius: 20px;
    font-size: 1rem;
    cursor: pointer;
}
/*--==== FOOTER SECTION ====--*/
footer {
    margin-top: 50px;
}

.footer {
    background: #292A32;
    padding: 30px 0px;
    text-align: center;
}

.footer .row {
width: 100%;
margin: 1% 0%;
padding: 0.6% 0%;
font-size: 18px;
}

.footer .row a {
text-decoration: none;
color: #B9FF66;
text-shadow: 0px 1px 15px rgb(248, 218, 248);
transition: all 0.5s ease;
}

.footer .row a i {
    height: 30px;
    width: 30px;
    padding: 4px;
    background-color: #b9ff66;
    border-radius: 50%;
    box-shadow: 0px 1px 15px rgb(248, 218, 248);
    color: black;
}

.footer .row a i:hover {
    transform: translateY(-5px);
    transition: all 0.5s ease;
}

.footer .row ul {
width: 100%;
}

.footer .row ul li {
    display: inline-block;
    margin: 0px 30px;
    transition: all 0.5s ease;
}

.footer .row ul li:hover {
    transform: translateY(-3px) translateX(-5px);
    transition: all 0.5s ease;
}

.footer .row a i {
    font-size: 20px;
    margin: 0% 1%;
    transition: all 0.5s ease;
}

@media (max-width:720px) {
    .footer {
        text-align: left;
        padding: 5%;
    }

    .footer .row ul li {
        display: block;
        margin: 10px 0px;
        text-align: left;
    }

    .footer .row a i {
        margin: 0% 3%;
    }
}

.copyright {
    background: #B9FF66;
    padding: 10px;
    text-align: center;
}

.copyright p {
    color: black;
    font-size: 12px;
}

