/* ST Mathews Events - Main Stylesheet */
/* Black & Gold Theme */

/* ==================== ROOT VARIABLES ==================== */
:root {
    --primary-black: #000000;
    --primary-gold: #46d4e9;
    --dark-gold: #3bc4d9;
    --light-gold: #E0F7FA;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #666666;
    --dark-gray: #333333;
    
    --font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    font-weight: 400;
}

/* Apply Roboto to body and main elements */
body, html {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Apply Roboto to common text elements - but NOT to Font Awesome icons */
h1, h2, h3, h4, h5, h6, p, span, div, a, li, td, th, input, textarea, select, button, label, 
section, article, aside, header, footer, nav, main {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}

/* Preserve Font Awesome icons - these rules must override text element rules */
.fas, .far, .fal, .fab, .fa,
[class*="fa-"],
[class^="fa-"],
i[class*="fa"],
i.fas, i.far, i.fal, i.fab, i.fa {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

.fab {
    font-family: "Font Awesome 6 Brands" !important;
}

/* Font Awesome uses ::before pseudo-elements for icons */
.fas::before, .far::before, .fal::before, .fab::before, .fa::before,
[class*="fa-"]::before,
[class^="fa-"]::before,
i.fas::before, i.far::before, i.fal::before, i.fab::before, i.fa::before,
i[class*="fa"]::before {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
    font-weight: 900;
}

.fab::before {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400;
}

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

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

ul {
    list-style: none;
}

/* ==================== CONTAINER ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 80px 15px 80px;
    z-index: 10;
    width: 100%;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.navbar.scrolled .logo h1 {
    color: var(--primary-black);
    text-shadow: none;
}

.logo-text {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.navbar.scrolled .logo-text {
    color: var(--primary-black);
    text-shadow: none;
}

.logo-hebrew {
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 2px;
}

.logo-engineering {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.logo-image {
    max-height: 80px;
    height: 80px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
    transition: opacity 0.3s ease, transform 0.3s ease;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* Ensure both logos have consistent sizing */
.logo-initial {
    max-height: 120px;
    height: 120px;
    width: auto;
    object-fit: contain;
}

.logo-scrolled {
    max-height: 80px;
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: none !important;
    -webkit-filter: none !important;
    mix-blend-mode: normal !important;
    background: none !important;
    background-image: none !important;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
    -webkit-backface-visibility: visible;
    -moz-backface-visibility: visible;
    backface-visibility: visible;
    transform: translateY(-50%) translateZ(0);
    will-change: auto;
    -webkit-transform: translateY(-50%) translateZ(0);
    -moz-transform: translateY(-50%) translateZ(0);
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
}

.logo-image:hover {
    transform: translateY(-50%) scale(1.05);
}

.logo-scrolled:hover {
    filter: none !important;
    -webkit-filter: none !important;
    mix-blend-mode: normal !important;
    background: none !important;
    background-image: none !important;
    transform: translateY(-50%) translateZ(0) !important;
}

.logo {
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    min-width: 200px;
}

.logo a {
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
}

/* Initial Logo - visible by default */
.logo-initial {
    opacity: 1;
    visibility: visible;
}

.logo-scrolled {
    opacity: 0;
    visibility: hidden;
}

/* When navbar is scrolled, swap logos */
.navbar.scrolled .logo-initial {
    opacity: 0;
    visibility: hidden;
}

.navbar.scrolled .logo-scrolled {
    opacity: 1;
    visibility: visible;
    filter: none !important;
    -webkit-filter: none !important;
    mix-blend-mode: normal !important;
    background: none !important;
    background-image: none !important;
}

.logo .gold {
    color: var(--primary-gold);
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 0 40px;
}

/* Ensure desktop nav-menu is visible on large screens (1025px+) */
@media (min-width: 1025px) {
    .nav-menu {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        flex-direction: row !important;
        padding: 0 !important;
        margin: 0 40px !important;
        gap: 40px !important;
        box-shadow: none !important;
        overflow: visible !important;
    }
    
    .nav-menu li,
    .nav-menu a {
        display: block !important;
        width: auto !important;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition);
}

.navbar.scrolled .nav-menu a {
    color: var(--primary-black);
}

.nav-menu a:hover {
    color: var(--white);
    opacity: 0.8;
}

.navbar.scrolled .nav-menu a:hover {
    color: var(--primary-gold);
    opacity: 1;
}

.nav-menu a.active {
    color: var(--white);
    font-weight: 600;
}

.navbar.scrolled .nav-menu a.active {
    color: var(--primary-gold);
}

.nav-menu .dropdown i {
    font-size: 8px;
    margin-left: 8px;
    transition: var(--transition);
    opacity: 0.8;
}

.nav-menu .dropdown:hover i {
    transform: rotate(180deg);
    opacity: 1;
}

/* Hide Contact Us from desktop navigation menu - Only on desktop (1025px+) */
@media (min-width: 1025px) {
    .nav-menu > li:last-child {
        display: none !important;
    }
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 0;
    margin-top: 10px;
    overflow-y: auto;
    overflow-x: hidden;
    display: none;
    pointer-events: none;
    max-height: 500px;
}

.dropdown-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
    pointer-events: auto !important;
}

/* Only show on hover for desktop (1025px+), not mobile/tablet */
@media (min-width: 1025px) {
    /* Reset dropdown menu to desktop styles - override mobile/tablet styles */
    .dropdown-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        background: var(--white) !important;
        min-width: 280px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
        border: 1px solid #e0e0e0 !important;
        border-radius: 6px !important;
        margin: 10px 0 0 0 !important;
        padding: 0 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        max-height: 500px !important;
        z-index: 1001 !important;
        /* Initial state - hidden (inherits from base .dropdown-menu) */
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-10px) !important;
        pointer-events: none !important;
        transition: all 0.3s ease !important;
    }
    
    /* Show on hover - must override all mobile/tablet styles */
    .dropdown:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        display: block !important;
        pointer-events: auto !important;
    }
    
    /* Ensure dropdown menu items are visible on desktop */
    .dropdown-menu li {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .dropdown-menu a {
        display: flex !important;
        padding: 15px 20px !important;
        justify-content: flex-start !important;
    }
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
    border-bottom: 1px solid #e9ecef;
    display: block;
    visibility: visible;
    opacity: 1;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    text-transform: none;
    letter-spacing: normal;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 1002;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #333333;
    padding-left: 25px;
    transform: translateX(5px);
}

.dropdown-menu a:active {
    background: #e9ecef;
    transform: translateX(0);
}

.dropdown-menu a i {
    margin-right: 15px;
    width: 40px;
    text-align: center;
    color: #46d4e8;
    font-size: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    line-height: 1;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    rotate: 0deg;
}

/* Increase size for specific industry icons */
.dropdown-menu a i.fa-plane,
.dropdown-menu a i.fa-car,
.dropdown-menu a i.fa-truck,
.dropdown-menu a i.fa-bolt,
.dropdown-menu a i.fa-industry,
.dropdown-menu a i.fa-train,
.dropdown-menu a i.fa-road,
.dropdown-menu a i.fa-cogs,
.dropdown-menu a i.fa-sync-alt,
.dropdown-menu a i.fa-digital-tachograph,
.dropdown-menu a i.fa-shipping-fast,
.dropdown-menu a i.fa-file-alt,
.dropdown-menu a i.fa-video {
    font-size: 26px !important;
    width: 28px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    line-height: 1 !important;
    transform: none !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    rotate: 0deg !important;
    writing-mode: horizontal-tb !important;
}

/* Large Dropdown Menu Styles */
.dropdown-menu-large {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 800px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 30px;
    margin-top: 10px;
    overflow: hidden;
    display: none;
    pointer-events: none;
}

/* Force show when JavaScript adds show class */
.dropdown-menu-large.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

/* Ensure dropdown is positioned correctly */
.dropdown {
    position: relative;
}

/* Active state for dropdown toggles */
.dropdown > a.active {
    color: var(--primary-gold) !important;
    font-weight: 600;
}

.navbar.scrolled .dropdown > a.active {
    color: var(--primary-gold) !important;
}

.dropdown-menu-large.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

/* Only show on hover for desktop (1025px+), not mobile/tablet */
@media (min-width: 1025px) {
    /* Reset dropdown-menu-large to desktop styles - override mobile/tablet styles */
    .dropdown-menu-large {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        background: var(--white) !important;
        min-width: 800px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
        border: 1px solid #e0e0e0 !important;
        border-radius: 6px !important;
        margin: 10px 0 0 0 !important;
        padding: 30px !important;
        overflow: hidden !important;
        z-index: 1001 !important;
        /* Initial state - hidden (inherits from base .dropdown-menu-large) */
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-10px) !important;
        pointer-events: none !important;
        transition: all 0.3s ease !important;
    }
    
    /* Show on hover - must override all mobile/tablet styles */
    .dropdown:hover .dropdown-menu-large {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        display: block !important;
        pointer-events: auto !important;
    }
}

.dropdown-content {
    display: flex;
    gap: 40px;
}

.dropdown-column {
    flex: 1;
}

.dropdown-column h3 {
    color: #A00000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid #A00000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-icon {
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: #E0E7F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    color: #2C3E50;
    font-size: 14px;
    text-align: center;
}

.service-content h4 {
    color: #333333;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
}

.service-content p {
    color: #777777;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.contact-button {
    margin-left: auto;
}

.btn-contact {
    background: transparent;
    color: var(--white);
    padding: 12px 24px;
    border: 1px solid var(--white);
    border-radius: 0;
    font-weight: 500;
    font-size: clamp(12px, 1.8vw, 14px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    font-family: var(--font-primary);
}

.navbar.scrolled .btn-contact {
    color: var(--primary-black);
    border: 1px solid var(--primary-black);
}

.btn-contact:hover {
    background: var(--white);
    color: var(--primary-black);
    transform: translateY(-1px);
}

.navbar.scrolled .btn-contact:hover {
    background: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
}

.nav-separator {
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        var(--white) 0px,
        var(--white) 3px,
        transparent 3px,
        transparent 6px
    );
    opacity: 0.6;
    margin-top: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: clamp(25px, 4vw, 30px);
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    display: block;
}

/* Target individual spans for animation */
.mobile-menu-toggle span:nth-child(1) {
    transform-origin: center;
}

.mobile-menu-toggle span:nth-child(2) {
    transform-origin: center;
}

.mobile-menu-toggle span:nth-child(3) {
    transform-origin: center;
}

/* Change toggle icon to black after scrolling */
.navbar.scrolled .mobile-menu-toggle span {
    background: var(--primary-black);
}

/* Transform hamburger to X when menu is active */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* ==================== HERO SLIDER ==================== */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: slowMoveForward 15s ease-in-out infinite;
    /* Optimize rendering performance */
    will-change: opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* First slide should be visible immediately for LCP */
.slide.active {
    opacity: 1;
    animation: slowMoveForward 15s ease-in-out infinite;
}

@keyframes slowMoveForward {
    0% {
        background-position: center center;
        transform: scale(1);
    }
    50% {
        background-position: center 25%;
        transform: scale(1.02);
    }
    100% {
        background-position: center center;
        transform: scale(1);
    }
}

.slide[data-bg-image] {
    /* Background image set via JavaScript with lazy loading */
    background-size: cover;
    background-position: center;
    /* Add placeholder background while loading */
    background-color: #1a1a1a;
    /* Ensure smooth loading */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    z-index: 10;
    opacity: 0.7;
}

.slider-nav-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.slider-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-nav-btn.active {
    background: rgba(255, 215, 0, 0.3);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    opacity: 1;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.slider-nav-btn i {
    font-size: 18px;
}

.slide-content-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    color: var(--white);
    text-align: center;
    margin: 0 auto;
}

.slide-content-left {
    color: var(--white);
    animation: slideInLeft 1s ease-out;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.slide-content-left:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (backdrop-filter: blur(20px)) {
    .slide-content-left {
        background: rgba(0, 0, 0, 0.5);
    }
}

.slide-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-gold);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
}

.slide-content-left h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: 0.5px;
    text-align: center;
}

.slide-description {
    font-size: 16px;
    margin-bottom: 25px;
    color: var(--white);
    line-height: 1.6;
    text-align: center;
    font-weight: 400;
}

.slide-features {
    margin-bottom: 35px;
}

.slide-features p {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
    justify-content: center;
}

.slide-content-right {
    display: none;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.slider-navigation {
    display: none;
}

.slider-nav-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.nav-tab:hover {
    color: var(--white);
    background: rgba(255, 215, 0, 0.1);
}

.nav-tab.active {
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
}

.tab-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.nav-tab.active .tab-indicator {
    background: var(--primary-gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-black);
    border: 1px solid var(--white);
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition);
}

/* .btn-primary:hover - Hover effect removed */

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-black);
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 80px 0;
}

/* ==================== STATISTICS SECTION ==================== */
.stats-section {
    background: linear-gradient(to bottom, #c1d3ca 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 60px 40px;
}

.stats-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,10 L90,10 L90,90 L10,90 Z" fill="none" stroke="%23e0e0e0" stroke-width="0.5" opacity="0.3"/></svg>') no-repeat;
    background-size: contain;
    opacity: 0.1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-card {
    background: var(--white);
    padding: 35px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    transform: scaleX(0);
    transition: var(--transition);
}

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

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

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.stat-icon i {
    font-size: 28px;
    color: var(--white);
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.4);
}

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

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 12px;
    font-family: var(--font-heading);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--dark-gray);
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-align: center;
    max-width: 120px;
    margin: 0 auto;
}

/* Responsive Design for Statistics */
@media (max-width: 1200px) {
    .stats-section {
        padding: 50px 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .stats-section {
        padding: 40px 25px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 18px;
    }
    
    .stat-icon {
        width: 65px;
        height: 65px;
    }
    
    .stat-icon i {
        font-size: 26px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 35px 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 30px 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-icon {
        width: 55px;
        height: 55px;
    }
    
    .stat-icon i {
        font-size: 22px;
    }
    
    .stat-number {
        font-size: 26px;
    }
    
    .stat-label {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 25px 10px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 18px 12px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .stat-icon i {
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 9px;
    }
}

@media (max-width: 400px) {
    .stats-section {
        padding: 20px 8px;
    }
    
    .stats-grid {
        gap: 10px;
    }
    
    .stat-card {
        padding: 15px 10px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
    }
    
    .stat-icon i {
        font-size: 18px;
    }
    
    .stat-number {
        font-size: 22px;
    }
    
    .stat-label {
        font-size: 8px;
    }
}

/* ==================== THIRD SECTION ==================== */
.third-section {
    background: var(--white);
    padding: 80px 0;
}

.third-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.third-left {
    display: flex;
    flex-direction: column;
}

.third-label {
    color: #ff6b35;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.third-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.2;
    margin: 0;
    font-family: var(--font-heading);
}

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

.third-description {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    font-family: var(--font-primary);
}

/* Responsive Design for Third Section */
@media (max-width: 768px) {
    .third-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .third-title {
        font-size: 36px;
    }
    
    .third-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .third-title {
        font-size: 28px;
    }
    
    .third-description {
        font-size: 14px;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
    background: var(--white);
    padding: 20px 0 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
    grid-column: span 1;
}

.service-card:nth-child(4) {
    grid-column: 1;
}

.service-card:nth-child(5) {
    grid-column: 2;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

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

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

/* ==================== SERVICES LIST ==================== */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
    transition: var(--transition);
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    background: rgba(70, 212, 233, 0.05);
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 8px;
}

.service-text {
    display: flex;
    align-items: center;
    flex: 1;
}

.service-bullet {
    color: var(--primary-gold);
    font-size: 20px;
    margin-right: 15px;
    font-weight: bold;
}

.service-title {
    font-size: 20px;
    color: var(--primary-black);
    font-weight: 500;
    line-height: 1.4;
}

.service-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gold);
    color: var(--white);
    font-size: 20px;
    border-radius: 8px;
    transition: var(--transition);
}

.service-item:hover .service-icon {
    background: var(--dark-gold);
    transform: scale(1.1);
}

/* ==================== WHY PARTNER SECTION ==================== */
.why-partner-section {
    background: var(--white);
    padding: 10px 0 0 0;
    margin-bottom: 0;
}

.why-partner-banner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.why-partner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 0 0;
    margin-bottom: 0;
}

.why-partner-text h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-black);
    margin: 0;
    font-family: var(--font-heading);
}

.why-partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-partner-logo-img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.why-partner-logo-img:hover {
    transform: scale(1.05);
}

.why-partner-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gold);
    border-radius: 1px;
}

.service-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-black);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 15px;
    line-height: 1.3;
    font-family: var(--font-heading);
}

.service-description {
    font-size: 16px;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 25px;
    font-family: var(--font-primary);
    flex-grow: 1;
}

.service-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #46d4e9;
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
}

.service-button:hover {
    background: #3bc4d9;
    transform: scale(1.1);
    color: var(--white);
}

/* Responsive Design for Services */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: span 1;
    }
    
    .service-content {
        padding: 25px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .service-content {
        padding: 20px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 14px;
    }
    
    .service-button {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--primary-black);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
}

.section-title p {
    font-size: 18px;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 20px auto 0;
}

/* ==================== WELCOME SECTION ==================== */
.welcome-section {
    background: var(--light-gray);
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.welcome-content h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--primary-black);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.welcome-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.quote {
    font-style: italic;
    font-size: 22px;
    color: var(--dark-gold);
    margin: 30px 0;
    padding: 25px;
    border-left: 5px solid var(--primary-gold);
    background: var(--white);
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-radius: 0 5px 5px 0;
}

/* ==================== SERVICES GRID ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border-top: 3px solid #46d4e9;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 50px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--primary-black);
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.7;
}

/* ==================== WHY CHOOSE US ==================== */
.why-choose {
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
    color: var(--white);
}

.why-choose .section-title h2 {
    color: var(--white);
}

.why-choose .section-title p {
    color: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-item i {
    font-size: 40px;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--white);
}

.feature-item p {
    font-size: 15px;
    color: var(--light-gray);
}

/* Service Item Cards with White Background */
.feature-item[style*="background: var(--white)"] {
    cursor: pointer;
}

.feature-item[style*="background: var(--white)"]:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.feature-item[style*="background: var(--white)"]:hover i {
    transform: scale(1.1);
    transition: var(--transition);
}

/* Service cards with bullet points hover effect */
.service-card[style*="background: var(--white)"]:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.service-card[style*="background: var(--white)"]:hover .service-icon i {
    transform: scale(1.1);
    transition: var(--transition);
}

/* Bullet point links hover effect */
.service-card a[href="services.php"] {
    transition: var(--transition);
}

.service-card a[href="services.php"]:hover {
    color: #46d4e9 !important;
    text-decoration: underline !important;
}

/* Responsive for services grid */
.services-grid[style*="padding: 0 40px"] {
    padding: 0 20px !important;
}

@media (max-width: 768px) {
    .services-grid[style*="padding: 0 40px"] {
        padding: 0 15px !important;
    }
    
    .gallery-carousel-item {
        min-width: 250px !important;
    }
    
    .gallery-carousel-item img {
        height: 200px !important;
    }
}

@media (max-width: 480px) {
    .gallery-carousel-item {
        min-width: 200px !important;
    }
    
    .gallery-carousel-item img {
        height: 180px !important;
    }
}

/* Services section title divider color */
.services-section .section-title h2::after {
    background: #46d4e9 !important;
}

#services-offered .section-title h2::after {
    background: #46d4e9 !important;
}

/* Gallery Carousel Styles */
.gallery-carousel-wrapper {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* .gallery-carousel - Note: scrollbar-width removed for Safari compatibility, using webkit-scrollbar below instead */

.gallery-carousel::-webkit-scrollbar {
    height: 8px;
}

.gallery-carousel::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 10px;
}

.gallery-carousel::-webkit-scrollbar-thumb {
    background: #46d4e9;
    border-radius: 10px;
}

.gallery-carousel::-webkit-scrollbar-thumb:hover {
    background: #3bc4d9;
}

.gallery-carousel-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

/* Responsive for 5 services section */
@media (max-width: 1200px) {
    .features-grid[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
}

@media (max-width: 768px) {
    .features-grid[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    border-left: 4px solid var(--primary-gold);
}

.testimonial-rating {
    color: var(--primary-gold);
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-black);
    font-size: 16px;
}

.testimonial-author span {
    display: block;
    color: var(--medium-gray);
    font-size: 14px;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(0,0,0,0.8)), url('../images/slider1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-gold);
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* ==================== GALLERY ==================== */
.gallery-filter {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: var(--white);
    color: var(--primary-black);
    padding: 10px 25px;
    margin: 5px;
    border: 2px solid var(--primary-gold);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    color: var(--primary-black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1/1;
    background: var(--light-gray);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 20px;
    text-align: center;
    padding: 20px;
}

/* ==================== CONTACT FORM ==================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-form {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-black);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 30px;
    color: var(--primary-gold);
    min-width: 40px;
}

.contact-item-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-black);
}

.contact-item-content p,
.contact-item-content a {
    color: var(--medium-gray);
    line-height: 1.6;
}

.contact-item-content a:hover {
    color: var(--primary-gold);
}

.map-container {
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    background: var(--light-gray);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--primary-black);
    color: var(--white);
    padding: 60px 0 20px;
    width: 100%;
}

.footer .container {
    max-width: 100%;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

/* Ensure footer stays in one line on large screens */
@media (min-width: 1025px) {
    .footer-content {
        flex-wrap: nowrap;
    }
    
    .footer-section {
        flex: 1 1 0;
        max-width: 25%;
    }
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.footer-text {
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #46d4e9;
    transition: all 0.3s ease;
    font-size: 18px;
    line-height: 1;
}

.social-links a i {
    display: block;
    line-height: 1;
}

.social-links a:hover {
    background: transparent;
    border: none;
    color: #0ea5e9;
    transform: translateY(-3px);
    box-shadow: none;
}

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

.footer-links a {
    color: var(--light-gray);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--light-gray);
}

.footer-contact i {
    color: var(--primary-gold);
    min-width: 20px;
}

.footer-contact a {
    color: var(--light-gray);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 20px;
    text-align: center;
    color: var(--light-gray);
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #46d4e9;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(70, 212, 233, 0.5);
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.back-to-top:hover {
    background: #3bc4d9;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(70, 212, 233, 0.6);
}

.back-to-top:focus {
    outline: 2px solid #46d4e9;
    outline-offset: 2px;
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top i {
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* ==================== RESPONSIVE ==================== */

/* 13-inch laptop screens (1366x768, 1440x900, 1600x900) */
@media (max-width: 1440px) and (min-width: 1025px) {
    .nav-wrapper {
        padding: 20px 40px 15px 40px;
    }
    
    .nav-menu {
        gap: 25px;
    }
    
    .nav-menu a {
        font-size: 11px;
        letter-spacing: 0.3px;
    }
    
    .dropdown-menu {
        min-width: 250px;
    }
    
    .logo h1 {
        font-size: 28px;
    }
}

/* Responsive font sizes for different devices */
@media (max-width: 1440px) and (min-width: 1025px) {
    .nav-menu a {
        font-size: 14px;
    }
}

/* Tablet specific styles - now covered by mobile menu */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-menu a {
        font-size: 16px !important;
    }
}

@media (max-width: 1024px) {
    .hero-slider {
        height: 100vh;
    }
}

/* Mobile and Tablet Menu - Up to 10-inch displays (1024px) */
@media (max-width: 1024px) {
    .nav-wrapper {
        padding: 20px 20px 15px 20px;
        flex-wrap: nowrap;
    }
    
    .logo {
        flex: 0 0 auto;
        max-width: 250px;
        height: 140px;
    }
    
    .logo-image,
    .logo-scrolled {
        max-height: 110px;
        height: 110px;
    }
    
    .logo-initial {
        max-height: 140px;
        height: 140px;
    }
    
    /* Show mobile menu toggle for tablets and mobile */
    .mobile-menu-toggle {
        display: flex !important;
        z-index: 1002;
        position: relative;
        padding: 8px;
        border-radius: 4px;
    }
    
    .mobile-menu-toggle span {
        background: var(--white);
    }
    
    .navbar.scrolled .mobile-menu-toggle span {
        background: var(--primary-black);
    }
    
    /* Make close icon (X) red when menu is active on mobile */
    .mobile-menu-toggle.active span {
        background: #dc3545 !important; /* Red color */
    }
    
    .navbar.scrolled .mobile-menu-toggle.active span {
        background: #dc3545 !important; /* Red color */
    }
    
    /* Hide desktop nav-menu by default, show mobile menu when active */
    .nav-menu {
        display: none !important;
    }
    
    .nav-menu.active {
        display: block !important;
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        width: 100% !important;
        height: calc(100vh - 70px) !important;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
        flex-direction: column !important;
        padding: 0 !important;
        margin: 0 !important;
        gap: 0 !important;
        box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1) !important;
        overflow-y: auto !important;
        z-index: 1001 !important;
        transition: left 0.3s ease !important;
    }
    
    /* Background overlay when menu is open */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
      
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    .nav-menu li,
    .nav-menu a {
        display: block !important;
        width: 100%;
    }
    
    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid #e8e8e8;
    }
    
    .nav-menu > li:first-child {
        border-top: 3px solid var(--primary-gold);
    }
    
    .nav-menu a {
        font-size: 16px !important;
        font-weight: 600 !important;
        color: #1a1a1a !important;
        padding: 18px 25px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
        border: none !important;
        transition: all 0.3s ease !important;
        background: transparent !important;
    }
    
    .navbar.scrolled .nav-menu a,
    .navbar .nav-menu a {
        color: #1a1a1a !important;
        background: transparent !important;
    }
    
    .nav-menu > li > a i {
        font-size: 14px;
        margin-left: 10px;
        transition: transform 0.3s ease;
        color: #46d4e9;
    }
    
    .nav-menu > li > a.active i,
    .nav-menu > li:hover > a i {
        transform: rotate(180deg);
        color: var(--primary-gold);
    }
    
    /* Add pointer cursor and visual feedback for dropdown items */
    .nav-menu > li.dropdown > a {
        cursor: pointer;
        -webkit-user-select: none;
        user-select: none;
    }
    
    .nav-menu > li.dropdown > a:active {
        background: linear-gradient(90deg, rgba(70, 212, 233, 0.15) 0%, rgba(70, 212, 233, 0.08) 100%);
    }
    
    .nav-menu a:hover,
    .nav-menu a.active,
    .navbar.scrolled .nav-menu a:hover,
    .navbar.scrolled .nav-menu a.active {
        color: var(--primary-gold) !important;
        background: linear-gradient(90deg, rgba(70, 212, 233, 0.1) 0%, rgba(70, 212, 233, 0.05) 100%) !important;
    }
    
    .contact-button {
        display: none;
    }
    
    /* Hide dropdown hover effects on mobile/tablet */
    .dropdown:hover .dropdown-menu,
    .dropdown:hover .dropdown-menu-large {
        display: none !important;
    }
    
    /* Dropdown menu styles for mobile/tablet */
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: #f5f5f5 !important;
        margin: 0 !important;
        padding: 0 !important;
        min-width: auto !important;
        display: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: all 0.3s ease !important;
    }
    
    /* Ensure dropdown is visible when .show class is added */
    .dropdown-menu.show,
    .nav-menu .dropdown-menu.show,
    .nav-menu .dropdown .dropdown-menu.show {
        display: block !important;
        max-height: 600px !important;
        padding: 10px 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        overflow: visible !important;
        pointer-events: auto !important;
    }
    
    /* Ensure dropdown menu items are visible */
    .dropdown-menu.show li,
    .dropdown-menu.show > li,
    .nav-menu .dropdown-menu.show li {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: none !important;
    }
    
    /* Dropdown menu item links - Left aligned */
    .dropdown-menu li a {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 12px 25px 12px 25px !important;
        color: #333333 !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        text-decoration: none !important;
        border: none !important;
        background: transparent !important;
        transition: all 0.3s ease !important;
        text-align: left !important;
    }
    
    .dropdown-menu li a:hover {
        background: rgba(70, 212, 233, 0.1) !important;
        color: var(--primary-gold) !important;
        padding-left: 25px !important;
    }
    
    .dropdown-menu li a i {
        margin-right: 12px !important;
        font-size: 18px !important;
        color: #46d4e8 !important;
        width: 24px !important;
        text-align: left !important;
        flex-shrink: 0 !important;
    }
    
    /* Ensure dropdown menu and items are left-aligned */
    .dropdown-menu,
    .dropdown-menu li,
    .dropdown-menu ul {
        text-align: left !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .dropdown-menu-large {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: #f5f5f5 !important;
        margin: 0 !important;
        padding: 0 !important;
        min-width: auto !important;
        display: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: all 0.3s ease !important;
    }
    
    .dropdown-menu-large.show {
        display: block !important;
        max-height: 600px !important;
        padding: 10px 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        overflow: visible !important;
        pointer-events: auto !important;
    }
    
    /* Visual indicator when dropdown is open */
    .dropdown:has(.dropdown-menu.show) > a,
    .dropdown:has(.dropdown-menu-large.show) > a {
        background: linear-gradient(90deg, rgba(70, 212, 233, 0.15) 0%, rgba(70, 212, 233, 0.08) 100%) !important;
        border-left: 3px solid var(--primary-gold) !important;
    }
    
    .dropdown:has(.dropdown-menu.show) > a i,
    .dropdown:has(.dropdown-menu-large.show) > a i {
        color: var(--primary-gold) !important;
        transform: rotate(180deg) !important;
    }
}

/* Additional mobile-specific styles for smaller screens */
@media (max-width: 768px) {
    .nav-wrapper {
        padding: 20px 20px 15px 20px;
    }
    
    .nav-separator {
        display: none;
    }
    
    .dropdown {
        position: relative;
    }
    
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: #f5f5f5 !important;
        margin: 0 !important;
        padding: 0 !important;
        min-width: auto !important;
        display: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: all 0.3s ease !important;
    }
    
    /* Ensure dropdown is visible when .show class is added */
    .dropdown-menu.show,
    .dropdown-menu.show.show,
    .nav-menu .dropdown-menu.show,
    .nav-menu .dropdown .dropdown-menu.show {
        display: block !important;
        max-height: 600px !important;
        padding: 10px 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        overflow: visible !important;
        animation: slideDown 0.3s ease !important;
        pointer-events: auto !important;
        position: static !important;
        transform: none !important;
    }
    
    /* Ensure dropdown menu items are visible */
    .dropdown-menu.show li,
    .dropdown-menu.show > li,
    .dropdown-menu.show ul li {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: none !important;
    }
    
    @keyframes slideDown {
        from {
            max-height: 0 !important;
            opacity: 0;
        }
        to {
            max-height: 600px !important;
            opacity: 1;
        }
    }
    
    /* Visual indicator when dropdown is open */
    .dropdown:has(.dropdown-menu.show) > a {
        background: linear-gradient(90deg, rgba(70, 212, 233, 0.15) 0%, rgba(70, 212, 233, 0.08) 100%) !important;
        border-left: 3px solid var(--primary-gold);
    }
    
    .dropdown:has(.dropdown-menu.show) > a i {
        color: var(--primary-gold) !important;
        transform: rotate(180deg);
    }
    
    .dropdown-menu li {
        border-bottom: 1px solid #e8e8e8;
        display: block !important;
        width: 100%;
    }
    
    .dropdown-menu a {
        color: #555 !important;
        padding: 14px 25px 14px 25px !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 10px !important;
        transition: all 0.3s ease !important;
        width: 100% !important;
        background: transparent !important;
        text-align: left !important;
    }
    
    .dropdown-menu a i {
        font-size: 34px !important;
        color: #46d4e8 !important;
        min-width: 40px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        vertical-align: middle !important;
        line-height: 1 !important;
        flex-shrink: 0 !important;
    }
    
    /* Ensure dropdown menu is left-aligned */
    .dropdown-menu,
    .dropdown-menu li,
    .dropdown-menu ul {
        text-align: left !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    /* Increase size for specific industry icons on mobile */
    .dropdown-menu a i.fa-plane,
    .dropdown-menu a i.fa-car,
    .dropdown-menu a i.fa-truck,
    .dropdown-menu a i.fa-bolt,
    .dropdown-menu a i.fa-industry,
    .dropdown-menu a i.fa-train,
    .dropdown-menu a i.fa-road,
    .dropdown-menu a i.fa-cogs,
    .dropdown-menu a i.fa-sync-alt,
    .dropdown-menu a i.fa-digital-tachograph,
    .dropdown-menu a i.fa-shipping-fast,
    .dropdown-menu a i.fa-file-alt,
    .dropdown-menu a i.fa-video {
        font-size: 24px !important;
        min-width: 26px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        vertical-align: middle !important;
        line-height: 1 !important;
        transform: none !important;
        -webkit-transform: none !important;
        -moz-transform: none !important;
        rotate: 0deg !important;
        writing-mode: horizontal-tb !important;
    }
    
    .dropdown-menu a:hover,
    .dropdown-menu a:active {
        background: #ffffff !important;
        color: var(--primary-gold) !important;
        padding-left: 25px !important;
    }
    
    /* Center slide content on tablet */
    .slide-overlay {
        justify-content: center !important;
        padding-left: 0 !important;
        padding: 0 20px !important;
    }
    
    .slide-content-wrapper {
        text-align: center !important;
        margin: 0 auto !important;
        max-width: 90% !important;
        padding: 0 20px !important;
    }
    
    .slide-content-left {
        text-align: center !important;
        padding: 40px 30px !important;
        border-radius: 15px !important;
        backdrop-filter: blur(15px) saturate(160%) !important;
        -webkit-backdrop-filter: blur(15px) saturate(160%) !important;
    }
    
    .slide-content-left h2 {
        text-align: center !important;
    }
    
    .slide-description {
        text-align: center !important;
    }
    
    .slide-features p {
        text-align: center !important;
    }
    
    .slide-buttons {
        justify-content: center !important;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .nav-menu a {
        font-size: 13px;
    }
    
    .dropdown-menu a {
        font-size: 12px;
    }
    
    /* Center slide content on mobile */
    .slide-overlay {
        justify-content: center !important;
        padding-left: 0 !important;
        padding: 0 15px !important;
    }
    
    .slide-content-wrapper {
        text-align: center !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        padding: 0 15px !important;
    }
    
    .slide-content-left {
        text-align: center !important;
    }
    
    .slide-content-left h2 {
        text-align: center !important;
    }
    
    .slide-description {
        text-align: center !important;
    }
    
    .slide-features p {
        text-align: center !important;
    }
    
    .slide-buttons {
        justify-content: center !important;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .nav-menu a {
        font-size: 12px;
    }
    
    .dropdown-menu a {
        font-size: 11px;
    }
    
    .dropdown-menu-large {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        margin: 0;
        padding: 0;
        min-width: auto;
        display: none !important;
    }
    
    .dropdown-menu-large.show {
        display: block !important;
        width: 100%;
        pointer-events: auto;
    }
    
    .dropdown-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .dropdown-column h3 {
        color: var(--primary-gold);
        border-bottom-color: var(--primary-gold);
        font-size: 16px;
    }
    
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    
    .service-icon i {
        color: var(--primary-gold);
    }
    
    .service-content h4 {
        color: var(--white);
        font-size: 15px;
    }
    
    .service-content p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 13px;
    }
    
    .hero-slider {
        height: 100vh;
    }
    
    .slide-overlay {
        justify-content: center !important;
        padding-left: 0 !important;
        padding: 0 15px !important;
    }
    
    .slide-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        margin: 0 auto !important;
        max-width: 100% !important;
        padding: 0 15px !important;
    }
    
    .slide-content-left {
        text-align: center !important;
        padding: 35px 25px !important;
        border-radius: 15px !important;
        backdrop-filter: blur(15px) saturate(160%) !important;
        -webkit-backdrop-filter: blur(15px) saturate(160%) !important;
    }
    
    .slide-content-left h2 {
        font-size: 36px;
        text-align: center !important;
    }
    
    .slide-description {
        font-size: 16px;
        text-align: center !important;
    }
    
    .slide-buttons {
        justify-content: center !important;
    }
    
    .slider-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .prev-btn {
        left: 20px;
    }
    
    .next-btn {
        right: 20px;
    }
    
    .slider-nav-btn i {
        font-size: 14px;
    }
    
    .stats-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 30px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .slider-nav-tabs {
        gap: 15px;
    }
    
    .nav-tab {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .services-grid,
    .features-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .stat-icon i {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .footer-section {
        flex: 1 1 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer .container {
        padding: 0 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .footer-section {
        flex: 1 1 100%;
        min-width: 100%;
    }
    
    .footer-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .nav-wrapper {
        padding: 20px 15px 15px 15px;
    }
    
    .logo h1 {
        font-size: 24px;
        letter-spacing: 0.5px;
    }
    
    .logo-image {
        max-height: 90px;
        height: 90px;
    }
    
    .logo-scrolled {
        max-height: 90px;
        height: 90px;
        width: auto;
    }
    
    .logo-initial {
        max-height: 110px;
        height: 110px;
        width: auto;
    }
    
    .logo {
        height: 110px;
        min-width: 180px;
    }
    
    .hero-slider {
        height: 100vh;
    }
    
    .slide-overlay {
        justify-content: center !important;
        padding-left: 0 !important;
        padding: 0 15px !important;
    }
    
    .slide-content-wrapper {
        text-align: center !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        padding: 0 15px !important;
    }
    
    .slide-content-left {
        text-align: center !important;
        padding: 30px 20px !important;
        border-radius: 12px !important;
        backdrop-filter: blur(12px) saturate(150%) !important;
        -webkit-backdrop-filter: blur(12px) saturate(150%) !important;
    }
    
    .slide-content-left h2 {
        font-size: 28px;
        letter-spacing: 1px;
        text-align: center !important;
    }
    
    .slide-description {
        font-size: 14px;
        text-align: center !important;
    }
    
    .slide-features p {
        text-align: center !important;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 15px;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .slider-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
    
    .slider-nav-btn i {
        font-size: 12px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .slider-nav-tabs {
        gap: 10px;
    }
    
    .nav-tab {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .section-title h2 {
        font-size: 36px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .stat-icon i {
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 13px;
    }
}

/* ==================== UTILITY CLASSES ==================== */
.text-center {
    text-align: center;
}

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

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

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

/* ==================== INDUSTRIES SERVED SECTION ==================== */
.industries-served-section {
    background: var(--white);
    position: relative;
    width: 100%;
    overflow: hidden;
}

.industries-served-section .section-title h2::after {
    background: #46d4e9 !important;
}

.industries-row {
    width: 100%;
    display: grid;
    gap: 20px;
    padding: 0;
}

.industries-row:first-of-type {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 20px;
}

.industries-row:last-of-type {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    margin: 0 auto;
}

.industry-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.industry-card:hover img {
    transform: scale(1.05);
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    flex: 1;
}

.industry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px 15px 15px;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.industry-card:hover .industry-overlay {
    background: linear-gradient(transparent, rgba(70, 212, 233, 0.9));
}

.industry-overlay h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-align: center;
    transition: all 0.3s ease;
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
}

.industry-card:hover .industry-overlay h3 {
    transform: translateY(-2px);
}

/* Responsive design for two-row Industries layout */
@media (max-width: 1200px) {
    .industries-row:first-of-type {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .industries-row:last-of-type {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .industry-overlay h3 {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .industries-row:first-of-type {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .industries-row:last-of-type {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .industry-overlay {
        padding: 15px 10px 10px;
        min-height: 50px;
    }
    
    .industry-overlay h3 {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .industries-row:first-of-type {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 10px;
    }
    
    .industries-row:last-of-type {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 10px;
    }
    
    .industry-overlay {
        padding: 12px 8px 8px;
        min-height: 45px;
    }
    
    .industry-overlay h3 {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .industries-row:first-of-type,
    .industries-row:last-of-type {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 10px;
    }
    
    .industry-card {
        height: 200px;
    }
    
    .industry-overlay {
        padding: 10px 8px 8px;
        min-height: 40px;
    }
    
    .industry-overlay h3 {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .industries-row:first-of-type,
    .industries-row:last-of-type {
        padding: 0 5px;
        gap: 8px;
    }
    
    .industry-card {
        height: 180px;
    }
    
    .industry-overlay {
        padding: 8px 6px 6px;
        min-height: 35px;
    }
    
    .industry-overlay h3 {
        font-size: 12px;
    }
}

/* ==================== VALUED CUSTOMERS LOGO CAROUSEL ==================== */
.valued-customers-section {
    position: relative;
}

.customers-logo-wrapper {
    position: relative;
    width: 100%;
}

.customers-logo-slider {
    display: flex;
    gap: 80px;
    animation: slideCustomers 30s linear infinite;
    width: max-content;
}

.logo-slide {
    flex-shrink: 0;
    width: 280px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.logo-slide:hover {
    opacity: 1;
}

.customer-logo {
    max-width: 100%;
    max-height: 120px;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: grayscale(0);
}

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

/* Pause animation on hover */
.customers-logo-wrapper:hover .customers-logo-slider {
    animation-play-state: paused;
}

/* Mobile Responsive Styles for Customer Logos */
@media (max-width: 768px) {
    .customers-logo-wrapper {
        padding: 20px 0 !important;
    }
    
    .customers-logo-slider {
        gap: 40px !important;
    }
    
    .logo-slide {
        width: 180px !important;
        height: 90px !important;
        padding: 15px !important;
    }
    
    .customer-logo {
        max-width: 100% !important;
        max-height: 80px !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
    }
    
    .customer-logo picture,
    .customer-logo picture img {
        max-width: 100% !important;
        max-height: 80px !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
    }
}

@media (max-width: 480px) {
    .customers-logo-wrapper {
        padding: 15px 0 !important;
    }
    
    .customers-logo-slider {
        gap: 30px !important;
    }
    
    .logo-slide {
        width: 140px !important;
        height: 70px !important;
        padding: 10px !important;
    }
    
    .customer-logo {
        max-width: 100% !important;
        max-height: 60px !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
    }
    
    .customer-logo picture,
    .customer-logo picture img {
        max-width: 100% !important;
        max-height: 60px !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
    }
}


