* {
    box-sizing: border-box;
}

:root {
    --primary-gold: #d4af37;
    --light-gold: #ffd700;
    --dark-gold: #b8860b;
    --accent-gold: #c5a021;
    --primary-navy: #001f3f;
    --hover-navy: #003366;
    --dark-charcoal: #1a1a1a;
    --off-white: #f9f9f9;
    --subtle-gold: rgba(212, 175, 55, 0.1);
    --gold-gradient: linear-gradient(
        135deg,
        #ffd700 0%,
        #d4af37 50%,
        #b8860b 100%
    );
    --navy-gradient: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    --dark-gradient: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
}

html {
    background-color: #001932 !important;
    scroll-behavior: smooth;
    height: 100%;
    overscroll-behavior: none;
}

body {
    font-family: "DM Sans", sans-serif;
    color: #333;
    background-color: #001932 !important;
    /* Match footer to hide bottom gaps */
    width: 100%;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overscroll-behavior: none;
    -webkit-overflow-scrolling: touch;
    padding-top: 80px;
}

.flex-grow-1 {
    flex-grow: 1 !important;
    background-color: #fff;
    /* Ensure overall content stays light */
}

.bg-navy-footer {
    background-color: #001932 !important;
}

.banner__area {
    position: relative;
    z-index: 1;
}

.banner__area-item {
    height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.banner__area-content {
    padding-right: 50px;
    z-index: 2;
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    position: relative;
}

/* Ensure subpage headers clear the navbar and fill the background without white gaps */
.section-padding.bg-navy-footer:first-of-type {
    margin-top: -100px !important;
    /* Pull up into the body padding space */
    padding-top: 160px !important;
    /* Extra cushioning for the title */
    padding-bottom: 80px !important;
}

.banner__area-item-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 8s ease-out;
}

/* Ken Burns Zoom Effect */
.swiper-slide-active .banner__area-item-bg {
    transform: scale(1.15);
}

/* Optional: Subtle gradient between white text and image */
.banner__area-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 45%;
    width: 15%;
    height: 100%;
    background: linear-gradient(to right, #fff, transparent);
    z-index: 1.5;
}

.banner__area-content span {
    color: var(--primary-navy);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.banner__area-content h1,
.banner__area-content h3 {
    color: var(--primary-navy) !important;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.banner__area-content p {
    color: #555 !important;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
}

.theme-banner-btn1 {
    background: var(--primary-navy);
    color: var(--primary-gold) !important;
    padding: 1px 35px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-right: 20px;
    border: 2px solid var(--primary-navy);
}

.theme-banner-btn1:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 31, 63, 0.4);
    background: var(--hover-navy);
    color: var(--light-gold) !important;
}

.theme-banner-btn {
    background: var(--gold-gradient);
    color: var(--primary-navy) !important;
    padding: 1px 35px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-gold);
}

.theme-banner-btn:hover {
    background: var(--dark-gold);
    color: var(--primary-navy) !important;
    border-color: var(--dark-gold);
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .banner__area-item-bg {
        width: 100%;
        opacity: 0.3;
    }

    .banner__area-item::after {
        display: none;
    }

    .banner__area-content {
        padding: 30px;
        background: rgba(255, 255, 255, 0.9);
    }

    .banner__area-content h1 {
        font-size: 2.5rem;
    }
}

.golden-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.bg-gold {
    background: var(--gold-gradient) !important;
    color: #000 !important;
}

.btn-golden {
    background: var(--gold-gradient);
    border: none;
    color: #000;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 10px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-golden:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    color: #000;
}

.btn-outline-golden {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    background: transparent;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-outline-golden:hover {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
}

.trust-line {
    background: rgba(0, 25, 50, 0.98) !important;
    color: var(--primary-gold);
    padding: 70px 0;
    /* Increased padding to restore height */
    font-weight: 700;
    font-size: 29px;
    letter-spacing: 3px;
    border-top: 3px solid var(--primary-gold);
    border-bottom: 3px solid var(--primary-gold);
    position: relative;
    z-index: 5;
}

.trust-line p {
    margin-top: 30px;
    font-size: 20px;
    color: #fff;
}

.trust-line span {
    margin: 0 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    display: inline-block;
}

.trust-line span:hover {
    color: var(--light-gold);
    transform: translateY(-8px) scale(1.1);
    text-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.trust-line span i {
    transition: all 0.4s ease;
}

.trust-line span:hover i {
    transform: rotate(360deg);
    color: #fff;
    filter: drop-shadow(0 0 8px var(--light-gold));
}

.about-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-img-container img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-img-container:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.about-img-container:hover img {
    transform: scale(1.05);
}

.what-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.what-img-container img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.what-img-container:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.what-img-container:hover img {
    transform: scale(1.05);
}

.why-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-img-container img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.why-img-container:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.why-img-container:hover img {
    transform: scale(1.05);
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 60px 0 60px 0;
    /* Leaf style diagonal corners */
    border: 2px solid var(--primary-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    background: var(--primary-navy);
    border-color: var(--primary-navy);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 25, 50, 0.2);
}

.service-card h3 {
    margin-top: 20px;
    font-weight: 700;
    font-size: 22px;
    transition: color 0.3s ease;
    color: var(--primary-navy);
}

.service-card p {
    transition: color 0.3s ease;
    color: #666;
}

.service-card:hover h3,
.service-card:hover p {
    color: #fff !important;
}

.service-icon {
    font-size: 50px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
}

.service-card .btn-outline-golden {
    transition: all 0.3s ease;
}

.service-card:hover .btn-outline-golden {
    background: var(--primary-gold);
    color: #000;
    border-color: var(--primary-gold);
}

.how-it-works-step {
    position: relative;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 15px;
    background: transparent;
}

.how-it-works-step:hover {
    background: #fff;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.how-it-works-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
}

.eligibility-section {
    background: var(--primary-navy);
    color: #fff;
    padding: 80px 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    color: #fff;
}

.testimonial-card p {
    color: #fff !important;
}

.form-section {
    padding: 80px 0;
    background: #fff;
}

.form-container {
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--primary-navy);
}

.navbar {
    background: rgba(0, 25, 50, 0.98) !important;
    padding: 9px 0;
    border-bottom: 2px solid var(--primary-gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    width: 100% !important;
    left: 0 !important;
    top: 0 !important;
    position: fixed !important;
    z-index: 1030 !important;
}

.modal {
    z-index: 1050 !important;
}

/* 
   =========================================
   MODAL CLOSE BUTTON (BIG VISIBLE X)
   =========================================
*/
.btn-close {
    background: transparent !important;
    opacity: 1 !important;
    position: relative !important;
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid var(--primary-gold) !important;
    /* Make border golden and always visible */
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    z-index: 1060 !important;
}

.btn-close::before {
    content: "\2715";
    /* Multiplication X Sign */
    font-size: 22px;
    color: var(--primary-gold);
    /* Match golden theme */
    font-weight: 800;
}

.btn-close:hover {
    background-color: var(--primary-gold) !important;
    transform: rotate(90deg);
}

.btn-close:hover::before {
    color: #000;
    /* Contrast against golden background on hover */
}

.btn-close:focus {
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25) !important;
    outline: none !important;
}

.modal-backdrop {
    z-index: 1040 !important;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin-left: 20px;
    transition: color 0.3s ease;
}

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

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
    color: #fff !important;
}

.logo-gold {
    max-height: 60px;
    width: auto;
}

/* Glassmorphism effects */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hero Section Adjustments */
.hero-content {
    padding: 150px 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("https://images.unsplash.com/photo-1573163251105-3c467a3a91bf?q=80&w=2069&auto=format&fit=crop")
            no-repeat center center/cover;
    color: #fff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #e0e0e0;
    animation: fadeInUp 1s ease-out;
}

/* More premium touches */
.service-card h3 {
    margin-top: 15px;
    font-weight: 700;
}

.text-golden {
    color: var(--primary-gold) !important;
}

.bg-black {
    background-color: #000 !important;
}

.bg-dark {
    background-color: var(--primary-navy) !important;
}

.form-control,
.form-select,
.nice-select {
    border: 1px solid #e0e0e0 !important;
    border-radius: 10px !important;
    padding: 12px 20px !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    background-color: #fff !important;
    height: auto !important;
    font-size: 15px !important;
}

.form-control:hover,
.form-select:hover,
.nice-select:hover {
    border-color: var(--primary-gold) !important;
    background-color: #fff !important;
}

.form-control:focus,
.form-select:focus,
.nice-select.open,
.nice-select:focus {
    border-color: var(--primary-gold) !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15) !important;
    outline: none !important;
    background-color: #fff !important;
}

/* Fix for nice-select overlapping and styling */
.nice-select {
    width: 100% !important;
    float: none !important;
    line-height: inherit !important;
    display: flex !important;
    align-items: center !important;
}

.nice-select .current {
    font-weight: 400;
    color: #444;
}

.nice-select .list {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #eee;
    margin-top: 5px;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: var(--subtle-gold);
    color: var(--dark-gold);
}

/* Remove Bootstrap arrow to prevent double arrows */
.nice-select.form-select {
    background-image: none !important;
}

.form-label {
    font-weight: 600;
    color: #444;
}

.footer h5 {
    letter-spacing: 1px;
}

/* Scroll to top button (if needed) */
#scrollUp {
    background: var(--gold-gradient);
    color: #000;
    bottom: 20px;
    right: 20px;
}

/* Process Section Styles (As per Screenshot) */
/* Hero slider adjustments for full-screen impact without cropping */
.banner__area-item {
    height: 100vh;
    /* Changed from 90vh to 100vh for full coverage */
    padding-top: 0;
    /* Removed padding to let image background span full height */
}

/* Ensure the banner content itself clears the navbar */
.banner__area-content {
    margin-top: 50px;
}

/* Ensure subpage headers clear the navbar without white gaps */
.section-padding.bg-navy-footer:first-of-type {
    padding-top: 160px !important;
    padding-bottom: 80px !important;
}

.process__area {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.process__area-title span {
    color: #999;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.process__area-title h2 {
    font-size: 50px;
    font-weight: 800;
    color: var(--dark-charcoal);
    margin-bottom: 25px;
}

.process__area-title h2 span {
    display: inline;
    text-transform: none;
    letter-spacing: normal;
}

.process__area-title p {
    max-width: 650px;
    margin: 0 auto 60px;
    color: #777;
    font-size: 16px;
    line-height: 1.8;
}

.process__item {
    background: #f4f7fa;
    padding: 50px 30px;
    border-radius: 12px;
    transition: all 0.4s ease;
    height: 100%;
}

.process__item:hover {
    background: #fff;
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 31, 63, 0.08);
}

.process__item-icon {
    font-size: 45px;
    color: #0049ff;
    /* Vibrant Blue from screenshot */
    margin-bottom: 30px;
    display: inline-block;
}

.process__item h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-charcoal);
}

.process__item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

.blue-highlight {
    color: #0049ff;
    border-bottom: 4px solid #0049ff;
}

.trust-line i {
    font-size: 28px;
    /* Increased icon size */
    margin-right: 15px;
    vertical-align: middle;
    color: var(--primary-gold);
}

/* Mission & Vision Styles */
.mission-vision-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-gold);
    height: 100%;
    transition: all 0.3s ease;
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-left-width: 10px;
}

.mission-vision-card h3 {
    color: var(--primary-navy);
    margin-bottom: 20px;
    font-weight: 700;
}

/* Connector Section */
.bg-gold {
    background: var(--gold-gradient) !important;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        padding: 100px 0;
    }
}

/* Premium Footer Styles */
.bg-navy-footer {
    background: #001932 !important;
    /* Extremely Deep Navy */
}

.border-gold {
    border-color: var(--primary-gold) !important;
}

.footer-info-grid h6 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 10px;
}

.info-item i {
    font-size: 24px;
}

.footer-brand-area .italic {
    font-style: italic;
    font-weight: 300;
}

.hover-white:hover {
    color: #fff !important;
}

.footer-bottom-links a {
    transition: color 0.3s ease;
    text-decoration: none;
}

.about-service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 60px 0 60px 0;
    /* Leaf style diagonal corners */
    border: 2px solid var(--primary-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Specific layout for About Us page "Why Choose" section - Alternating Corners */
.about-why-choose .row > div:nth-child(even) .about-service-card {
    border-radius: 0 60px 0 60px;
}

/* Match the 3rd box being dark as seen in the reference image */
/* .about-why-choose .row>div:nth-child(3) .about-service-card {
    background: var(--primary-navy);
    border-color: var(--primary-navy);
}

.about-why-choose .row>div:nth-child(3) .about-service-card h4,
.about-why-choose .row>div:nth-child(3) .about-service-card p {
    color: #fff !important;
} */

.section-header span {
    display: block;
    /* Makes it sit on its own line above the H2 */
    color: var(--primary-gold);
    /* Often a primary/accent color */
    font-weight: 600;
    /* Makes it slightly bold */
    text-transform: uppercase;
    /* Common for "subtitle" style spans */
    letter-spacing: 2px;
    /* Adds space between letters */
    margin-bottom: 10px;
    /* Gap between span and the H2 title */
}

.about-service-card:hover {
    background: var(--primary-navy);
    border-color: var(--primary-navy);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 25, 50, 0.2);
}

.about-service-card h4 {
    margin-top: 20px;
    font-weight: 700;
    font-size: 22px;
    transition: color 0.3s ease;
    color: var(--primary-navy);
}

.about-service-card p {
    transition: color 0.3s ease;
    color: #666;
}

.about-service-card:hover h4,
.about-service-card:hover p {
    color: #fff !important;
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    /* Hides the text outside the box */
    background: var(--primary-navy);
    /* background: #F4F7FA; */

    color: var(--primary-gold);
    padding: 2px 0;
    border-top: 2px solid var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: ticker-move 20s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 40px;
    /* font-weight: 500; */
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* The Animation Logic */
@keyframes ticker-move {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Moves halfway to loop perfectly */
}

/* Optional: Pause on hover */
/* .ticker-wrapper:hover .ticker-content {
    animation-play-state: paused;
} */

/* 
   =========================================
   PARTNER GROWTH SECTION (REVAMPED)
   =========================================
*/
#connector-growth {
    background: radial-gradient(circle at top right, #fff, #f8f9fa);
    position: relative;
    padding: 100px 0;
}

.text-navy {
    color: var(--primary-navy) !important;
}

.bg-subtle-gold {
    background: rgba(212, 175, 55, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connector-img-frame {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    border-radius: 1.5rem;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.connector-img-frame:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.connector-bg-blob {
    width: 140%;
    height: 140%;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.08) 0%,
        transparent 70%
    );
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

/* .connector-stats-badge {
    bottom: -30px;
    left: -30px;
    z-index: 3;
    min-width: 150px;
    border: 2px solid var(--primary-gold);
    background: var(--primary-navy) !important;
    animation: floatBadge 3s infinite ease-in-out;
} */

/* @keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
} */

.connector-img-frame img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.connector-img-frame:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .connector-stats-badge {
        bottom: 20px;
        left: 20px;
        position: relative !important;
        margin-top: 40px;
        display: inline-block;
    }

    .connector-image-wrapper {
        margin-top: 60px;
    }
}

.emi_calculator-img-frame {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    border-radius: 1.5rem;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.emi_calculator-img-frame:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.emi_calculator-bg-blob {
    width: 140%;
    height: 140%;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.08) 0%,
        transparent 70%
    );
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}


.emi_calculator-img-frame img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.emi_calculator-img-frame:hover img {
    transform: scale(1.05);
}

.emi_calculator-image-wrapper {
    margin-top: 50px;
}

.connector-image-wrapper,
.emi_calculator-image-wrapper {
    position: relative;
    overflow: hidden;
}
/* 
   =========================================
   TESTIMONIALS SWIPER CUSTOMIZATION
   =========================================
*/
.testimonials-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #d4d4d4;
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonials-slider .swiper-pagination-bullet-active {
    background: var(--primary-gold);
    width: 24px;
    border-radius: 6px;
}

/* bussiness landing page: */
.bl-section-label {
    display: inline-block;
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

/* ---- Benefits Cards ---- */
.bl-benefit-card {
    background: #fff;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.bl-benefit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--navy-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 18px;
    z-index: 0;
}

.bl-benefit-card:hover::before {
    opacity: 1;
}

.bl-benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 50px rgba(0, 25, 50, 0.18);
    border-color: transparent;
}

.bl-benefit-card .bl-benefit-icon,
.bl-benefit-card h5,
.bl-benefit-card p {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.bl-benefit-card:hover h5 {
    color: var(--primary-gold) !important;
}

.bl-benefit-card:hover p {
    color: rgba(255, 255, 255, 0.75) !important;
}

.bl-benefit-icon {
    font-size: 46px;
    margin-bottom: 16px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.bl-benefit-card:hover .bl-benefit-icon {
    transform: scale(1.2) rotate(8deg);
}

.bl-benefit-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.bl-benefit-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* ---- Who Can Apply items ---- */
.bl-who-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    padding: 14px 18px;
    transition: all 0.3s ease;
    cursor: default;
}

.bl-who-item:hover {
    background: var(--primary-navy);
    border-color: var(--primary-navy);
    transform: translateX(6px);
    box-shadow: 0 8px 25px rgba(0, 25, 50, 0.15);
}

.bl-who-item:hover .bl-who-label {
    color: #fff !important;
}

.bl-who-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.bl-who-label {
    font-weight: 600;
    color: var(--primary-navy);
    font-size: 15px;
    transition: color 0.3s ease;
}

/* ---- CTA Box ---- */
.bl-cta-box {
    background: var(--navy-gradient);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
}

.bl-cta-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

/* ---- Documents Cards ---- */
.bl-doc-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border: 1.5px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 26px 22px;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.bl-doc-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.15);
}

.bl-doc-icon {
    font-size: 36px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.bl-doc-card:hover .bl-doc-icon {
    transform: scale(1.15);
}

/* ---- FAQ Accordion ---- */
.bl-faq-item {
    border: 1.5px solid rgba(212, 175, 55, 0.25) !important;
    border-radius: 12px !important;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.bl-faq-item:hover {
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.12);
}

.bl-faq-btn {
    background: #fff !important;
    color: var(--primary-navy) !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    padding: 18px 24px !important;
    border: none !important;
    box-shadow: none !important;
}

.bl-faq-btn:not(.collapsed) {
    background: var(--primary-navy) !important;
    color: var(--primary-gold) !important;
}

.bl-faq-btn::after {
    filter: invert(0);
    transition: filter 0.3s ease;
}

.bl-faq-btn:not(.collapsed)::after {
    filter: invert(1);
}

/* personal loan landing page: */
.pl-section-label {
    display: inline-block;
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

/* ---- Benefits Cards ---- */
.pl-benefit-card {
    background: #fff;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.pl-benefit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--navy-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 18px;
    z-index: 0;
}

.pl-benefit-card:hover::before {
    opacity: 1;
}

.pl-benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 50px rgba(0, 25, 50, 0.18);
    border-color: transparent;
}

.pl-benefit-card .pl-benefit-icon,
.pl-benefit-card h5,
.pl-benefit-card p {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.pl-benefit-card:hover h5 {
    color: var(--primary-gold) !important;
}

.pl-benefit-card:hover p {
    color: rgba(255, 255, 255, 0.75) !important;
}

.pl-benefit-icon {
    font-size: 46px;
    margin-bottom: 16px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.pl-benefit-card:hover .pl-benefit-icon {
    transform: scale(1.2) rotate(8deg);
}

.pl-benefit-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.pl-benefit-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* ---- Who Can Apply items ---- */
.pl-who-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    padding: 14px 18px;
    transition: all 0.3s ease;
    cursor: default;
}

.pl-who-item:hover {
    background: var(--primary-navy);
    border-color: var(--primary-navy);
    transform: translateX(6px);
    box-shadow: 0 8px 25px rgba(0, 25, 50, 0.15);
}

.pl-who-item:hover .pl-who-label {
    color: #fff !important;
}

.pl-who-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.pl-who-label {
    font-weight: 600;
    color: var(--primary-navy);
    font-size: 15px;
    transition: color 0.3s ease;
}

/* ---- CTA Box ---- */
.pl-cta-box {
    background: var(--navy-gradient);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
}

.pl-cta-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

/* ---- Documents Cards ---- */
.pl-doc-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border: 1.5px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 26px 22px;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.pl-doc-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.15);
}

.pl-doc-icon {
    font-size: 36px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.pl-doc-card:hover .pl-doc-icon {
    transform: scale(1.15);
}

/* ---- FAQ Accordion ---- */
/* ---- FAQ Accordion (Unified) ---- */
.pl-faq-item,
.bl-faq-item {
    border: 1.5px solid rgba(212, 175, 55, 0.25) !important;
    border-radius: 12px !important;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.pl-faq-item:hover,
.bl-faq-item:hover {
    box-shadow: 0 8px 28px rgba(0, 31, 50, 0.1);
}

.pl-faq-btn,
.bl-faq-btn {
    background: #fff !important;
    color: var(--primary-navy) !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    padding: 20px 24px !important;
    border: none !important;
    box-shadow: none !important;
}

.pl-faq-btn:not(.collapsed),
.bl-faq-btn:not(.collapsed) {
    background: var(--primary-navy) !important;
    color: var(--primary-gold) !important;
}

.pl-faq-btn::after,
.bl-faq-btn::after {
    filter: invert(0);
    transition: filter 0.3s ease;
}

.pl-faq-btn:not(.collapsed)::after,
.bl-faq-btn:not(.collapsed)::after {
    filter: invert(1);
}

/* Personal Loan Process Cards */

.pl-process-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 14px;
    position: relative;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    height: 100%;
    border: 1px solid transparent;
}

.pl-process-icon {
    font-size: 38px;
    transition: all 0.35s ease;
}

.pl-step {
    position: absolute;
    top: 15px;
    right: 18px;
    font-size: 14px;
    font-weight: 700;
    color: #caa354;
    opacity: 0.7;
}

/* Hover Effects */

.pl-process-card:hover {
    transform: translateY(-10px);
    /* box-shadow:0 20px 40px rgba(0,0,0,0.12); */
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.15);

    border: 1px solid #caa354;
}

.pl-process-card:hover .pl-process-icon {
    transform: scale(1.2) rotate(6deg);
}

.btn-apply {
    background: var(--primary-gold);
    color: #fff !important;
    border-color: var(--primary-gold);
}

.btn-apply:hover {
    background: transparent;
    color: var(--primary-gold) !important;
}

.pl-eligibility-box {
    background: #fff;
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    border-radius: 14px;
    padding: 25px;
}

.pl-eligibility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pl-eligibility-list li {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
    font-size: 15px;
}

.pl-eligibility-list li:last-child {
    border-bottom: none;
}

.pl-eligibility-list li::before {
    content: "✔";
    color: var(--primary-gold);
    font-weight: 700;
    margin-right: 10px;
}

/* homeloan landing page */

/* ---- Benefits Cards ---- */
.hl-benefit-card {
    background: #fff;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.hl-benefit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--navy-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 18px;
    z-index: 0;
}

.hl-benefit-card:hover::before {
    opacity: 1;
}

.hl-benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 50px rgba(0, 25, 50, 0.18);
    border-color: transparent;
}

.hl-benefit-card .hl-benefit-icon,
.hl-benefit-card h5,
.hl-benefit-card p {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.hl-benefit-card:hover h5 {
    color: var(--primary-gold) !important;
}

.hl-benefit-card:hover p {
    color: rgba(255, 255, 255, 0.75) !important;
}

.hl-benefit-icon {
    font-size: 46px;
    margin-bottom: 16px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.hl-benefit-card:hover .hl-benefit-icon {
    transform: scale(1.2) rotate(8deg);
}

.hl-benefit-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

/* =========================================
   BUSINESS LOAN PREMIUM STYLES
   ========================================= */

/* ---- Section Labels ---- */
.bl-section-label {
    display: inline-block;
    color: var(--primary-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 12px;
}

/* ---- Benefit Cards (Sync with HL) ---- */
.bl-benefit-card {
    background: #fff;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.bl-benefit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--navy-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 18px;
    z-index: 0;
}

.bl-benefit-card:hover::before {
    opacity: 1;
}

.bl-benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 50px rgba(0, 25, 50, 0.18);
    border-color: transparent;
}

.bl-benefit-card .bl-benefit-icon,
.bl-benefit-card h5,
.bl-benefit-card p {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.bl-benefit-card:hover h5 {
    color: var(--primary-gold) !important;
}

.bl-benefit-card:hover p {
    color: rgba(255, 255, 255, 0.75) !important;
}

.bl-benefit-icon {
    font-size: 46px;
    margin-bottom: 16px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.bl-benefit-card:hover .bl-benefit-icon {
    transform: scale(1.2) rotate(8deg);
}

.bl-benefit-card h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

/* ---- Eligibility Section ---- */
.bl-eligibility-card {
    background: #fff;
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.bl-eligibility-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
}

.bl-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.bl-card-icon {
    font-size: 24px;
    color: var(--primary-gold);
    margin-right: 15px;
}

.bl-type-item {
    background: #f8f9fa;
    border-radius: 15px;
    /* padding: 12px 8px; */
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    height: 100%;
    display: flex;
    padding: 20px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bl-type-item p {
    line-height: 1.2;
    margin-top: 5px !important;
    word-wrap: break-word;
    width: 100%;
}

.bl-type-item:hover {
    background: #fff;
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.bl-criteria-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bl-criteria-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

.bl-criteria-list li:last-child {
    border-bottom: none;
}

.bl-criteria-list .label {
    color: #777;
    font-size: 14px;
}

.bl-criteria-list .value {
    color: var(--primary-navy);
    font-weight: 700;
    font-size: 14px;
}

/* ---- Premium CTA Block ---- */
.bl-cta-card-main {
    height: 100%;
}

.bl-cta-inner {
    height: 100%;
    border-radius: 24px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.bl-cta-inner::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: var(--subtle-gold);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
}

.bl-cta-icon-outer {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
}

/* ---- Document Cards ---- */
.bl-doc-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.bl-doc-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
}

.bl-doc-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: #f8f9fa;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s ease;
}

.bl-doc-card:hover .bl-doc-icon {
    background: var(--subtle-gold);
    transform: rotate(-10deg);
}

/* ---- Bottom CTA (Pre-Footer) ---- */
.bl-bottom-cta {
    background: #001932 !important;
    position: relative;
    overflow: hidden;
}

.bl-bottom-cta .container {
    position: relative;
    z-index: 1;
}

.bl-bottom-cta .golden-text {
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.bl-bottom-cta .btn-outline-golden {
    border-radius: 50px !important;
    padding: 15px 45px !important;
    font-size: 1.1rem !important;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bl-bottom-cta .btn-outline-golden:hover {
    background: var(--gold-gradient) !important;
    color: #000 !important;
    border-color: transparent !important;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.35);
}

.businessloan-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.businessloan-img-container img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.businessloan-img-container:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.businessloan-img-container:hover img {
    transform: scale(1.05);
}

/* login page */
.auth-section {
    background: radial-gradient(
        circle at top right,
        rgba(212, 175, 55, 0.05) 0%,
        rgba(255, 255, 255, 1) 50%,
        rgba(0, 31, 63, 0.02) 100%
    );
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Subtle background elements for premium feel */
.auth-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--gold-gradient);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

/* Fix for input-group */
.input-group {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    background: #fff;
}

.input-group:focus-within {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.input-group .input-group-text {
    background-color: #f8f9fa !important;
    border: none !important;
    padding-left: 20px;
    padding-right: 10px;
    color: var(--primary-navy);
}

.input-group .form-control {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding-left: 10px !important;
}

.gold-border-card {
    border-top: 5px solid var(--primary-gold) !important;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05) !important;
    position: relative;
    z-index: 1;
}

/* signup page-register page */
.auth-section {
    background: radial-gradient(
        circle at top right,
        rgba(212, 175, 55, 0.05) 0%,
        rgba(255, 255, 255, 1) 50%,
        rgba(0, 31, 63, 0.02) 100%
    );
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0;
}

/* Fix for input-group */
.input-group {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    background: #fff;
}

.input-group:focus-within {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.input-group .input-group-text {
    background-color: #f8f9fa !important;
    border: none !important;
    padding-left: 20px;
    padding-right: 10px;
    color: var(--primary-navy);
}

.input-group .form-control {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding-left: 10px !important;
}

.gold-border-card {
    border-top: 5px solid var(--primary-gold) !important;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08) !important;
}

.benefit-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-icon {
    width: 45px;
    height: 45px;
    background: var(--gold-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    color: #000;
    font-size: 18px;
}

.benefit-text h6 {
    margin-bottom: 2px;
    font-weight: 700;
    color: var(--primary-navy);
}

.benefit-text p {
    font-size: 13px;
    color: #666 !important;
    margin-bottom: 0;
}
