@import url(https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto Condensed", sans-serif;
    color: #272727
}

.leftNav li a,
.rightNav li a {
    color: #fff;
    text-decoration: none
}

.rightNav button,
.section-btn a {
    background: #2196f3;
    color: #fff;
    cursor: pointer
}

.leftNav li,
.rightNav li,
ul li {
    list-style: none
}

p a,
.about-order a,
.footer-conditions a,
.highlight,
.how-work-btn a,
.leftNav li a,
.rightNav li a,
.section-btn a {
    text-decoration: none
}



html {
    scroll-behavior: smooth
}

section {
    scroll-margin-top: 70px
}

.sticky-nav {
    position: sticky;
    top: 0
}

.nav-PaddingSection {
    padding: 1.4% 6%;
    background: #0D3056;
    z-index: 1000
}

.navSection {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.leftNav li a {
    font-size: 2rem;
    font-weight: 600
}

.rightNav {
    display: flex;
    align-items: center;
    gap: 40px
}

.rightNav li:hover {
    border-bottom: 1px solid #56a77c
}

.rightNav li a {
    font-weight: 500;
    font-size: 18px
}

.rightNav button {
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    outline: 0;
    font-size: 18px;
    border: none;
    padding: 10px 20px;
    border-radius: 5px
}

.about-order button:hover,
.rightNav button:hover {
    background-color: #1976d2
}

.rightNav button:active,
.section-btn a:active {
    background-color: rgb(0 0 0 / .336)
}

.rightNav button i {
    background: #fff0;
    color: #fff;
    font-size: 22px
}

.Menu {
    position: absolute;
    right: 30px;
    top: 20px;
    display: none
}

.Menu i {
    color: #fff;
    font-size: 22px
}

.paddingSection {
    padding: 1% 6%
}

.content-padding {
    padding: 0 2%
}

/* HERO SECTION */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 50px;
}

/* LEFT SIDE */
.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 42px;
    color: #222;
    margin-bottom: 20px;
}

.hero-text p {
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 18px;
}

.hero-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.hero-text ul li {
    color: #333;
    font-weight: 500;
}

.learn-btn {
    background: #00bcd4;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.learn-btn:hover {
    background: #0097a7;
}

/* RIGHT FORM */
.hero-form {
    flex: 1;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 10px;
}
.hero-form img{
    width: 100%;
    border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero {
        padding: 5px;
    }

    .hero-container {
       grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 34px;
    }
}

.card-wrapper {
    margin: 40px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

/* CARD */
.promo-card {
    background: #fff;
    width: 100%;
    max-width: 720px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* HEADER */
.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
}

.card-header img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.header-text h4 {
    font-size: 16px;
    font-weight: bold;
}

.header-text span {
    color: #1da1f2;
}

.header-text p {
    font-size: 13px;
    color: #666;
}

/* CONTENT */
.card-content {
    padding: 0 16px 16px;
}

.card-content p {
    font-size: 15px;
    line-height: 1.5;
    color: #222;
    margin-bottom: 10px;
}

.card-content a {
    color: #1da1f2;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

/* IMAGE */
.card-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    display: block;
}

/* PLAY BUTTON */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
}

/* PARTIAL CARD EFFECT */
.partial {
    max-height: 420px;
    /* ~80% */
    overflow: hidden;
    position: relative;
}

/* FADE EFFECT AT BOTTOM */
.partial::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
}

/* LOAD MORE BUTTON */
.load-more-btn {
    background: #1da1f2;
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 15px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(29, 161, 242, 0.4);
}

.load-more-btn:hover {
    background: #0d8ddb;
    transform: translateY(-2px);
}

/* HOVER EFFECT ON CARD */
.promo-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.promo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

/* HIDE EXTRA CARDS INITIALLY */
.more-cards.expanded .partial {
    max-height: none;
}

.more-cards.expanded .partial::after {
    display: none;
}


/* RESPONSIVE */
@media (max-width: 480px) {
    .card-content p {
        font-size: 14px;
    }

    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}



.demo-section {
    padding: 60px 5%;
    background: #e7f0fc;
    box-shadow: inset 0 0 20px #f1f3f6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    align-items: center;
}

/* Left side */
.demo-left {
    flex: 1 1 450px;
    max-width: 450px;
    text-align: center;
    position: relative;
}

.watch-demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #003366;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.watch-demo-btn svg {
    stroke: #007BFF;
    fill: #007BFF;
    transition: transform 0.3s ease;
}

.watch-demo-btn:hover {
    color: #2196f3;
}

.watch-demo-btn:hover svg {
    transform: translateY(3px);
}

.video-thumbnail {
    box-shadow: 0 8px 20px rgb(27 46 75 / 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    user-select: none;
}

.video-thumbnail:hover {
    transform: scale(1.03);
}

/* Right side */
.demo-right {
    flex: 1 1 500px;
    max-width: 700px;
}

.demo-right h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
    color: #003366;
}

.demo-right p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 36px;
    color: #555;
    max-width: 600px;
}


/* Responsive */
@media (max-width: 900px) {
    .container {
        flex-direction: column;
        gap: 40px;
    }

    .demo-left,
    .demo-right {
        max-width: 100%;
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .stat-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .demo-right h2 {
        font-size: 1.5rem;
    }
}



/* Container & base */
.services-section {
    padding: 80px 5%;
    background-color: #f9fafb;
    color: #1e293b;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 35px;
    /* font-weight: 800; */
    color: #003366;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    line-height: 1.5;
    color: #475569;
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Individual cards */
.service-card {
    background: #e7f0fc;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgb(100 116 139 / 0.1);
    padding: 30px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 350px;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 30px rgb(100 116 139 / 0.25);
}

.icon-wrapper {
    background-color: #e0e7ff;
    border-radius: 50%;
    padding: 18px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    transition: background-color 0.3s ease;
}

.service-card:hover .icon-wrapper {
    background-color: #2196f3;
}

.service-card:hover .icon-wrapper svg {
    fill: #fff;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #1e293b;
}

.service-card p {
    font-size: 18px;
    line-height: 1.5;
    color: #475569;
    flex-grow: 1;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 3%;
    }

    .service-card {
        min-height: auto;
        padding: 25px 20px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 20px 15px;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
        padding: 15px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

}



.promo-section {
    background-color: #e7f0fc;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #0f172a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.promo-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Left Text Content */
.promo-text {
    flex: 1 1 450px;
    max-width: 600px;
}

.promo-tag {
    display: inline-block;
    background-color: #d1e3ff;
    color: #1e40af;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 1rem;
    margin-bottom: 20px;
    user-select: none;
    box-shadow: 0 0 5px rgb(30 64 175 / 0.3);
}

/* Heading */
.promo-text h2 {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #003366;
}

.promo-text p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* Button */
.promo-button {
    background-color: #2196f3;
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 1.2rem;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgb(251 191 36 / 0.4);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
    display: inline-block;
    text-align: center;
}

.promo-button p {
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 6px;
    margin-bottom: 0 !important;
    color: #374151;
}

.promo-button:hover,
.promo-button:focus {
    background-color: #1976d2;
    box-shadow: 0 7px 20px rgb(245 158 11 / 0.6);
    outline: none;
}

/* Right Video */
.promo-video {
    flex: 1 1 400px;
    max-width: 480px;
    user-select: none;
}

.video-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgb(0 0 0 / 0.15);
    cursor: pointer;
}

.video-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.video-wrapper:hover img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f59e0b;
    border: none;
    color: white;
    font-size: 3rem;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgb(30 64 175 / 0.7);
    transition: background-color 0.3s ease;
}

.play-btn:hover,
.play-btn:focus {
    background-color: #2196f3;
    outline: none;
}

.play-btn i {
    font-size: 25px;
}

/* Responsive */
@media (max-width: 900px) {
    .promo-container {
        flex-direction: column;
    }

    .promo-text,
    .promo-video {
        max-width: 100%;
    }

    .promo-text h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .promo-button {
        padding: 16px 30px;
        font-size: 1rem;
    }

    .promo-button p {
        font-size: 0.8rem;
    }

    .promo-text {
        flex: 1 1 348px;
    }

    .promo-video {
        flex: 1 1 0px;
    }
}



.section-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: #eaf1ff;
    min-height: 100vh;
}



.how-work p,
ul li {
    font-size: 18px;
    line-height: 1.5;
}

.section-btn a:hover {
    background-color: #ffd814d3
}

.about-order button i,
.about-order button:hover i,
.section-btn a i,
.section-btn a:hover i {
    color: #000
}

.h2heading {
    padding: 20px;
    font-size: 25px
}

.h2heading h2 strong {
    font-weight: 600
}

.h2heading h2 span {
    color: #ffd814;
    font-weight: 600
}

.user-card {
    box-shadow: rgb(0 0 0 / .35) 0 5px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
    margin: 10px;
    gap: 30px;
    width: 400px;
    height: 650px
}

.card-section {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px
}

.powerbite-card {
    justify-content: center;
    align-items: center;
    border: 1px solid #000;
    width: 250px;
    box-shadow: rgb(50 50 93 / .25) 0 6px 12px -2px, rgb(0 0 0 / .3) 0 3px 7px -3px;
    height: 400px;
    padding: 40px 20px
}

.what-is {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px
}

ul li i {
    margin-right: 1%
}

.how-work h2 {
    font-size: 32px;
    padding: 0% 2%;
    color: #1e293b;
    font-weight: 600
}

.how-work h4,
.how-work h4 i,
.privacy-term-disclaimer p {
    font-size: 18px;
    line-height: 1.5;
}

.how-work h4 {
    line-height: 32px;
    margin: 5px;
    font-weight: 700
}

.how-work-btn a {
    padding: 10px 35px;
    background-color: #ffd814;
    border-radius: 30px;
    color: #234553
}

.what-is-content {
    width: 100%;
    display: flex;
    gap: 22px;
    justify-content: center;
    align-items: center
}

.whatspara img {
    float: right;
    width: 100%;
    margin-bottom: 2%
}

.sub-heading {
    padding: 10px;
    font-weight: 700 !important;
    margin: 20px 0;
    color: #1e293b;
}




.footer-section {
    background-color: #000000d2
}

.footer-section p {
    font-size: 16px;
    text-align: center;
    color: #fff
}

.footer-conditions a {
    color: #fff
}

.footer-conditions a span {
    color: orange
}

.highlight {
    font-weight: 600
}

.highlight strong {
    color: #234553 !important
}

.about-order {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.about-order h6 {
    margin-top: 20px;
    font-size: 30px;
    font-weight: 400
}

.about-order h4 {
    font-size: 45px
}

.about-order button {
    outline: 0;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
    border-radius: 5px;
    cursor: pointer;
    padding: 15px 40px;
    background: #ffd814;
    font-size: 22px;
    color: #000;
    font-weight: 700
}


@media only screen and (max-width:1200px) {

    .mainPadding,
    .paddingSection {
        padding: 2% 3%
    }

}

@media only screen and (max-width:992px) {

    .hero-Section,
    .navSection {
        flex-direction: column
    }

    .Menu {
        display: block
    }

    .leftNav {
        justify-content: start;
        width: 100%
    }

    .leftNav li a {
        font-size: 2rem
    }

    .rightNav {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
        width: 100%;
        display: none
    }

    .nav-PaddingSection {
        padding: 2.6% 6%
    }

    .paddingSection {
        padding: 2% 6%
    }

    .mainPadding {
        padding: 2%
    }

    .user-card {
        margin: 2%;
        gap: 0
    }
}

@media only screen and (max-width:768px) {

    .Discount h2,
    .h2heading {
        font-size: 25px
    }

    .mainPadding,
    .paddingSection {
        padding: 2%
    }

    .what-is-content {
        flex-direction: column
    }
}

@media only screen and (max-width:576px) {
    .h2heading {
        font-size: 16px
    }

    p,
    ul li {
        font-size: 16px !important;
        line-height: 25px !important
    }

    .how-work h2 {
        font-size: 30px
    }

    .about-order h4,
    .about-order h6 {
        font-size: 20px
    }

    .whatspara img {
        width: 100%
    }

    .hero-Section .image-wrapper img {
        width: 80% !important
    }

    .leftNav li a img,
    .what-is-image img {
        width: 250px
    }

    .section-btn a {
        font-size: 18px !important
    }

    .user-card {
        width: 300px
    }

    .how-work-btn a {
        font-size: 14px
    }

    .hero-Section-Content h2 {
        font-size: 21px;
        line-height: 29px;
        font-weight: 500;
        padding: 1% 2%
    }

    .how-work h4 {
        font-size: 17px
    }

    .section-btn a {
        width: 100%;
        margin: 2px 0;
        box-sizing: border-box
    }

    .about-order button i,
    .section-btn i {
        display: none
    }

    .sub-heading {
        font-size: 28px !important
    }

    .h2heading {
        padding: 10px 0 !important;
        margin-top: 20px
    }

    .about-order button {
        padding: 10px 20px !important;
        width: 90%
    }

    .box-bene h3 {
        font-size: 15px
    }

    .leftNav img {
        width: 50px !important;
        padding: 15px 0
    }

    .section-btn {
        flex-direction: column;
        gap: 5px
    }
}

.why-choose {
    background-color: #0D3056;
    padding: 20px;
    text-align: center
}

.why-choose h2 {
    color: #fff;
    font-size: 35px;
    margin-bottom: 30px
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    background-color: #fff
}

.feature-card {
    background-color: #e7f0fc;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgb(0 0 0 / .05);
    flex: 1 1 220px;
    max-width: 350px;
    padding: 30px 20px;
    text-align: center;
    transition: transform .3s
}

.feature-card:hover {
    transform: translateY(-5px)
}

.feature-card img {
    width: 50%;
    height: auto;
    margin-bottom: 20px
}

.feature-card h3 {
    font-size: 23px;
    color: #111;
    margin-bottom: 10px
}

.feature-card p {
    font-size: 18px;
    line-height: 1.5;
    color: #555
}

@media (max-width:768px) {
    .features {
        flex-direction: column;
        align-items: center
    }

    .why-choose h2 {
        font-size: 28px
    }
}


.active {
    display: flex
}


/* FAQ Section Styling */
.faq-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.faq-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.faq-header h2 {
    text-align: center;
    font-size: 35px;
    color: #1c1c1c;
    margin-bottom: 10px;
}

.faq-header p {
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1d4ed8;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f0f4ff;
}

.faq-question i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    background: #f7faff;
    box-sizing: border-box;
}

.faq-answer.open {
    padding: 15px 25px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 1.8rem;
    }

    .faq-header p {
        font-size: 0.95rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .faq-answer {
        font-size: 0.9rem;
    }
    .hero-container {
        padding: 20px;
    }
}