@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-style: normal;
}

body {
    background-color: #ffffff;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.5;
    color: #2f2e2e;
}

.menuactive {
    color: red;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: #4B5675;
}

h1 {
    line-height: 1.2;
}

h2 {
    line-height: 1.2;
}

h3 {
    line-height: 1.2;
}

h4 {
    line-height: 1.2;
}

h5 {
    line-height: 1.2;
}

h6 {
    line-height: 1.2;
}

header {
    background-color: #032c7d;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.header .heads {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu ul {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.menu a {
    color: #fff;
    padding: 0 10px;
    display: inline-block;
    font-weight: 500;
    line-height: 35px;
}

.container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

/* Home CSS : part 01 */
.part1 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: end;
    font-size: 18px;
    padding: 100px 0px;
}

.part1 .video {
    width: 95%;
    height: 50%;
    /* height: auto; */
    margin-top: -80px;
}

.part1 h1 {
    font-size: 50px;
    color: #032c7d;
}

.part1 h2 {
    font-size: 42px;
    font-weight: 500;
    letter-spacing: 3px;
}

.part1 .btn-part {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-top: 50px;
}

.part1 button {
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #032c7d;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.part1 button:hover {
    background: #fed116;
    color: #000;
}

.part1 .btn-part svg {
    transform: rotate(150deg) scaleY(-1);
}

.part1 p {
    margin: 20px 0;
    width: 82%;
}

hr {
    width: 50%;
    margin-top: 8px;
    border: 1px solid #fed116;
}

/* Home CSS : part 02 */

.part2 {
    background: #032c7d;
    padding: 60px 0;
}

.part2 .container h1 {
    font-size: 50px;
    line-height: 1.1em;
    text-align: center;
    color: #fff;
}

.part2 .container h1 span {
    color: #fed116;
}

.part2 .container .cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    padding-top: 120px;
}

.card {
    position: relative;
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.card .head {
    position: absolute;
    background: #fed116;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    padding: 4px;
    border-radius: 5px;
    box-shadow: 0.00px 3.00px 24px 8px rgba(153, 153, 151, 0.33);
}

.part2 .container .cards .card .body {
    margin-top: 24px;
    padding: 32px;
}

.part2 .container .cards .card:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.part2 .container .cards .card .body h2 {
    color: #032c7d;
    text-align: center;
    text-decoration: underline;
    font-size: 25px;
}

.part2 .container .cards .card .body p {
    margin-top: 20px;
}

.part2 .container .testing {
    margin: 130px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-btn {
    background: #fed116;
    color: #032c7d;
    padding: 13px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    letter-spacing: 2px;
    align-items: center;
}

.pricing-btn:hover {
    background: #fff;
}

.stepper-image1 {
    padding: 50px 0;
}

.stepper-image2 {
    padding: 50px 0;
    display: none;
}

/* Home CSS : part 03 */
.part3 {
    background: #fff;
    padding: 60px 0;
}

.part3 .container h1 {
    font-size: 50px;
    line-height: 1.1em;
    text-align: center;
    color: #032c7d;
    margin-bottom: 120px;
}

.part3 .container h1 span {
    color: #fed116;
}

.part3 .container .card {
    width: 55%;
    margin: 20px auto 0;
}

.part3 .container .card .body {
    text-align: center;
    padding: 80px 90px 50px;
}


/* Home CSS : part 04 */
.part4 .container h1 {
    font-size: 50px;
    line-height: 1.1em;
    text-align: center;
    color: #032c7d;
    margin: 60px 0;
}

.part4 .container h1 span {
    color: #fed116;
}

.part4 .container .cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5rem;
}

/* Home CSS : part 05 */
.part5 {
    margin-top: 100px;
    padding: 80px;
    text-align: center;
    color: #fff;
    line-height: 1.2;
}

.part5 h2 {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.part5 p {
    font-size: 35px;
    margin-bottom: 50px;

}

.part5 p span {
    background: #fed116;
    color: #032c7d;
    padding: 0 8px;
}


/* About Us css */
.about-section {
    margin-top: 150px;
}

.about-us {
    text-align: left;
}

.about-us h1 {
    font-size: 45px;
    color: #032c7d;
}

.about-us .divider {
    height: 2px;
    width: 25%;
    background-color: #fed116;
    margin: 2px 0 20px;
}

.about-us p {
    font-size: 22px;
    line-height: 1.3;
    margin: 25px 0;
}

.about-us b {
    font-weight: bold;
}

.revolution-section {
    text-align: center;
    margin: 150px 0;
}

.revolution-section h2 {
    font-size: 36px;
    color: #032c7d;
    font-weight: bold;
    line-height: 1.4;
}

.mission-problem {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: left;
    margin-bottom: 200px;
}

.mission,
.problem {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
}

.mission h3,
.problem h3 {
    font-size: 40px;
    color: #032c7d;
}

.mission .divider,
.problem .divider {
    height: 2px;
    width: 60%;
    background-color: #fed116;
    margin: 2px 0 20px;
}

.mission p,
.problem p {
    font-size: 22px;
    color: #000;
}

/* FAQ CSS */
.faq-title {
    margin: 150px 0 100px;
}

.faq-title h1 {
    font-size: 40px;
    text-align: center;
    color: #032c7d;
}


.accordion {
    margin: 25px 50px;
    color: #0033a0;
}

.accordion-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    font-size: 18px;
}

.accordion-item.active .accordion-content {
    max-height: 100%;
    padding: 0 0 20px;
}

.accordion-item.active .accordion-label svg {
    transform: rotate(180deg);
}


.accordion-content ol li {
    margin-bottom: 20px;
}

.accordion-content ol li:last-child {
    margin-bottom: 0;
}

.accordion-content p {
    margin-bottom: 28px;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

/* contact page css */
.contact {
    margin-bottom: 180px;
}

.contact h2 {
    margin: 150px 0 16px;
    color: #fed116;
    font-size: 38px;
    font-weight: normal;
}

.contact h1 {
    color: #0033a0;
    font-size: 45px;
    margin-bottom: 50px;
}

.contact .contact-info {
    border: 3px solid #fed116;
    padding: 28px 80px 28px 32px;
    border-radius: 8px;
    width: fit-content;
    box-shadow: 10px 10px #032c7d4f;
}

.contact .contact-info p {
    font-size: 22px;
    color: #000;
}

.contact .contact-info a {
    font-size: 38px;
    color: #0033a0;
}


/* Pricing Page */
.pricing {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10rem;
    align-items: center;
    justify-items: end;
    font-size: 18px;
    padding: 100px 0px;
}

.pricing h1 {
    color: #324158;
}

.pricing ul li {
    margin-bottom: 20px;
    color: #032c7d;
    margin-left: 16px;
}

.pricing ul li a {
    text-decoration: underline;
    color: #032c7d;
}

.orders {
    margin-bottom: 150px;
    width: 100%;
    max-width: 800px;
}

.orders h1 {
    margin: 100px 0 40px;
    color: #032c7d;
    font-size: 30px;
}

.orders ul li,
.orders p {
    margin-bottom: 30px;
    color: #000;
    font-size: 20px;
}

.orders p span {
    font-weight: 600;
}

/* Card Container */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    position: relative;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 80px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;

}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);

}

.pricing-card .card-header {
    padding: 10px;
    text-align: center;
    background: #fed116;
    font-size: 20px;
    margin-bottom: 16px;
    border-radius: 8px 8px 0 0;
}

.pricing-card .card-body h3 {
    font-size: 70px;
    display: flex;
    align-items: start;
    justify-content: center;
    letter-spacing: 2px;
}

.pricing-card .card-body h3 span {
    font-size: 28px;
    font-weight: normal;
    margin-top: 5px;
}

.pricing-card .card-body p {
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    margin-top: -15px;
}

.pricing-card .card-body .hr {
    border: 1px solid #032c7d;
    margin: 32px 32px 20px;
}

.pricing-card .card-body ul {
    margin: 5px 5px 75px 45px;
    line-height: 2.5;
    font-size: 16px;
    font-weight: 600;
}

.pricing-card .card-body h4 {
    margin: 32px 48px 75px;
    text-align: center;
    font-size: 21px;
}

.pricing-card .btn {
    position: absolute;
    background: #fed116;
    color: #032c7d;
    border: none;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    font-weight: 600;
    border-radius: 8px;
    width: 70%;
    padding: 10px;
    box-shadow: 0.00px 3.00px 24px 8px rgba(153, 153, 151, 0.33);
}


.menu-toggle,
.close-icon {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
}

.menu {
    display: flex;
}


.footer {
    background: #032c7d;
    border-top: 6px solid #605e5e;
}

.footer .img {
    display: flex;
    justify-content: center;
    padding: 30px;
}

.footer .policy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 14px;
}

.footer .policy a {
    color: #fff;
}

@media (max-width: 1080px) {

    .menu {
        display: none;
        background: #f3ffb7;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }

    .menu-toggle:checked~.menu {
        display: flex;
    }

    .menu ul {
        margin: auto;
        flex-direction: column;
    }

    .menu ul li a {
        color: #032c7d;
        text-decoration: none;
        font-size: 20px;
        font-weight: bold;
    }

    .menu-icon {
        display: block;
    }

    .close-icon {
        display: block;
        position: absolute;
        top: 25px;
        right: 25px;
        cursor: pointer;
    }

    .container {
        max-width: 100%;
        padding: 24px;
        margin: 0 auto;
    }

    .part1 {
        grid-template-columns: 1fr;
        gap: 1rem;
        justify-items: center;
        padding: 50px 20px;
    }

    .part1 .video {
        width: 100%;
        height: 100%;
        margin-top: 0;
    }

    .part1 h1 {
        font-size: 36px;
        text-align: center;
    }

    .part1 h2 {
        font-size: 28px;
        text-align: center;
    }

    .part1 p {
        width: 100%;
        text-align: center;
    }

    .part1 .btn-part svg {
        display: none;
    }

    .part1 .btn-part {
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }

    .part1 button {
        width: 100%;
        max-width: 300px;
        text-align: center;
        margin-bottom: 20px;
    }

    hr {
        width: 70%;
        margin: 20px auto;
    }

    .part1 button {
        padding: 16px;
        font-size: 12px;
        font-weight: 600;
    }

    /* part 02 */
    .part2 .container .cards {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 4rem;
        padding-top: 100px;
    }

    .part2 .container h1 {
        font-size: 36px;
    }

    /* part 03 */
    .part3 {
        background: #fff;
        padding: 60px 0;
    }

    .part3 .container h1 {
        font-size: 36px;
        margin-bottom: 80px;
    }

    .part3 .container .card {
        width: 100%;
        margin: 20px auto 0;
    }

    .part3 .container .card .body {
        text-align: center;
        padding: 80px 24px 30px;
    }

    .stepper-image1 {
        padding: 50px 0;
        display: none;
    }

    .stepper-image2 {
        padding: 50px 0;
        display: block;
    }

    /* part 04 */
    .part4 .container h1 {
        font-size: 36px;
        margin: -30px 0 40px;
    }

    .part4 .container .cards {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 2rem;
    }

    /* part 05 */
    .part5 {
        margin-top: 50px;
        padding: 80px 10px;
    }

    .part5 h2 {
        font-size: 30px;
    }

    .part5 p {
        font-size: 30px;
    }


    /* About Us css */
    .about-section {
        margin-top: 25px;
    }

    .about-us h1 {
        font-size: 36px;
    }

    .about-us .divider {
        width: 50%;
    }

    .about-us p {
        font-size: 22px;
        line-height: 1.3;
        margin: 25px 0;
    }

    .about-us b {
        font-weight: bold;
    }

    .mission-problem {
        gap: 20px;
    }

    .revolution-section {
        text-align: center;
        margin: 80px 0;
    }

    .revolution-section h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .mission h3,
    .problem h3 {
        font-size: 32px;
    }

    /* faq css */
    .faq-title {
        margin-top: 50px;
    }

    .faq-title h1 {
        font-size: 32px;
    }

    .accordion {
        margin: 5px;
    }

    /* contact css */
    .contact {
        margin-bottom: 100px;
    }

    .contact h2 {
        margin: 50px 0 16px;
    }

    .contact .contact-info {
        padding: 20px;
    }

    .contact .contact-info a {
        word-break: break-all;
    }


    /* Pricing Page */
    .pricing {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 2rem;
        justify-items: center;
        padding: 50px 20px;
    }

    .pricing-card {
        margin-bottom: 50px;
    }

    .orders {
        margin-bottom: 50px;
    }

    .orders h1 {
        margin: 50px 20px 40px;
    }

    .orders ul li,
    .orders p {
        margin: 0 20px 30px;
    }

}