/* =========================================
   Global Resets & Overrides
   ========================================= */
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}
*{
    scroll-behavior: smooth;
    scroll-margin-top: 70px;
}


:root {
    --bs-primary: #002B6A;
    --bs-secondary: #094CBB;
    --text-color: #6c757d;
    --theme-gradient: linear-gradient(135deg, #185a9d -10%, #002B6A 100%);
}

/* common classes css starts */

.common-margin-top {
    margin-top: clamp(60px, 7vw, 100px);
}

.common-padding {
    padding-top: clamp(40px, 5.5vw, 80px);
    padding-bottom: clamp(40px, 5.5vw, 80px);
}

.common-descp {
    color: var(--text-color);
    margin-bottom: clamp(10px, 2vw, 15px);
}

.gradient-cls {
    background: var(--theme-gradient) !important;
}

.text-primary {
    color: var(--bs-secondary) !important;
}
.btn-primary {
    background-color: var(--bs-secondary) !important;
}

/* common classes css starts */


/* =========================================
   Navbar Adjustments
   ========================================= */
.navbar {
    background-color: #eff2f7;
}

.nav-link.custom-nav-hover {
    color: #222;
}

.nav-link.custom-nav-hover::after {
    content: '';
    width: 0%;
    display: block;
    height: 2px;
    background-color: var(--bs-secondary);
    transition: all .3s;
}

.custom-nav-hover:hover {
    color: #0f172a !important;
}

.custom-nav-hover:hover::after {
    width: 100%;
}

/* .nav-logo {
    height: 40px;
} */
.nav-logo {
    height: 50px;
}
.navbtn{
    background-color: var(--bs-primary) !important;
}
/* =========================================
   Hero Section Styling
   ========================================= */

.hero-gradient {
    background: var(--theme-gradient);
    padding-bottom: 100px;
}
.hero-gradient .hero-subheading{
    font-size: clamp(12px,2vw,18px);
}

.custom-badge {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.text-highlight {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 100%;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.25);
    z-index: -1;
    border-radius: 4px;
}

.btn-hover-lift {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.btn-hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* =========================================
   Floating Card & Image Layout
   ========================================= */
.icon-circle {
    width: 48px;
    height: 48px;
    border: 6px solid var(--bs-secondary) !important;
}

.floating-card {
    bottom: -50px;
    left: -40px;
    min-width: 200px;
    animation-name: updown;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes updown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.hero-curve-design {
    bottom: -1px;
    width: 100%;
}

@media (max-width: 991px) {
    .floating-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -25px;
    }

    .hero-gradient {
        min-height: auto;
        padding-top: 120px;
    }
}




/* =========================================
   About & Purpose Section Components
   ========================================= */


/* Reusable Top Badges */
.badge-custom {
    background: rgba(23, 78, 166, 0.08);
    color: var(--bs-primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.icon-logo {
    height: 18px;
}

.about-img {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-img img {
    height: 550px;
}

.info-box {
    background: #f1f5f9;
    border-radius: 16px;
}

.feature-item {
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 500;
}

/* Purpose Cards */
.purpose-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.purpose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}

/* Decorative Curve for Purpose Cards */
.purpose-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    height: 130px;
    background: #f1f5f9;
    border-bottom-left-radius: 100%;
    z-index: 0;
}

/* Ensures text/icons sit above the decorative curve */
.purpose-card>* {
    position: relative;
    z-index: 1;
}

/* Purpose Icon Box */
.icon-box {
    width: 48px;
    height: 48px;
    background: var(--bs-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

/* Bottom CTA Pill */
.cta-box {
    background: #ffffff;
    border-radius: 50px;
    padding: 20px 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}








/* =========================================
   Why Choose Us & Counters
   ========================================= */

.why-choose {
    background: #f8fafc;
    /* Optional: very subtle radial gradient to match the premium design feel */
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 1) 100%);
}

/* Feature Cards */
.why-card {
    background: #ffffff;
    border-radius: 20px;
    /* Fallback if var(--radius-lg) is undefined */
    border-radius: var(--radius-lg, 20px);
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    /* Fallback */
    box-shadow: var(--shadow-soft, 0 4px 20px rgba(0, 0, 0, 0.03));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

/* Iconic Yellow Dot (Top Right) */
.why-card::after {
    content: "";
    position: absolute;
    top: 24px;
    right: 24px;
    width: 12px;
    height: 12px;
    background: #facc15;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(250, 204, 21, 0.4);
}

/* Card Icon Box */
.why-icon {
    width: 56px;
    height: 56px;
    background: var(--bs-primary);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

/* Optional hover polish requested in prompt */
.why-card:hover .why-icon {
    transform: scale(1.08);
}

/* Counters */
.counter-box h3 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--bs-primary);
    letter-spacing: -1px;
}

.counter-box p {
    font-size: 15px;
    color: #64748b;
    /* Slate text for premium muted look */
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .why-card {
        padding: 18px;
    }

    .why-card::after {
        top: 20px;
        right: 20px;
    }
}


  
/* =========================================
   Hero Redesign Variables & Utilities
   ========================================= */

:root {
    --brand-primary: #1a365d; /* SaaS Dark Blue */
    --brand-success: #10b981; /* Metric Green */
    --brand-orange-start: #ff7e5f; 
    --brand-orange-end: #ff4e00;
}

/* Typography & Brand Colors */
.text-hero-title {
    color: #111827 !important; 
    letter-spacing: -0.02em;
}

.text-brand-primary { color: var(--brand-primary) !important; }
.bg-brand-primary { background-color: var(--brand-primary) !important; }
.bg-brand-success { background-color: var(--brand-success) !important; }
.bg-brand-orange { 
    background: linear-gradient(135deg, var(--brand-orange-start), var(--brand-orange-end)) !important; 
}

/* Custom SVG Underline Alignment */
.custom-underline svg {
    color: var(--brand-primary);
}

/* Buttons & Interactions */
.btn-brand-primary {
    background-color: var(--brand-primary);
    color: #ffffff;
    border: 1px solid var(--brand-primary);
    transition: all 0.2s ease-in-out;
}
.btn-brand-primary:hover {
    background-color: #112543;
    color: #ffffff;
}

.btn-hover-lift {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.btn-hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

.hover-shadow-sm { transition: all 0.2s ease; }
.hover-shadow-sm:hover {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
    transform: translateY(-1px);
}

/* Right Side UI Card styling */
.custom-card-shadow {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.06) !important;
}

.product-preview-bg {
    background: var(--theme-gradient);
}

/* Responsive Floating Badge Overrides */
.badge-float-top {
    margin-right: -25px;
    margin-top: 25px;
}
.badge-float-bottom {
    margin-left: -25px;
    margin-bottom: 30px;
}

@media (max-width: 767.98px) {
    .badge-float-top { margin-right: -10px; }
    .badge-float-bottom { margin-left: -10px; }
}

/* =========================================
   Benefits Section (Dark & Glass)
   ========================================= */

.benefits-section {
    background: var(--theme-gradient);
    color: #ffffff;
}
.benefits-section .badge-custom img , .hero-gradient .custom-badge img{
    filter: invert(1) brightness(3);
}
/* Sublte Grid Overlay */
.benefits-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.badge-light {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

/* Glass Card Logic */
.benefit-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
}

/* Card Internal Glow */
.benefit-card::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.benefit-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px clamp(24px, 2.5vw, 32px);
    border-radius: 14px;
    text-align: center;
    min-width: clamp(160px, 10vw, 200px);
}

.section-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.section-curve svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}




/* =========================================
   Onboarding Timeline
   ========================================= */

.timeline-line {
    height: 2px;
    background: #cbd5f1;
    position: absolute;
    top: 55px;
    left: 10%;
    right: 10%;
    z-index: 0;
}

.step-icon {
    width: 62px;
    height: 62px;
    background: var(--bs-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 8px #f8fafc; /* Masks the line behind it */
}

/* The Yellow Step Number */
.step-icon::after {
    content: attr(data-step);
    position: absolute;
    top: -2px;
    right: -2px;
    background: #facc15;
    color: #000;
    font-size: 11px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #f8fafc;
}

.step-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
}

.btn-cta {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.2s ease;
}

.btn-cta:hover {
    transform: scale(1.03);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .step-icon {
        box-shadow: none; /* No line to mask on mobile */
    }
}





/* ==========================================
   SECTION 1: OUR STORY
========================================== */
.story-img {
    position: relative;
    z-index: 1;
}

.story-img img {
    height: 580px;
    border-radius: 12px !important;
    object-fit: cover;
}

.story-img img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    width: 100%;
    position: relative;
    z-index: 2;
}

.story-img::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background: #c7d2fe;
    border-radius: 50%;
    top: -20px;
    left: 0px;
    z-index: 0;
}

.story-img::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    background: #e2e8f0;
    border-radius: 50%;
    bottom: -20px;
    right: 0px;
    z-index: 0;
}

/* Content Styling */
.text-muted-custom {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.quote-box {
    background: #e2e8f0;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-style: italic;
    color: #334155;
    border-left: 4px solid var(--primary);
}

.story-tag {
    background: #eae7e72e;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 5px 6px rgba(211, 211, 211, 0.533);
    min-width: 120px;
    text-align: center;
    flex: 1 1 120px;
    /* Ensures nice wrapping on mobile */
    transition: transform 0.2s;
}

.story-tag:hover {
    transform: translateY(-3px);
}

/* ==========================================
   SECTION 2: MOBILE APP COMING SOON
========================================== */
.app-section {
    background: var(--theme-gradient);
    color: white;
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
    /* Padding for bottom SVG wave */
}

/* Blueprint Grid */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}


/* Store Buttons */
.store-btn {
    background: white;
    color: #0f172a;
    border-radius: 10px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Phone Mockup Styling */
.phone-mockup {
    border-radius: 30px;
    padding: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    position: relative; 
}
.phone-mockup img {
    height: 550px;
    width: 100%;
    max-width: 400px;
}

/* Floating Badges/Icons */
.download-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #facc15;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.floating-icon {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: white;
    color: #1e40af;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 3;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .app-desc {
        max-width: 100%;
    }

    .story-img img {
        height: 380px;
    }
}

/* Mobile Responsive Overrides */
@media (max-width: 768px) {
    .about-img img {
        height: 350px;
    }

    .purpose-card {
        padding: 30px;
    }

    /* Converts the CTA from a pill to a standard rounded rectangle on mobile */
    .cta-box {
        border-radius: 20px;
        padding: 24px;
    }
    .story-img img {
        height: 300px;
    }
    .hero-curve-design{
        bottom: -5px;
    }
}


:root {
  --lh-primary: #1e40af;       /* Main Brand Blue */
  --lh-primary-dark: #153185;  /* Hover Blue */
  --lh-card-gray: #f1f5f9;     /* Contact Cards Gray */
}

/* ==========================================
   CONTACT SECTION STYLES
========================================== */

.lh-contact-badge {
  font-weight: 500;
  letter-spacing: 0.3px;
}

.lh-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
}

.lh-contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background-color: var(--bs-secondary);
}

/* Right Side Form */
.lh-contact-form {
  background-color: #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06) !important;
}

.lh-form-input {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lh-form-input:focus {
  border-color: var(--lh-primary);
  box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
  outline: none;
}

.lh-submit-btn {
  background-color: var(--lh-primary);
  border: none;
  transition: background-color 0.2s, transform 0.2s;
}

.lh-submit-btn:hover {
  background-color: var(--lh-primary-dark);
  transform: translateY(-2px);
}

/* ==========================================
   FOOTER SECTION STYLES
========================================== */
.footer-logo{
    height: 100px;
}

.lh-footer-section {
  background: var(--bs-primary);
  /* background: var(--theme-gradient); */
  overflow: hidden;
}

/* Blueprint Grid Background */
.lh-footer-grid {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  opacity: 0.7;
}

.lh-footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Social Buttons */
.lh-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.lh-social-btn:hover {
  background: #ffffff;
  color: var(--lh-primary);
  transform: translateY(-3px);
}

/* Footer Navigation Links */
.lh-footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.lh-footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.lh-footer-email:hover {
  opacity: 0.8;
}

/* Footer Bottom Bar Links */
.lh-footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}

.lh-footer-bottom a:hover {
  color: #ffffff;
}



.how-it-works-sec .changing-img-sec img{
    height: 420px;
    object-fit: cover;
}
.step-item {
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
}

.step-item.active {
    background: var(--bs-primary);
    color: #fff;
}

.step-item.active .common-descp {
    color: #dcdcdc;
}

.step-number {
    width: 45px;
    height: 45px;
    background: var(--bs-secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 600;
}

.image-wrapper img {
    transition: opacity 0.4s ease;
}

.image-wrapper {
    min-height: 400px;
}

.step-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-img.active {
    opacity: 1;
    position: relative;
}



.feature-box {
    border: 1px solid #e9ecef;
    border-radius: 16px;
    background: #fff;
    transition: all 0.3s ease;
}

.feature-box:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.icon-box {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
}

.icon-box.purple {
    background: linear-gradient(135deg, #6a5cff, #7b61ff);
}

 

.daily-essentials-sec {
    background-color: #f8fafc;
}

.feature-card {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.feature-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.feature-card-highlight {
  background-color: #fcfaff;
  border-color: #f3ebff;
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.08); 
}

.feature-card-highlight:hover {
  box-shadow: 0 16px 40px rgba(139, 92, 246, 0.12);
}

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  color: #ffffff;
  font-size: 22px; 
}

.gradient-cls {
  background: var(--theme-gradient);
}
.gradient-indigo {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
}
.gradient-purple {
  background: linear-gradient(135deg, #a855f7, #8b5cf6);
}
.gradient-blue-alt {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.content-area h5 {
  color: var(--text-color);
  letter-spacing: -0.2px;
}


 
  
.highlight-text {
  color: var(--text-color);
  font-size: 1.1rem;
}
 
.feature-box {
  border-color: #e9ecef !important;
  transition: box-shadow 0.2s ease-in-out;
}
.feature-box:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03); 
}
.icon-square {
  width: 42px;
  height: 42px;
  background-color: var(--bs-primary);
  color: #ffffff;
  font-size: 1.25rem;
}

.hero-brand-img {
  border-radius: 20px;
  object-fit: cover;
  min-height: 420px;
}

.overlay-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

@media (max-width: 991px) {
  .image-section-wrapper {
    margin-top: 1rem;
  }
}

@media (max-width: 767px) {
  .hero-brand-img {
    min-height: 350px;
  }
  
  .overlay-card {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin: -40px 16px 0 16px;
    width: auto;
  }
  
  .feature-box {
    padding: 1rem !important;
  }
}