        :root {
            --brand-red: #2aa9db;
            --brand-red-dark: #2aa9db;
            --brand-blue: #0f62fe;
            --whatsapp-green: #25d366;
            --glass-bg: rgba(255, 255, 255, 0.08);
            --glass-border: rgba(255, 255, 255, 0.15);
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 90px;
        }

        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: #050a12;
            color: #ffffff;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        /* Hero Container */
        .hero-wrapper {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
        }

        /* CUSTOM BACKGROUND CAROUSEL */
        .bg-carousel-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .bg-slide-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center center;
            
            transition:  1.2s ease-in-out;
        }

        .bg-slide-item.active {
            opacity: 0.12;
        }

        /* Dark Overlay Gradient on Top of Carousel */
        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(8, 15, 26, 0.65) 0%, rgba(5, 10, 18, 0.88) 100%);
            z-index: 2;
            pointer-events: none;
        }

        /* Foreground Content Layer */
        .hero-overlay-content {
            position: relative;
            z-index: 3;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        /* Navigation */
        .navbar {
            padding: 1.2rem 0;
        }

        /* NAVBAR LOGO STYLING */
.navbar-logo-img {
    height: 42px; /* Standard proportions matching the original screenshot */
    width: auto;  /* Maintains aspect ratio without stretching */
    object-fit: contain;
    display: block;
    transition: transform 0.25s ease;
}

/* Subtle hover feedback */
.navbar-brand:hover .navbar-logo-img {
    transform: scale(1.02);
}

@media (max-width: 991px) {
    .navbar-logo-img {
        height: 36px; /* Slightly scaled down for mobile screens */
    }
}

        .brand-title {
            font-size: 1.25rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #ffffff;
        }

        .brand-subtitle {
            font-size: 0.6rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #94a3b8;
            margin-top: 3px;
            display: block;
        }

        .nav-link {
            color: #000000 !important;
            font-weight: 600;
            font-size: 0.92rem;
            padding-left: 0.8rem !important;
            padding-right: 0.8rem !important;
            transition: color 0.2s ease;
        }

        .nav-link:hover {
            color: #2aa9db !important;
        }

        .nav-link i {
            font-size: 0.85rem;
            margin-right: 5px;
            opacity: 0.9;
            color: #000000;
        }

        .btn-header-phone {
            background-color: var(--brand-red);
            color: #ffffff !important;
            border-radius: 50px;
            padding: 8px 20px;
            font-weight: 700;
            font-size: 0.9rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: background-color 0.2s ease;
        }

        .btn-header-phone:hover {
            background-color: var(--brand-red-dark);
        }

        /* Hero Main Content */
        .hero-main {
            padding-top: 2rem;
            padding-bottom: 4rem;
        }

        .badge-countries {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1.2px;
            color: #e2e8f0;
            margin-bottom: 1.8rem;
        }

        .dot-indicator {
            width: 7px;
            height: 7px;
            background-color: var(--brand-red);
            border-radius: 50%;
        }

        .hero-heading {
            font-size: clamp(2.6rem, 5.5vw, 4.5rem);
            font-weight: 800;
            line-height: 1.02;
            letter-spacing: -1.5px;
            margin-bottom: 1.5rem;
            color: #ffffff;
        }

        .hero-heading .highlight-red {
            color: var(--brand-red);
        }



        /* STICKY GLASSMORPHISM HEADER */



/* NAVBAR INITIAL STATE (Light glassmorphism for crisp black text readability) */
.main-header.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;

    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease-in-out; /* Smooth transition when scrolling */
}

/* NAVBAR SCROLLED STATE */
.main-header.fixed-top.scrolled {
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* LOGO SIZE */
.navbar-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

/* NAV LINKS */
.nav-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: #000000 !important;
    transition: color 0.25s ease;
}

.nav-link:hover {
    color: #2aa9db !important;
}

.nav-icon {
    font-size: 0.85rem;
    color: #000000;
    transition: color 0.25s ease;
}

.nav-link:hover .nav-icon {
    color: #2aa9db;
}

/* RED PHONE BUTTON */
.btn-header-phone {
    background-color: #2aa9db;
    color: #ffffff !important;
    font-size: 0.88rem;
    font-weight: 800;
    padding: 9px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(42, 169, 219, 0.3);
    transition: all 0.25s ease;
}

.btn-header-phone:hover {
    background-color: #d02d1f;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(42, 169, 219, 0.45);
}

/* HAMBURGER BUTTON (3 LINES) */
.mobile-menu-toggle {
    background: transparent;
    outline: none;
    cursor: pointer;
}

.hamburger-lines {
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-lines span {
    display: block;
    height: 2.5px;
    width: 100%;
    background-color: #081225;
    border-radius: 4px;
}

/* MOBILE OFF-CANVAS DRAWER */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1060;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-drawer.active {
    visibility: visible;
    opacity: 1;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 18, 37, 0.5);
    backdrop-filter: blur(4px);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu-drawer.active .mobile-menu-content {
    transform: translateX(0);
}

.btn-close-menu {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #081225;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-link {
    font-size: 1rem;
    font-weight: 700;
    color: #081225;
    text-decoration: none !important;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-link:hover {
    color: #2aa9db;
}

        .hero-subtext {
            font-size: 1.05rem;
            color: #cbd5e1;
            max-width: 580px;
            line-height: 1.5;
            margin-bottom: 2.2rem;
            font-weight: 400;
        }

        /* Action Buttons */
        .call-icon-btn {
            width: 48px;
            height: 48px;
            background-color: var(--brand-red);
            color: #ffffff;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            text-decoration: none;
            transition: transform 0.2s ease, background-color 0.2s ease;
            flex-shrink: 0;
        }

        .call-icon-btn:hover {
            color: #ffffff;
            background-color: var(--brand-red-dark);
            transform: scale(1.05);
        }

        .btn-action-primary {
            background-color: var(--brand-red);
            color: #ffffff !important;
            font-weight: 700;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            transition: background-color 0.2s ease, transform 0.2s ease;
        }

        .btn-action-primary:hover {
            background-color: var(--brand-red-dark);
            transform: translateY(-2px);
        }

        .btn-action-secondary {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            color: #ffffff !important;
            font-weight: 600;
            padding: 12px 26px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .btn-action-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        /* FULL WIDTH FEATURE STRIP */
        .feature-bar-fullwidth {
            width: 100%;
            background: rgba(10, 18, 30, 0.85);
            backdrop-filter: blur(12px);
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .feature-col {
            padding: 1.25rem 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 0.95rem;
            font-weight: 700;
            color: #ffffff;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
        }

        .feature-col:last-child {
            border-right: none;
        }

        .feature-col i {
            color: var(--brand-red);
            font-size: 1.05rem;
        }

        /* FLOATING ACTION BUTTONS */
        /* Floating WhatsApp Button (Right) */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 52px;
            height: 52px;
            background-color: var(--whatsapp-green);
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
            box-shadow: 0 4px 16px rgba(0,0,0,0.4);
            z-index: 1000;
            text-decoration: none;
            transition: transform 0.2s ease, background-color 0.2s ease;
        }

        .whatsapp-float:hover {
            color: #ffffff;
            transform: scale(1.1);
        }

        /* Floating Call Button (Left) */
        .call-float {
            position: fixed;
            bottom: 25px;
            left: 25px;
            width: 52px;
            height: 52px;
            background-color: var(--brand-red);
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 16px rgba(42, 169, 219, 0.4);
            z-index: 1000;
            text-decoration: none;
            transition: transform 0.2s ease, background-color 0.2s ease;
        }

        .call-float:hover {
            color: #ffffff;
            background-color: var(--brand-red-dark);
            transform: scale(1.1);
        }

        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(8, 14, 24, 0.96);
                backdrop-filter: blur(12px);
                padding: 1.5rem;
                border-radius: 16px;
                margin-top: 10px;
                border: 1px solid var(--glass-border);
            }
            .feature-col {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                padding: 0.9rem 1rem;
            }
            .feature-col:last-child {
                border-bottom: none;
            }
        }



        /*Style for about us */

/* ENHANCED ABOUT SECTION STYLES */
.about-section {
    background-color: #ffffff;
    color: #0f172a;
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Image Container & Accent Frame */
.about-img-container {
    position: relative;
    padding-left: 20px;
    padding-top: 20px;
}

.red-accent-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 55%;
    border-top: 5px solid #2aa9db;
    border-left: 5px solid #2aa9db;
    border-top-left-radius: 36px;
    z-index: 1;
}

.about-img-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 28px;
    overflow: visible;
}

.about-doctor-img {
    width: 100%;
    height:1000px;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
}

/* Floating 24/7 Emergency Desk Badge */
.badge-247-emergency {
    position: absolute;
    bottom: -35px;
    right: 10px;
    background-color: #2aa9db;
    color: #ffffff;
    padding: 18px 32px;
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(42, 169, 219, 0.35);
    text-align: left;
    z-index: 3;
}

.badge-247-emergency .badge-number {
    display: block;
    font-size: 2.1rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.5px;
}

.badge-247-emergency .badge-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: 5px;
}

/* Enhanced Subheading & Main Title */
.about-subheading {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #2aa9db;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.about-subheading .subheading-num {
    color: #2aa9db;
}

.about-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: #080f1a;
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
}

/* Increased Description Visibility */
.about-description {
    font-size: 1.05rem;
    color: #334155; /* Darker tone for crisp contrast */
    line-height: 1.65;
    font-weight: 500;
    margin-bottom: 2rem;
}

/* Enhanced Checklist Grid */
.about-checklist {
    row-gap: 1.1rem !important;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    width: 26px;
    height: 26px;
    background-color: #2aa9db; /* High contrast brand cyan */
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(42, 169, 219, 0.25);
}

.check-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a; /* Strong legible text */
    line-height: 1.3;
}

/* Enhanced Soft Pills */
.info-pill-tag {
    background-color: #f1f5f9;
    color: #0f62fe;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid #cbd5e1;
    transition: all 0.2s ease;
}

.info-pill-tag:hover {
    background-color: #e2e8f0;
    color: #0043ce;
}

/* Bold CTA Read More Button */
.btn-read-more {
    background-color: #080f1a;
    color: #ffffff !important;
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 34px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.25 ease;
    box-shadow: 0 6px 20px rgba(8, 15, 26, 0.2);
    letter-spacing: 0.3px;
}

.btn-read-more:hover {
    background-color: #2aa9db;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 169, 219, 0.35);
}






/* ENHANCED ANIMATED STATS SECTION */
.stats-section {
    background: linear-gradient(180deg, #050a12 0%, #0a1322 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Dynamic Alive Glass Cards */
.stat-card {
    position: relative;
    background: linear-gradient(145deg, rgba(17, 28, 48, 0.7) 0%, rgba(10, 18, 32, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3.2rem 1.5rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

/* Subtle Glowing Light Effect on Hover */
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(42, 169, 219, 0.1), transparent);
    transition: left 0.7s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(42, 169, 219, 0.4);
    box-shadow: 0 15px 35px rgba(42, 169, 219, 0.18), 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Alive Icon Animation */
.stat-icon {
    color: #2aa9db;
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: rgba(42, 169, 219, 0.08);
    border-radius: 50%;
    border: 1px solid rgba(42, 169, 219, 0.2);
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
   
}

/* Pulsing Heartbeat Effect on Icon */
@keyframes softPulse {
    0% { box-shadow: 0 0 0 0 rgba(42, 169, 219, 0.3); }
    70% { box-shadow: 0 0 0 12px rgba(42, 169, 219, 0); }
    100% { box-shadow: 0 0 0 0 rgba(42, 169, 219, 0); }
}

.pulse-icon {
    animation: softPulse 2.5s infinite;
}

/* Animated Big Numbers */
.stat-number-wrapper {
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: clamp(2.6rem, 4.2vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -1px;
    display: inline-block;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}



@media (max-width: 767px) {
    .stats-section { padding: 3.5rem 0; }
    .stat-card { padding: 2.2rem 1rem; }
    .stat-icon { width: 52px; height: 52px; font-size: 1.8rem; }
    .stat-number { font-size: 2.2rem; }
}



/* WHY CHOOSE US SECTION STYLES */
.why-us-section {
    background-color: #ffffff;
    color: #080f1a;
    position: relative;
}

/* Left Section Sticky Setup */
.why-us-left-content {
    position: sticky;
    top: 30px;
}

.why-us-subheading {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #2aa9db;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.why-us-title {
    font-size: clamp(2.3rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: #080f1a;
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
}

.why-us-description {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.65;
    font-weight: 500;
}

/* Image & CAMTS Badge Wrapper */
.why-us-img-wrapper {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
}

.why-us-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    border-radius: 28px;
    display: block;
}

/* Floating CAMTS Care Badge */
.badge-camts-care {
    position: absolute;
    bottom: 10px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 12px 22px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    max-width: calc(100% - 40px);
}

.camts-icon {
    width: 42px;
    height: 42px;
    background-color: #eff6ff;
    color: #0f62fe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.camts-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.camts-sub {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 2px;
}

/* Right Column: Feature List Items */
.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 0;
    transition: transform 0.25s ease;
}

.feature-item:hover {
    transform: translateX(6px);
}

.feature-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: #cbd5e1;
    min-width: 25px;
}

.feature-icon-box {
    width: 52px;
    height: 52px;
    background-color: #eff6ff;
    color: #0f62fe;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.feature-item:hover .feature-icon-box {
    background-color: #0f62fe;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 98, 254, 0.3);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #080f1a;
    margin-bottom: 0.3rem;
    letter-spacing: -0.3px;
}

.feature-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 991px) {
    .why-us-left-content {
        position: static;
    }
    .why-us-img {
        height: 300px;
    }
}





/* OUR SERVICES SECTION STYLES */
.services-section {
    background-color: #ffffff;
    color: #080f1a;
    padding: 5rem 0;
}

/* Category Tag */
.services-tag {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #2aa9db;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

/* Main Heading */
.services-main-title {
    font-size: clamp(2.3rem, 4vw, 3.3rem);
    font-weight: 800;
    line-height: 1.1;
    color: #080f1a;
    letter-spacing: -1.2px;
    margin: 0;
}

/* Header Right Subtext */
.services-header-desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    font-weight: 400;
    max-width: 480px;
    margin: 0;
}

/* Service Card Container */
.service-card {
    position: relative;
    height: 380px;
    border-radius: 28px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* Card Dark Overlay Gradient */
.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 15, 26, 0.1) 0%, rgba(8, 15, 26, 0.88) 75%, rgba(8, 15, 26, 0.98) 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-card-content {
    position: relative;
    z-index: 2;
}

/* Red Serial Number Index (01, 02, etc.) */
.service-index {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: #2aa9db;
    margin-bottom: 0.4rem;
}

/* Service Title Overlay */
.service-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -0.4px;
    margin-bottom: 0.6rem;
}

/* Optional Card Description */
.service-desc {
    font-size: 0.88rem;
    color: #cbd5e1;
    line-height: 1.45;
    margin-bottom: 1.2rem;
    font-weight: 400;
}

/* Glass Pill Button "Learn More ↗" */
.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff !important;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 8px 22px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: all 0.25s ease;
}

.btn-learn-more i {
    font-size: 0.75rem;
}

.service-card:hover .btn-learn-more {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(3px);
}

@media (max-width: 767px) {
    .service-card {
        height: 320px;
    }
}






/* OUR LOCATIONS SECTION STYLES */
.locations-section {
    background-color: #f8fafc; /* Very soft grayish-blue background */
    color: #080f1a;
    padding: 5rem 0;
}

/* Category Tag */
.locations-tag {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #2aa9db;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

/* Main Heading */
.locations-main-title {
    font-size: clamp(2.3rem, 4vw, 3.3rem);
    font-weight: 800;
    line-height: 1.12;
    color: #080f1a;
    letter-spacing: -1.2px;
    margin-bottom: 1.25rem;
}

/* Subtitle Description */
.locations-subtext {
    font-size: 1.02rem;
    color: #64748b;
    line-height: 1.6;
    font-weight: 400;
    max-width: 680px;
    margin: 0;
}

/* Location Card Base Styling */
.location-card {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
    text-decoration: none !important;
    position: relative;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.location-card:hover {
    border-color: rgba(42, 169, 219, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* Red Soft Icon Container */
.loc-icon-box {
    width: 48px;
    height: 48px;
    background-color: #fef2f2;
    color: #2aa9db;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 16px;
    transition: all 0.25s ease;
}

/* Active Highlighted State (as shown in Mumbai card) */
.location-card.active {
    border-color: #e2e8f0;
    box-shadow: 0 12px 30px rgba(15, 98, 254, 0.08);
}

.location-card.active .loc-icon-box {
    background-color: #2aa9db;
    color: #ffffff;
}

.location-card.active .loc-arrow {
    color: #2563eb;
}

/* Card Details */
.loc-details {
    flex-grow: 1;
}

.loc-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #080f1a;
    margin: 0 0 2px 0;
    letter-spacing: -0.2px;
}

.loc-city {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

/* Top Right Arrow Icon */
.loc-arrow {
    font-size: 0.85rem;
    color: #cbd5e1;
    transition: color 0.25s ease, transform 0.25s ease;
}

.location-card:hover .loc-arrow {
    color: #2563eb;
    transform: translate(2px, -2px);
}

/* Explore More Locations Dark CTA Button */
.btn-explore-locations {
    background-color: #080f1a;
    color: #ffffff;
    border: none;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(8, 15, 26, 0.15);
}

.btn-explore-locations:hover {
    background-color: #2aa9db;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 169, 219, 0.3);
}

@media (max-width: 767px) {
    .locations-section {
        padding: 3.5rem 0;
    }
    .location-card {
        padding: 1rem 1.25rem;
    }
    .loc-icon-box {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}


/* Location Card Styling */
.location-card {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
    text-decoration: none !important;
    position: relative;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

/* Default Soft Red Pin Icon Box */
.loc-icon-box {
    width: 48px;
    height: 48px;
    background-color: #fef2f2;
    color: #2aa9db;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 16px;
    transition: all 0.25s ease;
}

/* Top Right Arrow */
.loc-arrow {
    font-size: 0.85rem;
    color: #cbd5e1;
    transition: all 0.25s ease;
}

/* HOVER EFFECT ON CITY CARD */
.location-card:hover {
    border-color: rgba(42, 169, 219, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* 1. Pin Box background turns solid red with white icon on hover */
.location-card:hover .loc-icon-box {
    background-color: #2aa9db;
    color: #ffffff;
}

/* 2. Top-right arrow turns blue on hover */
.location-card:hover .loc-arrow {
    color: #2563eb;
    transform: translate(2px, -2px);
}

/* Expand CTA Button */
.btn-explore-locations {
    background-color: #080f1a;
    color: #ffffff;
    border: none;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(8, 15, 26, 0.15);
}

.btn-explore-locations:hover {
    background-color: #2aa9db;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 169, 219, 0.3);
}




/* MARQUEE TICKER BAND STYLES */
.marquee-band {
    background-color: #0052cc; /* Vibrant brand blue */
    padding: 1.25rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 22s linear infinite;
}

/* Pause animation on hover */
.marquee-band:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding-right: 2.5rem;
}

.marquee-content span {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-family: inherit;
}

/* Red Star Separator Icon */
.marquee-star {
    color: #2aa9db; /* Brand red */
    font-size: 1rem;
    flex-shrink: 0;
}

/* Continuous Infinite Scroll Keyframe */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    .marquee-band {
        padding: 0.9rem 0;
    }
    .marquee-content span {
        font-size: 1.15rem;
    }
    .marquee-content {
        gap: 1.5rem;
        padding-right: 1.5rem;
    }
    .marquee-star {
        font-size: 0.8rem;
    }
}




/* PROCESS SECTION STYLES */
.process-section {
    background-color: #081225; /* Exact Dark Navy/Slate Tone */
    color: #ffffff;
    padding: 5.5rem 0 4.5rem 0;
    position: relative;
    overflow: hidden;
}

/* Red Tag Heading */
.process-tag {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #2aa9db;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

/* Main Section Heading */
.process-main-title {
    font-size: clamp(2.4rem, 4.2vw, 3.5rem);
    font-weight: 800;
    line-height: 1.08;
    color: #ffffff;
    letter-spacing: -1.4px;
    margin-bottom: 4rem;
}

/* Steps Wrapper */
.process-steps-wrap {
    position: relative;
    margin-bottom: 4.5rem;
}

/* Precise Red Connecting Line */
.process-red-line {
    position: absolute;
    top: 59px;
    left: 40px;
    right: 40px;
    width: 75%;         /* Spans to the center of the 4th column (12.5% + 75% = 87.5%) */
    height: 1.5px;
    background-color: #2aa9db;
    z-index: 1;
}

.step-card {
    position: relative;
    z-index: 2;
}

/* Icon Container & Badge Wrap */
.step-icon-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 1.6rem;
}

/* Red Icon Squircle Box */
.step-icon-box {
    width: 64px;
    height: 64px;
    background-color: #2aa9db;
    color: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

/* Step Badge Number */
.step-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    color: #081225;
    font-size: 0.72rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

/* STEP 1, STEP 2 Label */
.step-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #2aa9db;
    margin-bottom: 0.45rem;
    text-transform: uppercase;
}

/* Step Heading */
.step-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.65rem;
    letter-spacing: -0.4px;
}

/* Step Body Text */
.step-desc {
    font-size: 0.92rem;
    color: #94a3b8;
    line-height: 1.55;
    margin: 0;
    font-weight: 400;
    max-width: 270px;
}

/* Bottom CTA Pill Button */
.process-btn-wrapper {
    margin-top: 1rem;
}

.btn-request-ambulance {
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    color: #081225 !important;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.btn-request-ambulance:hover {
    background-color: #2aa9db;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 169, 219, 0.35);
}

@media (max-width: 991px) {
    .process-section {
        padding: 3.5rem 0;
    }
    .process-main-title {
        margin-bottom: 2.5rem;
    }
    .step-desc {
        max-width: 100%;
    }
}








/* TRUST SECTION STYLES */
.trust-section {
    background-color: #ffffff;
    color: #080f1a;
    padding: 5.5rem 0;
}

/* Category Tag */
.trust-tag {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #2aa9db;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

/* Main Section Title */
.trust-main-title {
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    color: #080f1a;
    letter-spacing: -1.2px;
    margin-bottom: 3.5rem;
}

/* Enhanced Card Container */
.trust-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.2rem 1.5rem 1.8rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 190px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Top Accent Line (Red glow strip on hover) */
.card-accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #2aa9db;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.35s ease;
}

/* Icon Box Styling */
.trust-icon-box {
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    color: #2563eb;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.8rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Card Title */
.trust-card-title {
    font-size: 0.98rem;
    font-weight: 800;
    color: #080f1a;
    line-height: 1.35;
    margin: 0;
    letter-spacing: -0.2px;
    transition: color 0.3s ease;
}

/* ENHANCED MOUSE OVER / HOVER STATES */
.trust-card:hover {
    background-color: #ffffff;
    border-color: rgba(42, 169, 219, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(42, 169, 219, 0.09), 0 4px 10px rgba(0, 0, 0, 0.02);
}

/* Reveal Top Accent Line */
.trust-card:hover .card-accent-bar {
    opacity: 1;
    transform: scaleX(1);
}

/* Fill Icon with Red + Pop and Slight Rotation */
.trust-card:hover .trust-icon-box {
    background-color: #2aa9db;
    color: #ffffff;
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 8px 20px rgba(42, 169, 219, 0.35);
}

/* Title Shift Color */
.trust-card:hover .trust-card-title {
    color: #000000;
}

@media (max-width: 991px) {
    .trust-section {
        padding: 3.5rem 0;
    }
    .trust-card {
        min-height: 160px;
        padding: 1.5rem 1.25rem;
    }
}







/* SECTION BASE */
.testimonials-section {
    background-color: #ffffff;
    padding: 4rem 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* SECTION HEADER */
.testimonials-sub-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 0.5rem;
}

.testimonials-main-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #38B6FF; /* Sky Blue Header Color from screenshot */
    margin-bottom: 3rem;
}

/* LEFT SIDE GOOGLE RATING BLOCK */
.google-rating-block {
    padding: 0.5rem 1rem;
}

.rating-title {
    font-size: 2.7rem;
    font-weight: 900;
    color: #000000;
    letter-spacing: 0.8px;
    margin-bottom: 0.4rem;
}

.rating-stars {
    color: #FFC107; /* Gold Yellow Star Color */
    font-size: 1.80rem;
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 0.5rem;
}

.rating-reviews-count {
    font-size: 1.00rem;
    color: #4A5568;
    margin-bottom: 0.8rem;
}

.google-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.google-svg {
    width: 22px;
    height: 22px;
}

.google-text {
    font-size: 1.45rem;
    font-weight: 500;
    color: #5F6368;
    letter-spacing: -0.5px;
}

/* RIGHT SIDE REVIEW CARDS */
.google-review-card {
    background-color: #F4F5F7; /* Matches light grayish background from screenshot */
    border-radius: 12px;
    padding: 1.2rem;
    height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

.card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.6rem;
}

.user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.user-avatar-initial {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #1976D2;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-meta {
    flex-grow: 1;
    overflow: hidden;
}

.user-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-date {
    font-size: 0.75rem;
    color: #718096;
}

.g-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.card-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #FFC107;
    font-size: 0.82rem;
    margin-bottom: 0.6rem;
}

.blue-check {
    color: #1976D2;
    font-size: 0.82rem;
    margin-left: 4px;
}

.review-body {
    font-size: 0.72rem;
    color: #2D3748;
    line-height: 1.05;
    margin-bottom: 0.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    font-size: 0.78rem;
    color: #718096;
    text-decoration: none;
    margin-top: auto;
}

.read-more:hover {
    color: #2D3748;
}

/* CIRCULAR RIGHT ARROW BUTTON */
.carousel-nav-arrow {
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    color: #4A5568;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.carousel-nav-arrow:hover {
    background-color: #F7FAFC;
    color: #1A202C;
}

@media (max-width: 767px) {
    .google-rating-block {
        margin-bottom: 1.5rem;
    }
}


/* FAQ SECTION STYLES */
.faq-section {
    background-color: #f1f5f9; /* Soft cool gray background */
    color: #080f1a;
    padding: 5.5rem 0;
}

/* Category Tag */
.faq-tag {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #2aa9db;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

/* Main Section Title */
.faq-main-title {
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.08;
    color: #080f1a;
    letter-spacing: -1.2px;
    margin-bottom: 1.2rem;
}

/* Subtitle */
.faq-subtitle {
    font-size: 0.98rem;
    color: #64748b;
    line-height: 1.55;
    max-width: 380px;
    margin: 0;
}

/* Accordion Wrapper */
.faq-accordion-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Individual FAQ Card Item */
.faq-item {
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
    border-color: rgba(42, 169, 219, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

/* Header Button */
.faq-header {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 1.4rem 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.faq-question {
    font-size: 1.05rem;
    font-weight: 700;
    color: #080f1a;
    letter-spacing: -0.3px;
    padding-right: 1rem;
    line-height: 1.35;
}

/* Chevron Icon */
.faq-icon {
    font-size: 0.85rem;
    color: #64748b;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.35s ease;
    flex-shrink: 0;
}

/* Smooth Accordion Body Slide */
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-content {
    padding: 0 1.8rem 1.5rem 1.8rem;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    border-top: 1px solid transparent;
}

/* ACTIVE OPEN STATE */
.faq-item.active {
    border-color: rgba(42, 169, 219, 0.4);
}

.faq-item.active .faq-question {
    color: #2aa9db; /* Red highlight when active */
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #2aa9db;
}

.faq-item.active .faq-body {
    max-height: 400px; /* Expand transition */
    transition: max-height 0.4s cubic-bezier(0.5, 0, 0.1, 1);
}

@media (max-width: 991px) {
    .faq-section {
        padding: 3.5rem 0;
    }
    .faq-subtitle {
        margin-bottom: 2rem;
        max-width: 100%;
    }
    .faq-header {
        padding: 1.2rem 1.25rem;
    }
    .faq-content {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
}

















/* CTA EMERGENCY BANNER STYLES */
.cta-banner-section {
    position: relative;
    padding: 7rem 1.5rem;
    background-image: url('../images/home3.jpeg?q=80&w=1920&auto=format&fit=crop'); /* Medical/Aviation background */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #ffffff;
    overflow: hidden;
    opacity: 0.80;
}

/* Deep Blue Gradient Vignette Overlay */
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:  ;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.4);
}

/* Heading Typography */
.cta-title {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    color: #ffffff;
    letter-spacing: -1.5px;
    max-width: 800px;
    margin-bottom: 1.5rem;
}

/* Subtitle Paragraph */
.cta-subtitle {
    font-size: 1.05rem;
    color: whitesmoke;
    line-height: 1.6;
    font-weight: 400;
    max-width: 680px;
    margin-bottom: 2.5rem;

}

/* Primary Call Now Button */
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2aa9db; /* Brand Red */
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 13px 32px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 20px rgba(42, 169, 219, 0.3);
}

.btn-cta-primary:hover {
    background-color: #d02d1f;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(42, 169, 219, 0.45);
}

/* Outline Get Quote Button */
.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.08); /* Soft glass inner tint */
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 13px 32px;
    border-radius: 50px;
    text-decoration: none !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-cta-outline:hover {
    background-color: #ffffff;
    color: #081225 !important;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

@media (max-width: 767px) {
    .cta-banner-section {
        padding: 4.5rem 1rem;
    }
    .cta-subtitle {
        font-size: 0.95rem;
    }
    .cta-btn-group {
        width: 100%;
    }
    .btn-cta-primary,
    .btn-cta-outline {
        width: 100%;
        max-width: 280px;
    }
}




/* MODAL BACKDROP & CONTAINER */
.quote-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(8, 18, 37, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.quote-modal-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* MODAL DIALOG CARD */
.quote-modal-dialog {
    width: 100%;
    max-width: 580px;
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.quote-modal-backdrop.show .quote-modal-dialog {
    transform: translateY(0) scale(1);
}

.quote-modal-content {
    position: relative;
    padding: 2.5rem 2.2rem;
}

/* CLOSE BUTTON */
.btn-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #64748b;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-modal-close:hover {
    background-color: #f1f5f9;
    color: #080f1a;
}

/* HEADER STYLES */
.modal-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #2aa9db;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.modal-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #080f1a;
    letter-spacing: -0.6px;
    margin-bottom: 0.4rem;
}

.modal-subtitle {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.45;
    margin-bottom: 1.8rem;
}

/* FORM INPUT FIELDS */
.form-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.35rem;
}

.custom-input {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    color: #0f172a;
    transition: all 0.2s ease;
}

.custom-input::placeholder {
    color: #94a3b8;
    font-size: 0.88rem;
}

.custom-input:focus {
    background-color: #ffffff;
    border-color: #0284c7;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
    outline: none;
}

.custom-textarea {
    resize: vertical;
    min-height: 80px;
}

/* SUBMIT BUTTON */
.btn-request-callback {
    background-color: #2aa9db;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.85rem 1.5rem;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(42, 169, 219, 0.3);
}

.btn-request-callback:hover {
    background-color: #d02d1f;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(42, 169, 219, 0.45);
}

@media (max-width: 576px) {
    .quote-modal-content {
        padding: 2rem 1.5rem;
    }
    .modal-title {
        font-size: 1.35rem;
    }
}



/* MODAL BACKDROP & CONTAINER */
.quote-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(8, 18, 37, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.quote-modal-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* MODAL DIALOG CARD - NO SCROLLBAR */
.quote-modal-dialog {
    width: 100%;
    max-width: 560px;
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Strictly disable visible scrollbars */
    overflow: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

/* Hide Webkit Scrollbars (Chrome/Safari) */
.quote-modal-dialog::-webkit-scrollbar {
    display: none;
}

.quote-modal-backdrop.show .quote-modal-dialog {
    transform: translateY(0) scale(1);
}

.quote-modal-content {
    position: relative;
    padding: clamp(1.5rem, 3.5vh, 2.2rem) clamp(1.5rem, 4vw, 2.2rem);
}

/* CLOSE BUTTON */
.btn-modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #64748b;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 5;
}

.btn-modal-close:hover {
    background-color: #f1f5f9;
    color: #080f1a;
}

/* HEADER STYLES */
.modal-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #2aa9db;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.modal-title {
    font-size: clamp(1.3rem, 2.5vh, 1.55rem);
    font-weight: 800;
    color: #080f1a;
    letter-spacing: -0.5px;
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.modal-subtitle {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 1.2rem;
}

/* COMPACT FORM FIELDS FOR NO SCROLLBAR FIT */
.quote-modal-form .row {
    --bs-gutter-y: 0.75rem;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.custom-input {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.55rem 0.9rem;
    font-size: 0.88rem;
    color: #0f172a;
    transition: all 0.2s ease;
}

.custom-input::placeholder {
    color: #94a3b8;
    font-size: 0.85rem;
}

.custom-input:focus {
    background-color: #ffffff;
    border-color: #0284c7;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
    outline: none;
}

/* Textarea height adjustment */
.custom-textarea {
    resize: none;
    height: 70px;
}

/* SUBMIT BUTTON */
.btn-request-callback {
    background-color: #2aa9db;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(42, 169, 219, 0.3);
    margin-top: 0.4rem;
}

.btn-request-callback:hover {
    background-color: #d02d1f;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(42, 169, 219, 0.45);
}



/* CONTACT & LOCATIONS STYLES */
.contact-section {
    background-color: #ffffff;
    color: #080f1a;
    padding: 5.5rem 0;
}

/* Category Tag */
.contact-tag {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #2aa9db;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

/* Main Section Title */
.contact-main-title {
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.08;
    color: #080f1a;
    letter-spacing: -1.2px;
    margin-bottom: 0.8rem;
}

/* Subtitle Paragraph */
.contact-subtitle {
    font-size: 0.98rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 2rem;
}

/* Info Cards Stack */
.contact-cards-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Standard Pill Info Card */
.info-card {
    background-color: #f8fafc; /* Very soft light gray */
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 1.1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.info-card-link:hover {
    background-color: #ffffff;
    border-color: rgba(42, 169, 219, 0.3);
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

/* Icon Squircle Box */
.info-icon-box {
    width: 44px;
    height: 44px;
    background-color: #e0f2fe; /* Light blue background */
    color: #0284c7;            /* Blue icon */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

/* Label & Content Text */
.info-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #94a3b8;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
}

.info-value {
    font-size:16px;
    
    color: #080f1a;
    margin: 0;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

/* Red Emergency Highlighted Card */
.emergency-card {
    background-color: #fff5f5; /* Light soft red background */
    border: 1px solid #fecaca;
}

.emergency-icon-box {
    background-color: #2aa9db; /* Solid red box */
    color: #ffffff;
}

.emergency-label {
    color: #991b1b;
}

.emergency-value {
    color: #2aa9db;
}

/* Dark Pill Get Instant Quote Button */
.btn-dark-quote {
    background-color: #081225; /* Dark navy black */
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(8, 18, 37, 0.2);
}

.btn-dark-quote:hover {
    background-color: #2aa9db; /* Turns red on hover */
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(42, 169, 219, 0.35);
}

/* Embedded Google Map Box */
.map-container-box {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

@media (max-width: 991px) {
    .contact-section {
        padding: 3.5rem 0;
    }
    .map-container-box {
        min-height: 360px;
        margin-top: 1.5rem;
    }
}



/* FOOTER STYLES */
.site-footer {
    background-color: #081225; /* Dark navy brand background */
    color: #94a3b8;
    padding-top: 5rem;
    font-size: 0.9rem;
}

/* Footer Tagline Text */
.footer-about-text {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.88rem;
    margin-bottom: 1.8rem;
    max-width: 290px;
}

/* Circular Social Media Icons */
.social-icon {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #2aa9db;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Column Headings */
.footer-heading {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

/* Quick Links & Services Lists */
.footer-links-list li {
    margin-bottom: 0.85rem;
}

.footer-links-list a {
    color: #94a3b8;
    text-decoration: none !important;
    font-size: 0.88rem;
    transition: color 0.25s ease, padding-left 0.25s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: #ffffff;
    padding-left: 4px;
}

/* Contact Column Details */
.office-title {
    display: block;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.office-address {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.45;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.7rem;
    font-size: 0.88rem;
}

.contact-icon {
    font-size: 0.85rem;
    color: #2aa9db; /* Red icons */
}

.contact-list a {
    color: #cbd5e1;
    text-decoration: none !important;
    transition: color 0.25s ease;
}

.contact-list a:hover {
    color: #ffffff;
}

.contact-list .emergency-item a {
    color: #2aa9db !important;
}

/* Footer Bottom Bar Divider */
.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    width: 100%;
}

/* Bottom Copyright Bar */
.copyright-text {
    font-size: 0.82rem;
    color: #64748b;
}

.legal-links a {
    font-size: 0.82rem;
    color: #64748b;
    text-decoration: none !important;
    transition: color 0.25s ease;
}

.legal-links a:hover {
    color: #ffffff;
}

@media (max-width: 991px) {
    .site-footer {
        padding-top: 3.5rem;
    }
    .footer-bottom-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}


/* BLOG SECTION STYLES */
.blogs-section {
    background-color: #ffffff;
}

.blogs-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ea3829;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.blogs-main-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0b1528;
    letter-spacing: -0.5px;
}

/* CARD STYLES */
.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* IMAGE & PILL BADGE */
.blog-img-box {
    position: relative;
    height: 185px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-pill-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #ea3829;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(42, 169, 219, 0.3);
}

/* CONTENT & TYPOGRAPHY */
.blog-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.78rem;
    color: #8c98a4;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.blog-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.6rem;
}

.blog-title a {
    color: #0b1528;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.blog-title a:hover {
    color: #ea3829;
}

.blog-excerpt {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

/* READ MORE LINK WITH DIAGONAL ARROW */
.blog-read-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2aa9db;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.blog-read-link .arrow-icon {
    font-size: 0.95rem;
    line-height: 1;
}

.blog-read-link:hover {
    color: #1b81aa;
}






/* ==========================================================================
   Qwiklif Navigation & Dropdown Styling
   ========================================================================== */

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    color: #1a2b49;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
    transition: color 0.25s ease-in-out;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #e63946; /* Qwiklif Brand Accent */
}

/* Hover-to-Open Behavior for Desktop (min-width: 992px) */
@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Standard Dropdown Menu Container */
.navbar-nav .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    min-width: 280px;
    padding: 0.75rem 0;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(12px);
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Top Caret Indicator */
.navbar-nav .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 24px;
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.03);
}

/* Dropdown Links */
.navbar-nav .dropdown-item {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2c3e50;
    border-left: 3px solid transparent;
    transition: all 0.2s ease-in-out;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
    background-color: #f8f9fa;
    color: #0d6efd;
    border-left-color: #0d6efd;
    padding-left: 1.5rem;
}

.navbar-nav .dropdown-item i {
    font-size: 0.95rem;
    width: 20px;
    text-align: center;
    transition: transform 0.2s ease;
}

.navbar-nav .dropdown-item:hover i {
    transform: scale(1.15);
}

/* Phone CTA Button */
.btn-header-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: deepskyblue;
    color: #ffffff !important;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.btn-header-phone:hover {
    background-color: deepskyblue;
    transform: translateY(-1px);
}




/* ==========================================================================
   Sticky Mobile Bottom CTA Bar (Call & WhatsApp)
   ========================================================================== */

/* Show sticky bar fixed at bottom on mobile screens (< 992px) */
.mobile-sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1050; /* Above page content and nav overlays */
    background-color: #ffffff;
    padding: 10px 8px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Base button styling */
.btn-mobile-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 10px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.25s ease-in-out;
}

/* Call Button Styling */
.btn-mobile-call {
    background-color: deepskyblue; /* Qwiklif Emergency Red */
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.btn-mobile-call:active {
    background-color: deepskyblue;
    transform: scale(0.98);
}

/* WhatsApp Button Styling */
.btn-mobile-whatsapp {
    background-color: deepskyblue; /* WhatsApp Brand Green */
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-mobile-whatsapp:active {
    background-color: deepskyblue;
    transform: scale(0.98);
}

.btn-mobile-action i {
    font-size: 1.15rem;
}

/* Add bottom padding to body/footer on mobile to prevent bottom bar from blocking text */
@media (max-width: 991.98px) {
    body {
        padding-bottom: 70px;
    }
}



/* ==========================================================================
   Floating Action Buttons (Desktop Only)
   ========================================================================== */

/* Hide individual floating buttons on mobile (< 992px) */
@media (max-width: 991.98px) {
    .call-float,
    .whatsapp-float {
        display: none !important;
    }
}

/* Base Styles for Floating Buttons (Visible on Desktop >= 992px) */
@media (min-width: 992px) {
    .call-float {
        position: fixed;
        bottom: 30px;
        left: 30px;
        width: 55px;
        height: 55px;
        background-color: #e63946;
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
        z-index: 1000;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 55px;
        height: 55px;
        background-color: #25d366;
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
        z-index: 1000;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .call-float:hover,
    .whatsapp-float:hover {
        transform: scale(1.1);
        color: #8edce8;
    }
}