/* Design Variables & Typography */
:root {
    --primary: #1e3a8a; /* Deep Trust Blue */
    --primary-light: #3b82f6;
    --primary-dark: #1e40af;
    --secondary: #f97316; /* Warm Orange Accent for Logistics */
    --dark: #0f172a;
    --light: #f8fafc;
    --white: #ffffff;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.bg-light { background-color: var(--light); }
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

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

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

/* Section Headers */
.section-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--primary-light);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-desc {
    color: var(--gray);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: 0.75rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%; /* Override default container max-width */
    padding: 0 3rem; /* Increased padding to move logo inward */
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-image {
    width: 96px; /* Doubled from original 48px */
    height: 96px; /* Doubled from original 48px */
    object-fit: contain;
    transition: var(--transition);
}

.logo-name {
    font-size: 2.5rem; /* Doubled from original 1.25rem */
    font-weight: 800;
    color: var(--white);
    transition: var(--transition);
    white-space: nowrap;
}

.navbar.scrolled .logo-name {
    color: var(--dark);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.navbar.scrolled .nav-links a {
    color: var(--dark);
}

.nav-links a:not(.nav-btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-light);
    transition: var(--transition);
}

.nav-links a:not(.nav-btn):hover::after,
.nav-links a.active:not(.nav-btn)::after {
    width: 100%;
}

.nav-btn.btn-primary {
    padding: 0.6rem 1.5rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.navbar.scrolled .mobile-toggle span {
    background-color: var(--dark);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%), url('hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-container {
    max-width: 100%;
    padding: 0 3rem; /* Align perfectly with navigation logo */
}

.hero-content {
    max-width: 50%; /* Restricted width to prevent overlap on right-side truck */
    color: var(--white);
    padding-top: 5rem;
}

.hero .badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero .highlight {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.hero .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--secondary);
    opacity: 0.3;
    z-index: -1;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    padding: 1.5rem;
    background: var(--light);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: 600;
    color: var(--gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.glass-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary);
}

.gst-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.gst-card::before {
    display: none;
}

.gst-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gst-number {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: monospace;
    letter-spacing: 2px;
}

.msme-card {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); /* Orange gradient */
    color: white;
}

.msme-card::before {
    display: none;
}

.msme-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.msme-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Advantages */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Force exactly 5 columns for a single row */
    gap: 1.5rem; /* Reduced gap to accommodate 5 cards */
    margin-top: 3rem;
}

.advantage-card {
    background: var(--white);
    padding: 2rem 1.5rem; /* Reduced padding to fit nicely */
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

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

.advantage-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.advantage-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Network Section */
.pattern-bg {
    background-color: var(--dark);
    position: relative;
    color: white;
}

.pattern-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.pattern-bg .section-title {
    color: white;
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.location-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    transition: var(--transition);
}

.location-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.location-card .city {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.location-card .state {
    color: var(--primary-light);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.location-card .divider {
    width: 40px;
    height: 2px;
    background: var(--secondary);
    margin: 1rem 0;
}

.location-card .contact-person {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.location-card .contact-phone {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.location-card a.contact-phone:hover {
    color: var(--primary-light);
}

/* Clients Marquee */
.clients-section {
    padding: 4rem 0;
    background: var(--white);
    overflow: hidden;
    border-bottom: 1px solid var(--gray-light);
}

.clients-title {
    color: var(--gray);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.marquee {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.client-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 3rem;
    opacity: 0.6;
    transition: var(--transition);
    gap: 0.75rem;
}

.client-logo:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.client-logo img {
    height: 48px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: var(--transition);
}

.client-logo:hover img {
    filter: grayscale(0%);
}

.client-logo span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Footer */
.footer {
    background-color: var(--light);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--gray-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--gray);
    max-width: 300px;
}

.logo-image-small {
    width: 64px; /* Increased from 40px */
    height: 64px; /* Increased from 40px */
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: var(--gray);
}

.contact-list svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-list a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-list a:hover {
    color: var(--primary);
}

.address-box {
    display: flex;
    gap: 1rem;
    color: var(--gray);
}

.address-box svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-light);
    color: var(--gray);
    font-size: 0.9rem;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible, .slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Responsive adjustments */
@media (max-width: 1100px) {
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Fallback for smaller screens */
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        background: var(--glass-bg);
        backdrop-filter: blur(10px);
    }
    
    .navbar .logo-name {
        color: var(--dark);
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .mobile-toggle span {
        background-color: var(--dark);
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: var(--dark) !important;
        font-size: 1.2rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .quote-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Quote Page Styles */
.quote-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    overflow: hidden;
    margin-top: 3rem;
    border: 1px solid var(--gray-light);
}

.quote-contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 3rem 2rem;
}

.quote-contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.quote-contact-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-method h4 {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phone-link, .email-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
}

.phone-link:hover, .email-link:hover {
    color: var(--secondary);
}

.quote-form-wrap {
    padding: 3rem;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-group input, .form-group textarea {
    padding: 1rem;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: #fcfcfc;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    background: var(--white);
}

.form-submit {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.form-note {
    font-size: 0.85rem;
    color: var(--gray);
}

.form-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
}

/* Clients Page Styles */
.clients-header {
    padding-top: 150px;
    padding-bottom: 50px;
    background: linear-gradient(135deg, var(--light) 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.clients-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.client-showcase-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    z-index: 1;
    overflow: hidden;
    border: 1px solid var(--gray-light);
}

.client-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.client-logo-large {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.client-logo-large img {
    max-height: 100%;
    max-width: 250px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.client-showcase-card:hover .client-logo-large img {
    transform: scale(1.1);
}

.client-details {
    position: relative;
    z-index: 2;
}

.client-details h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.industry-tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--light);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-details p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
}

.glow-effect {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--glow-color);
    filter: blur(80px);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.client-showcase-card:hover .glow-effect {
    opacity: 1;
}

.border-reliance { border-bottom: 4px solid #16a34a; }
.border-supreme { border-bottom: 4px solid #dc2626; }
.border-century { border-bottom: 4px solid #dc2626; }
.border-mrpl { border-bottom: 4px solid #43a047; }
.border-balmer { border-bottom: 4px solid #0e7490; }

.more-clients-section {
    margin-top: 4rem;
    text-align: center;
    border-top: 1px solid var(--gray-light);
    padding-top: 3rem;
    padding-bottom: 1rem;
}

.more-clients-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.more-clients-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.more-clients-list li {
    background: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: var(--gray);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

.more-clients-list li:hover {
    color: var(--primary);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(30, 58, 138, 0.08);
}
