/* Hero Section Global */
/* Hero Section Global */
.hero-section {
    display: block;
    padding: 0;
    background-color: #0a1930;
    /* Dark background to hide white bars */
    width: 100%;
    min-height: 100vh;
    /* Ensure it covers at least full viewport */
    height: 100vh;
    margin: 0;
    position: relative;
    overflow: hidden;
}




/* ... existing styles ... */

/* ... existing styles ... */

/* Full Screen Container */
.hero-container {
    width: 100%;
    max-width: 100%;
    /* Remove max-width */
    height: 100vh;
    /* Full viewport height */
    /* Full viewport height */
    /* Background handled by .hero-bg-layer */
    background: none;
    background-size: cover;
    background-position: center;
    border-radius: 0;
    /* Remove border radius */
    box-shadow: none;
    /* Remove shadow */
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Gradient Overlay - ENABLED for readability */
.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 48, 0.4);
    /* Dark blue tint */
    z-index: 1;
    display: block;
}

/* =========================================
   Internal Hero Navigation (Replaces Header)
   ========================================= */
/* Internal Hero Navigation (Replaces Header)
   ========================================= */
.hero-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
    /* Ensure high z-index for clickability */
}

.hero-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

a.hero-logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.hero-logo img {
    height: 55px;
    margin-right: 15px;
}

.hero-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.hero-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Dropdown Container */
.hero-dropdown {
    position: relative;
    display: inline-block;
}

.hero-dropdown .dropdown-toggle {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
    padding: 10px 0;
    /* Increase hit area */
}

/* Remove default bootstrap dropdown caret */
.hero-dropdown .dropdown-toggle::after {
    display: none !important;
}

.hero-dropdown .dropdown-toggle:hover {
    color: #fff;
}

.hero-dropdown .dropdown-toggle i {
    font-size: 0.7rem;
    margin-left: 5px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

/* Dropdown Menu - HIDDEN INITIALLY */
.hero-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 8px;
    padding: 10px 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Show on Hover or when active class added via JS */
.hero-dropdown:hover .hero-dropdown-menu,
.hero-dropdown.active .hero-dropdown-menu {
    display: block;
}

/* Rotate caret on hover/active */
.hero-dropdown:hover .dropdown-toggle i,
.hero-dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Dropdown Links */
.hero-dropdown-menu a {
    color: #333 !important;
    /* Force dark text */
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.hero-dropdown-menu a:hover {
    background-color: #f0f0f0;
    color: #24469c !important;
    /* Brand color on hover */
}

/* Standard Links (About, Contact) */
.hero-menu>a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.hero-menu>a:hover {
    color: #fff;
}

.lang-btn {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    color: #fff;
    /* Ensure text is white */
    text-decoration: none;
    font-size: 0.9rem;
}

.lang-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.lang-btn i {
    font-size: 1rem;
    margin-right: 8px;
    margin-left: 0;
}

/* =========================================
   Big Background Element "ALLIED" - REMOVED
   ========================================= */
.hero-big-text {
    display: none;
}

/* =========================================
   Top Quote
   ========================================= */
.hero-top-quote {
    position: absolute;
    top: 150px;
    right: 50px;
    z-index: 5;
    text-align: right;
    color: #fff;
}

.hero-top-quote p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.quote-line {
    width: 150px;
    /* Fixed width line */
    height: 2px;
    background-color: #fff;
    float: right;
    /* Align right */
}

/* =========================================
   Central Hero Branding (Reference Style)
   ========================================= */
/* Layer 1: Background Image */
/* =========================================
   New Single Image Hero Styles
   ========================================= */

/* Hero Background (Single Image) */
.hero-bg-single {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Standard image for PC / Laptops */
    background-image: url('../images/hero_port_background.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Portrait Mobile Image Replacement */
@media (max-width: 768px) {
    .hero-bg-single {
        /* This filename should be matched to the image provided */
        background-image: url('../images/mobile_hero_bg.jpeg') !important;
        background-position: center !important;
        background-size: cover !important;
        /* Forces the image to seamlessly scale and fill the screen */
        top: 0 !important;
        /* Break the parallax shift */
        height: 100% !important;
        /* Stop the parallax zoom extension */
        min-height: 100% !important;
    }

    .hero-overlay-dark {
        background: linear-gradient(to bottom, rgba(10, 25, 48, 0.5) 0%, rgba(36, 70, 156, 0.5) 50%, rgba(10, 25, 48, 0.95) 100%) !important;
    }
}

/* Dark Gradient Overlay for Readability */
.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 25, 48, 0.3) 0%, rgba(10, 25, 48, 0.1) 50%, rgba(10, 25, 48, 0.8) 100%);
    z-index: 2;
}

/* Content Container */
.hero-content-new {
    position: relative;
    z-index: 3;
    padding-top: 80px;
    /* Space for fixed header if any */
}

/* Quotes (Fixed Position) */
.hero-top-quote-fixed {
    position: absolute;
    top: 15%;
    /* Adjust vertical position */
    right: 5%;
    text-align: right;
    z-index: 10;
}

.hero-quote-text {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 5px;
    font-style: italic;
    color: #fff;
    letter-spacing: 0.5px;
}

.hero-quote-line {
    width: 60px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
}

/* Main Title "ALLIED" (Centered) */
.hero-center-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 5;
    pointer-events: none;
    /* Let clicks pass through to background if needed */
}

.hero-main-title-new {
    font-size: 18vw;
    font-weight: 900;
    line-height: 0.8;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -5px;
    margin: 0;
    opacity: 1;
    /* Solid white */
    font-family: 'Inter', sans-serif;
}

/* Bottom Info Area (Fixed) */
.hero-bottom-fixed {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

/* Sub Heading (Bottom Left) */
.hero-sub-heading {
    font-size: 2.2rem;
    /* Increased size */
    font-weight: 800;
    /* Bolder weight */
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
    /* Tighter line-height for larger text */
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Stats (Bottom Center) */
.hero-stat-item {
    color: #fff;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: #fff !important;
    /* Force white */
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.2;
    display: block;
    margin-top: 5px;
    color: #fff !important;
    /* Force white */
}

/* Buttons (Bottom Right) */
.btn-hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.btn-hero-pill.primary {
    background-color: #fff;
    color: #0a1930;
    animation: btnPulse 2s infinite;
    position: relative;
    z-index: 1;
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.btn-hero-pill.primary:hover {
    background-color: #e6e6e6;
    transform: translateX(5px);
}

.btn-hero-pill.outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-pill.outline:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-icon {
    font-size: 0.9rem;
}


/* Clean up old layers */
.hero-text-layer,
.hero-truck-layer,
.hero-foreground-layer,
.hero-top-quote {
    display: none;
}

/* Old classes removed or overridden above */
.hero-content,
.hero-brand-container,
.hero-logo-wrapper {
    display: none;
    /* Ensure old styles don't interfere */
}

/* Hide old elements */
.hero-left,
.hero-subtext,
.hero-action-buttons {
    display: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes flyOut {
    0% {
        opacity: 0;
        transform: translate(-30px, 30px) scale(0.5);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Adjustments for New Layout */
@media (max-width: 991px) {
    .hero-main-title-new {
        font-size: 20vw;
        /* Even larger on tablet to fill space */
    }

    .hero-sub-heading {
        font-size: 1.6rem;
    }

    .hero-top-quote-fixed {
        top: 100px;
        /* Adjust for header */
        right: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-bottom-fixed .row {
        text-align: center !important;
        justify-content: center;
        flex-direction: column;
        gap: 20px;
        padding-bottom: 20px !important;
    }

    .hero-bottom-fixed .col-lg-4,
    .hero-bottom-fixed .col-lg-5,
    .text-start,
    .text-end {
        text-align: center !important;
        width: 100%;
    }

    .hero-btn-group {
        justify-content: center !important;
        flex-wrap: wrap;
    }

    .hero-center-title {
        top: 40%;
    }

    .hero-top-quote-fixed {
        display: none;
        /* Hide on mobile to declutter */
    }
}

@media (max-width: 576px) {
    .hero-main-title {
        font-size: 18vw;
    }

    .hero-text-layer {
        top: 40%;
    }

    .hero-truck-img {
        max-height: 50vh;
        bottom: 0;
    }

    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }
}

/* =========================================
   Modern Process Section (Cards)
   ========================================= */
.mv_banner_section {
    padding: 60px 0;
    position: relative;
    top: 0;
    /* Remove overlap */
    z-index: 20;
    margin-bottom: 0;
    background-color: #f9f9f9;
    /* Distinct background */
}

/* Ensure container allows overlap */
.hero-section {
    min-height: 85vh;
    /* Reduce slightly if needed to pull content up */
}

/* =========================================
   Massive Custom Animation Process Cards
   ========================================= */
.modern-process-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 25px 15px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 250px;
}

.modern-process-card::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #24469c 0%, #0a1930 100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 50% 50% 0 0;
}

.modern-process-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 40px 70px rgba(10, 25, 48, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.modern-process-card:hover::before {
    top: 0;
    border-radius: 0;
}

.card-icon {
    margin-bottom: 25px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-icon::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(36, 70, 156, 0.08);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.5s ease;
    transform: scale(0.8);
}

.modern-process-card:hover .card-icon::after {
    transform: scale(1.4);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    animation: pulseGlow 2s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1.3);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.5);
        opacity: 1;
    }
}

.card-icon img {
    max-height: 60px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.modern-process-card:hover .card-icon img {
    transform: scale(1.2) translateY(-5px) rotateY(360deg);
    filter: drop-shadow(0 10px 15px rgba(255, 255, 255, 0.3));
}

.modern-process-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0a1930;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    transition: color 0.4s ease, transform 0.4s ease;
}

.modern-process-card:hover h3 {
    color: #fff;
    transform: translateY(-3px);
}

.modern-process-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 500;
    transition: color 0.4s ease, transform 0.4s ease;
}

.modern-process-card:hover p {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

/* Add an animated line under the text */
.modern-process-card .process-line {
    width: 40px;
    height: 4px;
    background: #24469c;
    margin: 20px auto 0;
    border-radius: 2px;
    transition: all 0.5s ease;
}

.modern-process-card:hover .process-line {
    width: 80px;
    background: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* =========================================
   Modern About Us Section
   ========================================= */
.amp-homepage {
    padding-top: 80px;
    /* Space for overlapped cards */
    padding-bottom: 60px;
}

.sub-heading {
    color: #24469c;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.homepage-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0a1930;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left !important;
    /* Override center */
}

.lead-text {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
}

.modern-about-content {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
}

.modern-about-content p {
    color: #555;
    font-size: 1.1rem;
    /* readable base size */
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.btn-modern-primary {
    background-color: #24469c;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: none;
    margin-top: 10px;
    text-decoration: none;
}

.btn-modern-primary:hover {
    background-color: #0a1930;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(36, 70, 156, 0.3);
}

.btn-modern-primary i {
    margin-left: 10px;
}

@media (max-width: 767px) {
    .btn-modern-primary {
        padding: 12px 20px;
        font-size: 15px;
        white-space: normal;
        text-align: center;
        width: 100%;
        justify-content: center;
    }
}

/* Image Graphic */
.image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.exp-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: #0a1930;
    /* Dark Blue */
    color: #fff;
    padding: 20px 30px;
    border-radius: 0 10px 10px 0;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
}

.exp-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    margin-right: 10px;
    line-height: 1;
    color: #fff;
    /* Make sure number is visible */
}

.exp-badge .text {
    font-size: 0.9rem;
    line-height: 1.2;
    font-weight: 500;
    text-align: left;
}

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

.fade-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* =========================================
   Modern Services Section
   ========================================= */
.modern-services-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    /* Light background for contrast */
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0a1930;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-line {
    width: 60px;
    height: 3px;
    background-color: #24469c;
    margin: 0 auto;
}

/* Liquid Button Effect */
.btn-liquid {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-liquid::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #24469c;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.5s ease-out;
    z-index: -1;
    transform-origin: bottom center;
}

.btn-liquid:hover::after {
    transform: scale(2.5);
    /* Expand to fill */
}

.btn-liquid:hover {
    color: #fff !important;
}

.modern-service-card {
    background: #fff;
    border-radius: 15px;
    /* Rounded edges as requested */
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    border: none;
}

.modern-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-service-card:hover .service-img img {
    transform: scale(1.1);
    /* Zoom effect */
}

/* Link Overlay Icon */
.service-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 2;
}

.modern-service-card:hover .service-overlay {
    opacity: 1;
    transform: translateY(0);
}

.service-link-icon {
    width: 45px;
    height: 45px;
    background-color: #fff;
    color: #24469c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: background-color 0.3s;
}

.service-link-icon:hover {
    background-color: #24469c;
    color: #fff;
}

.service-content {
    padding: 25px;
    text-align: left;
    background: #fff;
    border-top: 4px solid #24469c;
    /* Brand accent top border */
}

.service-content h3 {
    margin-bottom: 15px;
}

.service-content h3 a {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0a1930;
    text-decoration: none;
    transition: color 0.3s;
}

.service-content h3 a:hover {
    color: #24469c;
}

.service-content p {
    color: #555;
    font-size: 1.05rem;
    /* Increased from 0.95rem */
    line-height: 1.6;
    margin-bottom: 0;
}

/* Add shimmer effect to service images on hover */
.service-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: left 0.7s;
    z-index: 1;
}

.modern-service-card:hover .service-img::after {
    left: 200%;
}

/* Responsive Tweaks */
/* Responsive Tweaks */
@media (max-width: 991px) {
    .hero-container {
        height: 100vh;
        padding-bottom: 50px;
        min-height: 600px;
        /* Force image to fit fully within the container on mobile */
        background-size: 100% 100%;
        background-position: center;
    }

    .hero-nav {
        display: none !important;
    }

    .hero-mobile-toggle {
        display: none !important;
    }

    .hero-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(10, 25, 48, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 30px;
        gap: 20px;
        box-sizing: border-box;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-menu.active {
        display: flex !important;
    }

    .hero-dropdown-menu {
        position: static;
        display: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding-left: 15px;
        min-width: 100%;
    }

    .hero-dropdown-menu a {
        color: #ddd !important;
        padding: 5px 0 !important;
    }

    .hero-menu>a,
    .hero-menu .hero-dropdown>a {
        font-size: 1.2rem;
        color: white;
    }

    /* Ensure content is readable */
    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        padding: 20px 30px;
        /* More side padding */
        bottom: auto;
        top: 120px;
        /* Push down to avoid nav overlap */
        height: calc(100vh - 120px);
        justify-content: flex-start;
    }

    .hero-left h1 {
        font-size: 2.2rem;
        /* Scaled down heading */
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .hero-stats-container {
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 40px;
        flex-wrap: wrap;
        /* Allow stats to wrap */
        gap: 20px;
    }

    .stat-num {
        font-size: 2rem;
    }

    .hero-right-buttons {
        width: 100%;
        flex-direction: column;
        gap: 15px;
    }

    .btn-hero-white,
    .btn-hero-outline {
        justify-content: center;
        width: 100%;
        /* Full width buttons */
    }

    .stat-box {
        width: 100%;
        /* Stack stats individually */
    }
}

@media (max-width: 767px) {
    .modern-process-card {
        min-height: 200px;
        margin-bottom: 30px;
        padding: 30px 20px;
    }
}


/* Extra Small Devices */
@media (max-width: 575px) {
    .modern-about-content {
        padding: 20px;
    }

    .hero-content {
        padding: 20px;
        /* Less padding on small screens */
    }

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


    /* =========================================
   Parallax & Reveal Styles (JS Driven)
   ========================================= */

    /* Hero Background Parallax Adjustment */
    .hero-bg-single {
        top: -10vh;
        /* Start slightly higher to allow room for parallax movement */
        height: 120vh;
        /* Taller than screen so it doesn't show gaps when scrolling */
        min-height: 120vh;
        will-change: transform;
    }

    /* Ensure container clips the extended background */
    .hero-container {
        overflow: hidden;
        position: relative;
    }

    /* Reveal Animation Classes */
    .reveal-hidden {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .reveal-hidden.revealed {
        opacity: 1;
        transform: translateY(0);
    }

    /* Add delays for staggered effect if needed via classes delay-1, delay-2 etc which exist but better to reinforce here */
    .delay-1.revealed {
        transition-delay: 0.1s;
    }

    .delay-2.revealed {
        transition-delay: 0.2s;
    }

    .delay-3.revealed {
        transition-delay: 0.3s;
    }
}