/* ==========================================================================
   DURVISH LOGISTICS BRAND CSS SYSTEM
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES & CORE SETTINGS
   -------------------------------------------------------------------------- */
:root {
    /* Brand Colors */
    --color-navy: #071E3D;
    --color-navy-light: #0d2a52;
    --color-navy-dark: #041226;
    --color-blue: #0077D9;
    --color-blue-hover: #0060b0;
    --color-blue-light: rgba(0, 119, 217, 0.08);
    --color-green: #7BC043;
    --color-green-hover: #67a634;
    --color-green-light: rgba(123, 192, 67, 0.08);
    --color-lime: #A7D63D;
    --color-bg-light: #F7F9FC;
    --color-white: #FFFFFF;
    
    /* Text Colors */
    --color-text-dark: #111827;
    --color-text-gray: #6B7280;
    --color-text-light: #9CA3AF;
    --color-text-white: #FFFFFF;
    
    /* Typography */
    --font-headings: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-stats: 'Montserrat', sans-serif;
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.06), 0 3px 6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 40px rgba(7, 30, 61, 0.1), 0 5px 15px rgba(0, 0, 0, 0.04);
    --shadow-glow-blue: 0 0 20px rgba(0, 119, 217, 0.35);
    --shadow-glow-green: 0 0 20px rgba(123, 192, 67, 0.35);
    --shadow-glass: 0 8px 32px 0 rgba(0, 119, 217, 0.04);
    
    /* Layout Constants */
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
    --container-width: 1200px;
}

/* Global Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    color: var(--color-navy);
    font-weight: 700;
    line-height: 1.3;
}

p {
    color: var(--color-text-gray);
    margin-bottom: 1.5rem;
}

a {
    color: var(--color-blue);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-blue-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Utility Containers */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
}

.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

.mission-vision-values.section-padding {
    padding-bottom: 30px;
}

.leadership-section.section-padding {
    padding-top: 30px;
}

.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.text-center { text-center: center; text-align: center; }
.text-white { color: var(--color-white) !important; }
.text-green { color: var(--color-green) !important; }
.text-muted { color: var(--color-text-gray) !important; font-size: 0.9rem; }
.bg-light { background-color: var(--color-bg-light); }
.bg-dark { background-color: var(--color-navy); }
.bg-dark-dark { background-color: var(--color-navy-dark); }
.rounded-lg { border-radius: var(--border-radius-md); }
.rounded-img { border-radius: var(--border-radius-md); object-fit: cover; }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* Badges and Titles */
.section-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-blue);
    margin-bottom: 0.75rem;
    position: relative;
    padding-bottom: 5px;
}

.section-badge::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--color-green);
}

.section-badge.badge-accent {
    color: var(--color-green);
}

.section-badge.badge-accent::after {
    background-color: var(--color-blue);
}

.section-header.text-center .section-badge::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-text-gray);
}

.max-w-600 {
    max-width: 600px;
}

/* Button UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn i {
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-blue-hover);
    color: var(--color-white);
    box-shadow: var(--shadow-glow-blue);
    transform: translateY(-2px);
}

.btn-accent {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-lime) 100%);
    color: var(--color-navy);
}

.btn-accent:hover {
    box-shadow: var(--shadow-glow-green);
    transform: translateY(-2px);
    color: var(--color-navy-dark);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-navy);
    transform: translateY(-2px);
}

.btn-primary-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
    background-color: var(--color-blue);
    color: var(--color-white);
}

.btn-primary-sm:hover {
    background-color: var(--color-blue-hover);
    box-shadow: var(--shadow-glow-blue);
}

.btn-outline-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
    background-color: transparent;
    border-color: var(--color-blue);
    color: var(--color-blue);
}

.btn-outline-sm:hover {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-icon i {
    margin-right: 8px;
    margin-left: 0;
}

.btn-icon:hover i {
    transform: none;
}


/* --------------------------------------------------------------------------
   2. CUSTOM LOADER (Loader Design 06)
   -------------------------------------------------------------------------- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-rings {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ring {
    position: absolute;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

/* Concentric outer dashed ring */
.ring.outer-dashed {
    width: 300px;
    height: 300px;
    border: 1px dashed rgba(7, 30, 61, 0.15);
    animation: rotate-clockwise 40s linear infinite;
}

/* SVG Truck track styling */
.truck-track {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

/* Glowing blue and green rings */
.ring.ring-blue {
    width: 240px;
    height: 240px;
    border: 3px solid transparent;
    border-top-color: var(--color-blue);
    border-bottom-color: var(--color-blue);
    animation: rotate-clockwise 3s cubic-bezier(0.53, 0.21, 0.29, 0.67) infinite;
    box-shadow: inset 0 0 10px rgba(0, 119, 217, 0.1), 0 0 10px rgba(0, 119, 217, 0.1);
}

.ring.ring-green {
    width: 210px;
    height: 210px;
    border: 3px solid transparent;
    border-left-color: var(--color-green);
    border-right-color: var(--color-green);
    animation: rotate-counter 2.5s cubic-bezier(0.53, 0.21, 0.29, 0.67) infinite;
    box-shadow: inset 0 0 10px rgba(123, 192, 67, 0.1), 0 0 10px rgba(123, 192, 67, 0.1);
}

/* Rotating Truck */
.rotating-truck {
    position: absolute;
    width: 260px;
    height: 260px;
    top: calc(50% - 130px);
    left: calc(50% - 130px);
    animation: rotate-clockwise 8s linear infinite;
    z-index: 10;
}

.rotating-truck i {
    position: absolute;
    top: -10px;
    left: calc(50% - 15px);
    font-size: 1.4rem;
    color: var(--color-blue);
    transform: rotate(0deg); /* align truck tangent to circular path */
    filter: drop-shadow(0 2px 4px rgba(0, 119, 217, 0.2));
}

.loader-logo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-md);
    padding: 15px;
    z-index: 5;
    overflow: hidden;
}

.loader-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.loader-text-container {
    margin-top: 2rem;
    display: flex;
    align-items: center;
}

.loader-text {
    font-family: var(--font-headings);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--color-navy);
}

.loader-dots {
    display: flex;
    margin-left: 6px;
}

.dot {
    width: 6px;
    height: 6px;
    margin: 0 3px;
    border-radius: 50%;
    display: inline-block;
    animation: bounce 1.4s infinite ease-in-out both;
}

.dot-blue { background-color: var(--color-blue); animation-delay: -0.32s; }
.dot-lightblue { background-color: #5bb3ff; animation-delay: -0.16s; }
.dot-green { background-color: var(--color-green); }


/* Keyframes for Loader */
@keyframes rotate-clockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotate-counter {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1.0); }
}


/* --------------------------------------------------------------------------
   3. HEADER & STICKY NAVIGATION
   -------------------------------------------------------------------------- */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-medium);
}

/* Top Bar Styling */
.top-bar {
    background: linear-gradient(90deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left a {
    color: rgba(255, 255, 255, 0.85);
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
}

.top-bar-left a i {
    margin-right: 8px;
    color: var(--color-green);
}

.top-bar-left a:hover {
    color: var(--color-white);
}

.top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar-right .track-link {
    color: rgba(255, 255, 255, 0.85);
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.top-bar-right .track-link i {
    margin-right: 6px;
    color: var(--color-green);
}

.top-bar-right .track-link:hover {
    color: var(--color-white);
}

.top-bar-socials a {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 15px;
    font-size: 0.9rem;
}

.top-bar-socials a:hover {
    color: var(--color-white);
}

/* Main Navbar */
.navbar {
    background-color: var(--color-white);
    padding: 15px 30px;
    margin: 20px auto;
    width: 95%;
    max-width: var(--container-width);
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-medium);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 90px;
    max-width: 250px;
    transition: var(--transition-fast);
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
}

.nav-link {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-navy);
    padding: 10px 20px;
    position: relative;
    transition: var(--transition-fast);
}

/* Nav Hover Slide Line Effect */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background-color: var(--color-green);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom right;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-lime);
}

.nav-actions {
    display: flex;
    align-items: center;
}

.btn-quote {
    background: linear-gradient(135deg, var(--color-blue) 0%, #00569e 100%);
    box-shadow: var(--shadow-sm);
    color: var(--color-white);
    padding: 10px 22px;
    font-size: 0.9rem;
}

.btn-quote:hover {
    box-shadow: var(--shadow-glow-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2000;
    margin-left: 20px;
}

.hamburger .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-navy);
    transition: var(--transition-fast);
}

.nav-mobile-cta {
    display: none;
}

/* Sticky Class (Applied via JS on scroll) */
.main-header.sticky {
    position: fixed;
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    animation: slideDown 0.4s ease-out;
}

.main-header.sticky .top-bar {
    display: none; /* Hide top bar on scroll */
}

.main-header.sticky .navbar {
    padding: 12px 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
}

.main-header.sticky .nav-link {
    color: var(--color-navy);
}

.main-header.sticky .logo img {
    height: 70px;
}

.main-header.sticky .nav-link:hover,
.main-header.sticky .nav-link.active {
    color: var(--color-blue);
}

.main-header.sticky .nav-link::after {
    background-color: var(--color-blue);
}

.main-header.sticky .hamburger .bar {
    background-color: var(--color-navy);
}

.main-header.sticky .btn-quote {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-green) 100%);
}

.main-header.sticky .btn-quote:hover {
    box-shadow: var(--shadow-glow-green);
}

@keyframes slideDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(0); }
}


/* --------------------------------------------------------------------------
   4. SPA ROUTER VIEW TABS
   -------------------------------------------------------------------------- */
.page-view {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.page-view.active {
    display: block;
    opacity: 1;
}


/* --------------------------------------------------------------------------
   5. HOME VIEW STYLING
   -------------------------------------------------------------------------- */

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1920&q=80'); /* Container Port/Cargo */
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 30, 61, 0.9) 0%, rgba(7, 30, 61, 0.75) 50%, rgba(0, 119, 217, 0.2) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 10;
    padding-top: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .accent-text {
    color: var(--color-lime);
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Page Banner Styling */
.page-banner {
    position: relative;
    padding: 220px 0 80px;
    background-color: var(--color-navy);
    color: var(--color-white);
    text-align: center;
    background-size: cover;
    background-position: center;
}

.services-banner { background-image: url('https://images.unsplash.com/photo-1586528116311-ad8ed7c159ec?auto=format&fit=crop&w=1920&q=80'); }
.about-banner { background-image: url('assets/DurvishTruck2.png'); }
.locations-banner { background-image: url('https://images.unsplash.com/photo-1518241088484-9bc08e3ebf68?auto=format&fit=crop&w=1920&q=80'); }

.banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(7, 30, 61, 0.95) 0%, rgba(7, 30, 61, 0.8) 100%);
    z-index: 1;
}

.banner-container {
    position: relative;
    z-index: 2;
}

.banner-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 15px;
}

.banner-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
}

.breadcrumb a {
    color: var(--color-green);
    margin-right: 8px;
}

.breadcrumb a:hover {
    color: var(--color-lime);
}

.breadcrumb i {
    font-size: 0.7rem;
    margin-right: 8px;
}

/* Shipment Tracking Floating Card */
.tracking-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    color: var(--color-text-dark);
}

.tracking-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
}

.tracking-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
}

.badge-live {
    background-color: rgba(123, 192, 67, 0.12);
    color: var(--color-green);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-green);
    border-radius: 50%;
    margin-right: 6px;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(123, 192, 67, 0.7);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(123, 192, 67, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(123, 192, 67, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(123, 192, 67, 0); }
}

.tracking-search-box {
    display: flex;
    background-color: var(--color-bg-light);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    margin-bottom: 20px;
}

.tracking-search-box input {
    flex-grow: 1;
    border: none;
    background-color: transparent;
    padding: 12px 15px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text-dark);
}

.tracking-search-box input:focus {
    outline: none;
}

.btn-track-submit {
    background-color: var(--color-blue);
    color: var(--color-white);
    border: none;
    padding: 0 18px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-track-submit:hover {
    background-color: var(--color-blue-hover);
}

.tracking-meta {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}

.tracking-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-gray);
    font-weight: 500;
}

.tracking-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-navy);
}

.tracking-timeline {
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 4px;
    width: 2px;
    height: calc(100% - 10px);
    background-color: var(--color-bg-light);
    z-index: 1;
}

.timeline-item {
    position: relative;
    padding-bottom: 15px;
    z-index: 5;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -20px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-text-light);
}

.timeline-dot.dot-origin {
    background-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(123, 192, 67, 0.2);
}

.timeline-dot.dot-destination {
    background-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(0, 119, 217, 0.2);
}

.timeline-info {
    display: flex;
    flex-direction: column;
}

.timeline-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-gray);
    text-transform: uppercase;
}

.timeline-desc {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-navy);
}

.tracking-status-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius-sm);
    padding: 15px;
    margin-top: 15px;
}

.status-col {
    display: flex;
    flex-direction: column;
}

.status-in-transit {
    color: var(--color-green);
}


/* Statistics Bar Section */
.stats-section {
    position: relative;
    margin-top: -60px; /* pull stats up overlaying hero */
    z-index: 50;
}

.stats-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    padding: 40px 30px;
    border-bottom: 4px solid var(--color-blue);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stats-item {
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    padding-right: 20px;
}

.stats-item:last-child {
    border-right: none;
    padding-right: 0;
}

.stats-icon {
    font-size: 2.25rem;
    color: var(--color-blue);
    margin-right: 20px;
    opacity: 0.85;
}

.stats-item:nth-child(even) .stats-icon {
    color: var(--color-green);
}

.stats-info {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

.stats-number {
    font-family: var(--font-stats);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1;
}

.stats-plus, .stats-slash {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-green);
    margin-left: 2px;
}

.stats-item:nth-child(even) .stats-plus {
    color: var(--color-blue);
}

.stats-number-sub {
    font-family: var(--font-stats);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-navy);
}

.stats-label {
    width: 100%;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-top: 5px;
    margin-bottom: 0;
    line-height: 1.3;
}

.stats-label span {
    font-weight: 400;
    color: var(--color-text-gray);
    font-size: 0.8rem;
}

/* About Preview Section */
.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-preview-image-side {
    position: relative;
}

.image-wrapper {
    position: relative;
    padding-right: 20px;
    padding-bottom: 20px;
}

.image-wrapper .main-img {
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -10px;
    left: -20px;
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 20px 30px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    border-left: 4px solid var(--color-green);
    z-index: 10;
}

.badge-icon {
    font-size: 2.25rem;
    color: var(--color-green);
    margin-right: 15px;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-number {
    font-family: var(--font-stats);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.1;
}

.badge-text {
    font-size: 0.8rem;
    color: var(--color-text-gray);
    font-weight: 600;
}

.dots-grid {
    position: absolute;
    top: -20px;
    right: -10px;
    width: 100px;
    height: 120px;
    background-image: radial-gradient(var(--color-blue) 2px, transparent 2px);
    background-size: 15px 15px;
    z-index: -1;
    opacity: 0.25;
}

/* Services Preview Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    transition: var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 119, 217, 0.15);
}

.service-card:hover::before {
    background-color: var(--color-blue);
}

.service-card:nth-child(even):hover::before {
    background-color: var(--color-green);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.bg-blue-light {
    background-color: var(--color-blue-light);
    color: var(--color-blue);
}

.bg-green-light {
    background-color: var(--color-green-light);
    color: var(--color-green);
}

.service-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 15px;
}

.service-card-desc {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    margin-bottom: 20px;
}

.service-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    color: var(--color-blue);
}

.service-card:nth-child(even) .service-card-link {
    color: var(--color-green);
}

.service-card-link i {
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.service-card-link:hover i {
    transform: translateX(4px);
}

/* Why Choose Us Section */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background-color: var(--color-navy-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 35px 25px;
    transition: var(--transition-fast);
}

.why-card:hover {
    background-color: rgba(255, 255, 255, 0.02);
    border-color: rgba(123, 192, 67, 0.3);
    transform: scale(1.02);
}

.why-icon {
    font-size: 2.25rem;
    color: var(--color-green);
    margin-bottom: 20px;
}

.why-card:nth-child(even) .why-icon {
    color: var(--color-blue);
}

.why-title {
    font-size: 1.15rem;
    color: var(--color-white);
    margin-bottom: 10px;
}

.why-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Process Section */
.process-timeline {
    position: relative;
    margin-top: 50px;
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-bg-light);
    z-index: 1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 10;
}

.process-step {
    text-align: center;
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 4px solid var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.step-icon-wrapper.bg-blue {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.step-icon-wrapper.bg-green {
    background-color: var(--color-green);
    color: var(--color-white);
}

.step-icon {
    font-size: 1.75rem;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 25px;
    height: 25px;
    background-color: var(--color-navy);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--color-white);
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--color-text-gray);
    padding: 0 10px;
}

.process-step:hover .step-icon-wrapper {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Industries We Serve Section */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.industry-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition-fast);
}

.industry-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 119, 217, 0.1);
    transform: translateY(-4px);
}

.industry-icon {
    font-size: 2.5rem;
    color: var(--color-blue);
    margin-bottom: 15px;
}

.industry-card:nth-child(even) .industry-icon {
    color: var(--color-green);
}

.industry-name {
    display: block;
    font-family: var(--font-headings);
    font-weight: 700;
    color: var(--color-navy);
    font-size: 1.05rem;
}

/* Booking Branches Section */
.booking-branches-section {
    background-color: var(--color-bg-light);
    padding-top: 50px !important;
    padding-bottom: 60px !important;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.branch-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.branch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-blue), var(--color-green));
    opacity: 0;
    transition: var(--transition-fast);
}

.branch-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    border-color: rgba(0, 119, 217, 0.15);
}

.branch-card:hover::before {
    opacity: 1;
}

.branch-city {
    font-family: var(--font-headings);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.branch-city::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--color-green);
    transition: var(--transition-medium);
}

.branch-card:hover .branch-city::after {
    width: 60px;
    background-color: var(--color-blue);
}

.branch-card:nth-child(even) .branch-city::after {
    background-color: var(--color-blue);
}

.branch-card:nth-child(even):hover .branch-city::after {
    background-color: var(--color-green);
}

.branch-address {
    color: var(--color-text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.branch-contact,
.branch-email {
    font-size: 0.9rem;
    color: var(--color-navy);
    margin-bottom: 10px;
    font-weight: 700;
}

.branch-contact a,
.branch-email a {
    color: var(--color-blue);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.branch-contact a:hover,
.branch-email a:hover {
    color: var(--color-blue-hover);
    text-decoration: underline;
}

/* Responsive Grid for Branches */
@media (max-width: 1200px) {
    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .branches-grid {
        grid-template-columns: 1fr;
    }
}

/* Bottom CTA Banner */
.bottom-cta-section {
    position: relative;
    padding: 100px 0;
    color: var(--color-white);
    text-align: center;
    overflow: hidden;
}

.bottom-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/DurvishTruck.png'); /* driving truck sunset */
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.bottom-cta-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 30, 61, 0.95) 0%, rgba(7, 30, 61, 0.8) 100%);
    z-index: 2;
}

.bottom-cta-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.bottom-cta-title {
    font-size: 2.25rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.bottom-cta-subtitle {
    font-size: 1.8rem;
    color: var(--color-lime);
    margin-bottom: 1.5rem;
}

.bottom-cta-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.bottom-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}


/* --------------------------------------------------------------------------
   6. ABOUT PAGE STYLING
   -------------------------------------------------------------------------- */

/* Hero Banner Generic Style */
.page-banner {
    position: relative;
    padding: 220px 0 80px;
    color: var(--color-white);
    background-size: cover;
    background-position: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 30, 61, 0.95) 0%, rgba(7, 30, 61, 0.7) 100%);
    z-index: 1;
}

.banner-container {
    position: relative;
    z-index: 10;
}

.breadcrumb {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--color-white);
}

.breadcrumb i {
    font-size: 0.65rem;
    margin: 0 6px;
    color: var(--color-green);
}

.banner-title {
    font-size: 2.75rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.banner-subtitle {
    font-size: 1.15rem;
    color: var(--color-lime);
    font-weight: 500;
}

.about-banner {
    background-image: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1920&q=80'); /* Warehouse + Fleet */
}

/* Who We Are */
.who-we-are-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.who-we-are-image {
    position: relative;
}

.who-we-are-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    position: relative;
    z-index: 10;
    border-radius: var(--border-radius-md);
    display: block;
}

.image-accent-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-green);
    border-radius: var(--border-radius-md);
    z-index: 1;
}

/* Stats Row in About */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stats-row-item {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-row-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-stats);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--color-lime);
    display: block;
    line-height: 1.1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-white);
    display: block;
}

.stat-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
    margin-bottom: 0;
}

/* Mission Vision Values Cards */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-medium);
}

.mvv-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.mvv-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    margin-bottom: 25px;
}

.bg-blue-light {
    background-color: #f0f7ff;
    color: var(--color-blue);
}

.bg-green-light {
    background-color: #f0fdf0;
    color: var(--color-green);
}

.mvv-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-navy-dark);
    margin-bottom: 20px;
}

.mvv-desc {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-navy-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.values-list li i {
    margin-right: 12px;
    font-size: 1.05rem;
    color: var(--color-green);
}

/* Leadership Team Carousel */
.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.carousel-nav {
    display: none;
}

.btn-carousel {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1.5px solid var(--color-blue);
    background-color: transparent;
    color: var(--color-blue);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
}

.btn-carousel:hover {
    background-color: var(--color-blue);
    color: var(--color-white);
    box-shadow: var(--shadow-glow-blue);
}

.leadership-carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.leadership-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.leadership-card {
    flex: 0 0 calc(33.333% - 20px); /* 3 items layout */
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.member-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: var(--color-light-bg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.member-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition-slow);
}

.leadership-card:hover .member-image-wrapper img {
    transform: scale(1.08);
}

.member-info {
    padding: 25px;
    text-align: center;
    position: relative;
}

.member-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 5px;
}

.member-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-blue);
    display: block;
    margin-bottom: 15px;
}

.member-socials a {
    color: var(--color-text-light);
    margin: 0 8px;
    font-size: 1rem;
}

.member-socials a:hover {
    color: var(--color-blue);
}

.about-industries-section {
    background-color: var(--color-white);
}

.industries-flex-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.ind-badge {
    background-color: var(--color-bg-light);
    border: 1.5px solid rgba(0, 0, 0, 0.04);
    border-radius: 50px;
    padding: 10px 22px;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-navy);
    display: flex;
    align-items: center;
}

.ind-badge i {
    margin-right: 8px;
    color: var(--color-blue);
}


/* --------------------------------------------------------------------------
   7. SERVICES PAGE STYLING
   -------------------------------------------------------------------------- */
.services-banner {
    background-image: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1920&q=80'); /* Container Port */
}

.services-detailed-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    transition: var(--transition-medium);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-lg);
}

.service-detail-card:nth-child(even) {
    grid-template-columns: 1.2fr 1fr;
}

.service-detail-card:nth-child(even) .card-img-side {
    order: 2;
}

.card-img-side {
    position: relative;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.card-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background-color: rgba(7, 30, 61, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    padding: 8px 18px;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
}

.card-overlay-badge i {
    margin-right: 8px;
    color: var(--color-lime);
}

.card-info-side {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-card-title {
    font-size: 1.75rem;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.detail-card-subtitle {
    font-size: 1rem;
    color: var(--color-text-gray);
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0.85;
}

.detail-card-desc {
    color: var(--color-text-gray);
    margin-bottom: 25px;
}

.benefits-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-info-side .benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 15px;
}

.card-info-side .benefits-list li {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
}

.card-info-side .benefits-list li i {
    margin-right: 8px;
    font-size: 1rem;
}

/* Why Choose Durvish */
.why-choose-durvish {
    background-color: var(--color-bg-light);
}

.benefits-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.benefit-row-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.benefit-icon {
    font-size: 1.75rem;
    color: var(--color-green);
    margin-right: 20px;
    margin-top: 3px;
}

.benefit-row-card:nth-child(even) .benefit-icon {
    color: var(--color-blue);
}

.benefit-title {
    font-size: 1.15rem;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.benefit-desc {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    margin-bottom: 0;
}


/* --------------------------------------------------------------------------
   8. LOCATIONS PAGE STYLING
   -------------------------------------------------------------------------- */
.locations-banner {
    background-image: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1920&q=80'); /* India Logistics Network */
}

.map-interactive-wrapper {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    overflow: hidden;
    margin-top: 40px;
}

.map-graphic-container {
    background-color: var(--color-bg-light);
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 500px;
}

.india-svg-map {
    width: 100%;
    max-width: 420px;
    height: auto;
}

.india-border {
    transition: var(--transition-medium);
}

.route-line {
    stroke: var(--color-blue);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-dasharray: 4 4;
    opacity: 0.5;
}

/* Pulsing markers */
.city-marker {
    cursor: pointer;
}

.marker-glow {
    fill: none;
    transform-origin: 0 0;
    animation: pulse-glow 2s infinite;
}

.marker-dot {
    transition: var(--transition-fast);
}

.bg-blue-glow { fill: rgba(0, 119, 217, 0.4); }
.bg-blue-dot { fill: var(--color-blue); }

.bg-green-glow { fill: rgba(123, 192, 67, 0.4); }
.bg-green-dot { fill: var(--color-green); }

.city-marker:hover .marker-dot {
    transform: scale(1.5);
    fill: var(--color-navy);
}

@keyframes pulse-glow {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* Map Tooltip */
.map-tooltip {
    position: absolute;
    background-color: var(--color-white);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 15px 20px;
    border-left: 4px solid var(--color-blue);
    display: none;
    z-index: 100;
    pointer-events: none;
    width: 250px;
}

.map-tooltip h4 {
    font-size: 1.05rem;
    margin-bottom: 5px;
    color: var(--color-navy);
}

.map-tooltip p {
    font-size: 0.8rem;
    color: var(--color-text-gray);
    margin-bottom: 8px;
    line-height: 1.4;
}

.tooltip-badge {
    display: inline-block;
    background-color: var(--color-green-light);
    color: var(--color-green);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
}

/* Map Sidebar Stats */
.map-sidebar-stats {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 40px;
    display: flex;
    align-items: center;
}

.map-stat-card h3 {
    color: var(--color-white);
    font-size: 1.35rem;
    margin-bottom: 20px;
}

.map-stat-card hr {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.map-stat-row {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.map-stat-row:last-child {
    margin-bottom: 0;
}

.map-stat-num {
    font-family: var(--font-stats);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-lime);
    margin-right: 20px;
    min-width: 70px;
}

.map-stat-label {
    font-size: 0.95rem;
    font-weight: 700;
}

.map-stat-label span {
    font-weight: 400;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}

/* Cities Grid List */
.cities-list-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.city-badge {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
    min-width: 200px;
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 15px;
    font-family: var(--font-headings);
    font-weight: 600;
    color: var(--color-navy);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.city-badge i {
    margin-right: 12px;
    font-size: 0.8rem;
}

/* Network CTA banner */
.network-cta-banner {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    border-radius: var(--border-radius-md);
    padding: 50px;
    color: var(--color-white);
    text-align: center;
    border-bottom: 4px solid var(--color-green);
}

.network-cta-banner h3 {
    color: var(--color-white);
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.network-cta-banner p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 15px;
}


/* --------------------------------------------------------------------------
   9. CONTACT PAGE STYLING
   -------------------------------------------------------------------------- */
.contact-banner {
    background-image: url('assets/DurvishTruck2.png'); /* Truck Image */
}

/* NO FORM FIELDS AS PER THE EXPLICIT RULES */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.contact-info-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-fast);
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.contact-info-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.card-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.65rem;
    margin-bottom: 25px;
}

.contact-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 20px;
}

.contact-card-detail {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.address-text {
    text-align: center;
}

.tel-link, .email-link {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-navy);
}

.tel-link:hover, .email-link:hover {
    color: var(--color-blue);
}

.card-action-link {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-blue);
    display: inline-flex;
    align-items: center;
}

.contact-info-card:nth-child(even) .card-action-link {
    color: var(--color-green);
}

.card-action-link i {
    margin-left: 6px;
    font-size: 0.75rem;
}

/* Support Features Bar */
.support-features-bar {
    padding: 40px;
}

.support-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.support-feature-item {
    text-align: center;
}

.sf-icon {
    font-size: 2.25rem;
    color: var(--color-lime);
    margin-bottom: 15px;
}

.support-feature-item:nth-child(even) .sf-icon {
    color: var(--color-blue);
}

.support-feature-item h4 {
    color: var(--color-white);
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.support-feature-item p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Google Map styling wrapper */
.google-map-wrapper {
    margin-top: 60px;
}

.map-title {
    font-size: 1.5rem;
    color: var(--color-navy);
}

.map-iframe-container {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background-color: var(--color-bg-light);
    border: 4px solid var(--color-navy);
}

.map-iframe-container iframe {
    display: block;
}


/* --------------------------------------------------------------------------
   10. FOOTER STYLING
   -------------------------------------------------------------------------- */
.main-footer {
    border-top: 5px solid var(--color-blue);
    background-color: var(--color-bg-light) !important;
    color: var(--color-navy) !important;
}

.footer-container {
    padding-top: 80px;
    padding-bottom: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 50px;
}

.footer-col-about .footer-logo img {
    height: 90px;
    max-width: 250px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    line-height: 1.6;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--color-navy);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    background-color: var(--color-blue);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.15rem;
    color: var(--color-navy);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--color-green);
}

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

.footer-links a {
    color: var(--color-text-gray);
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
}

.footer-links a i {
    font-size: 0.65rem;
    margin-right: 8px;
    color: var(--color-green);
    transition: transform 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-lime);
}

.footer-links a:hover i {
    transform: translateX(4px);
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    font-size: 0.9rem;
    color: var(--color-text-gray);
    word-break: break-word;
    overflow-wrap: break-word;
    min-width: 0;
}

.footer-contact-info li i {
    margin-right: 15px;
    font-size: 1.1rem;
    color: var(--color-green);
    margin-top: 3px;
}

.footer-contact-info li a,
.footer-contact-info li span {
    color: var(--color-navy);
    min-width: 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

.footer-contact-info li a:hover {
    color: var(--color-blue);
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background-color: var(--color-white) !important;
}

.footer-bottom-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--color-text-gray);
}

.copyright-text {
    margin: 0;
}

.footer-bottom-links a {
    color: var(--color-text-gray);
}

.footer-bottom-links a:hover {
    color: var(--color-navy);
}

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

/* Scroll To Top button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-green);
    color: var(--color-navy);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    z-index: 1000;
    transition: var(--transition-fast);
    opacity: 0;
    pointer-events: none;
}

.scroll-to-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-to-top-btn:hover {
    background-color: var(--color-green-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-green);
    color: var(--color-navy-dark);
}


/* --------------------------------------------------------------------------
   11. SCROLL REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
.scroll-reveal {
    opacity: 0;
    transition: var(--transition-slow);
    will-change: transform, opacity;
}

/* Fade Up effect */
.scroll-reveal.fade-up {
    transform: translateY(40px);
}

/* Fade In effect */
.scroll-reveal.fade-in {
    transform: none;
}

/* Scale In effect */
.scroll-reveal.scale-in {
    transform: scale(0.9);
}

/* Slide Right effect */
.scroll-reveal.fade-right {
    transform: translateX(-40px);
}

/* Slide Left effect */
.scroll-reveal.fade-left {
    transform: translateX(40px);
}

/* Trigger Class added via JS */
.scroll-reveal.scroll-in {
    opacity: 1;
    transform: none;
}

/* Delays utilities */
.delay-50  { transition-delay: 50ms; }
.delay-100 { transition-delay: 100ms; }
.delay-150 { transition-delay: 150ms; }
.delay-200 { transition-delay: 200ms; }
.delay-250 { transition-delay: 250ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }


/* --------------------------------------------------------------------------
   12. RESPONSIVE DESIGN (MEDIA QUERIES)
   -------------------------------------------------------------------------- */

/* Large viewports override */
@media (min-width: 1400px) {
    :root {
        --container-width: 1320px;
    }
}

/* Tablet viewports (MD breakpoint) */
@media (max-width: 1024px) {
    .top-bar {
        display: none;
    }

    /* Fix sticky navbar on tablets */
    .main-header.sticky .navbar {
        padding: 10px 20px;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    }

    .main-header.sticky .logo img {
        height: 70px;
        max-width: 220px;
    }

    .main-header.sticky .hamburger .bar {
        background-color: var(--color-navy);
    }

    .main-header.sticky .hamburger.active .bar {
        background-color: var(--color-navy);
    }
    
    /* Navbar Hamburger Slide down overlay menu */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(170deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
        flex-direction: column;
        justify-content: flex-start;
        padding: 0;
        box-shadow: -8px 0 40px rgba(0,0,0,0.35);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1500;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        margin: 0;
        padding: 100px 0 30px 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    
    .nav-list li {
        margin: 0;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    
    .nav-link {
        font-size: 0.98rem;
        font-weight: 600;
        color: rgba(255,255,255,0.8);
        display: flex;
        align-items: center;
        gap: 14px;
        width: 100%;
        padding: 16px 30px;
        letter-spacing: 0.5px;
        transition: all 0.25s ease;
        position: relative;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 3px;
        background: var(--color-green);
        transform: scaleY(0);
        transition: transform 0.25s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--color-white);
        background: rgba(255,255,255,0.06);
        padding-left: 38px;
    }

    .nav-link:hover::before,
    .nav-link.active::before {
        transform: scaleY(1);
    }

    .nav-link::after {
        display: none;
    }
    
    .nav-mobile-cta {
        display: block;
        width: 100%;
        padding: 30px 30px 20px;
    }
    
    .nav-mobile-cta .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .desktop-cta {
        display: none;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--color-white);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--color-white);
    }
    
    .main-header.sticky .hamburger.active .bar {
        background-color: var(--color-white);
    }
    
    .section-padding {
        padding-top: 45px;
        padding-bottom: 45px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 140px;
        padding-bottom: 40px;
        text-align: center;
        justify-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-tracking {
        width: 100%;
        max-width: 500px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
    
    .stats-item {
        border-right: none;
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .stats-item:nth-child(odd) {
        border-right: 1px solid rgba(0, 0, 0, 0.08);
    }

    .stats-item:nth-child(1),
    .stats-item:nth-child(2) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding-bottom: 30px;
    }
    
    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        margin-top: 30px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .who-we-are-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stats-row-item {
        border-right: none;
        padding: 10px;
    }
    
    .stats-row-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .leadership-card {
        flex: 0 0 calc(50% - 15px); /* 2 items on tablets */
    }
    
    .service-detail-card,
    .service-detail-card:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .service-detail-card:nth-child(even) .card-img-side {
        order: 0;
    }
    
    .benefits-row-grid {
        grid-template-columns: 1fr;
    }
    
    .map-interactive-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cities-list-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .support-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile viewports (SM/XS breakpoints) */
@media (max-width: 768px) {
    .loader-rings {
        transform: scale(0.85);
        transform-origin: center center;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-padding {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
    .image-wrapper .main-img {
        height: 320px;
    }
    
    .experience-badge {
        padding: 15px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .industry-card {
        padding: 20px 10px;
    }
    
    .industry-name {
        font-size: 0.9rem;
        word-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
    }
    
    .bottom-cta-title {
        font-size: 1.8rem;
    }
    
    .bottom-cta-subtitle {
        font-size: 1.4rem;
    }
    
    .bottom-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .bottom-cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .bottom-cta-section {
        padding: 50px 0;
    }
    
    .footer-container {
        padding-top: 40px;
        padding-bottom: 30px;
    }
    
    .leadership-card {
        flex: 0 0 100%; /* 1 item on mobile */
    }
    
    .card-info-side {
        padding: 30px 20px;
    }
    
    .card-info-side .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .cities-list-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .city-badge {
        padding: 12px 8px;
        font-size: 0.85rem;
        max-width: none;
    }
    
    .city-badge:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        justify-self: center;
        width: calc(50% - 7.5px);
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .support-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .stats-number {
        font-size: 1.8rem;
    }
    
    .stats-plus, .stats-slash {
        font-size: 1.2rem;
    }
    
    .stats-icon {
        font-size: 1.6rem;
        margin-right: 12px;
    }

    .loader-rings {
        transform: scale(0.7);
        transform-origin: center center;
        margin: 0 auto;
    }
    
    .navbar {
        padding: 12px 15px;
        margin: 15px auto;
        width: 92%;
    }
    
    .logo img {
        height: 55px;
        max-width: 180px;
    }
    
    .main-header.sticky .logo img {
        height: 60px;
        max-width: 190px;
    }

    .main-header.sticky .navbar {
        padding: 8px 15px;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    }
    
    .hamburger {
        margin-left: 10px;
        width: 20px;
        height: 15px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
