﻿/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

    #spinner.show {
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/* style.css - Main Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Loader Spinner */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.spinner-container {
    text-align: center;
}

.spinner-border {
    width: 4rem;
    height: 4rem;
    border-width: 0.25em;
}

.loading-text {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
}

/* Header Styles with Gap */
.main-header {
    background: rgb(255, 255, 255, 0.54);
    padding: 15px 5px;
    position: fixed;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(60% - 90px);
    z-index: 1000;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

    /* Header when scrolled */
    .main-header.scrolled {
        top: 0;
        width: 110%;
        border-radius: 0;
        padding: 18px 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    }

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px;
    position: relative;
}

/* Header Logo (Hidden by default) */
.header-logo {
    display: none;
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.header.scrolled .header-logo {
    display: block;
}

.logo-header {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

    .logo-header:hover {
        transform: scale(1.05);
    }

/* Navigation Menu */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 60px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .nav-link.active {
        color: #d32f2f;
        font-weight: 600;
    }

/* Dropdown toggle specific */
.dropdown-toggle::after {
    display: none !important; /* agar koi extra ::after se line aa rahi ho */
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: white;
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 15px 0;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

    .dropdown-menu a:hover {
        background: #f8f9fa;
        color: #d32f2f;
        border-left-color: #d32f2f;
    }

/* Mobile Toggle Button with Hamburger */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 14px;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* HERO SECTION WITH SEARCH BAR */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-logo {
    position: absolute;
    top: 30px;
    left: 70px;
    z-index: 4;
    max-width: 200px;
}

    .hero-logo img {
        width: 100%;
        height: auto;
    }

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 0 20px;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .hero-cta:hover {
        background-color: #c0392b;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        color: white;
    }

/* Search Bar Styles */
.search-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 30px;
}

.search-bar {
    display: flex;
    width: 100%;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    border: none;
    border-bottom: 3px solid #e74c3c;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95);
}

    .search-bar:focus-within {
        box-shadow: 0 5px 25px rgb(255, 24, 0, 0.40);
    }

.search-input {
    flex-grow: 1;
    padding: 20px 25px;
    border: none;
    font-size: 18px;
    outline: none;
    background-color: transparent;
    color: #333;
}

    .search-input::placeholder {
        color: #777;
    }

.search-button {
    background-color: var(--primary-dark-red);
    color: white;
    border: none;
    padding: 0 40px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

    .search-button:hover {
        background-color: #ff0302;
    }

    .search-button i {
        margin-right: 10px;
    }
/* Search Results Container */
#resultsContainer {
    position: absolute;
    top: -50%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); /* Zyada shadow for better visibility */
    max-height: 300px;
    overflow-y: auto;
    z-index: 9999; /* Bahut high z-index */
    margin-top: 5px;
    display: none;
}

/* Parent container ko bhi high z-index dena zaroori hai */
.search-container {
    position: relative;
    z-index: 10000;
}

/* Agar aapka search input aur results container kisi specific div mein hai */
/* Yeh parent div ko positioning dein */
.search-wrapper {
    position: relative;
    z-index: 10000;
}

/* Alternative: Fixed position agar absolute kaam na kare */
#resultsContainer.fixed-results {
    position: fixed;
    top: auto;
    left: 0;
    width: 100%;
    z-index: 999999; /* Maximum z-index */
}

/* Individual Result Items */
.result-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #333;
    transition: all 0.2s ease;
    position: relative; /* Yeh bhi zaroori hai */
    z-index: 99999;
}

    .result-item:last-child {
        border-bottom: none;
    }

    /* Hover Effect */
    .result-item:hover {
        background-color: #f8f9fa;
        color: #007bff;
    }

    /* Active/Clicked State */
    .result-item:active {
        background-color: #e9ecef;
        transform: scale(0.99);
    }

/* No Results Message */
.no-results {
    padding: 20px;
    text-align: center;
    color: #666;
    font-style: italic;
}

/* Scrollbar Styling */
#resultsContainer::-webkit-scrollbar {
    width: 6px;
}

#resultsContainer::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

#resultsContainer::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

    #resultsContainer::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }

/* Emergency fix agar phir bhi chup rahe */
#resultsContainer.force-show {
    position: fixed !important;
    top: 50px !important; /* Adjust according to your layout */
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 300px !important;
    z-index: 2147483647 !important; /* Maximum possible z-index */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
/* END */

/* Login Button Styles */
.hero-login-btn-container {
    position: absolute;
    top: 45px;
    right: 70px;
    z-index: 1000;
}

.hero-login-btn {
    background: none;
    backdrop-filter: blur(10px);
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

    .hero-login-btn:hover {
        background: white;
        color: #ff0302;
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .hero-login-btn:active {
        transform: translateY(1px);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }

    .hero-login-btn i {
        font-size: 1.1rem;
    }

/*** Login ***/

/* Simple Breadcrumb Styles */
.simple-breadcrumb {
    font-size: 0.95rem;
    color: white;
}

    .simple-breadcrumb a {
        color: white;
        text-decoration: none;
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }

        .simple-breadcrumb a:hover {
            opacity: 1;
            text-decoration: underline;
        }

    .simple-breadcrumb span.mx-2 {
        opacity: 0.6;
    }
/* END */

/* Simple Breadcrumb Styles */
.simple-breadcrumb {
    font-size: 0.95rem;
    color: white;
}

    .simple-breadcrumb a {
        color: white;
        text-decoration: none;
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }

        .simple-breadcrumb a:hover {
            opacity: 1;
            text-decoration: underline;
        }

    .simple-breadcrumb span.mx-2 {
        opacity: 0.6;
    }
/* END */

/* ==================== SINGLE BANNER / HERO SECTION ONLY ==================== */
.single-banner {
    position: relative;
    height: var(--banner-height, 100vh); /* default 100vh, override kar sakte ho */
    min-height: var(--banner-min-height, 600px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Variables sirf is banner ke liye (global :root nahi) */
.single-banner {
    --overlay-opacity: 0.5;
    --logo-top: 30px;
    --logo-left: 30px;
    --logo-max-width: 200px;
    --search-max-width: 700px;
    --primary-color: #e74c3c;
    --primary-hover: #c0392b;
}

    /* Background / Video container */
    .single-banner .banner-video-container,
    .single-banner .banner-bg-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .single-banner .banner-video,
    .single-banner .banner-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Overlay */
    .single-banner .video-overlay,
    .single-banner .bg-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, var(--overlay-opacity));
        z-index: 2;
    }

    /* Logo - sirf banner ke andar */
    .single-banner .banner-logo {
        position: absolute;
        top: var(--logo-top);
        left: var(--logo-left);
        z-index: 4;
        max-width: var(--logo-max-width);
    }

        .single-banner .banner-logo img {
            width: 100%;
            height: auto;
        }

    /* Content */
    .single-banner .banner-content {
        position: relative;
        z-index: 3;
        top: 15%;
        text-align: center;
        color: white;
        padding: 0 20px;
        width: 100%;
        max-width: 1200px;
    }

    .single-banner .banner-title {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 10px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .single-banner .banner-tagline {
        font-size: 1.8rem;
        margin-bottom: 40px;
        font-weight: 300;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    /* CTA - banner specific */
    .single-banner .banner-cta {
        display: inline-block;
        background-color: var(--primary-color);
        color: white;
        padding: 15px 40px;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        margin-top: 30px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

        .single-banner .banner-cta:hover {
            background-color: var(--primary-hover);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            color: white;
        }

    /* Search Bar - banner specific */
    .single-banner .search-container {
        width: 100%;
        max-width: var(--search-max-width);
        margin: 0 auto 30px;
    }

    .single-banner .search-bar {
        display: flex;
        width: 100%;
        margin: 0 auto;
        overflow: hidden;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
        border: none;
        border-bottom: 3px solid var(--primary-color);
        transition: all 0.3s ease;
        background-color: rgba(255, 255, 255, 0.95);
    }

        .single-banner .search-bar:focus-within {
            box-shadow: 0 5px 25px rgba(231, 76, 60, 0.4);
        }

    .single-banner .search-input {
        flex-grow: 1;
        padding: 20px 25px;
        border: none;
        font-size: 18px;
        outline: none;
        background-color: transparent;
        color: #333;
    }

        .single-banner .search-input::placeholder {
            color: #777;
        }

    .single-banner .search-button {
        background-color: var(--primary-color);
        color: white;
        border: none;
        padding: 0 40px;
        cursor: pointer;
        font-size: 18px;
        font-weight: 600;
        transition: background-color 0.3s ease;
        white-space: nowrap;
    }

        .single-banner .search-button:hover {
            background-color: var(--primary-hover);
        }

    /* Results - banner specific */
    .single-banner .results-container {
        margin-top: 20px;
        padding: 20px;
        background-color: rgba(255, 255, 255, 0.95);
        border-radius: 8px;
        display: none;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
        max-width: var(--search-max-width);
        margin-left: auto;
        margin-right: auto;
    }

        .single-banner .results-container.active {
            display: block;
        }


/* NEW: Quote Form Section Styles */
.quote-section {
    position: relative;
    z-index: 10;
    margin-top: -80px; /* Negative margin for overlap effect */
    padding: 0 15px;
}

.quote-container {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.left-side {
    background: white;
    padding: 60px !important;
}

.main-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
}

.form-control-lg,
.form-select-lg {
    padding: 14px 20px;
    font-size: 1.1rem;
    border-radius: 10px;
    border: 1px solid #ced4da;
}

    .form-control-lg:focus,
    .form-select-lg:focus {
        border-color: #ff0302;
        box-shadow: 0 0 0 0.25rem rgba(255, 3, 2, 0.15);
    }

.find-agent-btn {
    background: #ff0302;
    color: white;
    font-size: 1.15rem;
    padding: 16px;
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .find-agent-btn:hover {
        background: #e60000;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 3, 2, 0.3);
    }

.right-side {
    background: linear-gradient(135deg, #ff0302, #e60000);
    color: white;
    padding: 60px !important;
}

.file-claim-title {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 1px;
}

.support-title {
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.claim-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .claim-btn:hover {
        background: white;
        color: #ff0302;
        transform: translateY(-3px);
    }

/* Hold-to-Verify CAPTCHA Styles */
.captcha-wrapper {
    margin-top: 1.2rem;
    text-align: center;
}

.hold-button {
    width: 100%;
    height: 52px; /* Slightly reduced height for compact form */
    background: #f1f3f5; /* Light gray (neutral & modern) */
    border: 1px solid #ced4da; /* Bootstrap-like border */
    border-radius: 0.5rem;
    font-size: 1rem; /* Smaller font for compactness */
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    user-select: none;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    touch-action: manipulation; /* Better touch response on mobile */
}

    .hold-button:hover {
        background: #e9ecef;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .hold-button:active,
    .hold-button.holding {
        background: #dee2e6;
        transform: translateY(1px);
        box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    }

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #28a745, #198754);
    transition: width 0.08s linear; /* Very smooth fill */
    z-index: 1;
}

.hold-button span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 1rem;
}

.hold-button.success {
    background: #198754 !important;
    border-color: #198754 !important;
    color: white !important;
    cursor: default;
    box-shadow: 0 2px 8px rgba(25, 135, 84, 0.3);
}

    .hold-button.success:hover,
    .hold-button.success:active {
        transform: none; /* No movement after success */
    }

.verified-text {
    margin-top: 0.6rem;
    font-size: 0.95rem;
    color: #198754;
    font-weight: 600;
    display: none;
}

.invalid-captcha {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.4rem;
    display: none;
}

/* Optional: Make text responsive on small screens */
@media (max-width: 576px) {
    .hold-button {
        height: 48px;
        font-size: 0.95rem;
    }

        .hold-button span {
            padding: 0 0.8rem;
        }
}
.very-small {
    font-size: 0.8rem;
}

.hold-button {
    background: linear-gradient(90deg, #f8f9fa, #e9ecef);
    border: 2px solid #dee2e6;
    transition: all 0.3s;
}

    .hold-button:hover {
        background: linear-gradient(90deg, #e9ecef, #dee2e6);
    }

    .hold-button:active {
        transform: scale(0.98);
    }

.progress-fill {
    transition: width 0.1s linear !important;
    z-index: 1;
}

.form-control-sm:focus, .form-select-sm:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: #dc3545;
}

.was-validated .form-control:valid,
.was-validated .form-select:valid {
    border-color: #198754;
}

.invalid-feedback {
    font-size: 0.75rem;
}

/* End */

/* NEW CARD SECTION START */
/* Card Hover Effects */
.card-hover-regular {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

    .card-hover-regular:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
        border-color: #ff3e3d;
    }

    .card-hover-regular .btn-outline-danger {
        transition: all 0.3s ease;
    }

    .card-hover-regular:hover .btn-outline-danger {
        background-color: #ff3e3d;
        color: white;
    }

    .card-hover-regular:hover .icon-circle {
        transform: scale(1.1);
        transition: transform 0.3s ease;
    }

/* Special Card Hover Effect */
.card-hover-special {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

    .card-hover-special:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(255, 3, 2, 0.25) !important;
        border-color: white;
    }

    .card-hover-special .btn-light {
        transition: all 0.3s ease;
    }

    .card-hover-special:hover .btn-light {
        background-color: #ff3e3d;
        color: white !important;
        border-color: white;
    }

    .card-hover-special:hover .icon-circle {
        transform: scale(1.1);
        transition: transform 0.3s ease;
        background-color: #ff3e3d !important;
    }

        .card-hover-special:hover .icon-circle i {
            color: white !important;
        }

    /* Ensure all text in 2nd card is white */
    .card-hover-special .card-title,
    .card-hover-special .card-text,
    .card-hover-special strong {
        color: white !important;
    }

    .card-hover-special .card-text {
        opacity: 0.9;
    }

/* Button hover effects */
.btn-outline-danger:hover {
    background-color: #ff3e3d;
    color: white;
}

/* Smooth transitions for icons */
.icon-circle {
    transition: all 0.3s ease;
}
/* END */

/* Flip Card Styles */
.flip-card__container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.flip-card {
    width: 350px;
    height: 450px;
    perspective: 1000px;
}

.flip-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.flip-card:hover .flip-card__inner {
    transform: rotateY(180deg);
}

.flip-card__front, .flip-card__back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
}

.flip-card__front {
    background-color: var(--primary-dark-red);
    color: var(--pure-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.flip-card__img {
    width: 200px;
    height: 200px;
    border-color: #fff;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 25px;
}

.flip-card__name {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}

.flip-card__title {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

.flip-card__flip-text {
    font-size: 0.9rem;
    margin-top: 20px;
    color: #fff;
}

    .flip-card__flip-text i {
        margin-left: 5px;
        color: #fff;
    }

.flip-card__back {
    background-color: var(--pure-white);
    color: var(--text-dark);
    transform: rotateY(180deg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.flip-card__back-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-dark-red);
    position: relative;
    padding-bottom: 10px;
    width: 100%;
}

    .flip-card__back-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background-color: var(--primary-red);
    }

.flip-card__back-desc {
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.highlight {
    color: var(--primary-dark-red);
    font-weight: 600;
}

.flip-card__credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.credential-item {
    background-color: var(--off-white);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--primary-dark-red);
    display: flex;
    align-items: center;
    gap: 5px;
}

    .credential-item i {
        color: var(--primary-red);
    }
    /* END */

/* FAQ Section */
.faq-section {
    background: #f8f9fa; /* light bg */
}

.accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
}

.accordion-body {
    font-size: 1rem;
    line-height: 1.6;
}

.faq-left h1 {
    font-size: 3.5rem;
}

/* END */

/* NEW: Clients Logo Carousel Styles - ADDED */
.clients-section {
    padding: 90px 20px;
    background: #f8f9fa;
    text-align: center;
}

body.dark-mode .clients-section {
    background: #1a1a1a;
}

.clients-title {
    font-size: 48px;
    color: #333;
    margin-bottom: 60px;
    font-weight: bold;
}

body.dark-mode .clients-title {
    color: #f0f0f0;
}

.logo-carousel {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 40px 0;
}

.logo-track {
    display: inline-flex;
    animation: scroll 40s linear infinite;
}

.logo-item {
    margin: 0 40px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s;
}

    .logo-item:hover {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.1);
    }

    .logo-item img {
        height: 60px;
        width: auto;
    }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Duplicate logos for seamless loop */
.logo-track:hover {
    animation-play-state: paused;
}
/* END */

/*** Testimonial ***/
.testimonial-img {
    position: relative;
    padding: 2.5rem 0 2.5rem 5.5rem; /* ≈45px top/bottom, 90px left */
}

    .testimonial-img::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: calc(50% + 2.8rem); /* adjusted for better fit */
        height: 100%;
        background: var( --primary-red);
        z-index: -1;
    }

/* Quote icon using Bootstrap Icons instead of line */
.testimonial-text .quote-icon {
    position: absolute;
    font-size: 3rem;
    color: var( --primary-red);
    opacity: 0.15;
    top: -1rem;
    left: 0;
}

/* Name line replaced with Bootstrap Icon check or just bold styling */
.testimonial-text h5 {
    position: relative;
    padding-left: 2.8rem; /* space for icon */
    font-weight: 600;
}

    .testimonial-text h5::before {
        /* Optional: keep small line or replace with icon */
        content: "\F26E"; /* bi bi-check-circle or similar */
        font-family: "bootstrap-icons";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        color: var( --primary-red);
        font-size: 1.4rem;
    }

.testimonial-carousel .owl-dots {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    left: auto;
}

.testimonial-carousel .owl-dot {
    margin-left: 0.75rem;
    width: 0.9rem;
    height: 0.9rem;
    background: var(--bs-white);
    border: 1px solid var( --primary-red);
    border-radius: 0%;
    transition: all 0.4s ease;
}

    .testimonial-carousel .owl-dot.active {
        width: 1.8rem;
        background: var(--primary-dark-red);
        border-color: var(--primary-dark-red);
    }

@media (max-width: 768px) {
    .testimonial-carousel .owl-dots {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .testimonial-carousel .owl-dot {
        margin: 0 0.4rem;
    }

    .testimonial-img {
        padding-left: 1.5rem;
    }

        .testimonial-img::before {
            width: 60%;
        }
}
/* END */

/* Footer Styles */
footer {
    background-color: #111;
    color: #aaa;
    padding: 60px 0 30px;
    font-size: 15px;
}

    footer a {
        color: #aaa;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        footer a:hover {
            color: #fff;
        }

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links ul li {
        margin-bottom: 12px;
    }

.newsletter-input {
    background-color: #222;
    border: none;
    color: white;
    padding: 12px 20px;
    border-radius: 50px 0 0 50px;
    width: 100%;
}

    .newsletter-input::placeholder {
        color: #777;
    }

.newsletter-btn {
    background-color: #ff0302;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 0 50px 50px 0;
    font-weight: 600;
}

    .social-icons a {
        font-size: 20px;
        margin-left: 15px;
        color: #aaa;
    }

    .social-icons a:hover {
        color: #fff;
    }

.copyright {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 40px;
    font-size: 14px;
}
/* END */

/* INSURANCE SERVICES PAGE */
/* About Us Section Styles */
.about-section {
    padding: 120px 20px;
    background: #f9fafb;
    font-family: 'Lato', sans-serif;
}

body.dark-mode .about-section {
    background: #1a1a1a;
}

.about-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-content h1 {
    font-size: 50px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

body.dark-mode .about-content h1 {
    color: #f0f0f0;
}

.about-content p {
    font-size: 20px;
    color: #475569;
    margin-bottom: 40px;
}

body.dark-mode .about-content p {
    color: #ccc;
}

.about-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    line-height: 1.9;
    font-size: 17px;
    position: relative;
}

body.dark-mode .about-card {
    background: #2d2d2d;
    color: #f0f0f0;
}

.about-card p {
    margin-bottom: 20px;
    color: #333;
}


.highlight {
    color: #3b82f6;
    font-weight: 600;
}

/* Services Section Styles */
.services-section {
    width: 100%;
}

.services-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 30px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.service-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    border: 1px solid #e2e8f0;
}

.service-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    background: #f8fafc;
    color: #ff0302;
}

.service-btn-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-icon {
    width: 40px;
    height: 40px;
    background: #ff0302;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.service-text {
    font-size: 18px;
    font-weight: 600;
}

.service-arrow {
    color: #94a3b8;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.service-btn:hover .service-arrow {
    transform: translateX(5px);
    color: #ff0302;
}

.about-button-container {
    text-align: center;
    margin-top: 50px;
}

/* Pagination Styles */
/* Agar Bootstrap ke default blue color change karna ho */
.pagination .page-item.active .page-link {
    background-color: #ff0302; /* aapka red theme */
    border-color: #ff0302;
    color: white;
}

.pagination .page-link {
    color: #ff0302;
}

    .pagination .page-link:hover {
        background-color: #ffebee;
        color: #ff0302;
    }
/* END */

/** Insurance Services Page **/

.services-list li {
    font-size: 1.1rem;
    line-height: 1.6;
}

.hover-lift {
    transition: all 0.3s ease;
}

.service-card:hover .hover-lift {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: #dc3545 !important;
}

.sticky-buttons {
    position: relative;
}

@media (min-width: 992px) {
    .sticky-buttons {
        position: sticky;
        top: 80px; /* ← Adjust this if your navbar/header is taller */
        z-index: 10;
    }

    .service-card .hover-lift {
        min-height: 90px; /* Keeps buttons slim & tall */
    }

    .right-image-wrapper {
        margin-top: 2rem; /* Space between sticky buttons and image */
    }
}

@media (max-width: 991px) {
    .sticky-buttons {
        position: static; /* No sticky on mobile */
    }

    .right-image-wrapper {
        margin-top: 3rem;
    }
}
/* END */

/***** ABOUT PAGE *****/
/* FAQ */
.faq-section .accordion-button {
    background-color: #fff;
    color: #333;
    font-size: 1.1rem;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
}

    .faq-section .accordion-button:not(.collapsed) {
        background-color: #fff;
        color: #ff0302;
        box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
    }

    .faq-section .accordion-button:focus {
        box-shadow: none;
        border-color: #ff0302;
    }

    .faq-section .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff0302'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

.faq-section .accordion-item {
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
}

.faq-section .accordion-body {
    font-size: 1rem;
    line-height: 1.7;
}
/* END */

/*** CCL PAGE START ***/
/* Pricing Card */
.pricing-card-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-card {
    width: 420px; /* Reduced from 500px */
    max-width: 100%;
    background: white;
    color: #333;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
    position: relative;
    transform-style: preserve-3d;
    border: 1px solid #e2e8f0;
}

/* MOST POPULAR Badge */
.badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff0302;
    color: white;
    font-size: 15px;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 0 28px 0 24px;
    z-index: 10;
    transform: translateZ(50px);
}

.pricing-card .content {
    padding: 50px 35px 60px; /* Reduced padding */
    text-align: center;
    position: relative;
    z-index: 2;
}

.pricing-card .price {
    font-size: 68px; /* Reduced from 78px */
    font-weight: 900;
    margin-bottom: 5px;
    color: #ff0302;
}

.pricing-card .price span {
    font-size: 24px; /* Reduced from 28px */
    font-weight: normal;
    opacity: 0.9;
    color: #666;
}

.pricing-card .plan-name {
    font-size: 32px; /* Reduced from 36px */
    font-weight: 800;
    margin: 15px 0 25px;
    color: #0f172a;
}

.pricing-card .description {
    font-size: 16px; /* Reduced from 18px */
    opacity: 0.92;
    line-height: 1.7;
    margin-bottom: 35px; /* Reduced from 45px */
    color: #475569;
}

.pricing-card .features {
    list-style: none;
    text-align: left;
    margin: 35px 0; /* Reduced from 45px */
}

    .pricing-card .features li {
        font-size: 17px; /* Reduced from 19px */
        margin: 18px 0; /* Reduced from 22px */
        display: flex;
        align-items: center;
        gap: 14px; /* Reduced from 16px */
        color: #333;
    }

.pricing-card .features li::before {
    content: "✓";
    background: #ff0302;
    width: 30px; /* Reduced from 34px */
    height: 30px; /* Reduced from 34px */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px; /* Reduced from 18px */
    flex-shrink: 0;
    color: white;
}


.pricing-card .btn {
    display: block;
    margin: 40px auto 0; /* Reduced from 50px */
    background: #ff0302;
    color: white;
    padding: 18px 60px; /* Reduced from 20px 70px */
    border-radius: 10px;
    font-size: 20px; /* Reduced from 22px */
    font-weight: bold;
    text-decoration: none;
    width: fit-content;
    box-shadow: 0 15px 40px rgba(255, 3, 2, 0.3);
    transition: all 0.4s;
    transform: translateZ(40px);
    border: none;
    cursor: pointer;
}

.pricing-card .btn:hover {
    transform: translateZ(50px) translateY(-8px);
    box-shadow: 0 25px 60px rgba(255, 3, 2, 0.4);
    background: #ff3e3d;
}

/*POPUP FORM BUTTON*/
/* Submit Button Hover Styles */
.submit-quote-btn {
    /* Base Gradient */
    background: linear-gradient(135deg, #dc3545, #c82333) !important;
    border: none !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3) !important;
}

    /* Hover Effect */
    .submit-quote-btn:hover:not(:disabled) {
        background: linear-gradient(135deg, #c82333, #b21f2d) !important;
        transform: translateY(-3px) !important;
        box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4) !important;
    }

    /* Active/Pressed Effect */
    .submit-quote-btn:active:not(:disabled) {
        transform: translateY(-1px) !important;
        box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3) !important;
        transition: all 0.1s ease !important;
    }

    /* Ripple Effect on Click */
    .submit-quote-btn::after {
        content: '' !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: 5px !important;
        height: 5px !important;
        background: rgba(255, 255, 255, 0.5) !important;
        opacity: 0 !important;
        border-radius: 100% !important;
        transform: scale(1, 1) translate(-50%) !important;
        transform-origin: 50% 50% !important;
    }

    .submit-quote-btn:focus:not(:active)::after {
        animation: ripple 1s ease-out !important;
    }

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(40, 40);
        opacity: 0;
    }
}

/* Disabled State */
.submit-quote-btn:disabled {
    background: #6c757d !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
    opacity: 0.7 !important;
}

/* Button Text Glow on Hover */
.submit-quote-btn:hover:not(:disabled) i,
.submit-quote-btn:hover:not(:disabled) span {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5) !important;
}

/* Pulse Animation when Enabled */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    }

    70% {
        box-shadow: 0 4px 20px rgba(220, 53, 69, 0.5);
    }

    100% {
        box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    }
}

.submit-quote-btn:not(:disabled) {
    animation: pulse 2s infinite !important;
}

/* Remove pulse when hovering */
.submit-quote-btn:hover:not(:disabled) {
    animation: none !important;
}

/* Button Loading State */
.submit-quote-btn.loading {
    position: relative !important;
    color: transparent !important;
}

    .submit-quote-btn.loading::before {
        content: '' !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: 20px !important;
        height: 20px !important;
        margin: -10px 0 0 -10px !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        border-top-color: white !important;
        border-radius: 50% !important;
        animation: spin 1s linear infinite !important;
    }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Arrow Effect on Hover */
.submit-quote-btn:hover:not(:disabled) i {
    transform: translateX(3px) !important;
    transition: transform 0.3s ease !important;
}

.submit-quote-btn i {
    transition: transform 0.3s ease !important;
}

/* Border Animation */
.submit-quote-btn {
    border: 2px solid transparent !important;
    background-clip: padding-box !important;
}

    .submit-quote-btn:hover:not(:disabled) {
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
    }


    /*** Auto libitaty PAGE ***/
/* Base card styling - already good, but we enhance for hover */
.auto-liability-section .about-card {
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #ffffff !important; /* override bg-light if needed */
    position: relative;
    overflow: hidden;
}

    /* Hover effect - lift + shadow + subtle scale + border accent */
    .auto-liability-section .about-card:hover {
        transform: translateY(-12px) scale(1.015);
        box-shadow: 0 25px 50px -12px rgba(255, 3, 2, 0.18), 0 10px 30px -5px rgba(0, 0, 0, 0.15);
        border-color: #ff0302;
    }

    /* Subtle background overlay on hover (very light red tint) */
    .auto-liability-section .about-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 3, 2, 0.03), rgba(255, 3, 2, 0.01));
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
        z-index: 0;
    }

    .auto-liability-section .about-card:hover::after {
        opacity: 1;
    }

    /* Make text/icons pop a bit more on hover */
    .auto-liability-section .about-card:hover h2,
    .auto-liability-section .about-card:hover h3 {
        color: #ff0302;
        transition: color 0.3s ease;
    }

    .auto-liability-section .about-card:hover .bi-check-circle-fill {
        color: #d32f2f !important; /* slightly darker red on hover */
        transform: scale(1.15);
        transition: all 0.35s ease;
    }

    /* Smooth transition for list items */
    .auto-liability-section .about-card:hover .services-list li {
        transform: translateX(6px);
        transition: transform 0.4s ease;
    }

    /* Optional: slight fade-in animation for content on hover */
    .auto-liability-section .about-card .lead,
    .auto-liability-section .about-card p,
    .auto-liability-section .about-card ul {
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .auto-liability-section .about-card:hover .lead,
    .auto-liability-section .about-card:hover p,
    .auto-liability-section .about-card:hover ul {
        opacity: 0.95;
    }
    /********* GET A QUOTE **********/

/* Base card styles START */
.explanation-card {
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.08) !important; /* subtle border on hover */
    overflow: hidden;
    position: relative;
}

    /* Hover effects */
    .explanation-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
        border-color: #ff0302 !important; /* red accent border on hover */
    }

        /* Optional: subtle background gradient on hover */
        .explanation-card:hover .card-body {
            background: linear-gradient(135deg, rgba(255, 3, 2, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
        }

        /* Optional: slight scale on title for emphasis */
        .explanation-card:hover .card-title {
            color: #d32f2f; /* darker red on hover */
            transform: translateX(4px);
            transition: all 0.4s ease;
        }

    /* Smooth out any inner elements */
    .explanation-card .card-body {
        transition: background 0.4s ease;
    }
    /* END */

/* Base card styling - already good, but we enhance for hover */
.get-quote-section .about-card {
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #ffffff !important; /* override bg-light if needed */
    position: relative;
    overflow: hidden;
}

    /* Hover effect - lift + shadow + subtle scale + border accent */
    .get-quote-section .about-card:hover {
        transform: translateY(-12px) scale(1.015);
        box-shadow: 0 25px 50px -12px rgba(255, 3, 2, 0.18), 0 10px 30px -5px rgba(0, 0, 0, 0.15);
        border-color: #ff0302;
    }

    /* Subtle background overlay on hover (very light red tint) */
    .get-quote-section .about-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 3, 2, 0.03), rgba(255, 3, 2, 0.01));
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
        z-index: 0;
    }

    .get-quote-section .about-card:hover::after {
        opacity: 1;
    }

    /* Make text/icons pop a bit more on hover */
    .get-quote-section .about-card:hover h2,
    .get-quote-section .about-card:hover h3 {
        color: #ff0302;
        transition: color 0.3s ease;
    }

    .get-quote-section .about-card:hover .bi-check-circle-fill {
        color: #d32f2f !important; /* slightly darker red on hover */
        transform: scale(1.15);
        transition: all 0.35s ease;
    }

    /* Smooth transition for list items */
    .get-quote-section .about-card:hover .services-list li {
        transform: translateX(6px);
        transition: transform 0.4s ease;
    }

    /* Optional: slight fade-in animation for content on hover */
    .get-quote-section .about-card .lead,
    .get-quote-section .about-card p,
    .get-quote-section .about-card ul {
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .get-quote-section .about-card:hover .lead,
    .get-quote-section .about-card:hover p,
    .get-quote-section .about-card:hover ul {
        opacity: 0.95;
    }
    /* END */

    /*** Resurcess PAGE ***/
/* Blog */
.premium-blog-section {
    background: #fff;
}

/* Featured Card */
.blog-featured-card {
    transition: all 0.35s ease;
    border-radius: 30px;
    overflow: hidden;
}

    .blog-featured-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px -12px rgba(255, 3, 2, 0.18) !important;
    }

    .blog-featured-card img {
        transition: transform 0.6s ease;
    }

    .blog-featured-card:hover img {
        transform: scale(1.08);
    }

/* Small Cards */
.blog-small-card {
    transition: all 0.35s ease;
    border-radius: 30px;
    height: 100%;
}

    .blog-small-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
    }

    .blog-small-card img {
        height: 220px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .blog-small-card:hover img {
        transform: scale(1.06);
    }

/* Read More Button - Consistent Style */
.blog-read-more-btn {
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .blog-read-more-btn:hover {
        background-color: #ff0302 !important;
        color: white !important;
        transform: translateX(5px);
    }

    .blog-read-more-btn i {
        transition: transform 0.3s ease;
    }

    .blog-read-more-btn:hover i {
        transform: translateX(5px);
    }

/* Badge Styling */
.badge.bg-danger-subtle {
    background-color: rgba(255, 3, 2, 0.1) !important;
    color: #ff0302 !important;
    font-weight: 500;
}

/* Claim Services Section */
.claim-services-section {
    padding: 140px 40px;
    background: #ffffff;
}

.claim-container {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.claim-image {
    justify-self: end;
}

    .claim-image img {
        width: 100%;
        max-width: 620px;
        height: auto;
        border-radius: 28px;
        box-shadow: 0 30px 70px rgba(0,0,0,0.18);
        object-fit: cover;
        display: block;
    }

.claim-content {
    padding-left: 20px;
}

    .claim-content h2 {
        font-size: 52px;
        font-weight: 800;
        color: #1a1a1a;
        margin-bottom: 32px;
        line-height: 1.1;
    }

.claim-content p {
    font-size: 19px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 45px;
}

.claim-features {
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: #ff0302;
    color: white;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    margin-right: 18px;
    flex-shrink: 0;
}

/** CONTACT US PAGE **/
.map-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.map-container {
    max-width: 110%;
    aspect-ratio: 15 / 5; /* Makes it more horizontal/landscape */
    overflow: hidden;
    border-radius: 16px;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
    }
    /* END */