/********** Template CSS **********/
:root {
    --primary: #355EFC;
    --secondary: #E93C05;
    --tertiary: #555555;
    --light: #DFE4FD;
    --dark: #011A41;
    --bg-subtle: #F8FAFF;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

/* Top bar  */

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    color: var(--tertiary);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

/* --- Mobile View Fix --- */
@media (max-width: 991.98px) {
    .navbar.fixed-top {
        background: #FFFFFF !important;
        box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
        top: 0 !important;
        /* Always stick to top */
    }

    .navbar .navbar-brand h1 {
        font-size: 2rem;
    }

    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
        padding-bottom: 15px;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 15px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

.carousel-control-prev-icon {
    border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
    border-radius: 3rem 0 0 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/header.jpg) top left no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--tertiary);
}


/*** Facts ***/
.facts {
    background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png);
}


/*** Callback ***/
.callback {
    position: relative;
}

.callback::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png);
    z-index: -1;
}


/*** Feature ***/
.feature .feature-box,
.feature .feature-box * {
    transition: .5s;
}

.feature .feature-box:hover {
    background: var(--primary);
    border-color: var(--primary) !important;
}

.feature .feature-box:hover * {
    color: #FFFFFF !important;
}


/*** Service ***/
.service .nav .nav-link {
    transition: .5s;
}

.service .nav .nav-link.active {
    border-color: var(--primary) !important;
    background: var(--primary);
}

.service .nav .nav-link.active h5 {
    color: #FFFFFF !important;
}

.service .nav .nav-link.active h5 i {
    color: #FFFFFF !important;
}


/*** Project ***/
.project-item,
.project-item .project-img {
    position: relative;
}

.project-item .project-img a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover .project-img a {
    opacity: 1;
}

.project-item .project-title {
    position: absolute;
    top: 3rem;
    right: 0;
    bottom: 0;
    left: 3rem;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 11px;
    z-index: -1;
    transition: .5s;
}

.project-item:hover .project-title {
    background: var(--primary);
    border-color: var(--primary);
}

.project-item .project-title h4 {
    transition: .5s;
    font-size: 20px;

}

.project-item:hover .project-title h4 {
    color: #FFFFFF;
}

.project-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    padding: 4rem 0;
}

.team-item img {
    position: relative;
    z-index: 2;
}

.team-item .team-text {
    position: absolute;
    top: 0;
    right: 3rem;
    bottom: 0;
    left: 3rem;
    padding: 15px;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-text {
    background: var(--primary);
    border-color: var(--primary);
}

.team-item .team-text h4 {
    transition: .5s;
}

.team-item:hover .team-text h4 {
    color: #FFFFFF;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item:hover .team-social .btn {
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Testimonial ***/
.testimonial-item {
    position: relative;
    text-align: center;
    padding-top: 30px;
}

.testimonial-item .testimonial-text {
    position: relative;
    text-align: center;
}

.testimonial-item .testimonial-text .btn-square {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-item .testimonial-text::before {
    position: absolute;
    content: "";
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: var(--light) transparent transparent transparent;
}

.testimonial-item .testimonial-text::after {
    position: absolute;
    content: "";
    bottom: -59px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: #FFFFFF transparent transparent transparent;
}

.testimonial-carousel .owl-item img {
    margin: 0 auto;
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--light);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 6px;
    left: 6px;
    border-radius: 16px;
    background: var(--light);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    border-color: var(--primary);
}

.testimonial-carousel .owl-dot.active::after {
    background: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: var(--light);
    background: #000B1C;
}

.copyright a {
    color: var(--light);
}

.copyright a:hover {
    color: var(--primary);
}

.career-card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

.career-card {
    transition: 0.3s;
    background: #fff;
}

.career-img {
    height: 160px;
    object-fit: cover;
}



/* service Insurance  */




/* Responsive Blobs */
.blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(53, 94, 252, 0.1) 0%, transparent 75%);
    filter: blur(50px);
    z-index: -1;
}

@media (min-width: 992px) {
    .blob {
        width: 600px;
        height: 600px;
    }
}

/* Navbar Customization */
.navbar-brand {
    font-weight: 800;
    color: var(--dark);
}

.nav-link {
    font-weight: 600;
    color: var(--dark);
    margin: 0 10px;
}

/* Buttons */
.btn-main {
    background: var(--primary);
    color: #fff;
    padding: 14px 30px;
    border-radius: 16px;
    font-weight: 700;
    border: none;
    transition: .3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-main:hover {
    background: #2449D6;
    transform: translateY(-3px);
    color: #fff;
}

.btn-sec {
    border: 2px solid #E1E4F0;
    padding: 14px 30px;
    font-weight: 700;
    border-radius: 16px;
    background: #fff;
    transition: .3s;
    color: var(--dark);
    text-decoration: none;
    display: inline-block;
}

.btn-sec:hover {
    border-color: var(--primary);
    background: var(--light);
    color: var(--primary);
}

/* Premium cards */
.premium-card {
    background: #fff;
    border: 1px solid #E5EAF3;
    padding: 30px;
    border-radius: 24px;
    transition: .3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.premium-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(53, 94, 252, 0.12);
}

.icon-box {
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 14px;
    font-size: 20px;
    margin-bottom: 20px;
}

.icon-blue {
    background: #EEF2FF;
    color: var(--primary);
}

.icon-orange {
    background: #FFF4F0;
    color: var(--secondary);
}

/* Hero Image Handling */
.hero-img-wrapper {
    position: relative;
    border-radius: 2rem;
    padding: 10px;
    background: #fff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.hero-img-wrapper img {
    border-radius: 1.5rem;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (min-width: 992px) {
    .hero-img-wrapper img {
        height: 550px;
    }
}

/* loan  */

/* Hero Styling */
.sky-hero-panel {
    padding: 100px 0;
    background: radial-gradient(circle at top right, var(--bg-subtle) 0%, #ffffff 60%);
    border-bottom-left-radius: 100px;
}

.sky-tag-label {
    background: rgba(53, 94, 252, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
}

/* Stylish Service Cards */
.sky-product-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.sky-product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(53, 94, 252, 0.1);
    border-color: var(--primary);
}

.sky-product-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: var(--bg-subtle);
    border-bottom-left-radius: 100%;
    transition: 0.4s;
    z-index: 0;
}

.sky-product-card:hover::before {
    background: var(--primary);
    width: 100px;
    height: 100px;
}

.sky-icon-container {
    width: 70px;
    height: 70px;
    background: var(--bg-subtle);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

/* Feature List Styling */
.sky-benefit-row {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    margin-bottom: 15px;
    border: 1px solid #f8f8f8;
    transition: 0.3s;
}

.sky-benefit-row:hover {
    background: var(--bg-subtle);
    border-color: var(--primary);
    transform: scale(1.02);
}

.sky-icon-bullet {
    width: 35px;
    height: 35px;
    background: var(--secondary);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

/* FORM FIX */
.sky-contact-surface {
    background: #ffffff;
    border-radius: 40px;
    padding: 50px;
    color: var(--dark);
    position: relative;
    box-shadow: 0 40px 100px rgba(1, 26, 65, 0.08);
    border: 1px solid #E1E4F0;
}

.sky-form-control {
    background: #ffffff;
    border: 2px solid #E1E4F0;
    border-radius: 15px;
    padding: 16px;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.sky-form-control::placeholder {
    color: #94A3B8;
    opacity: 1;
}

.sky-form-control:focus {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 5px rgba(53, 94, 252, 0.1);
    color: var(--dark);
    outline: none;
}

.sky-btn-main {
    background: var(--secondary);
    color: white;
    padding: 18px 40px;
    border-radius: 18px;
    font-weight: 800;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(233, 60, 5, 0.25);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sky-btn-main:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(53, 94, 252, 0.3);
}

.sky-txt-alt {
    color: var(--secondary);
}



/* credit card  */

/* --- KEYFRAMES --- */
@keyframes driftUp {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes alertGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(233, 60, 5, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(233, 60, 5, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(233, 60, 5, 0);
    }
}

@keyframes lightSweep {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* --- HERO SECTION --- */
.sky-hero-arena {
    background: radial-gradient(circle at 10% 20%, rgba(53, 94, 252, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(233, 60, 5, 0.05) 0%, transparent 50%);
    position: relative;
    margin-top: 140px !important;
}

.sky-badge-pill {
    background: #ffffff;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 20px;
    animation: alertGlow 2s infinite;
}

/* --- THE ANIMATED CARD --- */
.sky-card-motion-box {
    position: relative;
    animation: driftUp 6s ease-in-out infinite;
}

.sky-premium-skin {
    width: 100%;
    max-width: 420px;
    height: 260px;
    background: linear-gradient(135deg, var(--dark) 0%, #0a3681 100%);
    border-radius: 25px;
    padding: 35px;
    color: white;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(1, 26, 65, 0.2);
}

.sky-premium-skin::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: lightSweep 3s infinite;
}

/* --- STYLISH BENEFIT CARDS --- */
.sky-utility-tile {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(41, 37, 37, 0.5);
    border-radius: 30px;
    padding: 40px;
    transition: .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.sky-utility-tile:hover {
    transform: scale(1.05) rotate(-1deg);
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(53, 94, 252, 0.12);
}

.sky-icon-sphere {
    width: 80px;
    height: 80px;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary);
    font-size: 30px;
    transition: 0.3s;
}

.sky-utility-tile:hover .sky-icon-sphere {
    background: var(--primary);
    color: #ffffff;
}

/* --- SUPPORT STEPS --- */
.sky-info-row {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 30px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.sky-info-row:hover {
    border-color: var(--secondary);
    transform: translateX(15px);
    box-shadow: 0 10px 30px rgba(233, 60, 5, 0.08);
}

.sky-index-count {
    font-size: 24px;
    font-weight: 800;
    color: var(--light);
    transition: 0.3s;
}

.sky-info-row:hover .sky-index-count {
    color: var(--secondary);
}

/* --- BUTTONS --- */
.sky-action-btn {
    background: var(--primary);
    color: #ffffff;
    padding: 18px 45px;
    border-radius: 20px;
    font-weight: 800;
    border: none;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    z-index: 1;
    text-decoration: none;
    display: inline-block;
}

.sky-action-btn:hover {
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(53, 94, 252, 0.3);
}

.sky-action-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--secondary);
    transition: 0.4s;
    z-index: -1;
}

.sky-action-btn:hover::after {
    width: 100%;
}





/* --- HERO SECTION --- */
.hero-banner {
    margin-top: 80px;
    padding: 30px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #002d72 100%);
    color: white !important;
    border-bottom-right-radius: 80px;
    position: relative;
}

.hero-tagline {
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
    color: var(--secondary);
}

.hero-title {
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-title span {
    color: var(--primary);
}

.hero-description {
    opacity: 0.8;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* Portfolio Preview Card */
.portfolio-preview {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.bar-container {
    display: flex;
    gap: 8px;
    height: 8px;
    margin-top: 1.5rem;
}

.bar-equity {
    width: 60%;
    background-color: var(--primary);
    border-radius: 4px;
}

.bar-debt {
    width: 30%;
    background-color: var(--secondary);
    border-radius: 4px;
}

.bar-hybrid {
    width: 10%;
    background-color: var(--light);
    border-radius: 4px;
}

.legend-item i {
    margin-right: 5px;
}

.color-equity {
    color: var(--primary);
}

.color-debt {
    color: var(--secondary);
}

.color-hybrid {
    color: var(--light);
}

/* --- FEATURE CARDS --- */
.features-grid {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(1, 26, 65, 0.08);
    border: 1px solid var(--bg-subtle);
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--bg-subtle);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* --- STRATEGY SECTION --- */
.strategy-section {
    padding: 60px 0;
}

.strategy-img {
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.roadmap-container {
    padding-left: 1rem;
}

.roadmap-step {
    position: relative;
    padding-left: 45px;
    padding-bottom: 40px;
    border-left: 2px dashed var(--light);
}

.roadmap-step:last-child {
    border-left: none;
    padding-bottom: 0;
}

.roadmap-step::before {
    content: "";
    position: absolute;
    left: -11px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--secondary);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--bg-subtle);
}

/* --- CALL TO ACTION --- */


.cta-box {
    background: var(--bg-subtle);
    border-radius: 40px;
    padding: 60px 20px;
    text-align: center;
    border: 1px solid var(--light);
}

/* --- BUTTONS --- */
.btn-brand {
    background: var(--primary);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-brand:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(233, 60, 5, 0.2);
}

.btn-outline-brand {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-outline-brand:hover {
    background: var(--primary);
    color: white;
}

/* --- FOOTER --- */
.footer-main {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--bg-subtle);
    color: var(--tertiary);
    font-size: 0.85rem;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 991.98px) {
    .hero-banner {
        text-align: center;
        border-bottom-right-radius: 50px;
        padding: 60px 0 100px 0;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .cta-box {
        padding: 40px 20px;
    }
}









 /* --- UNIQUE FLOATING HERO --- */
        .premium-hero {
            padding: 110px 0px 40px 0px;
            background: radial-gradient(circle at top left, var(--light) 0%, #ffffff 50%);
            position: relative;
        }

        .floating-shape {
            position: absolute;
            z-index: 0;
            filter: blur(60px);
            opacity: 0.4;
        }

        .shape-1 { top: 10%; right: 10%; width: 300px; height: 300px; background: var(--primary); border-radius: 50%; }

        .hero-title-main {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 2rem;
        }

        .gradient-text {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* --- GLASS-CARD DESIGN --- */
        .glass-feature-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 30px;
            padding: 40px;
            box-shadow: 0 25px 50px -12px rgba(1, 26, 65, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .glass-feature-card:hover {
            transform: scale(1.03) translateY(-10px);
            box-shadow: 0 40px 60px -15px rgba(53, 94, 252, 0.2);
            border-color: var(--primary);
        }

        /* --- MODERN NUMBERED LIST --- */
        .step-pill {
            display: inline-flex;
            align-items: center;
            background: white;
            padding: 10px 25px;
            border-radius: 100px;
            margin-bottom: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            width: 100%;
            border-left: 5px solid var(--primary);
        }

        .step-num {
            font-weight: 800;
            color: var(--primary);
            margin-right: 15px;
            font-size: 1.2rem;
        }

        /* --- ASYMMETRIC GRID --- */
        .grid-visual {
            position: relative;
            padding: 20px;
        }

        .visual-box {
            border-radius: 40px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        }

        .floating-stat {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: var(--dark);
            color: white;
            padding: 25px;
            border-radius: 25px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            animation: float 4s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* --- BUTTON STYLING --- */
        .btn-modern {
            background: var(--dark);
            color: white;
            padding: 18px 40px;
            border-radius: 20px;
            font-weight: 700;
            border: none;
            transition: 0.3s;
            position: relative;
            z-index: 1;
        }

        .btn-modern::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 0; height: 100%;
            background: var(--primary);
            transition: 0.3s;
            border-radius: 20px;
            z-index: -1;
        }

        .btn-modern:hover::before { width: 100%; }
        .btn-modern:hover { color: white; transform: translateY(-3px); }