﻿/* Main layout and component styles (non-responsive) */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Header - Fixed on Scroll */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: fixed; /* ← Fixed rahega scroll par */
    top: 0;
    left: 0;
    width: 100%; /* ← Full width, no side gap */
    z-index: 1000;
    transition: var(--transition);
}

.dark-mode header {
    background-color: var(--light-gray);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 15px 20px; /* Container ke hisab se padding */
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.dark-mode .logo-text {
    color: var(--dark-color);
}



/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.mobile-login-nav-item {
    display: none;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition);
}

    .nav-link:hover {
        background-color: var(--light-gray);
        color: var(--primary-color);
    }

    .nav-link i {
        font-size: 14px;
        transition: var(--transition);
    }

.dropdown.active .nav-link i {
    transform: rotate(180deg);
}

/* ← Yahan add kar do */
.nav-link.active {
    background-color: var(--light-gray);
    color: var(--primary-color);
    font-weight: 600;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: var(--shadow);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dark-mode .dropdown-menu {
    background-color: var(--light-gray);
    border: 1px solid var(--border-color);
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
}

    .dropdown-item:hover {
        background-color: var(--light-gray);
        color: var(--primary-color);
        padding-left: 25px;
    }

/* Buttons */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-login {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

    .btn-login:hover {
        background-color: var(--primary-color);
        color: white;
    }

.dark-mode .btn-login {
    color: var(--dark-color);
    border-color: var(--dark-color);
}

    .dark-mode .btn-login:hover {
        background-color: var(--dark-color);
        color: var(--light-color);
    }

.btn-theme-toggle {
    background-color: var(--light-gray);
    color: var(--dark-color);
    width: 46px;
    height: 46px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
}

    .btn-theme-toggle:hover {
        background-color: var(--primary-color);
        color: white;
    }

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    width: 46px;
    height: 46px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition);
}

    .mobile-menu-toggle:hover {
        background-color: var(--light-gray);
    }



/* Hero, Main, Footer – same as before */
.hero {
    background: linear-gradient(rgb(0, 51, 102, 0.37), rgb(0, 51, 102, 0.80)), url('../images/banners/hero-bg.jpg') center / cover no-repeat;
    background-color: #003366ea; /* fallback */
    min-height: 600px;
    color: white;
    padding: 120px 0;
    text-align: center;
    margin-top: -10px;
    border-radius: 0 0 20px 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-hero {
    background-color: var(--accent-color);
    color: white;
    font-size: 1.1rem;
    padding: 15px 35px;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

    .btn-hero:hover {
        background-color: #003366;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

/* Breadcrumb in Hero */
.breadcrumb {
    margin-top: 30px;
    font-size: 1.1rem;
    color: rgb(255, 0, 0, 0.90);
}

.breadcrumb-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

    .breadcrumb-link:hover {
        color: var(--accent-color);
        text-decoration: underline;
    }

.breadcrumb-separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-current {
    color: #ff0000;
    font-weight: 600;
}

/* About Us Section - Matched with Theme + Title Left Aligned on All Devices */
.about-us-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.dark-mode .about-us-section {
    background-color: #0d1117;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-photo {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

    .about-img:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    }

.about-info {
    flex: 1.5;
    min-width: 300px;
    text-align: left; /* ← Desktop + all devices par text left */
}

.section-title-line {
    display: block;
    height: 4px;
    width: 70px;
    background-color: var(--primary-color);
    margin-bottom: 20px;
    margin-left: 0; /* ← Line bhi left par */
    border-radius: 2px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: left !important; /* ← Strong left align - override any center */
}

.dark-mode .section-title {
    color: var(--dark-color);
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 25px;
    text-align: left;
}

    .about-description:last-of-type {
        margin-bottom: 40px;
    }

.about-btn {
    background-color: var(--primary-color);
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    color: white;
    transition: var(--transition);
}

    .about-btn:hover {
        background-color: #2b5b8b;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

.about-subheading {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 50px 0 20px 0;
}

.qualities-list {
    list-style: none;
    padding-left: 0;
    margin: 30px 0;
}

    .qualities-list li {
        font-size: 1.15rem;
        line-height: 1.8;
        color: var(--gray-color);
        margin-bottom: 18px;
        padding-left: 30px;
        position: relative;
    }

        .qualities-list li::before {
            content: "✓";
            color: var(--accent-color);
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 1.3rem;
        }

.about-cta {
    margin-top: 60px;
}

/* Claims Services Section - Theme Matched */
.claims-services-section {
    padding: 30px 0;
    background-color: var(--light-color);
    text-align: center;
}

.dark-mode .claims-services-section {
    background-color: #0d1117;
}

.services-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.services-description {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 60px;
    color: var(--gray-color);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.dark-mode .service-card {
    background-color: var(--light-gray);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

    .service-card:hover .service-icon {
        color: var(--secondary-color);
        transform: scale(1.15);
    }

.service-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.dark-mode .service-title {
    color: var(--dark-color);
}

.service-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-color);
}

/* Mission & Vision Section - Dark Glass Cards (Smaller Cards) */
.mission-vision-section {
    padding: 100px 20px; /* Padding kam kiya */
    text-align: center;
    min-height: 80vh; /* Full screen nahi, content ke hisab se */
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(88, 101, 148, 0.4) 0%, transparent 50%), radial-gradient(circle at 50% 50%, rgba(20, 30, 60, 0.8) 0%, #0a0e17 70%);
    background-attachment: fixed;
    color: white;
}

.mv-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 60px; /* Spacing kam */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); /* ← 500px se 400px kiya */
    gap: 40px; /* Gap kam */
    max-width: 1100px; /* Overall width kam */
    margin: 0 auto;
}

.mv-card {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 40px 35px; /* ← Padding kam kiya (60/50 → 40/35) */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: all 0.5s ease;
}

    .mv-card:hover {
        transform: translateY(-12px);
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    }

        .mv-card:hover .mv-icon {
            color: #c0e0ff;
            transform: scale(1.15);
        }

.mv-icon {
    font-size: 48px; /* ← Icon size kam (55 → 48) */
    color: #fff;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    opacity: 0.9;
}

.mv-title {
    font-size: 1.7rem; /* ← Title size kam (30px → ~27px) */
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.mv-desc {
    font-size: 1.05rem; /* ← Description size reasonable */
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

/* Meet Our Team Section */
.team-section-outer {
    padding: 100px 0;
    background-color: var(--light-color);
}

.dark-mode .team-section-outer {
    background-color: #0d1117;
}

.team-section {
    background: linear-gradient(to right, var(--primary-color) 35%, white 35%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    min-height: 650px;
    transition: var(--transition);
}

.dark-mode .team-section {
    background: linear-gradient(to right, var(--primary-color) 35%, var(--light-gray) 35%);
}

.team-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.image-container {
    width: 40%;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.profile-image {
    width: 100%;
    max-width: 420px;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
    border: 6px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.text-container {
    width: 60%;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.subtitle {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.team-section h2 {
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.team-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 5px;
    background-color: var(--accent-color);
    border-radius: 3px;
}

.description {
    color: var(--gray-color);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.credential-item {
    background-color: #e6f0ff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.dark-mode .credential-item {
    background-color: #1a2a3a;
}

.credential-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.credential-item:hover {
    background-color: var(--accent-color);
    color: white;
}

.credential-item:hover i {
    color: white;
}

/* Logo Partners Slider Section */
.logo-partners-section {
    padding: 100px 0;
    background-color: var(--light-color);
    overflow: hidden;
}

.dark-mode .logo-partners-section {
    background-color: #0d1117;
}

.logo-partners-header {
    text-align: left;
    margin-bottom: 50px;
}

.logo-partners-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.dark-mode .logo-partners-title {
    color: var(--dark-color);
}

.logo-partners-subtitle {
    font-size: 1.15rem;
    color: var(--gray-color);
    max-width: 800px;
    line-height: 1.7;
}

.logo-slider {
    overflow: hidden;
    width: 100%;
}

.logo-track {
    display: flex;
    animation: logoScroll 45s linear infinite;
    gap: 80px;
    padding: 20px 0;
}

    .logo-track img {
        height: 80px;
        width: auto;
        object-fit: contain;
        flex-shrink: 0;
        filter: grayscale(80%);
        opacity: 0.8;
        transition: all 0.4s ease;
    }

        .logo-track img:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.1);
        }

.dark-mode .logo-track img {
    filter: grayscale(60%) brightness(1.2);
}

    .dark-mode .logo-track img:hover {
        filter: grayscale(0%) brightness(1.4);
    }

@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
/* Additional Services Section - Contingent Cargo */
.additional-services-section {
    padding: 100px 0;
    background-color: var(--light-color);
    text-align: center;
}

.dark-mode .additional-services-section {
    background-color: #0d1117;
}

.section-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-subheading {
    font-size: 1.8rem;
    font-weight: 500; /* ← Thin but visible */
    color: var(--primary-color);
    margin: 50px 0 20px 0;
    text-align: left;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.dark-mode .service-card {
    background-color: var(--light-gray);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: var(--primary-color);
    transform: scale(1.1);
}

.service-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.dark-mode .service-subheading {
    color: var(--secondary-color);
}

.service-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-color);
}

.btn-get-quote {
    background-color: var(--accent-color);
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 8px;
}

    .btn-get-quote:hover {
        background-color: #d32f2f;
        transform: translateY(-3px);
    }

/* Horizontal Patly Patly Coverage List - Like Image */
.coverage-heading {
    margin-top: 60px;
    margin-bottom: 30px;
    text-align: left;
}

.horizontal-coverage-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.horizontal-coverage-item {
    background-color: white;
    padding: 18px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 1.15rem;
    color: var(--dark-color);
    transition: var(--transition);
}

.dark-mode .horizontal-coverage-item {
    background-color: var(--light-gray);
    color: white;
}

.horizontal-coverage-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.coverage-check {
    background-color: #e63946; /* Red circle */
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
}

.optional-tag {
    font-size: 0.95rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-left: 8px;
}

/* Pagination Section - No Red, Soft Blue-Gray Theme */
.pagination-section {
    padding: 80px 0 100px 0;
    background-color: var(--light-color);
    text-align: center;
}

.dark-mode .pagination-section {
    background-color: #0d1117;
}

.pagination-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 16px;
    user-select: none;
}

    /* Normal page numbers */
    .pagination a {
        color: #666;
        text-decoration: none;
        padding: 8px 12px;
        transition: all 0.3s ease;
        border-radius: 8px;
    }

.dark-mode .pagination a {
    color: #ccc;
}

.pagination a:hover {
    color: var(--primary-color);
    background: var(--light-gray);
}

.dark-mode .pagination a:hover {
    color: var(--secondary-color);
    background: #3d3d3d;
}

/* Current page - Soft Blue-Gray Box (No Red) */
.pagination .current {
    background: var(--accent-color); /* Soft blue-gray */
    color: white;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 10px;
    min-width: 36px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(100, 116, 139, 0.3); /* Slate shadow */
}

.dark-mode .pagination .current {
    background: var(--accent-color);
    box-shadow: 0 4px 12px rgba(148, 163, 184, 0.4);
}

/* Arrows - Clean White/Gray Box */
.pagination .arrow {
    background: white;
    color: #777;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
    font-weight: bold;
    border: 1.5px solid #e2e8f0;
    transition: all 0.3s ease;
}

.dark-mode .pagination .arrow {
    background: #2d2d2d;
    color: #ccc;
    border: 1.5px solid #444;
}

.pagination .arrow:hover {
    background: var(--light-gray);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(100, 116, 139, 0.2);
}

.dark-mode .pagination .arrow:hover {
    background: #3d3d3d;
    border-color: var(--accent-color);
    color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(148, 163, 184, 0.3);
}

.pagination .arrow.disabled {
    color: #ccc;
    border-color: #eee;
    pointer-events: none;
    background: #f8f9fa;
}

.dark-mode .pagination .arrow.disabled {
    color: #555;
    border-color: #444;
    background: #2d2d2d;
}

/* ====================== */
/* Custom Footer - Fixed Gap + All Left Aligned */
/* ====================== */

.footer {
    background-color: white;
    padding: 60px 0 0 0;
    margin-top: 100px;
    margin-bottom: 0; /* ← Extra safety - no bottom margin */
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.dark-mode .footer {
    background-color: var(--light-gray);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    text-align: left;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    text-align: left;
}

.footer-logo .logo-img {
    height: 50px;
}

.tagline {
    font-size: 15px;
    color: var(--gray-color);
    line-height: 1.6;
    text-align: left;
}

.address-section {
    font-size: 14px;
    color: var(--gray-color);
    line-height: 1.7;
    text-align: left;
}

    .address-section strong {
        color: var(--dark-color);
    }

.dark-mode .address-section strong {
    color: white;
}

.phone {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: left;
}

.footer-links {
    display: flex;
    gap: 80px;
    text-align: left;
}

.links-column h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: left;
}

.dark-mode .links-column h4 {
    color: var(--dark-color);
}

.links-column ul {
    list-style: none;
    text-align: left;
}

    .links-column ul li {
        margin-bottom: 12px;
        text-align: left;
    }

        .links-column ul li a {
            text-decoration: none;
            color: var(--gray-color);
            font-size: 14.5px;
            transition: var(--transition);
        }

            .links-column ul li a:hover {
                color: var(--secondary-color);
                padding-left: 4px;
            }

/* Footer Bottom Strip - GAP FIXED */
.footer-bottom-strip {
    background: linear-gradient(135deg, #e6f7ff 0%, #f0f8ff 100%);
    border-radius: 12px;
    padding: 24px 40px;
    margin: 0 80px 0 80px; /* ← Bottom margin 40px → 0 (gap khatam) */
    display: flex;
    justify-content: flex-start; /* ← Left align strip content */
    text-align: left;
}

.dark-mode .footer-bottom-strip {
    background: linear-gradient(135deg, #1a2a3a 0%, #0f1e2e 100%);
}

.bottom-row {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center; /* ← Copyright aur icons left par */
    align-items: center;
    flex-wrap: wrap;
    gap: 600px; /* ← Copyright aur icons ke beech space */
    text-align: left;
}

.copyright {
    font-size: 14px;
    color: var(--gray-color);
    margin: 0;
}

.dark-mode .copyright {
    color: #adb5bd;
}

.policy-circle-links {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}

/* Circle Links */
.circle-link {
    width: 42px;
    height: 42px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: var(--transition);
    position: relative;
}

.dark-mode .circle-link {
    background-color: #2d3748;
    color: var(--secondary-color);
}

.circle-link:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
}

/* Tooltip */
.circle-link::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 10;
}

.circle-link::before {
    content: '';
    position: absolute;
    bottom: 52px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.circle-link:hover::after,
.circle-link:hover::before {
    opacity: 1;
    visibility: visible;
}

/*  */
/* Quote Form - Left Aligned Text */
.quote-form-container {
    background-color: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    max-width: 500px;
    margin: 0 auto;
    text-align: left; /* ← Poora form left align */
}

.dark-mode .quote-form-container {
    background-color: var(--light-gray);
}

.form-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: left; /* ← Title left */
    margin-bottom: 30px;
    font-weight: 600;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left; /* ← Sab fields left */
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

    .form-group label {
        font-weight: 600;
        color: var(--dark-color);
        margin-bottom: 8px;
        text-align: left;
    }

.dark-mode .form-group label {
    color: white;
}

.quote-form input,
.quote-form select {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    text-align: left; /* ← Input text left */
}

    .quote-form input::placeholder {
        text-align: left;
    }

.captcha-group {
    background-color: #f0f7ff;
    padding: 15px;
    border-radius: 8px;
    text-align: left; /* ← CAPTCHA left */
}

.dark-mode .captcha-group {
    background-color: #1a2a3a;
}

.captcha-question {
    text-align: left;
    margin-bottom: 10px;
}

.submit-quote-btn {
    align-self: center; /* ← Button left par */
    margin-top: 20px;

}
/* CAPTCHA Info Message with Icon */
.captcha-info {
    font-size: 0.95rem;
    color: var(--gray-color);
    margin: 15px 0 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-style: italic;
    text-align: left;
}

.captcha-info-icon {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.dark-mode .captcha-info {
    color: #adb5bd;
}

.captcha-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 15px 0;
    text-align: left;
}

.dark-mode .captcha-question {
    color: var(--secondary-color);
}

/* FAQs - Toggle Style */
.faq-heading {
    margin-top: 60px;
    margin-bottom: 30px;
    text-align: left;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.dark-mode .faq-item {
    background-color: var(--light-gray);
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    user-select: none;
}

.dark-mode .faq-question {
    color: var(--dark-color);
}

.faq-toggle {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg); /* + becomes × */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: #f8fbff;
}

.dark-mode .faq-answer {
    background-color: #1e293b;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Adjust if needed */
    padding: 20px 25px;
}

.faq-answer p {
    margin: 0;
    color: var(--gray-color);
    line-height: 1.7;
    font-size: 1.05rem;
}
/** NEW QUOTE PAGE **/
/* Quote Form - Background Properly Visible */
.quote-form-fixed-desktop {
    background-color: white; /* ← White background force */
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    position: sticky;
    top: 120px;
    align-self: flex-start;
    z-index: 10;
}

.dark-mode .quote-form-fixed-desktop {
    background-color: #1e293b; /* ← Dark mode mein dark slate */
    border: 1px solid #374151;
}

/* Form fields background white in light, dark in dark mode */
.quote-form input,
.quote-form select {
    background-color: white;
    color: var(--dark-color);
}

.dark-mode .quote-form input,
.dark-mode .quote-form select {
    background-color: #0f172a;
    color: white;
    border-color: #374151;
}

/* CAPTCHA group background */
.captcha-group {
    background-color: #f0f7ff;
    padding: 20px;
    border-radius: 8px;
}

.dark-mode .captcha-group {
    background-color: #1e293b;
}

/* Resources Page */
/* Blog Section - Read More Button Left Bottom */
.blog-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.dark-mode .blog-section {
    background-color: #0d1117;
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.blog-featured {
    grid-column: 1;
}

.blog-sidebar {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-card {
    background-color: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    padding-bottom: 50px; /* Button ke liye space */
}

.dark-mode .blog-card {
    background-color: var(--light-gray);
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.blog-image-wrapper {
    position: relative;
}

.blog-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.featured-card .blog-image {
    height: 450px;
}

.blog-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-content {
    padding: 40px;
    position: relative;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 10px;
    margin-top: -15px;
}

.dark-mode .blog-title {
    color: var(--dark-color);
}

.blog-excerpt {
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Read More Button - Left Bottom */
.btn-read-more {
    position: absolute;
    bottom: -5px;
    left: 40px;
    background-color: var(--accent-color);
    color: white;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.3);
    transition: var(--transition);
}

    .btn-read-more:hover {
        animation: jello-horizontal 0.9s both;
        background-color: #475569;
        transform: translateY(-5px);
    }

    .btn-read-more i {
        font-size: 1.2rem;
        transition: margin-left 0.3s ease;
    }

    .btn-read-more:hover i {
        margin-left: 10px;
    }

@keyframes jello-horizontal {
    0% {
        transform: translateY(0) scale3d(1, 1, 1);
    }

    30% {
        transform: translateY(-5px) scale3d(1.25, 0.75, 1);
    }

    40% {
        transform: translateY(-5px) scale3d(0.75, 1.25, 1);
    }

    50% {
        transform: translateY(-5px) scale3d(1.15, 0.85, 1);
    }

    65% {
        transform: translateY(-5px) scale3d(0.95, 1.05, 1);
    }

    75% {
        transform: translateY(-5px) scale3d(1.05, 0.95, 1);
    }

    100% {
        transform: translateY(-5px) scale3d(1, 1, 1);
    }
}


/* FAQs Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.dark-mode .faq-section {
    background-color: #0d1117;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.faq-left {
    text-align: left;
}

.faq-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 30px;
}

.faq-desc {
    font-size: 1.2rem;
    color: var(--gray-color);
    line-height: 1.8;
}

/* Claims Process Section */
.claims-section {
    padding: 100px 0;
    background-color: #f8fbff;
}

.dark-mode .claims-section {
    background-color: #0f172a;
}

.claims-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.claims-image {
    text-align: center;
}

.claims-img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.claims-content {
    text-align: left;
}

.claims-cta {
    margin-top: 40px;
}

/* Contact Section - Form Left, Map Right */
.contact-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.dark-mode .contact-section {
    background-color: #0d1117;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-form-wrapper {
    background-color: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.dark-mode .contact-form-wrapper {
    background-color: var(--light-gray);
}

.contact-form-wrapper .form-title {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-map {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 450px;
}

.contact-details {
    background-color: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.dark-mode .contact-details {
    background-color: var(--light-gray);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

    .contact-item:last-child {
        margin-bottom: 0;
    }

.contact-icon {
    font-size: 1.8rem;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 5px;
}

/* Login Modal */
.login-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

.login-modal-content {
    background: #fff;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
}

.form-group {
    margin-bottom: 15px;
}

    .form-group input {
        width: 100%;
        padding: 10px;
    }

.btn-login-submit {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
}

.login-error {
    color: red;
    margin-top: 10px;
}
.login-title {
    margin-bottom: 5px;
    text-align: center;
}

.login-subtitle {
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 20px;
}

.login-extra,
.login-footer {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

    .login-footer a,
    .login-extra a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
    }

body.dark-mode .login-modal-content {
    background: #1e1e1e;
    color: #fff;
}
.btn-logout {
    background: var(--primary-color);
    color: #fff;
}

    .btn-logout:hover {
        background: #b02a37;
    }

/* Privacy Policy Page */
.privacy-policy-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.dark-mode .privacy-policy-section {
    background-color: #0d1117;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.dark-mode .privacy-content {
    background-color: var(--light-gray);
}

.policy-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.policy-intro {
    font-size: 1.2rem;
    color: var(--gray-color);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 60px;
}

.policy-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 50px 0 20px 0;
}

.dark-mode .policy-heading {
    color: var(--dark-color);
}

.policy-text {
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 30px;
}

.policy-updated {
    text-align: center;
    font-size: 1rem;
    color: var(--gray-color);
    margin-top: 60px;
    font-weight: 500;
}