* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: #0A1A4A;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

.section-padding {
    padding: 100px 0;
}

.theme-btn {
    background: linear-gradient(90deg, #FED24A 0%, #FE9516 100%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    color: #000;
    font-weight: 700;
    border-radius: 10px;
    padding: 12px 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
    width: max-content;
}

/* Shimmer shine effect */
.theme-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    transition: left 0.6s ease;
}

.theme-btn:hover {
    color: #000;
    background-position: 100% 0%;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 30px rgba(254, 149, 22, 0.45),
                0 4px 12px rgba(254, 210, 74, 0.3);
}

.theme-btn:hover::before {
    left: 100%;
}

.theme-btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 12px rgba(254, 149, 22, 0.3);
}

/* Icon animation inside buttons */
.theme-btn i {
    transition: transform 0.3s ease;
}

.theme-btn:hover i {
    transform: translateX(5px);
}

.outline-btn {
    border: 2px solid #fff;
    color: #fff;
    border-radius: 10px;
    padding: 12px 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    background: transparent;
    letter-spacing: 0.3px;
    width: max-content;
}

/* Fill-up animation on hover */
.outline-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
    transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.outline-btn:hover {
    color: #FEB629;
    border-color: #FEB629;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(254, 182, 41, 0.2),
                0 0 20px rgba(254, 182, 41, 0.1);
}

.outline-btn:hover::before {
    height: 100%;
}

.outline-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(254, 182, 41, 0.15);
}

/* Icon animation inside outline buttons */
.outline-btn i {
    transition: transform 0.3s ease;
}

.outline-btn:hover i {
    transform: translateX(4px) scale(1.1);
}

.heading {
    font-family: 'Epilogue', sans-serif;
    font-weight: 700;
}

/* TOPBAR */

.topbar {
    background: #0A1A4A;
    color: #fff;
    font-size: 14px;
    padding: 12px 0;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    color: #0A1A4A;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone {
    color: white;
}

.member-link {
    color: #FEB629;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.member-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FEB629;
    transition: width 0.3s ease;
}

.member-link:hover {
    color: #FED24A;
    text-shadow: 0 0 8px rgba(254, 182, 41, 0.3);
}

.member-link:hover::after {
    width: 100%;
}

/* NAVBAR */

.navbar {
    background: white;
    padding: 8px 0;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav {
    gap: 16px;
}

.nav-link {
    font-size: 14px;
    color: #0A1A4A;
    font-weight: 600;
}

.nav-link.active {
    color: #FE9516;
}

.login-btn {
    min-width: 130px;
    justify-content: center;
    font-size: 15px;
}

.login-btn:hover {
    background: linear-gradient(90deg, #FE9516 0%, #FED24A 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(254, 149, 22, 0.45);
}


.navbar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    transition: .4s;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
}

/* HERO */

.hero-section {
    min-height: 600px;
    background: linear-gradient(90deg, #0A1A4A 12.64%, rgba(10, 26, 74, 0.9) 33.27%, rgba(10, 26, 74, 0.8) 49.6%, rgba(10, 26, 74, 0) 72.48%),
        url(./images/hero.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 550px;
}

.hero-content h1 {
    font-family: 'Epilogue', sans-serif;
    font-size: 52px;
    /* line-height: 56px; */
    color: #fff;
    font-weight: 700;
    /* margin-bottom: 20px; */
}

.hero-content h1 font {
    font-family: 'Epilogue', sans-serif;
    font-size: 48px;
    /* line-height: 56px; */
    color: #fff;
    font-weight: 700;
    /* margin-bottom: 20px; */
}

.hero-content h1 span{
    color: #FEB629;
}

.hero-content h1 span font{
    color: #FEB629;
}

.hero-content h5 {
    font-size: 24px;
    /* line-height: 26px; */
    color: white;
    /* margin-bottom: 25px; */
    font-weight: 600;
}

.hero-content p {
    color: white;
    /* line-height: 8px; */
    margin-bottom: 20px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    /* align-items: center; */
}

/* FEATURE STRIP */

.feature-strip {
    margin-top: -45px;
    position: relative;
    z-index: 3;
}

.feature-strip .row {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}

.feature-box {
    padding: 8px;
    text-align: center;
    border-right: 1px solid #ddd;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.feature-box h4 {
    color: #0A1A4A;
    font-weight: 700;
    font-size: 22px;
}

.feature-box img {
    margin-bottom: 4px;
    width: 48px;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .topbar-content {
        flex-direction: column;
        gap: 5px;
        margin: 0 0 6px;
        align-items: self-start;
        width: 100%;
    }

    .hero-section {
        min-height: auto;
        padding: 100px 0;
    }

    .hero-content {
        text-align: center;
        margin: auto;
        text-align: center !important;
    }

    .hero-btns {
        justify-content: center;
    }

    .feature-box {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

}

@media(max-width:767px) {

    .hero-content h1 {
        font-size: 34px;
        line-height: 44px;
    }

    .hero-content h5 {
        font-size: 20px;
    }

/*     .hero-btns {
        flex-direction: column;
        align-items: center;
    } */

    .top-left,
    .top-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .login-btn {
        margin-top: 20px;
    }

}





.section-padding {
    padding: 60px 0 !important;
}

.section-title {
    color: #0A1A4A;
    font-weight: 800;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-heading {
    font-family: Epilogue;
    font-weight: 700 !important;
    background: linear-gradient(90deg, #FED24A 0%, #FE9516 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0px;
    font-size: 36px;
    text-transform: capitalize;
}

.section-heading font {
    font-size: 28px;
}

.section-title font {
    font-size: 18px;
}


.dashboard-img img {
    width: 100%;
    border-radius: 20px;
    /* height: 560px; */
    object-fit: cover;
}
.reality-img img {
    width: 100%;
    border-radius: 20px;
    height: 560px;
    object-fit: cover;
}

.card-box {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #F8F9FF;
    border: 1px solid #0A1A4A;
    border-radius: 12px;
    padding: 18px;
    height: 100%;
}

.card-box {
    display: flex;
    align-items: center;
    gap: 25px;
}

.card-box i {
    width: 55px;
    height: 55px;
    background: #0A1A4A;
    color: #FDBB31;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.card-box i::after {
    content: "";
    position: absolute;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70px;
    background: linear-gradient(180deg,
            #FED24A 0%,
            #FE9516 100%);
}

.card-box p {
    margin: 0;
    color: #0A1A4A;
    font-weight: 700;
    line-height: 1.4;
}

.card-box p {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    text-transform: capitalize;
}


/* STEP BOX */

.works-sec {
    background: url(./images/journey.png)center /cover no-repeat;
}

.step-box {
    background: #fff;
    border-radius: 18px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    height: 100%;
}

.step-top {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.step-top img {
    width: 60px;
    flex-shrink: 0;
    position: relative;
}

.step-top h5 {
    position: relative;
    margin: 0;
    padding-left: 11px;
    color: #0A1A4A;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.step-top h5::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg,
            #FED24A 0%,
            #FE9516 100%);
}

.step-box p {
    margin: 0;
    color: #666;
    line-height: 24px;
}

/* BENEFIT */

.benefit-card {
    border: 1px solid #FEAD2B;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    height: 100%;
    background-color: #FFF1DA;
}

.benefit-card i {
    font-size: 35px;
    background: linear-gradient(90deg, #FED24A 0%, #FE9516 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.benefit-card h4 {
    color: #0A1A4A;
    font-weight: 600;
    font-size: 22px;
    text-transform: uppercase;
}

.benefit-card span {
    font-weight: 400;
    font-size: 16px;
}

.benefit-card h3 {
    color: #0A1A4A;
    font-family: Epilogue;
    font-weight: 800;
    font-size: 36px;
}

.benefit-card p {
    font-weight: 500;
    font-size: 14px;
}

.threshold {
    background: #fff;
    border-radius: 12px;
    padding: 5px;
    margin: 20px 0;
}

.threshold p {
    background: linear-gradient(90deg, #FED24A 0%, #FE9516 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: DM Sans;
    font-weight: 700;
    font-size: 16px;
    margin: 0;
}



.power-box {
    background: url(./images/side-work.png)bottom /cover no-repeat;
    color: white;
    border-radius: 18px;
    text-align: center;
    padding: 40px 25px;
    height: 100%;
}

.power-box h3 {
    font-family: Epilogue;
    font-weight: 800;
    font-size: 32px;
}

.power-box h3 span {
    background: linear-gradient(90deg, #FED24A 0%, #FE9516 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.circle-price {
    width: 110px;
    height: 110px;
    background: linear-gradient(180deg, #FED24A 0%, #FE9516 100%);
    box-shadow: 0px 0px 7px 0px #00000033;
    font-weight: 700;
    font-size: 60px;
    color: #0A1A4A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 0;
}


.estimate-sec {
    background: url(./images/benefits.png)center /cover no-repeat;
}

.estimate-text {
    color: #777;
}

.estimate-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    height: 100%;
    border: 1px solid #D9D9D9;
}

.estimate-top {
    background: #0A1A4A;
    color: #fff;
    text-align: center;
    padding: 32px 5px 10px 5px;
    position: relative;
    box-shadow: 0px 4px 10px 0px #00000033;
    transform: scale(1.03);
    border-radius: 10px;
}

.estimate-top::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -19px;
    transform: translateX(-50%);
    width: 96%;
    height: 0px;
    background: #0A1A4A;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 20px solid #0A1A4A;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.estimate-top i {
    color: #0A1A4A;
    font-size: 23px;
    margin-bottom: 7px;
    position: absolute;
    top: -27px;
    background: linear-gradient(180deg, #FED24A 0%, #FE9516 100%);
    padding: 10px;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.estimate-top span {
    font-size: 13px;
}

.estimate-card table {
    width: 100%;
    margin-top: 30px;
}

table td .muted {
    font-weight: 400;
    font-size: 12px;
    color: #000;
}

.estimate-card td {
    padding: 6px 12px;
    border-bottom: 1px solid #eee;
}


.blue-strip {
    background: #0A1A4A;
    color: white;
    padding: 20px 0;
}

.strip-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.strip-content p {
    font-weight: 400;
    font-size: 18px;
}

.beyond {
    background: url(./images/beyond-bg.png)center /cover no-repeat;
}

.small-box {
    border: 1px solid #0A1A4A;
    border-radius: 12px;
    padding: 30px 15px;
    color: #0A1A4A;
    font-weight: 700;
    transition: .4s;
    background-color: #fff;
    font-size: 13px;
}

.small-box i {
    color: #FDBB31;
    display: block;
    font-size: 25px;
    margin-bottom: 15px;
}

.small-box:hover {
    transform: translateY(-5px);
}


.faq-sec {
    background: #f6f6f6;
}


/* Custom FAQ Accordion Plus Icon */
.custom-faq-accordion .accordion-button::after {
    background-image: none !important;
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #0b1536;
    background-color: #f7a922;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: none !important;
    font-size: 14px;
}

.custom-faq-accordion .accordion-button:not(.collapsed)::after {
    content: '\f068';
}

/* Fix text-white-50 inside hovered btn-outline-light */
.btn-outline-light:hover .text-white-50 {
    color: rgba(0, 0, 0, 0.6) !important;
}


.sticky-top-custom {
    position: sticky;
    top: 90px;
}


.join-card {
    background: linear-gradient(90deg, #FED24A 0%, #FE9516 100%);
    border-radius: 18px;
    padding: 40px;
    text-align: center;
}

.join-card span {
    color: white;
    letter-spacing: 2px;
}

.join-card h3 {
    color: #0A1A4A;
    font-size: 40px;
    margin: 15px 0 30px;
    font-weight: 700;
}

.join-card img {
    width: 100%;
    height: auto;
}

/* Accordion */
.accordion-button:not(.collapsed) {
    color: #000;
    background-color: transparent;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

/* Custom FAQ Accordion Plus Icon */
.custom-faq-accordion .accordion-button::after {
    background-image: none !important;
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #0b1536;
    background-color: #f7a922;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: none !important;
    font-size: 14px;
}

.custom-faq-accordion .accordion-button:not(.collapsed)::after {
    content: '\f068';
}

@media(max-width:991px) {

    .strip-content {
        flex-direction: column;
        text-align: center;
    }

    .join-card {
        margin-bottom: 10px;
    }

}


.join-card {
    background: linear-gradient(90deg, #FED24A 0%, #FE9516 100%);
    border-radius: 18px;
    padding: 40px;
    text-align: center;
}

.join-card span {
    color: white;
    letter-spacing: 2px;
}

.join-card h3 {
    color: #0A1A4A;
    font-size: 40px;
    margin: 15px 0 30px;
    font-weight: 700;
}

.join-card img {
    width: 100%;
    height: auto;
}



/*================ TESTIMONIALS ================*/
.testimonial-slider {
    padding: 60px 5px 10px;
}

.testimonial-sec {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.testimonial-head {
    display: flex;
    flex-direction: row;
    align-content: end;
    align-items: flex-start;
    justify-content: space-between;
}

.testimonial-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 58%;
    /* adjust according to design */
    background: url("./images/faq-bg.png") no-repeat center top;
    background-size: cover;
    z-index: -1;
}

.review-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0px 0px 10px 0px #00000033;
    min-height: 220px;
}

.review-card p {
    /* line-height: 32px; */
    margin-bottom: 0;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.review-user-2 {
    margin-top: 0;
    margin-bottom: 25px;
}

.review-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user h5 {
    font-family: Epilogue;
    font-weight: 700;
    font-size: 24px;
    color: #0A1A4A;
    margin-bottom: 3px;
}

.review-user span {
    color: #000000;
    font-family: DM Sans;
    font-weight: 400;
    font-size: 16px;
}


.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(90deg, #FED24A, #FE9516);
    color: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}

.swiper-pagination-bullet-active {
    background: #FE9516;
}

/*================ FOOTER ================*/

.footer {
    background:
        linear-gradient(#0A1A4AEB, #0A1A4AEB),
        url("./images/footer-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 0px !important;
}

.footer-left img {
    margin-bottom: 30px;
}

.footer-left h3 {
    color: #FDBB31;
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 20px;
}

.footer-left p {
    max-width: 600px;
    line-height: 30px;
    color: #FFFFFF;
}

.footer-btns {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    align-content: flex-end;
    float: inline-end;
}

.footer-btns .theme-btn,
.footer-btns .outline-btn {
    min-width: 280px;
    justify-content: center;
}

.footer-bottom {
    margin-top: 0px;
    padding-top: 18px;
    border-top: 1px solid;
    border-image: linear-gradient(90deg, #FED24A 0%, #FE9516 100%) 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    font-weight: 400;
    font-size: 16px;
    color: white;
}

.footer-bottom a {
    color: #fecd45;
    margin-left: 8px;
}


/*================ RESPONSIVE ================*/

@media(max-width:991px) {

    .section-padding {
        padding: 60px 0;
    }

    .section-heading {
        font-size: 34px;
    }

    .reality-img img {
        height: 400px;
    }

    .feature-box.border-0 {
        border-bottom: none !important;
    }

    .testimonial-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-btns {
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

}

@media(max-width:767px) {

    .section-heading {
        font-size: 28px;
    }

    .reality-img img {
        height: 300px;
    }

    .step-box {
        padding: 15px;
    }

    .power-box h3 {
        font-size: 26px;
    }

    .circle-price {
        width: 90px;
        height: 90px;
        font-size: 50px;
        margin: 20px auto 0;
    }

    .join-card {
        padding: 30px 20px;
    }

    .join-card h3 {
        font-size: 28px;
        margin: 10px 0 20px;
    }

    .strip-content p {
        font-size: 15px;
    }

    .review-card {
        min-height: auto;
        padding: 25px;
    }

    .footer-left h3 {
        font-size: 28px;
    }

    .footer-btns .theme-btn,
    .footer-btns .outline-btn {
        width: 100%;
        min-width: 100%;
    }

}

@media(max-width:575px) {

    .card-box {
        gap: 15px;
        padding: 12px;
    }

    .card-box i {
        width: 45px;
        height: 45px;
    }

    .card-box i::after {
        height: 50px;
        right: -8px;
    }

    .card-box p {
        font-size: 15px;
    }

    .small-box i {
        font-size: 20px;
        margin-bottom: 10px;
    }

}


/*================ HOVER ANIMATIONS ================*/

/* Card Box Hover */
.card-box {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
}

.card-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(10, 26, 74, 0.15);
    border-color: #FEB629;
    background: #fff;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(255, 177, 46, 0.4) !important;
    background: #0a1a4a !important;
}
.card-box:hover p{color: #fff;}
.card-box:hover i {
    transform: scale(1.1);
    background: linear-gradient(135deg, #FED24A 0%, #FE9516 100%);
    transition: all 0.3s ease;
}

.card-box i {
    transition: all 0.3s ease;
}

/* Step Box Hover */
.step-box {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
}

.step-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(255, 177, 46, 0.4) !important;
    background: #0a1a4a !important;
}
.step-box:hover h5, .step-box:hover p{color: #fff;}
.step-box:hover .step-top img {
    transform: scale(1.1) rotate(5deg);
    transition: all 0.4s ease;
}

.step-top img {
    transition: all 0.4s ease;
}

/* Benefit Card Hover */
.benefit-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(254, 173, 43, 0.3);
    border-color: #FE9516;
    background-color: #fff;
}

.benefit-card:hover i {
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.benefit-card:hover h3 {
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.benefit-card h3,
.benefit-card i {
    transition: all 0.3s ease;
}

/* Estimate Card Hover */
.estimate-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
    /* overflow: hidden; */
}

.estimate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    border-color: #FEB629;
}

.estimate-card:hover .estimate-top {
    background: linear-gradient(135deg, #0A1A4A 0%, #142a6e 100%);
    transition: all 0.4s ease;
}

.estimate-top {
    /* transition: all 0.4s ease; */
}

/* Feature Box Hover */
.feature-box {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
}

.feature-box:hover {
    background: linear-gradient(135deg, #FFF8E8 0%, #FFF1DA 100%);
    transform: scale(1.02);
}

.feature-box:hover img {
    transform: scale(1.15) rotate(8deg);
    transition: all 0.4s ease;
}

.feature-box img {
    transition: all 0.4s ease;
}

/* Small Box Hover Enhancement */
.small-box {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
}

.small-box:hover {
    box-shadow: 0 15px 35px rgba(10, 26, 74, 0.15);
    border-color: #FEB629;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(255, 177, 46, 0.4) !important;
    background: #0a1a4a !important;
    color: #fff;
}
.small-box:hover i {
    transform: scale(1.3);
    transition: all 0.3s ease;
}

.small-box i {
    transition: all 0.3s ease;
}

/* Review Card Hover */
.review-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Join Card Hover */
.join-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.join-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 50px rgba(254, 149, 22, 0.35);
}

/* Power Box Hover */
.power-box {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.power-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.power-box:hover .circle-price {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(254, 149, 22, 0.5);
    transition: all 0.4s ease;
}

.circle-price {
    transition: all 0.4s ease;
}

/* Theme Button Hover Enhancement */
.theme-btn {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.theme-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 30px rgba(254, 149, 22, 0.45),
                0 4px 12px rgba(254, 210, 74, 0.3);
}

/* Outline Button Hover */
.outline-btn {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.outline-btn:hover {
    color: #FEB629;
    border-color: #FEB629;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(254, 182, 41, 0.2),
                0 0 20px rgba(254, 182, 41, 0.1);
}

/* Social Icon Hover */
.social-icons a {
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: #FEB629;
    color: #fff;
}

/* Accordion Item Hover */
.custom-faq-accordion .accordion-item {
    transition: all 0.3s ease;
}

.custom-faq-accordion .accordion-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-2px);
}

/* Nav Link Hover Animation */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FED24A 0%, #FE9516 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

.nav-link:hover {
    color: #FE9516;
}

/* Footer Button Hover */
.footer-btns .theme-btn:hover {
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 12px 35px rgba(254, 149, 22, 0.5);
}

.footer-btns .outline-btn {
    border-color: rgba(255, 255, 255, 0.5);
}

.footer-btns .outline-btn:hover {
    transform: translateY(-5px);
    border-color: #FEB629;
    color: #FEB629;
    box-shadow: 0 12px 35px rgba(254, 182, 41, 0.25);
}

/* Blue Strip Hover */
.strip-content img {
    transition: all 0.4s ease;
}

.strip-content:hover img {
    transform: scale(1.08) rotate(5deg);
}

/* Testimonial Become A Member Btn */
.testimonial-head .theme-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(254, 149, 22, 0.5);
}

.card-box:hover i{
    background: #FDBB31;
    color:  #0a1a4a;
}
/*================ RESPONSIVE GAPS & SPACING ================*/

@media(max-width: 1199px) {
    .benefit-card {
        padding: 18px 15px;
    }

    .benefit-card h3 {
        font-size: 30px;
    }
}

@media(max-width:991px) {
	
	.sticky-top-custom {
    position: static;
}

    .section-padding {
        padding: 60px 0;
    }

    .section-heading {
        font-size: 34px;
    }

    .reality-img img {
        height: 400px;
    }

    .feature-box.border-0 {
        border-bottom: none !important;
    }

    .testimonial-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-btns {
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Better section spacing on tablet */
    .hero-btns {
        gap: 12px;
    }

    .benefit-card {
        margin-bottom: 10px;
    }

    .power-box {
        margin-top: 30px;
    }

    .estimate-card {
        margin-bottom: 4px;
    }
    .top-left, .top-right {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.feature-box h4 {
    color: rgb(10, 26, 74);
    font-weight: 700;
    font-size: 18px;
}
.sticky-top {
    position: -webkit-sticky;
    position: relative !important;
    top: 0;
    z-index: 1020;
}
.footer-btns {
    float: inline-start;
}
.nav-link.active{
    display :none;
}
.swiper-button-next, .swiper-button-prev{
     display :none;
}
.nav-link:hover::after, .nav-link.active::after{
     display :none;
}
.navbar-nav {
    gap: 0px;
    margin-top: 5px;
    border-top: 1px solid #efefef;
    padding-top: 20px;
}
.footer-bottom {
    margin-top: 33px;
    
}
}
button.navbar-toggler {
    border: 2px solid #0a1a4a !important;
}

@media(max-width:767px) {

    .section-heading {
        font-size: 28px;
    }
    .navbar.scrolled {
    padding: 5px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
}
.setmr{margin-bottom: 25px;}
.navbar-brand img {
    height: 38px;
}

    .section-title {
        font-size: 17px;
    }

    .reality-img img {
        height: 300px;
    }

    .step-box {
        padding: 15px;
    }

    .power-box h3 {
        font-size: 26px;
    }

    .circle-price {
        width: 90px;
        height: 90px;
        font-size: 50px;
        margin: 20px auto 0;
    }

    .join-card {
        padding: 30px 20px;
    }

    .join-card h3 {
        font-size: 28px;
        margin: 10px 0 20px;
    }

    .strip-content p {
        font-size: 15px;
    }

    .review-card {
        min-height: auto;
        padding: 25px;
    }

    .footer-left h3 {
        font-size: 28px;
    }

    .footer-btns .theme-btn,
    .footer-btns .outline-btn {
        width: 100%;
        min-width: 100%;
    }

    /* Reduce hover lift on mobile for usability */
    .card-box:hover,
    .step-box:hover,
    .benefit-card:hover,
    .estimate-card:hover,
    .small-box:hover {
        transform: translateY(-4px);
    }

    .benefit-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
.hero-section {
        background: linear-gradient(90deg, #0A1A4A 12.64%, rgba(10, 26, 74, 0.9) 33.27%, rgba(10, 26, 74, 0.8) 49.6%, rgb(10 26 74 / 65%) 80.48%);
    }
.social-icons a {
    width: 24px;
    height: 24px;
}
    .topbar {
    font-size: 10px;
    padding: 4px 0;
}
}

@media(max-width:575px) {

    .card-box {
        gap: 15px;
        padding: 12px;
    }

    .card-box i {
        width: 45px;
        height: 45px;
    }

    .card-box i::after {
        height: 50px;
        right: -8px;
    }

    .card-box p {
        font-size: 15px;
    }

    .small-box {
        padding: 20px 10px;
        font-size: 11px;
    }

    .small-box i {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .section-padding {
        padding: 45px 0;
    }

    .section-heading {
        font-size: 26px;
        margin: 0;
    }

    .benefit-card h3 {
        font-size: 26px;
    }

    .estimate-top {
        padding: 33px 5px 8px 5px;
    }

    .feature-strip {
        margin-top: -30px;
    }
    a.phone {
    display: none;
}
.top-right {
    /* display: none; */
}

}

.power-box h3 span font {
    background: linear-gradient(90deg, #FED24A 0%, #FE9516 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 31px;
}

.estimate-card td font {
    font-size: 12px;
}
@media (min-width: 1688px) {

    .power-box h3 span font{
        font-size:38px;
        background: linear-gradient(90deg, #FED24A 0%, #FE9516 100%);
        -webkit-background-clip:text;
        -webkit-text-fill-color:transparent;
    }
.estimate-card td font {
    font-size: 14px;
}
.feature-box h4 font{
    font-size: 18px;
}
.hero-content h1 font{
    font-size: 48px;

}
/* .theme-btn font{
    padding: 12px 0px;
} */
.small-box font {
        padding: 0 0;
        text-align: center;
    }
.outline-btn font{
    padding: 12px 0px;
/*     font-size: 10px; */
}
}


/* 08.07.20226 */

@media (min-width: 1440px) {
    
	.hero-section {
    min-height: 750px;
}
	
	.section-heading {
    font-size: 42px;
}
	
	h2.section-heading font {
    font-size: 36px !important;
}
	
	
}

@media (min-width: 1366px){
	
	.step-top h5 font {
    font-size: 14px;
}
	
	.step-box p font {
    font-size: 12px !important;
}
	
}

@media (max-width: 1199px) {
	
	.nav-link font {
    font-size: 12px !important;
}
	
}


@media(max-width:991px){
	
	.hero-content h1 {
    font-size: 46px;
}
	
	.hero-content h5 {
    font-size: 22px;
}
	
	.hero-content h1 font {
    font-size: 42px;
}
	
	.hero-content h5 font {
    font-size: 20px;
}
	
	.section-heading font {
    font-size: 24px;
}
	
	
}

@media(max-width:767px){

	.hero-section {
        min-height: auto;
        padding: 60px 0;
    }
	
	.feature-strip {
    margin-top: 60px;
}
	
	.hero-content h1 {
        font-size: 38px;
    }
	
	.hero-content h5 {
        font-size: 20px;
    }
	
	    .section-heading {
        font-size: 26px;
    }
	
	.hero-content h1 font {
        font-size: 36px;
    }
	
	    .hero-content h5 font {
        font-size: 18px;
    }
	
	.section-heading font {
        font-size: 22px;
    }
	
	.section-title font {
    font-size: 16px;
}
	

}

@media(max-width:575px){
	
	.hero-btns {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }
	
	.hero-content h1 {
        font-size: 34px;
    }
	
	.hero-content h5 {
        font-size: 18px;
    }
	
	.navbar-collapse{
        right: 15px !important;
        left: 15px !important;
    }
	
	.hero-content h1 font {
        font-size: 32px;
    }
	
	    .hero-content h5 font {
        font-size: 16px;
    }
	
	.section-heading font {
        font-size: 20px;
    }
	
	    .section-title font {
        font-size: 14px;
    }
	
	
}


@media (max-width: 991px){

    .navbar{
        position: relative;
    }

    .navbar-collapse{
        position: absolute;
        top: calc(100% + 10px);
        right: 100px;
        left: 100px;
        width: auto;
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 15px 40px rgba(0,0,0,.15);
        z-index: 9999;
    }

    .navbar-nav{
        display: flex;
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 0;
        border: 0;
    }

    .navbar-nav .nav-link{
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }

    .login-btn{
        width: 100%;
        margin-top: 15px;
    }
}


