
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    overflow-x: hidden;
    padding-top: 135px; /* (50px top header + 85px navbar) */
    font-family: "Lato", sans-serif;
    transition: padding 0.3s ease;
}

/* Scroll hone par body ka space adjust hoga */
body.scrolled {
    padding-top: 85px; 
}

/* =========================================
   2. TOP HEADER (Fixing the Gap)
   ========================================= */
.top-header {
    background-color: #f8f9fa;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eeeeee;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.top-header.hide {
    transform: translateY(-100%);
    opacity: 0;
}

.top-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.top-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #666;
}

.top-item i {
    color: #df0617; /* Original Red */
}

.top-item a {
    text-decoration: none;
    color: #666;
}

/* =========================================
   3. MAIN NAVBAR
   ========================================= */
.navbar {
    background-color: #ffffff;
    height: 85px;
    display: flex;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 50px; /* Starting position below top-header */
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease-in-out;
}

/* THE FIX: Isse gap zero ho jayega */
.navbar.sticky {
    top: 0 !important; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.nav-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ea3c27;
}

/* =========================================
   4. B2B LOGIN BUTTON (Design Preserved)
   ========================================= */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Button design strictly as per image */
.b2b-wrapper {
    position: relative;
    display: inline-block;
    padding: 5px;
}

.b2b-btn {
    position: relative;
    display: inline-block;
    padding: 10px 25px;
    color: #0c1e46;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid #ea3c27; /* Original Border Color */
    z-index: 1;
    background: #fff;
    transition: 0.3s;
}

/* Brackets preserved */
.b2b-wrapper::before,
.b2b-wrapper::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid #df0617;
    transition: all 0.4s ease;
}

.b2b-wrapper::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.b2b-wrapper::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

/* Hover effects */
.b2b-wrapper:hover::before,
.b2b-wrapper:hover::after {
    width: 99%;
    height: 96%;
}

.b2b-wrapper:hover .b2b-btn {
    background-color: #df0617;
    color: #fff !important;
}

.hamburger {
    display: none; /* Desktop par hamburger hide rahega */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: #333; /* Icon line color */
    transition: 0.3s;
}

/* =========================================
   MOBILE MENU (Logo Left, Actions Right)
   ========================================= */
@media (max-width: 1050px) {
    .navbar { 
        top: 0; 
        height: 70px; /* Navbar height thodi kam ki hai */
    }
    .top-header { display: none; }
    body { padding-top: 70px; }

    /* Logo Left, Actions Right (Standard layout) */
    .nav-container {
        flex-direction: row; /* Row-reverse hata diya */
        justify-content: space-between;
        padding: 0 15px;
    }

    /* Logo size chota kiya */
    .logo img {
        height: 45px; 
    }

    /* Actions (Button + Hamburger) */
    .nav-actions {
        gap: 12px; /* Gap kam kiya */
    }

    /* B2B Button size compact kiya */
    .b2b-btn {
        padding: 6px 15px;
        font-size: 11px;
        border-width: 1.5px;
    }

    .b2b-wrapper::before,
    .b2b-wrapper::after {
        width: 10px;
        height: 10px;
    }

    /* Hamburger size chota kiya */
    .hamburger {
        display: flex !important;
        gap: 4px;
        padding: 5px;
    }

    .hamburger .line {
        width: 22px; /* Width kam ki */
        height: 2px;  /* Patli lines */
        background-color: #0b1c39; /* Branded Dark Blue */
    }

    /* Sidebar Menu */
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        width: 50%;
        height: auto;
        background-color: #0b1c39;
        flex-direction: column;
        align-items: center;
        padding-top: 20px;
        transition: 0.4s ease-in-out;
        z-index: 1050;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links a {
        font-size: 18px;
        color: #fff;
    }
}


/* Hero Section */

.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    background: url('/images/hero-image.png') no-repeat center center/cover;
    display: flex;
    align-items: center; 
    padding-left: 8%;
    overflow: hidden;
    margin-top: 0;
}

/* The Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: #fff;
    margin-bottom: 80px;
}

.hero-content h1 {
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.s-word {
    font-size: 45px;
    text-transform: uppercase;
    color: #f3c301;
    font-weight: 900;
}

.capital-word {
    font-size: 60px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
        padding-left: 5%;
        background-position: center;   
        padding-left: 0;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .hero-content {
        max-width: 90%;
        margin-bottom: 100px; /* Bottom margin hata ke vertical center kiya */
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content h1 {
        font-size: 22px; /* Base font size chota kiya */
        line-height: 1.2;
        flex-direction: column; /* Saare words ek ke niche ek aayenge */
        align-items: center;
    }

    /* "TRAVEL" word scaling */
    .s-word {
        font-size: 32px; /* Mobile ke hisaab se compact size */
        margin-top: 5px;
    }

    /* "SIMPLE, COMFORTABLE..." scaling */
    .capital-word {
        font-size: 38px; /* Original 60px se kam karke 38px kiya */
        display: block;
        font-weight: 800;
        line-height: 1.1;
        margin: 2px 0;
    }
}

/* Very small devices ke liye mazeed adjustments */
@media (max-width: 480px) {
    .hero-section {
        height: 50vh;
    }
    
    .capital-word {
        font-size: 32px;
    }
    
    .s-word {
        font-size: 28px;
    }
}


/* Overlay Pick & Drop */

.search-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: -150px auto 100px auto; 
    position: relative;
    z-index: 20;
}

/* Tabs */
.search-tabs { 
    display: flex; 
    gap: 10px; 
    margin-bottom: 20px; 
}

.tab-btn {
    background: rgba(15, 23, 42, 0.9);
    color: white; 
    border: none; 
    padding: 12px 25px;
    border-radius: 30px; 
    cursor: pointer; 
    font-weight: 600;
    transition: 0.3s; 
    backdrop-filter: blur(5px);
}

.tab-btn.active { 
    background-color: #f3be01; 
    color: #000; 
}

        /* Wrapper */
.search-bar-wrapper {
    position: relative; 
    display: flex; 
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px; 
    border-radius: 50px;
    width: 95%; 
    max-width: 1200px; 
    backdrop-filter: blur(3px);
}

.tab-content { 
    display: none; 
    width: 100%; 
}

.tab-content.active-content { 
    display: flex; 
    flex: 1;
 }

/* Columns */
.search-col { 
    flex: 1; 
    padding: 15px 20px; 
    display: flex; 
    flex-direction: column; 
    position: relative; 
    cursor: pointer; 
}

.separator { 
    border-right: 1px 
    solid rgba(255, 255, 255, 0.2); 
}

.search-col label { 
    font-size: 0.7rem; 
    color: #f3be01; 
    text-transform: uppercase; 
    margin-bottom: 5px; 
    font-weight: 700; 
}

.input-display { 
    color: #fff; 
    font-size: 1rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.dropdown-arrow { 
    font-size: 0.6rem; 
    opacity: 0.7; 
}

/* --- Custom Dropdown List --- */
.dropdown-list {
    display: none; 
    position: absolute; 
    top: 110%; left: 0;
    width: 260px; 
    background: #fff; 
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3); 
    z-index: 1000;
    overflow: hidden; 
    animation: fadeIn 0.2s ease;
}

.dropdown-list.show { 
    display: block; 
}

.tab-content {
    display: none;
}
.tab-content.active-content {
    display: flex;
}

.search-box { 
    padding: 10px; 
    border-bottom: 1px solid #eee; 
}
.search-box input { 
    width: 100%; 
    padding: 8px; 
    border: 1px solid #ddd; 
    border-radius: 4px; 
    outline: none; 
}

.option { 
    padding: 12px 15px; 
    color: #333; 
    font-size: 0.9rem; 
    transition: 0.2s; 
    text-align: left; 
}

.option:hover { 
    background-color: #007bff; 
    color: #fff; 
}

/* Search Button */
.search-icon-btn {
    background: #df0617; 
    color: #fff; 
    border: none;
    padding: 0 25px; 
    height: 55px; 
    border-radius: 30px;
    display: flex; 
    align-items: center; 
    gap: 10px; 
    cursor: pointer;
}

.search-btn-text { 
    font-weight: 800; 
    font-size: 0.85rem; 
    letter-spacing: 1px; 
}

.magnify-icon { 
    width: 20px; 
    fill: #fff; 
}

/* Glow Animation */
.border-glow-svg { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    pointer-events: none; 
}

.border-rect { 
    stroke: #ffffff; 
    stroke-width: 2px; 
    fill: none; 
    rx: 50px; 
    ry: 50px;
    stroke-dasharray: 3500; 
    stroke-dashoffset: 3500;
    animation: drawBorder 2.5s ease-in-out forwards;
}

@keyframes drawBorder { 
    to { 
        stroke-dashoffset: 0; } 
}

@keyframes fadeIn { 
    from { 
        opacity: 0; 
        transform: translateY(-10px); 
    } 
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.features-overlap-wrapper {
    max-width: 1200px;
    margin: 10px auto 20px auto; 
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Date Picker Styling */
.date-input-container {
    width: 100%;
}

.date-picker {
    background: transparent;
    border: none;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
    outline: none;
    cursor: pointer;
}

.date-picker::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

#transport .search-col {
    padding: 10px 12px;
}

/* =========================================
   SEARCH SECTION MOBILE FIX
   ========================================= */
@media (max-width: 768px) {
    .search-section {
        margin: 40px auto; 
        width: 95%;
        padding: 0 10px;
    }

    .search-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        width: 100%;
        justify-content: space-between;
        gap: 5px;
        padding-bottom: 5px;
    }

    .tab-btn {
        flex: 1; 
        padding: 10px 5px;
        font-size: 11px;
        white-space: nowrap;
        text-align: center;
        border-radius: 10px;
    }

    .search-bar-wrapper {
        flex-direction: column;
        background: #ffffff;
        border-radius: 15px;
        padding: 10px;
        width: 100%;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        border: 1px solid #ddd;
        backdrop-filter: none;
    }

    .tab-content.active-content {
        flex-direction: column;
        gap: 0;
    }

    .search-tabs::-webkit-scrollbar {
        display: none;
    }

    .search-col {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 15px 10px;
    }

    .search-col:last-child {
        border-bottom: none;
    }

    .search-col label {
        color: #df0617;
        font-size: 0.75rem;
    }

    .input-display {
        color: #333;
    }

    .date-picker {
        color: #333;
    }

    .date-picker::-webkit-calendar-picker-indicator {
        filter: none;
    }

    .search-btn-col {
        width: 100%;
        padding: 10px 0;
    }

    .search-icon-btn {
        width: 100%;
        justify-content: center;
        height: 50px;
        border-radius: 10px;
        margin-top: 10px;
    }

    .border-glow-svg {
        display: none;
    }
}

/* Cards */

.info-section {
    padding: 60px 5%;
    background-color: #fff;
    text-align: center;
}

.section-title {
    font-size: 30px;
    margin-bottom: 50px;
    color: #0c1e46;
    font-weight: 500;
}

.section-title span {
    font-size: 45px;
    color: #df0617;
    font-weight: 900;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    position: relative;
    border-bottom: 4px solid #0c1e46; 
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-content h3 {
    font-size: 20px;
    color: #0b1c39;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 600px) {
    .info-section {
        padding: 30px 5% 60px 5%;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 30px;
        line-height: 1.2;
    }

    .section-title span {
        font-size: 32px;     
        margin-top: 5px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-card {
        padding: 30px 20px;
    }
}




.container {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 50px 5% 50px 0; 
    gap: 40px;
    overflow-x: hidden;
}

.image-box {
    flex: 1.2;
    margin-left: 0;
}

.image-box img {
    width: 100%;
    border-radius: 0 10px 10px 0; 
    display: block;
}

.text-box {
    flex: 0.8;
    padding: 40px;
    height: auto;
}

.text-box h2 {
    color: #0c1e46;
    margin-bottom: 25px;
    font-size: 30px;
    font-weight: 500;
}

.text-box span {
    font-size: 45px;
    color:#df0617;
    font-weight: 900;
}

.text-box p {
    color: #272a36;
    margin-bottom: 20px;
}

.btn {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 0 0 50px 0;
        gap: 20px; /* Mobile par gap thoda kam kiya */
    }

    .image-box img {
        border-radius: 0;
    }

    .text-box {
        margin: 0 5%;
        padding: 20px; /* Mobile ke liye padding adjust ki */
        text-align: center; /* Saara text center karne ke liye */
        display: flex;
        flex-direction: column;
        align-items: center; /* Button ko center karne ke liye */
    }

    .text-box h2 {
        font-size: 24px; /* Mobile ke liye Heading size chota kiya */
    }

    .text-box span {
        font-size: 32px; /* "Necabs" ka size compact kiya */
        display: block; /* Agli line mein aane par center alignment better lagegi */
        margin-top: 5px;
    }

    .text-box p {
        font-size: 15px;
        line-height: 1.5;
    }

}




.fleet-section {
    padding: 80px 0;
    background-color: #fdfdfd;
    position: relative;
}

.fleet-header {
    text-align: center;
    margin-bottom: 50px;
}

.fleet-header h2 {
    font-size: 30px;
    font-weight: 500;
    color: #0c1e46;
}

.fleet-header span {
    font-size: 45px;
    color: #df0617;
    font-weight: 900;
    text-transform: uppercase;
}

.fleet-container-wrapper {
    position: relative;
    padding: 0 60px;
}

/* Scroll Container */
.fleet-scroll-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -webkit-overflow-scrolling: touch;
}

.fleet-scroll-container::-webkit-scrollbar {
    display: none; 
}

.fleet-grid-horizontal {
    display: flex;
    gap: 25px;
    width: max-content;
}

/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #ea3c27;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(234, 60, 39, 0.3);
    transition: 0.3s ease;
}

.nav-btn:hover {
    background: #0b1c39;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* Car Card Styling */
.car-card {
    background: #fff;
    width: 320px;
    border-radius: 20px;
    padding: 25px;
    flex: 0 0 auto;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: 0.4s ease;
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(11, 28, 57, 0.1);
}

.card-bg-blob {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: rgba(11, 28, 57, 0.04);
    border-radius: 50%;
    z-index: 0;
}

.car-image img {
    width: 100%;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.car-meta { display: flex; gap: 10px; margin-bottom: 20px; color: #666; font-size: 13px; }

@media (max-width: 600px) {
    /* 1. Header Scaling */
    .fleet-section {
        padding: 10px 0;
    }

    .fleet-header {
        margin-bottom: 10px;
    }


    .fleet-header h2 {
        font-size: 20px;
        line-height: 1.2;
        padding: 0 10px;
        color: #0c1e46;
    }

    .fleet-header span {
        font-size: 28px;
        display: block;
        margin-top: 5px;
    }

    .fleet-header p {
        font-size: 13px;
        padding: 0 15px;
        color: #666;
    }

    /* 2. Container & Scroller Fix */
    .fleet-container-wrapper {
        padding: 0 10px;
        position: relative;
    }

    .fleet-scroll-container {
        overflow-x: auto;
        padding: 20px 0;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
    }

    /* Important: Isse cards ek line mein rahenge aur shrink nahi honge */
    .fleet-grid-horizontal {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 15px;
        width: max-content; 
    }

    /* 3. Car Card Box Adjustment */
    .car-card {
        /* flex: grow | shrink | basis */
        flex: 0 0 260px !important; /* Shrink ko 0 rakha hai taki card pichke nahi */
        width: 260px !important;
        padding: 15px;
        border-radius: 15px;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        border: 1px solid #f0f0f0;
        transition: none; /* Mobile par hover effects ki zarurat nahi */
    }

    /* 4. Image & Info */
    .car-image img {
        width: 100%;
        height: auto;
        margin-bottom: 10px;
        filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
    }

    .car-info h3 {
        font-size: 17px;
        margin-bottom: 8px;
        color: #0b1c39;
    }

    .car-meta {
        display: flex;
        gap: 8px;
        margin-bottom: 15px;
        font-size: 11px;
    }

    /* 6. Arrows (If you want them visible but smaller) */
    .nav-btn {
        display: flex !important;
        width: 30px;
        height: 30px;
        font-size: 12px;
        top: 55%; /* Centering slightly lower */
    }
    
    .prev-btn { left: 5px; }
    .next-btn { right: 5px; }
}



/* --- CTA Banner Styling --- */
.cta-banner {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* --- The Background Image (Blur Logic) --- */
    background-image: url('/images/cta.png');
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 28, 57, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
}

.cta-content {
    position: relative;
    width: 80%;
    max-width: 1000px;
    z-index: 2;
}

.cta-title {
    font-size: 42px;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.cta-title span {
    font-size: 60px;
    color: #f3c301;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-banner { 
        height: 300px; /* Fixed height ki jagah content ke hisaab se adjust hoga */
        padding: 60px 20px;
        background-attachment: scroll; /* Mobile par parallax/fixed issues karta hai */
    }

    .cta-content {
        width: 100%; /* Zyada space utilization ke liye */
    }

    .cta-title { 
        font-size: 24px; /* Title size kam kiya gaya */
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .cta-title span { 
        font-size: 32px; /* Highlighted text "North East India" ko balance kiya */
        display: block; /* Mobile par stack hone se readability badhti hai */
        margin: 5px 0;
    }

    .cta-subtitle { 
        font-size: 14px; 
        margin-bottom: 25px; 
        padding: 0 10px;
        color: rgba(255, 255, 255, 0.85);
    }

    /* Button alignment fix */
    .btn-container {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}

/* --- The Horizontal Grid --- */

.feedback-section {
    padding: 60px 5% 40px;
    background-color: #fdfdfd;
    text-align: center;
}

.feedback-header h2 {
    font-size: 36px;
    color: #202224;
    margin-bottom: 5px;
    font-weight: 500;
}

.feedback-header h2 span {
    color: #df0617; /* Signature Red */
    font-size: 42px;
    font-weight: 900;
}

.feedback-header p {
    font-size: 14px;
    color: #777;
    margin-bottom: 40px;
}

.feedback-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 30px 10px;
    width: 100%;
    margin: 0 auto;
}

/* Hide scrollbar but keep functionality */
.feedback-grid::-webkit-scrollbar {
    display: none; 
}

.feedback-card {
    background: #ffffff;
    border: 1px solid #f2f2f2;
    border-radius: 12px;
    padding: 25px;
    min-width: 300px;
    max-width: 300px;
    flex: 0 0 auto;
    text-align: left;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: 0.3s ease;
    /* OUR SIGNATURE RED BORDER */
    border-bottom: 4px solid #0c1e46; 
}

.feedback-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(223, 6, 23, 0.1); /* Subtle red glow matching info cards */
}

/* Rest of the styles remain same for consistency */
.client-info-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.client-initials {
    width: 45px;
    height: 45px;
    background: #0b1c39; /* Dark Blue from branding */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
}

.client-name {
    font-size: 16px;
    font-weight: 700;
    color: #0b1c39;
    margin: 0;
}

.client-location {
    font-size: 12px;
    color: #999;
}

.testimonial-text {
    font-size: 13.5px;
    color: #555;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 15px;
    min-height: 65px;
}

.client-rating {
    color: #ff9f43;
    font-size: 13px;
    letter-spacing: 2px;
}

.quote-icon {
    font-size: 70px;
    color: #e3ecff; /* Changed from blue to subtle red for theme consistency */
    position: absolute;
    top: 5px;
    right: 20px;
    font-family: serif;
}

/* Desktop/Tablet par arrows hide rahenge */
.feedback-nav-mobile {
    display: none;
}

@media (max-width: 600px) {
    /* Heading scaling */
    .feedback-header h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .feedback-header span {
        font-size: 30px !important;
    }

    /* Grid ko 2 columns mein set kiya */
    .feedback-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr); /* Ek line mein 2 cards */
        gap: 12px; /* Cards ke beech ka gap thoda kam kiya */
        padding: 15px;
        overflow: visible; /* Scroll ki ab zarurat nahi */
    }

    /* Feedback Card adjustment */
    .feedback-card {
        width: 100% !important; /* Screen ki width ke hisaab se adjust hoga */
        min-width: unset !important; /* Purani width hata di */
        padding: 15px 10px; /* Padding kam ki taaki 2 cards fit aa sakein */
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Card ke andar ka content chota kiya */
    .client-info-top {
        flex-direction: column; /* Initials aur Name upar-niche */
        gap: 5px;
        margin-bottom: 10px;
    }

    .client-initials {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .client-name {
        font-size: 13px;
        margin: 0;
    }

    .client-location {
        font-size: 10px;
    }

    .testimonial-text {
        font-size: 11px; /* Text chota kiya taki box zyada lamba na ho */
        line-height: 1.4;
        margin: 10px 0;
    }

    .client-rating {
        font-size: 10px;
    }

    .quote-icon {
        font-size: 20px;
        margin-bottom: 5px;
    }

    /* Arrows ko hide kar dein */
    .feedback-nav-mobile {
        display: none !important;
    }
}
/*Faq*/

.faq-section {
    padding: 10px 0;
    background-color: #fcfcfc;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 30px;
    color: #0b1c39; /* Your Dark Blue */
    margin-bottom: 5px;
}

.faq-header h2 span {
    font-size: 45px;
    color: #ea3c27; /* Your Red */
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: 0.3s;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    outline: none;
    font-size: 17px;
    font-weight: 600;
    color: #333;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question i {
    font-size: 14px;
    color: #ea3c27;
    transition: transform 0.4s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease;
    background-color: #fff;
}

.faq-answer p {
    padding: 0 25px 20px 25px;
    color: #666;
    line-height: 1.6;
}

/* Active State Styles */
.faq-item.active {
    border-color: #ea3c27;
    box-shadow: 0 10px 20px rgba(234, 60, 39, 0.05);
}

.faq-item.active .faq-question {
    color: #ea3c27;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust based on content */
}

@media (max-width: 600px) {
    /* 1. FAQ Heading Scaling */
    .faq-header h2 {
        font-size: 22px; /* Original 30px se chota kiya */
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .faq-header h2 span {
        font-size: 32px; /* "Questions" text ka size 45px se chota kiya */
        display: block; /* Mobile par stack hona behtar dikhta hai */
        margin-top: 5px;
    }

    /* 2. FAQ Subtitle Scaling */
    .faq-header p {
        font-size: 13px;
        padding: 0 10px;
        line-height: 1.4;
    }

    /* 3. Question Text Adjustment */
    .faq-question {
        padding: 15px 20px;
        font-size: 15px; /* Question text thoda compact kiya */
    }

    /* 4. Answer Padding */
    .faq-answer p {
        padding: 0 20px 15px 20px;
        font-size: 14px;
    }

    /* Container padding adjustment */
    .faq-container {
        padding: 0 15px;
    }
}

/* Blog*/

.blog-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.blog-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-header h2 {
    font-size: 30px;
    color: #0b1c39;
    margin-bottom: 10px;
}

.blog-header h2 span {
    font-size: 45px;
    color: #ea3c27;
}

.blog-header p {
    margin-bottom: 40px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Card Design */
.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #f0f0f0;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(11, 28, 57, 0.1);
}

.blog-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #ea3c27;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 20px;
    color: #0b1c39;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: 0.3s;
}

.blog-card:hover .blog-content h3 {
    color: #ea3c27;
}

.blog-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    text-decoration: none;
    color: #ea3c27;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 12px;
}

/* Mobile Responsive optimization */
@media (max-width: 768px) {
    /* Sirf headline ke font sizes kam kiye gaye hain */
    .blog-header h2 {
        font-size: 22px; /* Original 30px se chota */
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .blog-header h2 span {
        font-size: 32px; /* Original 45px se chota */
        display: block; /* Mobile par stack hona clean lagta hai */
        margin-top: 5px;
    }

    .blog-header p {
        font-size: 13px; /* Sub-text ko bhi thoda balance kiya */
        padding: 0 10px;
    }

    /* Blog cards ke beech ka gap thoda kam kiya mobile view ke liye */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    /* Baaki sab properties (card design, image, button) same rahengi */
    .blog-section {
        padding: 50px 0; /* Padding thodi kam ki taki scroll lamba na ho */
    }
}

.main-footer {
    background: #000715;
    color: #fff;
    padding: 50px 8% 20px;
    font-family: sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid #222;
    padding-bottom: 30px;
}
.f-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* Logo Image Styling */
.f-logo img {
    height: 60px; 
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .f-logo {
        justify-content: center;
    }
    
    .f-logo img {
        height: 50px;
    }
}
.f-col h4 {
    color: #f3be01;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.f-col ul {
    list-style: none;
    padding: 0;
}

.f-col ul li {
    margin-bottom: 10px;
}

.f-col a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.f-col a:hover {
    color: #fff;
}

.f-col p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.6;
}

.s-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.s-icons a {
    text-decoration: none;
}

.icon-circle img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

.icon-circle:hover {
    transform: translateY(-4px);
    background: #f3be01;
    box-shadow: 0 5px 15px rgba(243, 190, 1, 0.3);
}


@media (max-width: 768px) {
    .icon-circle {
        width: 35px;
        height: 35px;
    }
    .icon-circle img {
        width: 20px;
        height: 20px;
    }
}

.f-copy {
    text-align: center;
    color: #666;
    font-size: 12px;
    margin-top: 20px;
}

@media (max-width: 768px) {

    .s-icons {
        justify-content: center;
    }

    .logo-col p {
        margin: 10px auto;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .f-col ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }

    .f-col ul li {
        margin-bottom: 5px;
    }
    
    .f-col h4 {
        text-align: center;
    }
}