* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
}

:root {
    --primary-color: #1d0cff;
    --navy-color: #0B1A2F;
    --accent-gold: #ffd966;
    --star-color: #ffb347;
}

/* Sticky Header */
.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Top Slim Bar */
.top-slim {
    background: var(--navy-color);
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.top-slim a {
    color: #fff;
    text-decoration: none;
    font-weight: 450;
    transition: color 0.2s;
}

.top-slim a:hover {
    color: var(--accent-gold);
}

.star-rating {
    color: var(--star-color) !important;
    margin-right: 0.3rem;
    font-size: 0.9rem;
}

.rating-text {
    font-weight: 500;
    margin-left: 4px;
    color: #fff;
}

/* Main Navigation */
.main-nav {
    background: white;
    padding: 0.8rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

/* Responsive Navigation Padding */
@media (max-width: 768px) {
    .main-nav {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
    }
}

@media (max-width: 576px) {
    .sticky-top {
        padding: 0.5rem 0.75rem;
        position: sticky !important;
        top: 0;
        z-index: 999;
    }
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.25rem 0;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.logo-link:hover .logo-image {
    opacity: 0.9;
}

.logo-image {
    height: 55px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Responsive Logo Sizing */
@media (max-width: 991px) {
    .logo-image {
        height: 48px;
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 42px;
        max-width: 160px;
    }
}

@media (max-width: 576px) {
    .logo-image {
        height: 38px;
        max-width: 140px;
    }

    .logo-area {
        padding: 0.15rem 0;
    }
}

@media (max-width: 400px) {
    .logo-image {
        height: 35px;
        max-width: 120px;
    }
}

.logo-icon {
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 12px 4px 12px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
    box-shadow: 0 8px 14px -6px rgba(29, 12, 255, 0.25);
}

.logo-text {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--navy-color);
}

.logo-text span {
    color: var(--primary-color);
    font-weight: 700;
}

/* Phone Call Button */
.phone-call-btn {
    text-decoration: none;
}

#toggle_nav_call {
    background: var(--primary-color);
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(29, 12, 255, 0.3);
}

#toggle_nav_call:hover {
    background: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(29, 12, 255, 0.4);
}

#toggle_nav_call i {
    font-size: 1.5rem;
}

/* Request Quote Button */
.btn-quote {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-quote:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 12, 255, 0.3);
}

/* Hamburger Menu Button */
.hamburger-btn {
    background: transparent;
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    color: var(--navy-color);
}

.hamburger-btn:hover {
    transform: translateY(-2px);
}

.hamburger-btn i {
    font-size: 3.5rem;
}

/* FULL SCREEN OVERLAY */
.mega-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-18px) scale(0.98);
    transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out, transform 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
    pointer-events: none;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
}

.mega-overlay.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.overlay-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 2rem 2.5rem;
}

.close-overlay {
    position: absolute;
    top: 28px;
    right: 32px;
    background: transparent;
    border: none;
    font-size: 2.8rem;
    line-height: 1;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-color);
    transition: all 0.2s;
    border-radius: 50%;
    z-index: 100;
}

.close-overlay:hover {
    background: rgba(29, 12, 255, 0.06);
    color: var(--primary-color);
    transform: rotate(90deg);
}

/* ---------- CENTERING THE GRID WITH EQUAL SIDE SPACE ---------- */
.mega-grid-wrapper {
    display: flex;
    justify-content: center;
    /* centers the grid horizontally */
    width: 100%;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 200px));
    /* fixed width columns for consistent centering */
    gap: 3rem 4rem;
    /* increased gap for premium spacing */
    margin-top: 3rem;
    justify-content: center;
    /* fallback */
}

/* column styling – left text, but columns themselves are centered as a group */
.menu-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* keep text left within each column card */
    width: 100%;
}

.menu-col span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: black;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(29, 12, 255, 0.2);
    padding-bottom: 0.7rem;
    width: 100%;
    /* full width underlining */
    text-align: left;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.menu-items li {
    margin-bottom: 1rem;
    width: 100%;
}

.menu-items a {
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: #121f33;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    transition: all 0.2s ease;
    border-radius: 40px;
    padding: 0.3rem 1.5rem 0.3rem 0.8rem;
    white-space: nowrap;
    max-width: 100%;
}

.menu-items a i {
    color: var(--primary-color);
    font-size: 1.3rem;
    width: 1.8rem;
    transition: transform 0.15s;
    flex-shrink: 0;
}

.menu-items a:hover {
    color: var(--primary-color);
    background: rgba(29, 12, 255, 0.02);
    transform: translateX(5px);
}

.menu-items a:hover i {
    transform: scale(1.1);
}

/* responsive stacking with centered appearance */
@media (max-width: 1200px) {
    .mega-grid {
        grid-template-columns: repeat(5, minmax(0, 180px));
        gap: 2rem 2.5rem;
    }
}

@media (max-width: 1000px) {
    .mega-grid {
        grid-template-columns: repeat(3, minmax(0, 220px));
        gap: 2.5rem 3rem;
    }
}

@media (max-width: 700px) {
    .mega-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        /* on mobile let it be full width with left text */
    }

    .mega-grid-wrapper {
        justify-content: stretch;
    }

    .menu-items a {
        font-size: 1.2rem;
        padding: 0.6rem 1rem 0.6rem 0.8rem;
        white-space: normal;
        width: 100%;
    }

    .overlay-container {
        padding: 1.5rem;
    }

    .close-overlay {
        top: 16px;
        right: 18px;
        font-size: 3rem;
    }
}

body.overlay-open {
    overflow: hidden;
    height: 100vh;
}

@media (max-width: 576px) {
    .rating-text {
        display: none;
    }

    #toggle_nav_call {
        width: 42px;
        height: 42px;
    }

    #toggle_nav_call i {
        font-size: 1.1rem;
    }
}

/* Floating Action Buttons (Call & WhatsApp) */
.fab-wrapper {
    z-index: 1050;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border-radius: 32px;
    overflow: visible;
    transition: box-shadow 0.2s;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    min-width: 0;
}

.fab-wrappers {
    z-index: 1050;
    box-shadow: 0 4px 16px rgba(37,211,102,0.15);
    border-radius: 32px;
    overflow: visible;
    transition: box-shadow 0.2s;
    background: #25d366;
    display: flex;
    align-items: center;
    min-width: 0;
}

.fab-wrapper a {
    display: flex;
    align-items: center;
    border-radius: 32px;
    min-height: 48px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    background: transparent;
    padding: 0;
    transition: box-shadow 0.2s, background 0.2s;
    text-decoration: none;
    min-width: 0;
}

.fab-wrappers a {
    display: flex;
    align-items: center;
    border-radius: 32px;
    min-height: 48px;
    box-shadow: 0 4px 16px rgba(37,211,102,0.15);
    background: #25d366;
    padding: 0;
    transition: box-shadow 0.2s, background 0.2s;
    text-decoration: none;
    min-width: 0;
}

.fab-wrapper .fab-icon {
    font-size: 1.5rem;
    color: #fff;
    background: transparent;
    border-radius: 50%;
    padding: 10px 0 10px 10px;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.fab-wrappers .fab-icon {
    font-size: 1.5rem;
    color: #fff;
    background: #25d366;
    border-radius: 50%;
    padding: 10px 0 10px 10px;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.fab-wrapper .fab-text {
    color: #fff;
    font-weight: 600;
    background: #0f00db;
    padding: 8px 24px 8px 0;
    border-radius: 0 32px 32px 0;
    font-size: 1rem;
    letter-spacing: 0.02em;
    display: inline-block;
    margin-left: 0;
    box-shadow: 0 2px 8px rgba(15, 0, 219, 0.10);
}

.fab-wrapper.fab-call .fab-icon,
.fab-wrapper.fab-call .fab-text {
    background: transparent;
    box-shadow: 0 6px 24px rgba(37,211,102,0.18);
    filter: brightness(0.95);
}

.fab-wrappers.fab-whatsapp .fab-icon {
    background: #25d366;
    border-radius: 50%;
    padding: 10px;
    margin-left: 8px;
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    font-size: 1.5rem;
    color: #fff;

    }

    .fab-wrappers .fab-text {
        color: #fff;
        font-weight: 600;
        background: #25d366;
        padding: 8px 24px 8px 0;
        border-radius: 0 32px 32px 0;
        font-size: 1rem;
        letter-spacing: 0.02em;
        display: inline-block;
        margin-left: 0;
        box-shadow: 0 2px 8px rgba(37, 211, 102, 0.10);
}

.fab-wrapper.fab-call .fab-text {
    color: #fff;
}

.fab-wrapper a:hover,
.fab-wrapper a:focus {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
    filter: brightness(0.95);
}

@media (max-width: 576px) {
    .fab-wrapper {
        border-radius: 24px;
    }

    .fab-wrapper .fab-text {
        font-size: 0.95rem;
        padding: 8px 12px 8px 0;
        margin-left: 0;
    }

    .fab-wrapper .fab-icon {
        font-size: 1.2rem;
        padding: 8px 0 8px 8px;
        margin-left: 0;
        margin-right: 0;
    }

    .fab-wrappers .fab-text {
        font-size: 0.95rem;
        padding: 8px 12px 8px 0;
        margin-left: 0;
    }

    .fab-wrappers .fab-icon {
        font-size: 1.2rem;
        padding: 8px 0 8px 8px;
        margin-left: 0;
        margin-right: 0;
    }
}

/* ========== HERO/SLIDER SECTION ========== */
.hero {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 2.5rem 1.5rem;
}

.hero::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(29, 12, 255, 0.02);
    border-radius: 30% 70% 70% 30% / 30% 55% 45% 70%;
    top: -80px;
    right: -60px;
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    background: rgba(29, 12, 255, 0.015);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    bottom: -120px;
    left: -100px;
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hero .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem 0;
}

.col-content {
    flex: 1 1 50%;
    padding-right: 2rem;
}

.col-visual {
    flex: 1 1 40%;
}

.badge-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(29, 12, 255, 0.2);
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1e2b;
    margin: 1rem 0 1.2rem 0;
    letter-spacing: -0.02em;
}

.accent-blue {
    color: var(--primary-color);
}

.subhead {
    font-size: 1.2rem;
    color: #2c3147;
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 90%;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
}

.hero .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.9rem 2.2rem;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 8px 18px -8px rgba(0, 0, 0, 0.12);
}

.hero .btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.hero .btn-primary i {
    color: white;
}

.hero .btn-primary:hover {
    background-color: #0f00db;
    border-color: #0f00db;
    transform: translateY(-4px);
    box-shadow: 0 20px 28px -10px rgba(29, 12, 255, 0.4);
}

.hero .btn-secondary {
    background-color: #ffffff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero .btn-secondary i {
    color: var(--primary-color);
}

.hero .btn-secondary:hover {
    background-color: #f6f7ff;
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 28px -10px rgba(29, 12, 255, 0.2);
}

.visual-card {
    background: #eef1f6;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 45px -18px rgba(29, 12, 255, 0.25);
    position: relative;
    transition: 0.25s ease;
    aspect-ratio: 4/3;
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.visual-card:hover img {
    transform: scale(1.02);
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(29, 12, 255, 0.25) 0%, rgba(29, 12, 255, 0.02) 70%);
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: soft-light;
}

.visual-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 20%, rgba(29, 12, 255, 0.1) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

.secure-caption {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.secure-caption i {
    color: var(--primary-color);
}

.trust-icons {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #2a2f45;
    font-weight: 500;
    background: rgba(29, 12, 255, 0.03);
    padding: 0.3rem 1rem 0.3rem 0.5rem;
    border-radius: 40px;
}

.trust-item i {
    color: var(--primary-color);
    font-size: 1.4rem;
    background: white;
    border-radius: 50%;
    padding: 0.25rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
}

/* Hero/Slider Responsive */
@media screen and (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .col-content {
        flex: 1 1 100%;
        padding-right: 0;
    }

    .col-visual {
        flex: 1 1 100%;
        margin-top: 2rem;
    }

    .subhead {
        max-width: 100%;
    }
}

@media screen and (max-width: 640px) {
    .hero {
        padding: 1.8rem 1.2rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .badge-tag {
        font-size: 0.75rem;
        padding: 0.3rem 1rem;
    }

    .subhead {
        font-size: 1.1rem;
    }

    .cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .hero .btn {
        justify-content: center;
        padding: 0.8rem 1.5rem;
    }

    .trust-icons {
        gap: 1rem;
        justify-content: center;
    }
}

@media screen and (max-width: 400px) {
    .hero h1 {
        font-size: 1.9rem;
    }
}

/* ========== QUOTE FORM CARD ========== */
.quote-card {
    border-radius: 36px;
    box-shadow: 0 30px 60px -15px rgba(29, 12, 255, 0.2), 0 10px 25px -8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.quote-card:hover {
    box-shadow: 0 40px 70px -15px rgba(29, 12, 255, 0.25);
}

.quote-header {
    padding: 1.5rem 2rem 0.8rem;
    background: white;
    border-bottom: 2px solid rgba(29, 12, 255, 0.06);
}

.quote-header h5 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.quote-header h5 i {
    color: var(--primary-color);
}

.quote-header .text-muted {
    color: #4a5278 !important;
}

.quote-header .text-muted i {
    color: var(--primary-color);
}

.phone-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a2aff 100%);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 400;
    padding: 0.5rem 1.8rem;
    border-radius: 70px;
    box-shadow: 0 8px 20px rgba(29, 12, 255, 0.3);
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.phone-badge i {
    font-size: 1.3rem;
}

.phone-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 30px rgba(29, 12, 255, 0.4);
    background: linear-gradient(135deg, #0f00db, var(--primary-color));
}

.quote-form-body {
    padding: 1rem 1rem 1.5rem;
}

.input-icon-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
    z-index: 4;
    transition: color 0.2s;
    pointer-events: none;
}

.textarea-icon {
    position: absolute;
    left: 18px;
    top: 22px;
    color: var(--primary-color);
    font-size: 1.2rem;
    z-index: 4;
    pointer-events: none;
}

.modern-input {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 3rem;
    border: 1.5px solid #eef0f5;
    border-radius: 20px;
    font-size: 1rem;
    background: #fbfcff;
    transition: all 0.2s ease;
    height: 62px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.01);
}

textarea.modern-input {
    height: auto;
    min-height: 130px;
    padding: 1.2rem 1rem 1rem 3rem;
    resize: vertical;
}

.modern-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(29, 12, 255, 0.1);
}

.modern-input::placeholder {
    color: #0f0f11;
    font-weight: 400;
    font-size: 0.98rem;
}

.submit-btn {
    background: linear-gradient(145deg, var(--primary-color), #1500db);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 20px 30px -8px rgba(29, 12, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.submit-btn i {
    font-size: 1rem;
    transition: transform 0.2s;
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -8px rgba(29, 12, 255, 0.45);
    background: linear-gradient(145deg, #2a1aff, var(--primary-color));
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.form-group:hover .input-icon {
    color: #1500db;
}

@media (max-width: 768px) {
    .quote-header h5 {
        font-size: 1.4rem;
    }

    .phone-badge {
        font-size: 1.2rem;
        padding: 0.4rem 1.3rem;
    }

    .phone-badge i {
        font-size: 1.2rem;
    }

    .quote-form-body {
        padding: 1.5rem 1.2rem;
    }

    .modern-input {
        height: 58px;
        font-size: 0.95rem;
    }

    .submit-btn {
        width: 100%;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .quote-header {
        padding: 1.2rem 1.2rem 0.5rem;
    }

    .phone-badge {
        font-size: 1rem;
        padding: 0.3rem 1rem;
    }

    .phone-badge i {
        font-size: 1rem;
    }

    .input-icon {
        left: 15px;
        font-size: 1rem;
    }

    .modern-input {
        padding-left: 2.5rem;
    }
}

/* ========== LOGISTICS SECTION ========== */
.grewal-logistics-section {
    background: #ffffff;
    position: relative;
    isolation: isolate;
    padding: 5rem 1.5rem;
    overflow: hidden;
}

.grewal-logistics-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 30% 50%, rgba(29, 12, 255, 0.04) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.logistics-container {
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
    border-radius: 2rem;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.12), 0 8px 20px -8px rgba(29, 12, 255, 0.08);
    padding: 3rem;
    position: relative;
    z-index: 10;
}

.logistics-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem 4rem;
}

.logistics-visual-col {
    flex: 1 1 45%;
    min-width: 400px;
}

.logistics-content-col {
    flex: 1 1 48%;
}

.visual-authority-card {
    position: relative;
    overflow: hidden;
    box-shadow: 0 35px 50px -20px rgba(29, 12, 255, 0.35);
    transition: transform 0.3s ease;
    width: 100%;
    border-radius: 30px 90px 30px 90px;
}

.visual-authority-card:hover {
    transform: scale(1.02);
}

.authority-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 15/10;
    object-fit: cover;
    background: #d9e0eb;
}

.image-trust-badge {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    margin-top: 1.2rem;
    color: #2e3b4e;
    font-size: 1rem;
    background: rgba(29, 12, 255, 0.02);
    padding: 0.8rem 1.2rem;
    border-radius: 60px;
    border: 1px solid rgba(29, 12, 255, 0.08);
}

.image-trust-badge i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-color);
    display: inline-block;
}

.logistics-heading {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #141b2b;
    letter-spacing: -0.02em;
}

.logistics-heading span {
    color: var(--primary-color);
}

.heading-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 4px;
    opacity: 0.25;
}

.logistics-paragraph {
    color: #2e3b4e;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 92%;
}

.logistics-paragraph strong {
    color: var(--primary-color);
    font-weight: 600;
}

.text-highlight-blue {
    color: var(--primary-color);
    font-weight: 600;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem 1.5rem;
}

.feature-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.2s ease;
    padding: 0.2rem 0.2rem 0.2rem 0;
    border-radius: 10px;
}

.feature-card:hover {
    background: rgba(29, 12, 255, 0.02);
    padding-left: 0.8rem;
    transform: translateX(4px);
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: rgba(29, 12, 255, 0.06);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.6rem;
    transition: 0.2s;
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: white;
}

.feature-text h4 {
    font-size: 1.10rem;
    font-weight: 450;
    color: #1f293d;
    margin-bottom: 0.1rem;
}

.feature-text p {
    font-size: 0.92rem;
    color: #56657b;
    line-height: 1.4;
}

@media screen and (max-width: 1200px) {
    .logistics-heading {
        font-size: 2.4rem;
    }

    .logistics-visual-col {
        min-width: 350px;
    }
}

@media screen and (max-width: 992px) {
    .logistics-heading {
        font-size: 2.2rem;
    }

    .logistics-grid {
        flex-direction: column;
    }

    .logistics-visual-col {
        width: 100%;
        min-width: 100%;
    }

    .logistics-content-col {
        width: 100%;
    }

    .logistics-paragraph {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .fleet-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
        top: 15px;
        right: 15px;
    }

    .logistics-container {
        padding: 2rem 1.5rem;
    }
}

@media screen and (max-width: 640px) {
    .grewal-logistics-section {
        padding: 2.5rem 1rem;
    }

    .logistics-container {
        padding: 1.8rem 1.2rem;
    }

    .logistics-heading {
        font-size: 1.9rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-label {
        font-size: 0.75rem;
    }

    .fleet-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        gap: 5px;
    }
}

@media screen and (max-width: 400px) {
    .logistics-heading {
        font-size: 1.7rem;
    }

    .feature-card {
        padding: 0.2rem 0;
    }

    .fleet-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
}


/* ========== PRICING SECTION ========== */
.grewal-pricing-section {
    background: #ffffff;
    padding: 5rem 1.5rem;
    position: relative;
    isolation: isolate;
}

.grewal-pricing-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle at 70% 30%, rgba(29, 12, 255, 0.03) 0%, transparent 70%);
    top: -100px;
    right: -50px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.pricing-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0f1a2e;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.pricing-section-title span {
    color: var(--primary-color);
}

.section-intro {
    font-size: 1.1rem;
    color: #334155;
    max-width: 800px;
    line-height: 1.7;
}

.pricing-table {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 40px -15px rgba(29, 12, 255, 0.15), 0 8px 20px -8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(29, 12, 255, 0.08);
}

.pricing-table .table {
    margin-bottom: 0;
    vertical-align: middle;
}

.pricing-table thead th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 1.15rem;
    padding: 1.2rem 1rem;
    border-bottom: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

body {
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    overflow-x: clip;
}

body>* {
    max-width: 100%;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

.pricing-table tbody th,
.pricing-table tbody td {
    padding: 1.2rem 1rem;
    font-size: 1.05rem;
    color: #1f2a44;
    border-bottom: 1px solid #eef2f6;
    background: white;
}

.pricing-table tbody tr:last-child td,
.pricing-table tbody tr:last-child th {
    border-bottom: none;
}

.pricing-table tbody tr:hover td,
.pricing-table tbody tr:hover th {
    background: #f6f8ff;
}

.capacity-badge {
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(29, 12, 255, 0.06);
    padding: 0.2rem 0.8rem;
    border-radius: 40px;
    display: inline-block;
    font-size: 0.9rem;
}

.charges-highlight {
    font-weight: 700;
    color: var(--primary-color);
}

.note-box {
    background: #f2f5fd;
    border-left: 6px solid var(--primary-color);
    padding: 1.2rem 2rem;
    border-radius: 18px;
    color: #1f2a44;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.note-box i {
    color: var(--primary-color);
    font-size: 1.6rem;
}

.quote-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1.1rem 3.2rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 18px 30px -10px rgba(29, 12, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-btn:hover {
    background: #0f00db;
    transform: translateY(-5px);
    box-shadow: 0 28px 40px -12px rgba(29, 12, 255, 0.4);
    color: white;
}

.quote-btn i {
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.quote-btn:hover i {
    transform: translateX(5px);
}

@media screen and (max-width: 768px) {
    .pricing-section-title {
        font-size: 2.2rem;
    }

    .pricing-table thead {
        display: none;
    }

    .pricing-table,
    .pricing-table tbody,
    .pricing-table tr,
    .pricing-table td {
        display: block;
        width: 100%;
    }

    .pricing-table tr {
        margin-bottom: 1rem;
        border: 1px solid #eaeef5;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
        background: white;
    }

    .pricing-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.2rem;
        border-bottom: 1px dashed #eef2f6;
        text-align: right;
        font-size: 1rem;
    }

    .pricing-table tbody td:last-child {
        border-bottom: none;
    }

    .pricing-table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--primary-color);
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 0.3px;
        background: rgba(29, 12, 255, 0.04);
        padding: 0.2rem 1rem;
        border-radius: 40px;
    }

    .pricing-table tbody td[data-label="Transport / Truck Type"]::before {
        content: "🚛 Type";
    }

    .pricing-table tbody td[data-label="Weight Capacity"]::before {
        content: "⚖️ Capacity";
    }

    .pricing-table tbody td[data-label="Charges"]::before {
        content: "💰 Charges";
    }

    .note-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.2rem 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .pricing-section-title {
        font-size: 1.9rem;
    }

    .quote-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.8rem;
    }

    .pricing-table tbody td {
        padding: 0.9rem 1rem;
    }
}

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

/* ========== CUSTOMER REVIEWS SECTION ========== */
.section-reviews {
    background-color: #f9fbfe;
    padding: 5rem 0;
}

.section-reviews h2 {
    font-weight: 700;
    color: #1e2a41;
    letter-spacing: -0.02em;
}

.section-reviews .subheading {
    font-size: 1.2rem;
    font-weight: 400;
    color: #4a5568;
}

.testimonial-card {
    background-color: #ffffff;
    border: none;
    border-radius: 1.25rem;
    padding: 2rem 1.8rem;
    box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 38px -12px rgba(28, 12, 255, 0.12), 0 8px 18px rgba(0, 0, 0, 0.05);
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2.4rem;
    line-height: 1;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #2d3748;
    flex: 1;
}

.star-rating {
    color: var(--primary-color);
    font-size: 1.15rem;
    letter-spacing: 2px;
}

.star-rating i {
    margin-right: 0.15rem;
}

.reviewer-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 0;
    border-top: 1px solid rgba(29, 12, 255, 0.08);
    padding-top: 1rem;
}

.btn-reviews {
    background-color: var(--primary-color);
    border: none;
    color: white;
    padding: 0.8rem 2.8rem;
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 60px;
    box-shadow: 0 12px 22px -10px rgba(29, 12, 255, 0.35);
    transition: background-color 0.15s ease, transform 0.1s ease;
}

.btn-reviews:hover {
    background-color: #1600cc;
    color: white;
    transform: scale(1.02);
}

.btn-reviews:active {
    transform: scale(0.98);
}

@media (max-width: 576px) {
    .section-reviews {
        padding: 3rem 0;
    }

    .testimonial-card {
        padding: 1.8rem 1.5rem;
    }
}

/* Section */
.why-choose {
    padding: 90px 0;
    background: white;
}

/* Badge */
.why-badge {
    background: var(--primary-color);
    color: white;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Heading */
.why-heading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Text */
.why-text {
    font-size: 17px;
    line-height: 1.8;
}

/* Image Card */
.why-image-box {
    background: var(--primary-color);
    border-radius: 25px;
    padding: 4px;
}

.why-image-box img {
    width: 100%;
    border-radius: 15px;
}

/* Feature Points */
.why-points {
    margin-top: 30px;
}

.why-point {
    display: flex;
    align-items: start;
    margin-bottom: 15px;
}

.why-point i {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 10px;
}

/* FAQ Section Styling - CSS Only Accordion */
.faq-section h2 {
    color: #1600cc;
}

/* Hide the checkbox */
.faq-checkbox {
    display: none;
}

/* FAQ Item Container */
.faq-item {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Question Label (clickable) */
.faq-question {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    background-color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    margin: 0;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

/* Chevron icon styling */
.faq-question i {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

/* Answer Container (hidden by default) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.25rem;
    font-size: 14px;
    color: #555;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

/* When checkbox is checked - show answer */
.faq-checkbox:checked~.faq-answer {
    max-height: 500px;
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* When checkbox is checked - rotate chevron */
.faq-checkbox:checked~.faq-question i {
    transform: rotate(90deg);
}

/* When checkbox is checked - change question background */
.faq-checkbox:checked~.faq-question {
    background-color: #1600cc;
    color: #fff;
}

/* When checkbox is checked - change icon color */
.faq-checkbox:checked~.faq-question i {
    color: #fff !important;
}

/* Work Process Styling */
.work-process {
    background: #f8f9fa;
}

.process-title {
    color: #1600cc;
}

.process-card {
    background: #ffffff;
    border-radius: 12px;
    transition: 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #1600cc;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 50%;
}

/* Footer Base */
.site-footer {
    background-color: #0f2433;
    color: white;
    border-top: 1px solid rgba(29, 12, 255, 0.08);
    padding: 60px 0 40px;
}

/* 5 Equal Columns Layout */
.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Brand */
.footer-brand {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.footer-tagline {
    font-size: 1rem;
    color: white;
    border-bottom: 1px solid rgba(29, 12, 255, 0.12);
    padding-bottom: 12px;
    margin-bottom: 20px;
}

/* Contact */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: 0.2s ease;
}

.contact-item a:hover {
    color: white;
}

.contact-icon {
    color: white;
    font-size: 1.1rem;
}

/* Headings */
.footer-heading {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 18px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 6px;
    display: inline-block;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: white;
    font-size: 0.95rem;
    transition: 0.2s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid #e9ecf0;
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #5f6b7a;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-col {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .footer-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Footer Bottom Styling */
.footer-bottom-area {
    background-color: #0f2433;
    padding: 50px 0 40px;
}

/* Divider Line */
.footer-divider .line {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Social Icons */
.social-icons a {
    color: white;
    font-size: 25px;
    margin: 0 12px;
    transition: 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: #1600cc;
    transform: translateY(-3px);
}



/* Responsive */
@media (max-width: 576px) {
    .social-icons a {
        margin: 0 8px;
    }
}

/* Client Section Styling */
.client-section {
    position: relative;
}

.client-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #121a2c;
    letter-spacing: -0.02em;
}

.client-heading span {
    color: #1d0cff;
    border-bottom: 4px solid #1d0cff;
    padding-bottom: 5px;
}

.client-subhead {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.client-card {
    background-color: #ffffff;
    border: 1px solid rgba(29, 12, 255, 0.06);
    border-radius: 1.5rem;
    padding: 2rem 1rem;
    box-shadow: 0 8px 22px -10px rgba(29, 12, 255, 0.06);
    transition: all 0.25s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 32px -12px rgba(29, 12, 255, 0.16);
    border-color: rgba(29, 12, 255, 0.2);
}

.client-logo-text {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1e2a3d;
    transition: color 0.2s;
    letter-spacing: -0.01em;
    line-height: 1.2;
    text-align: center;
    word-break: break-word;
}

.client-card:hover .client-logo-text {
    color: #1d0cff;
}

.client-divider {
    width: 80px;
    height: 3px;
    background-color: #1d0cff;
    margin-top: 2.5rem;
    opacity: 0.3;
    border-radius: 3px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .client-heading {
        font-size: 2.2rem;
    }

    .client-logo-text {
        font-size: 1.4rem;
    }

    .client-card {
        min-height: 120px;
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .client-card {
        min-height: 100px;
    }

    .client-logo-text {
        font-size: 1.3rem;
    }
}

.page-hero {
    /* background image – subtle logistics/road theme, dark overlay for readability */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url(' ../images/slider/grewaltransport.webp ') center center / cover no-repeat;
    /* fallback color while loading */
    background-color: #2d3748;
    padding: 3rem 0 2.8rem 0;
    /* compact – small on all screens */
    margin-bottom: 0;
    position: relative;
}

/* overlay to ensure text stands out (already in gradient, but extra insurance) */
.page-hero-content {
    color: white;
    position: relative;
    z-index: 2;
}

/* breadcrumb styling – clean, light, with brand touch */
.page-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.6rem;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    /* subtle glass pill */
    padding: 0.4rem 1rem;
    border-radius: 40px;
    width: fit-content;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-breadcrumb a {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.15s ease;
    opacity: 0.9;
}

.page-breadcrumb a i {
    color: white;
    font-size: 1rem;
}

.page-breadcrumb a:hover {
    color: white;
    opacity: 1;
}

.page-breadcrumb a:hover i {
    color: white;
}

.page-breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

.page-breadcrumb span:last-child {
    color: white;
    font-weight: 600;
    background: var(--primary-color);
    padding: 0.15rem 0.7rem;
    border-radius: 40px;
    margin-left: 0.2rem;
    font-size: 0.85rem;
}

/* main heading – bold, large enough but compact */
.page-hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* subtitle / description */
.page-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin-bottom: 0.2rem;
    font-weight: 400;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* mission & vision specific line (extra emphasis) */
.hero-tagline {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-tagline i {
    color: var(--primary-color);
    background: white;
    border-radius: 50%;
    padding: 0.2rem;
    font-size: 1rem;
}

/* responsive adjustments – smaller on mobile */
@media (max-width: 576px) {
    .page-hero {
        padding: 2rem 0 1.8rem 0;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .page-hero p {
        font-size: 0.95rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
        flex-wrap: wrap;
    }

    .page-breadcrumb {
        font-size: 0.85rem;
        padding: 0.3rem 0.8rem;
    }
}

.contact-page {
    padding: 5rem 0 6rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-page::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(29, 12, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-page::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(29, 12, 255, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Section Heading */
.contact-heading {
    font-size: 3rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
}

.contact-heading span {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 8px;
}

.contact-heading span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
    border-radius: 10px;
}

.contact-subhead {
    font-size: 1.15rem;
    color: #64748b;
    margin-bottom: 4rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Form Card - Premium Design */
.form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px -15px rgba(29, 12, 255, 0.12);
    border: 1px solid rgba(29, 12, 255, 0.05);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-color) 100%);
    border-radius: 24px 24px 0 0;
}

.form-card h3 {
    color: #0f172a;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.form-card h3 i {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
}

.form-subtitle {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* Form Inputs - Modern Floating Labels */
.form-floating {
    margin-bottom: 1.8rem;
    position: relative;
}

.form-control,
.form-select {
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    background-color: #f8fafc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(29, 12, 255, 0.08);
    outline: none;
    transform: translateY(-2px);
}

.form-floating>label {
    font-weight: 600;
    color: #64748b;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
    color: var(--primary-color);
    transform: scale(0.85) translateY(-0.8rem) translateX(0.15rem);
}

/* Send Message Button - Premium Gradient */
.btn-send {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%);
    color: white;
    border: none;
    border-radius: 14px;
    padding: 1.1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 28px -10px var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-send::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-send:hover::before {
    left: 100%;
}

.btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -10px var(--primary-color);
}

.btn-send:active {
    transform: translateY(0px);
}

/* Info Cards - Modern Card Design */
.info-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem 2rem;
    box-shadow: 0 8px 30px -8px rgba(29, 12, 255, 0.08);
    border: 1px solid rgba(29, 12, 255, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-color) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.info-card:hover::before {
    transform: scaleY(1);
}

.info-card:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 40px -10px rgba(29, 12, 255, 0.15);
    border-color: rgba(29, 12, 255, 0.12);
}

.info-icon {
    font-size: 2rem;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%);
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px -8px var(--primary-color);
}

.info-content {
    flex: 1;
    text-align: left;
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.info-card .contact-detail {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    display: block;
    word-break: break-all;
}

.info-card .text-muted {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-heading {
        font-size: 2.5rem;
    }

    .form-card {
        padding: 2.5rem 2rem;
        margin-bottom: 2rem;
    }

    .info-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-heading {
        font-size: 2.2rem;
    }

    .form-card {
        padding: 2rem 1.5rem;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
    }

    .info-content {
        text-align: center;
    }

    .contact-page {
        padding: 3rem 0 4rem 0;
    }
}

/* SECTION */
.faq-page {
    padding: 4rem 0 5rem;
    background: #fff;
}

.faq-heading {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.faq-heading span {
    color: var(--primary-color);
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 4px;
}

.faq-subhead {
    text-align: center;
    color: #4a5568;
    margin-bottom: 3rem;
}

/* FAQ CARD */
.faq-item {
    border: 1px solid rgba(29, 12, 255, 0.1);
    border-radius: 1.2rem;
    margin-bottom: 1rem;
    background: #9bb1ec;
    overflow: hidden;
    box-shadow: 0 6px 14px -6px rgba(29, 12, 255, 0.05);
}

/* HIDE CHECKBOX */
.faq-toggle {
    display: none;
}

/* QUESTION */
.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1.4rem 1.6rem;
    font-weight: 600;
    cursor: pointer;
    background: #fff;
    transition: 0.2s ease;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.faq-question:hover {
    background: rgba(29, 12, 255, 0.02);
}

/* ANSWER (hidden default) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 1.6rem;
    color: #2d3748;
    line-height: 1.7;
    font-size: 18px;
}

/* SHOW ANSWER WHEN CHECKED */
.faq-toggle:checked+.faq-question+.faq-answer {
    max-height: 300px;
    padding: 20px 1.6rem 1.8rem;
}

/* ACTIVE QUESTION COLOR */
.faq-toggle:checked+.faq-question {
    color: var(--primary-color);
}

/* HELP BAR */
.help-bar {
    background: rgba(29, 12, 255, 0.02);
    border: 1px solid rgba(29, 12, 255, 0.15);
    border-radius: 2rem;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 3rem;
}

.btn-call {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.55rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    transition: 0.2s ease;
}

.btn-call:hover {
    background: #1600cc;
    color: #fff;
}

.services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(29, 12, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-heading {
    font-size: 2.8rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.section-heading span {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4d3dff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 8px;
}

.section-heading span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
    border-radius: 10px;
}

.sub-heading {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    line-height: 1.6;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.service-card {
    background-color: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 30px -8px rgba(29, 12, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(29, 12, 255, 0.06);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #4d3dff 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-link:hover .service-card::before {
    transform: scaleX(1);
}

.service-card-link:hover .service-card {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px -12px rgba(29, 12, 255, 0.2);
    border-color: rgba(29, 12, 255, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4d3dff 100%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px -8px var(--primary-color);
    transition: all 0.3s ease;
}

.service-card-link:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 28px -8px var(--primary-color);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 0;
    font-weight: 500;
}

.india-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4d3dff 100%);
    color: white;
    font-weight: 800;
    padding: 0.7rem 2.5rem;
    border-radius: 50px;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-top: 2.5rem;
    box-shadow: 0 12px 28px -10px var(--primary-color);
    transition: all 0.3s ease;
}

.india-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 32px -10px var(--primary-color);
}

.location-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.location-chip {
    background-color: #ffffff;
    color: #1e293b;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(29, 12, 255, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    box-shadow: 0 4px 15px -5px rgba(29, 12, 255, 0.08);
}

.location-chip i {
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.location-chip:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4d3dff 100%);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -5px var(--primary-color);
}

.location-chip:hover i {
    color: white;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 991px) {
    .section-heading {
        font-size: 2.3rem;
    }

    .service-card {
        padding: 1.75rem 1.25rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 3rem 0 4rem 0;
    }

    .section-heading {
        font-size: 2rem;
    }

    .sub-heading {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .location-chip {
        white-space: normal;
        text-align: center;
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .india-badge {
        font-size: 1.1rem;
        padding: 0.6rem 2rem;
    }
}

@media (max-width: 576px) {
    .section-heading {
        font-size: 1.8rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }
}

.bike-transport-section {
    background: #f4f6ff;
    padding: 40px;
    border-radius: 16px;
}

.why-item {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

.why-item i {
    font-size: 26px;
    color: #1600cc;
    margin-right: 15px;
}

.why-item span {
    font-size: 18px;
    font-weight: 500;
    color: #222;
}
/* ====================================
   Insurance Claim Bill Page Styles
   ==================================== */

/* Main Section */
.claim-bill-section {
    padding: 80px 0;
}

/* Main Title and Underline */
.claim-main-title {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

/* Intro Box */
.claim-intro-box {
    border-left: 5px solid var(--primary-color);
}

/* ISO Certification Box */
.claim-iso-box {
    background: var(--primary-color);
}

/* Text Styles */
.claim-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.claim-text-large {
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Reimbursement Box */
.claim-reimbursement-box {
    border: 2px solid var(--primary-color);
}

.claim-section-title {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Question Box with Gradient */
.claim-question-box {
    background: linear-gradient(135deg, #1d0cff 0%, #5d4dff 100%);
    box-shadow: 0 10px 30px rgba(29, 12, 255, 0.2);
}

.claim-question-title {
    font-size: 1.8rem;
}

/* Document Cards */
.claim-doc-card {
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.claim-doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(29, 12, 255, 0.15);
}

.claim-doc-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
}

.claim-doc-title {
    color: var(--primary-color);
}

/* Item List Box */
.claim-item-list-box {
    border-top: 5px solid var(--primary-color);
}

.claim-subtitle {
    font-size: 1.6rem;
    color: var(--primary-color);
}

/* Point Boxes */
.claim-point-box {
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.claim-check-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
}

.claim-point-text {
    font-size: 1.05rem;
    color: #333;
}

/* Factors Box */
.claim-factors-box {
    background: var(--primary-color);
    box-shadow: 0 15px 40px rgba(29, 12, 255, 0.3);
}

.claim-factor-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .claim-main-title {
        font-size: 1.8rem;
    }

    .claim-section-title {
        font-size: 1.5rem;
    }

    .claim-question-title {
        font-size: 1.4rem;
    }

    .claim-subtitle {
        font-size: 1.3rem;
    }

    .claim-text,
    .claim-text-large {
        font-size: 1rem;
    }

    .claim-point-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .claim-bill-section {
        padding: 50px 0;
    }

    .claim-main-title {
        font-size: 1.5rem;
    }
}

/* Fix for all mobile devices - prevent horizontal overflow */
@media (max-width: 768px) {
    html {
        overflow-x: hidden;
        width: 100%;
    }

    body {
        overflow-x: hidden !important;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }

    /* Ensure Bootstrap containers don't overflow */
    .container,
    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
        overflow-x: hidden;
    }

    /* Ensure rows don't overflow */
    .row {
        margin-left: -15px !important;
        margin-right: -15px !important;
        max-width: 100%;
    }

    /* Ensure all columns stay within bounds */
    [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Ensure footer doesn't overflow */
    .site-footer {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .site-footer .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Ensure all direct children of body don't overflow */
    body>* {
        max-width: 100vw !important;
        overflow-x: hidden;
    }

    /* Fix for any images or media */
    img,
    video,
    iframe,
    svg {
        max-width: 100% !important;
        height: auto !important;
    }
}

/* Extra small devices - additional fixes */
@media (max-width: 576px) {

    .container,
    .container-fluid {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .row {
        margin-left: -10px !important;
        margin-right: -10px !important;
    }

    [class*="col-"] {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

.state-portfolio-area {
    background: #f8f9fa;
}

.state-portfolio-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.state-portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.state-portfolio-img {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.state-portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.state-portfolio-item:hover .state-portfolio-img img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.state-portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.state-portfolio-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.state-portfolio-info {
    margin-bottom: 10px;
}

.state-portfolio-info small {
    color: #007bff;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.state-portfolio-info span {
    margin: 8px 0 0 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.state-portfolio-info span a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.state-portfolio-info span a:hover {
    color: #007bff;
}

@media (max-width: 767px) {
    .state-portfolio-img {
        height: 200px;
    }

    .state-portfolio-content {
        padding: 15px;
    }

    .state-portfolio-info span {
        font-size: 16px;
    }
}

.gallery-section {
    background-color: #f8f9fa;
}

.section-title {
    font-weight: 700;
    font-size: 32px;
    color: #1d0cff;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: #555;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: white;
    color: #1d0cff;
    text-align: center;
    padding: 10px;
    font-weight: 600;
    font-size: 15px;
}

.tracking-section {
    background-color: #f8f9ff;
}

.tracking-card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(22, 0, 204, 0.08);
    border: 1px solid rgba(22, 0, 204, 0.08);
}

.tracking-title {
    color: #1600cc;
    font-weight: 700;
}

.tracking-label {
    font-weight: 600;
    color: #333;
}

.tracking-input {
    height: 50px;
    border-radius: 10px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.tracking-input:focus {
    border-color: #1600cc;
    box-shadow: 0 0 0 0.2rem rgba(22, 0, 204, 0.15);
}

.tracking-btn {
    background-color: #1600cc;
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
}

.tracking-btn:hover {
    background-color: #0f00a8;
    color: #fff;
}

.tracking-btn-outline {
    border: 2px solid #1600cc;
    color: #1600cc;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
}

.tracking-btn-outline:hover {
    background-color: #1600cc;
    color: #fff;
}

/* Modal Rounded */
.modal-rounded {
    border-radius: 20px;
    overflow: hidden;
}

/* Header Theme Change */
.modal-header.bg-danger {
    background-color: #1600cc !important;
    border-bottom: none;
}

/* Remove red text and apply brand color */
.text-danger {
    color: #1600cc !important;
}

/* Modal Body Background */
.modal-body.bg-light {
    background-color: #f8f9ff !important;
}

/* Inputs Styling */
.form-control {
    border-radius: 10px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #1600cc;
    box-shadow: 0 0 0 0.2rem rgba(22, 0, 204, 0.15);
}

/* Primary Button (Submit) */
.btn-danger {
    background-color: #1600cc !important;
    border-color: #1600cc !important;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-danger:hover {
    background-color: #0f00a8 !important;
    border-color: #0f00a8 !important;
}

/* Outline Button */
.btn-outline-secondary {
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-outline-secondary:hover {
    background-color: #1600cc;
    color: #fff;
    border-color: #1600cc;
}

/* Result message spacing */
#resultquotemodal {
    font-weight: 500;
}

.scroll-top-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
    display: none;
    background:#1600cc;
    /* Bootstrap primary */
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}

.scroll-top-btn.show {
    display: block;
}

.scroll-top-btn:hover {
    background:#1600cc;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.scroll-top-btn i {
    font-size: 1.5rem;
    color: #fff;
}
.grw-calc-section {
            padding: 60px 15px;
        }

        .grw-calc-box {
            border: 2px solid var(--primary-color);
            border-radius: 20px;
            background: var(--white-color);
        }

        .grw-calc-title {
            color: var(--primary-color);
            font-weight: 700;
        }

        .grw-calc-label {
            color: var(--primary-color);
            font-weight: 600;
        }

        .grw-calc-input,
        .grw-calc-select {
            border: 1px solid var(--primary-color);
            border-radius: 10px;
        }

        .grw-calc-input:focus,
        .grw-calc-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(22, 0, 204, 0.2);
        }

        .grw-calc-btn {
            background-color: var(--primary-color);
            color: var(--white-color);
            border-radius: 50px;
            padding: 10px 25px;
            border: none;
            font-weight: 600;
        }

        .grw-calc-btn:hover {
            opacity: 0.9;
        }

        .grw-calc-result {
            border-top: 2px solid var(--primary-color);
            padding-top: 20px;
            margin-top: 20px;
            display: none;
        }

        .grw-calc-amount {
            font-size: 28px;
            font-weight: bold;
            color: var(--primary-color);
        }
/* SECTION */
.gt-why-area {
  padding: 80px 0;
  background: #ffffff;
}

/* LEFT CONTENT */
.gt-why-content {
  padding-right: 40px;
}

.gt-why-heading {
  font-size: 32px;
  font-weight: 700;
  color: #1600cc;
  margin-bottom: 20px;
}

.gt-why-para {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

/* BUTTON */
.gt-why-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #1600cc;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.gt-why-btn:hover {
  background-color: #0e0099;
  color: #ffffff;
  cursor: pointer;
}

/* IMAGE */
.gt-why-image-box {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(22, 0, 204, 0.15);
}

.gt-why-image {
  width: 100%;
  transition: transform 0.4s ease;
}

.gt-why-image-box:hover .gt-why-image {
  transform: scale(1.05);
}
/* Section Styling */
.our-service-page {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    min-height: 500px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1600cc, #4169e1);
    margin: 0 auto;
    border-radius: 2px;
}

/* City Card Styling */
.city-card-link {
    text-decoration: none;
    display: block;
}

.city-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
}

.city-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1600cc, #4169e1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.city-card:hover::before {
    transform: scaleX(1);
}

.city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(22, 0, 204, 0.15);
    border-color: #1600cc;
}

.city-card-inner {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

/* Icon Styling */
.icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1600cc, #4169e1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.icon-wrapper i {
    font-size: 24px;
    color: #ffffff;
    transition: transform 0.4s ease;
}

.city-card:hover .icon-wrapper {
    background: linear-gradient(135deg, #4169e1, #1600cc);
    transform: rotate(5deg) scale(1.1);
}

.city-card:hover .icon-wrapper i {
    transform: scale(1.1);
}

/* City Info */
.city-info {
    flex: 1;
    min-width: 0;
}

.city-label {
    display: block;
    font-size: 0.75rem;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.city-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.city-card:hover .city-name {
    color: #1600cc;
}

/* Arrow Icon */
.arrow-icon {
    width: 32px;
    height: 32px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.arrow-icon i {
    font-size: 16px;
    color: #666;
    transition: all 0.4s ease;
}

.city-card:hover .arrow-icon {
    background: #1600cc;
    transform: translateX(4px);
}

.city-card:hover .arrow-icon i {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
    
    .city-card-inner {
        padding: 18px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .icon-wrapper {
        width: 45px;
        height: 45px;
    }
    
    .icon-wrapper i {
        font-size: 20px;
    }
    
    .city-name {
        font-size: 1rem;
    }
    
    .city-card-inner {
        padding: 15px;
        gap: 12px;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .city-label {
        font-size: 0.65rem;
    }
    
    .city-name {
        font-size: 0.9rem;
    }
    
    .icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .icon-wrapper i {
        font-size: 18px;
    }
    
    .arrow-icon {
        width: 28px;
        height: 28px;
    }
    
    .arrow-icon i {
        font-size: 14px;
    }
    
    .city-card-inner {
        padding: 12px;
        gap: 10px;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.guide-container {
    background: #dddcee;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(15,0,219,0.06);
    padding: 32px 32px 32px 32px;
}
.guide-tag {
    display: inline-block;
    background: #0f00db;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px 8px 8px 0;
    padding: 6px 18px;
    margin-bottom: 18px;
    letter-spacing: 1px;
}
.guide-title {
    color: #0f00db;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
}
.guide-text {
    color: #222;
    font-size: 1.15rem;
    margin-bottom: 22px;
    font-weight: 400;
}
.check-list {
    list-style: none;
    padding-left: 0;
}
.check-list li {
    font-size: 1.08rem;
    color: #222;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-weight: 500;
}
.check-list li i {
    color: #0f00db;
    font-size: 1.2rem;
    margin-right: 10px;
    background: #f3f2ff;
    border-radius: 50%;
    padding: 3px 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.guide-img-main {
    max-width: 340px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(15,0,219,0.13);
    background: #fff;
    padding: 12px;
}
@media (max-width: 991px) {
    .guide-title { font-size: 1.4rem; }
    .guide-container { padding: 18px 8px; }
    .guide-img-main { max-width: 220px; }
}
.charges-section {
    background: #fff;
    padding: 48px 0 48px 0;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(15,0,219,0.07);
    margin: 40px 0;
}
.charges-container {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(15,0,219,0.06);
    padding: 32px 32px 32px 32px;
}
.charges-heading {
    color: #0f00db;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}
.charges-title {
    color: #0f00db;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 32px 0 18px 0;
    display: flex;
    align-items: center;
}
.charges-title .bike-icon {
    color: #0f00db;
    font-size: 1.7rem;
    margin-right: 10px;
}
.charges-table {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(15,0,219,0.06);
    margin-bottom: 0;
}
.charges-table th, .charges-table td {
    padding: 16px 14px;
    text-align: left;
    font-size: 1.08rem;
    border: none;
}
.charges-table th {
    background: #0f00db;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}
.charges-table td {
    color: #222;
    background: #f7f7ff;
    font-weight: 500;
    vertical-align: middle;
}
.charges-table tr:nth-child(even) td {
    background: #f0f0ff;
}
.charges-table .bike-icon {
    color: #0f00db;
    font-size: 1.2rem;
    margin-right: 6px;
}
@media (max-width: 991px) {
    .charges-heading { font-size: 1.2rem; }
    .charges-container { padding: 18px 8px; }
    .charges-table th, .charges-table td { padding: 10px 6px; font-size: 0.98rem; }
}
  .container.cityfrom {
        padding: 50px 0;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 4px 24px rgba(15,0,219,0.08);
        max-width: 1200px;
        margin: 40px auto;
    }
    .cityfrom-header h2 {
        color: #0f00db;
        font-weight: 700;
        font-size: 2.2rem;
        margin-bottom: 32px;
        text-align: center;
    }
    .cityfrom-header span {
        color: #0f00db;
        font-weight: 700;
    }
    .cityfrom-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 24px;
        padding: 0 24px;
    }
    .cityfrom-card {
        display: flex;
        align-items: center;
        background: #fff;
        border: 2px solid #0f00db;
        border-radius: 12px;
        padding: 12px 18px;
        text-decoration: none;
        transition: box-shadow 0.2s, border-color 0.2s;
        box-shadow: 0 2px 8px rgba(15,0,219,0.07);
    }
    .cityfrom-card:hover {
        border-color: #0f00db;
        box-shadow: 0 6px 24px rgba(15,0,219,0.15);
        background: #0f00db;
    }
    .cityfrom-card:hover .cityfrom-city,
    .cityfrom-card:hover .cityfrom-label {
        color: #fff;
    }
    .cityfrom-label {
        font-size: 15px;
        color: #0f00db;
        font-weight: 500;
        margin-right: 8px;
        letter-spacing: 0.5px;
    }
    .cityfrom-city {
        font-size: 17px;
        font-weight: 600;
        color: #0f00db;
        transition: color 0.2s;
    }
    .cityfrom-arrow {
        font-size: 18px;
        font-weight: bold;
        color: #0f00db;
        margin: 0 6px;
        vertical-align: middle;
    }
    @media (max-width: 600px) {
        .cityfrom-header h2 {
            font-size: 1.2rem;
        }
        .cityfrom-grid {
            grid-template-columns: 1fr;
            gap: 16px;
            padding: 0 8px;
        }
        .cityfrom-card {
            padding: 12px 10px;
        }
    }