     :root {
            --primary-red: #cc0000;
            --primary-dark: #1a1515;
            --secondary-dark: #222222;
            --light-gray: #f5f5f5;
            --medium-gray: #e0e0e0;
            --text-dark: #333333;
            --text-light: #777777;
            --white: #ffffff;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
            padding-top: 100px; /* For fixed header */
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        /* --- Top Call Us Bar --- */
        .top-call-bar {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 6px 0;
            font-size: 14px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1100;
            transition: transform 0.4s ease, opacity 0.4s ease;
            transform: translateY(0);
            opacity: 1;
        }
        .top-call-bar.hidden {
            transform: translateY(-100%);
            opacity: 0;
        }
        .top-call-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .call-info {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .call-item {
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }
        .call-item i {
            color: var(--primary-red);
            font-size: 16px;
        }
        .call-item a {
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
        }
        .call-item a:hover {
            color: var(--primary-red);
        }
        .call-btn {
            background-color: var(--primary-red);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }
        .call-btn:hover {
            background-color: #b30000;
            transform: translateY(-2px);
            color: var(--white);
            box-shadow: 0 5px 15px rgba(204, 0, 0, 0.3);
        }
        .social-links {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .social-links a {
            color: var(--white);
            font-size: 16px;
            transition: all 0.3s ease;
        }
        .social-links a:hover {
            color: var(--primary-red);
            transform: translateY(-2px);
        }

        /* --- Main Header --- */
        .main-header {
            background-color: var(--white);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            position: fixed;
            top: 52px; /* Top bar height */
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            padding: 10px 0;
        }
        .main-header.top-hidden {
            top: 0;
        }
        .main-header.scrolled {
            padding: 8px 0;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
        }

        /* Header Container - Single Line Layout */
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Logo Container */
        .logo-container {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }
        .logo-img {
            height: 60px;
            width: auto;
            filter: brightness(1.1);
            transition: height 0.3s ease;
        }
        .main-header.scrolled .logo-img {
            height: 65px;
        }

        /* Main Navigation */
        .main-navigation {
            display: flex;
            align-items: center;
            flex-grow: 1;
            justify-content: right;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 5px;
        }
        .nav-item {
            position: relative;
        }
        .nav-link {
            color: var(--primary-dark);
            font-weight: 600;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 12px 20px !important;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 4px;
            position: relative;
        }
        .nav-link:hover {
            color: var(--primary-red);
            background-color: rgba(204, 0, 0, 0.05);
        }
        .nav-link.active {
            color: var(--primary-red);
        }
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 20px;
            right: 20px;
            height: 3px;
            background-color: var(--primary-red);
            border-radius: 2px;
        }

        /* Dropdown Menu */
        .dropdown-menu {
            border: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            padding: 15px 0;
            margin-top: 10px;
            border-top: 3px solid var(--primary-red);
            min-width: 220px;
        }
        .dropdown-item {
            padding: 10px 25px;
            font-weight: 500;
            color: var(--text-dark);
            transition: all 0.2s ease;
            font-size: 14px;
        }
        .dropdown-item:hover {
            background-color: rgba(204, 0, 0, 0.05);
            color: var(--primary-red);
            padding-left: 30px;
        }
        .dropdown-item i {
            margin-right: 10px;
            width: 18px;
            text-align: center;
        }

        /* Header Action Button */
        .header-action {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-shrink: 0;
        }
        .quote-btn {
            background: linear-gradient(135deg, var(--primary-red) 0%, #b30000 100%);
            color: var(--white);
            padding: 12px 25px;
            font-weight: 700;
            font-size: 14px;
            border-radius: 4px;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 12px rgba(204, 0, 0, 0.2);
            white-space: nowrap;
        }
        .quote-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(204, 0, 0, 0.3);
            color: var(--white);
        }

        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary-dark);
            cursor: pointer;
            transition: all 0.3s ease;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            background-color: var(--light-gray);
        }
        .mobile-toggle:hover {
            background-color: var(--primary-red);
            color: var(--white);
        }

        /* Mobile Navigation */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 100px;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--white);
            z-index: 999;
            padding: 30px;
            overflow-y: auto;
            transform: translateX(-100%);
            transition: transform 0.4s ease;
        }
        .mobile-nav.active {
            transform: translateX(0);
        }
        .mobile-nav .nav-menu {
            flex-direction: column;
            gap: 0;
            width: 100%;
        }
        .mobile-nav .nav-item {
            width: 100%;
        }
        .mobile-nav .nav-link {
            padding: 18px 20px !important;
            border-bottom: 1px solid var(--medium-gray);
            border-radius: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .mobile-nav .nav-link.active::after {
            left: 0;
            right: auto;
            width: 4px;
            height: 100%;
            bottom: auto;
            top: 0;
        }
        .mobile-contact {
            margin-top: 30px;
            padding: 25px;
            background: var(--light-gray);
            border-radius: 10px;
        }
        .mobile-contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        .mobile-contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(204, 0, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .mobile-contact-icon i {
            color: var(--primary-red);
            font-size: 20px;
        }

        /* --- Hero Section --- */
        .hero-section {
            background: linear-gradient(rgba(26, 21, 21, 0.85), rgba(26, 21, 21, 0.92)), 
                        url('https://images.unsplash.com/photo-1574484189079-0e128c2f6e4d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            min-height: 85vh;
            display: flex;
            align-items: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
            margin-top: -100px;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            padding-top: 120px;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(204, 0, 0, 0.15);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }
        .hero-title {
            font-size: 4rem;
            font-weight: 600;
            line-height: 1.1;
            margin-bottom: 25px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
        }
        .hero-title span {
            color: var(--primary-red);
            position: relative;
        }
        .hero-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            right: 0;
            height: 3px;
            background-color: var(--primary-red);
            opacity: 0.7;
        }
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 35px;
            opacity: 0.9;
            max-width: 700px;
            line-height: 1.7;
        }
        .hero-stats {
            display: flex;
            gap: 40px;
            margin: 40px 0;
        }
        .stat-item {
            display: flex;
            flex-direction: column;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-red);
            line-height: 1;
        }
        .stat-label {
            font-size: 14px;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 5px;
        }
        .hero-actions {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-red) 0%, #b30000 100%);
            color: var(--white);
            padding: 18px 40px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 8px 20px rgba(204, 0, 0, 0.3);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(204, 0, 0, 0.4);
            color: var(--white);
        }
        .btn-secondary {
            background: transparent;
            color: var(--white);
            padding: 18px 40px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--white);
            transform: translateY(-3px);
            color: var(--white);
        }

        /* Hero Floating Elements */
        .hero-float {
            position: absolute;
            z-index: 1;
        }
        .float-1 {
            top: 20%;
            right: 10%;
            width: 120px;
            height: 120px;
            border: 2px solid rgba(204, 0, 0, 0.3);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }
        .float-2 {
            bottom: 30%;
            left: 8%;
            width: 80px;
            height: 80px;
            background: rgba(204, 0, 0, 0.1);
            border-radius: 20px;
            transform: rotate(45deg);
            animation: float 8s ease-in-out infinite reverse;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* --- Responsive Styles --- */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 3.5rem;
            }
            .nav-link {
                padding: 12px 15px !important;
                font-size: 14px;
            }
            .quote-btn {
                padding: 10px 20px;
                font-size: 13px;
            }
        }

        @media (max-width: 992px) {
            body {
                padding-top: 90px;
            }
            .top-call-bar {
                padding: 10px 0;
                font-size: 13px;
                position: absolute;
            }
            .top-call-content {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }
            .call-info {
                flex-wrap: wrap;
                justify-content: center;
                gap: 10px;
            }
            .call-item {
                font-size: 13px;
            }
            .main-navigation {
                display: none;
            }
            .mobile-toggle {
                display: flex;
            }
            .mobile-nav {
                display: block;
                top: 90px;
            }
            .header-action {
                display: none;
            }
            .hero-section {
                margin-top: -90px;
            }
            .hero-content {
                padding-top: 100px;
            }
            .hero-title {
                font-size: 2.8rem;
            }
            .hero-subtitle {
                font-size: 1.1rem;
            }
            .hero-stats {
                flex-wrap: wrap;
                gap: 20px;
            }
            .hero-actions {
                flex-direction: column;
            }
            .btn-primary, .btn-secondary {
                width: 100%;
                justify-content: center;
            }
            .logo-img {
                height: 50px;
            }
            .main-header.scrolled .logo-img {
                height: 45px;
            }
            .main-header {
                top: 0;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 80px;
            }
            .top-call-bar {
                padding: 8px 0;
                font-size: 12px;
            }
            .call-btn {
                padding: 6px 15px;
                font-size: 12px;
            }
            .hero-section {
                min-height: 70vh;
                background-attachment: scroll;
                margin-top: -80px;
            }
            .hero-content {
                padding-top: 90px;
            }
            .hero-title {
                font-size: 2.3rem;
            }
            .stat-number {
                font-size: 2rem;
            }
            .logo-img {
                height: 45px;
            }
            .main-header.scrolled .logo-img {
                height: 40px;
            }
            .mobile-nav {
                top: 80px;
            }
        }

        @media (max-width: 576px) {
            body {
                padding-top: 70px;
            }
            .top-call-bar {
                /*padding: 6px 0;*/
                font-size: 11px;
                 background-color: white;
            }
            .call-info {
                flex-direction: column;
                gap: 5px;
            }
            .social-links {
                margin-top: 5px;
            }
            .hero-section {
                margin-top: -70px;
            }
            .hero-title {
                font-size: 2rem;
            }
            .hero-badge {
                font-size: 12px;
                padding: 6px 15px;
            }
            .logo-img {
                height: 40px;
            }
            .main-header.scrolled .logo-img {
                height: 35px;
            }
            .mobile-nav {
                top: 70px;
            }
        }

        /* Animation Classes */
        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @media (max-width: 768px) {
    .top-call-content {
        flex-direction: column;
        align-items: stretch;
        display:none;
    }
    
    .call-info {
        order: 2;
        margin-top: 10px;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 10px;
        display:none;
    }
    
    .social-links {
        order: 1;
        justify-content: space-between;
        width: 100%;
    }
    
    .call-btn {
        flex-grow: 1;
        text-align: center;
        justify-content: center;
    }
}

/* ================= HERO SLIDER FIX ================= */
.hero-section.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 520px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* IMPORTANT: Bootstrap Carousel Height Fix */
#heroCarousel {
    width: 100%;
    height: 100%;
    position: absolute !important;
    top: 0;
    left: 0;
    z-index: 1;
}

#heroCarousel .carousel-inner {
    width: 100%;
    height: 100%;
}

#heroCarousel .carousel-item {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Background image */
.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Image dimensions and fallback */
.hero-slide[style*="slider1.jpg"],
.hero-slide[style*="slider2.jpg"],
.hero-slide[style*="slider3.jpg"],
.hero-slide[style*="slider4.jpg"] {
    background-color: #1a2b3c; /* Fallback color if image doesn't load */
}

/* Dark overlay for better text visibility */
.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.3));
    z-index: 2;
}

/* ================= HERO CONTENT OVERLAY ================= */
.hero-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    color: #fff;
    pointer-events: none; /* Allows clicking through to buttons */
}

.hero-overlay-content .container {
    pointer-events: auto; /* Re-enable pointer events for content */
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-title span {
    color: #f39c12;
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f39c12, transparent);
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Hero Buttons */
.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 220px;
}

.btn-primary {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: white;
}

/* ================= CAROUSEL CONTROLS ================= */
.carousel-control-prev,
.carousel-control-next {
    z-index: 20;
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    margin: 0 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(231, 76, 60, 0.8);
}

/* ================= FIXES FOR IMAGE LOADING ================= */
/* Add this if images are not showing */
.hero-slide:not([style*="background-image"]) {
    background-color: #2c3e50; /* Fallback color */
    background-image: linear-gradient(45deg, #1a2b3c 25%, #2c3e50 25%, #2c3e50 50%, #1a2b3c 50%, #1a2b3c 75%, #2c3e50 75%, #2c3e50);
    background-size: 40px 40px;
}

/* Ensure images load properly */
.hero-slide {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .btn-primary, .btn-secondary {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .hero-section.hero-slider {
        height: 70vh;
        min-height: 420px;
    }

    .hero-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-badge {
        display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 250px;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .hero-section.hero-slider {
        height: 65vh;
        min-height: 380px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
}

/* Carousel Indicators (if you want to add) */
.carousel-indicators {
    z-index: 15;
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    margin: 0 5px !important;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
}

.carousel-indicators button.active {
    background-color: #e74c3c;
}
/* ================= HERO TEXT FINAL POLISH ================= */

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;              /* thoda compact */
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 28px;
    max-width: 720px;               /* line length control */
    text-shadow: 0 6px 18px rgba(0,0,0,0.55);
    letter-spacing: -0.3px;
}

/* Buttons wrapper */
.hero-actions {
    display: flex;
    gap: 18px;
}

/* Mobile */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.25;
    }

    .hero-actions {
        flex-direction: column;
        gap: 14px;
    }
}
/* ================= ABOUT / WELCOME SECTION ================= */

.welcome-section {
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f5f5f5 100%
    );
    padding: 90px 0;
}

/* Section Header */
.welcome-header {
    margin-bottom: 35px;
}

.section-subtitle {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-red);
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-subtitle::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-red);
    margin-top: 6px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.3;
    margin-bottom: 0;
}

/* Content Blocks */
.content-block {
    margin-bottom: 28px;
}

.block-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.block-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 4px;
    height: 22px;
    background: var(--primary-red);
    border-radius: 2px;
}

.block-text {
    font-size: 1rem;
    line-height: 1.75;
    color: #555;
    text-align:justify;
}

/* Feature List */
.features-grid {
    margin-top: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #ffffff;
    border-left: 4px solid var(--primary-red);
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.feature-item i {
    color: var(--primary-red);
    font-size: 1.1rem;
}

.feature-item:hover {
    transform: translateX(6px);
    background: #fdf2f2;
}

/* Read More Button */
.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    background: var(--primary-red);
    color: #fff;
    padding: 12px 32px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background: #b30000;
    transform: translateY(-2px);
    color: #fff;
}

/* Image Side */
.welcome-image-container {
    position: relative;
    padding-left: 30px;
}

.welcome-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.welcome-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.welcome-image:hover img {
    transform: scale(1.05);
}

/* Image Badges */
.image-badge {
    HEIGHT:50PX;
    position: absolute;
    background: var(--primary-red);
    color: #fff;
    padding: 14px 16px;
    border-radius: 8px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.image-badge i {
    font-size: 1.7rem;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
}

.badge-1 {
    top: 20px;
    right: 20px;
}

.badge-2 {
    bottom: 20px;
    left: 20px;
    background: var(--secondary-dark);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }

    .welcome-image img {
        height: 420px;
    }

    .welcome-image-container {
        padding-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .block-title {
        font-size: 1.2rem;
    }

    .welcome-image img {
        height: 360px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }

    .welcome-image img {
        height: 300px;
    }

    .btn-read-more {
        width: 100%;
        justify-content: center;
    }
}
/* ================= INDUSTRIAL STATS SECTION ================= */
/* ================= MODERN STATS SECTION ================= */
.stats-section-modern {
    position: relative;
    padding: 90px 0;
    background: url('../Images/hnc1.png') center center / cover no-repeat !important;
    overflow: hidden;
}

/* Dark industrial overlay */
.stats-section-modern::before {
    content: "";
    position: absolute;
    inset: 0;
 background: linear-gradient(rgba(15,15,15,0.55), rgba(15,15,15,0.55)) !important;


    z-index: 1;
}

/* Pattern highlight overlay */
.stats-section-modern::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/asfalt-light.png');
    opacity: 0.09;
    z-index: 2;
}

/* Ensure inner content above overlays */
.stats-section-modern .container {
    position: relative;
    z-index: 3;
}

.stats-section-modern {
    background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
    padding: 80px 0;
}

/* Card */
.stat-card-modern {
    background: #ffffff;
    border-radius: 14px;
    padding: 40px 25px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* Red gradient strip */
.stat-card-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #cc0000, #ff3b3b);
}

.stat-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 45px rgba(204,0,0,0.25);
}

/* Icon */
.stat-icon-wrap {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #cc0000, #ff3b3b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.stat-icon-wrap i {
    color: #ffffff;
    font-size: 26px;
}

/* Number */
.stat-number-modern {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: #1a1515;
    margin-bottom: 8px;
    line-height: 1;
}

/* Label */
.stat-label-modern {
    font-size: 0.95rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.4;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .stat-number-modern {
        font-size: 2.6rem;
    }
}

@media (max-width: 576px) {
    .stats-section-modern {
        padding: 60px 0;
    }

    .stat-card-modern {
        padding: 30px 20px;
    }

    .stat-icon-wrap {
        width: 52px;
        height: 52px;
    }

    .stat-icon-wrap i {
        font-size: 22px;
    }

    .stat-number-modern {
        font-size: 2.3rem;
    }

    .stat-label-modern {
        font-size: 0.85rem;
    }
}

/* ================= PRODUCT SECTION (ELEGANT) ================= */

.products-section-elegant {
    background: linear-gradient(
        180deg,
        #f8f9fb 0%,
        #ffffff 40%,
        #f4f6f8 100%
    );
    padding: 10px 0 11px;
    position: relative;
}

/* subtle divider feel */
.products-section-elegant::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #ddd, transparent);
}

.section-header-elegant {
    max-width: 750px;
    margin: 0 auto 60px;
}

.section-pill {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(204, 0, 0, 0.08);
    color: var(--primary-red);
    font-weight: 600;
    font-size: 13px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header-elegant h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.section-header-elegant p {
    color: #666;
    font-size: 1.05rem;
}

/* Card */
.product-card-elegant {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    /*box-shadow: 0 12px 35px rgba(0,0,0,0.08);*/
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s ease;
}

.product-card-elegant:hover {
    transform: translateY(-14px);
    box-shadow: 0 25px 55px rgba(204,0,0,0.22);
    border-color: rgba(204,0,0,0.2);
}

.product-img {
    height: 230px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card-elegant:hover img {
    transform: scale(1.08);
}

.product-info {
    padding: 22px 22px 28px;
    text-align: center;
}

.product-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.product-info p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
}

/* Remove arrows & dots completely */
.productAutoSwiper .swiper-button-next,
.productAutoSwiper .swiper-button-prev,
.productAutoSwiper .swiper-pagination {
    display: none !important;
}
.product-info h4::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary-red);
    margin: 12px auto 0;
    border-radius: 2px;
    opacity: 0;
    transition: 0.3s;
}

.product-card-elegant:hover h4::after {
    opacity: 1;
    width: 60px;
}
/* ================= MODERN FOOTER ================= */
.footer-modern {
    background: linear-gradient(180deg, #1a1515 0%, #0f0c0c 100%);
    color: #fff;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #cc0000, #ff3b3b);
}

/* Footer Top */
.footer-top {
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Company Info */
.footer-company {
    margin-bottom: 40px;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.company-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(204, 0, 0, 0.3);
}

/* Footer Widgets */
.footer-widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
}

.footer-widget-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #cc0000;
    border-radius: 2px;
}

/* Links List */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a i {
    color: #cc0000;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Contact Info */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(204, 0, 0, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #cc0000;
    font-size: 18px;
}

.contact-text {
    flex: 1;
}

.contact-text strong {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
}

.contact-text span {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    /*margin-top: 60px;*/
}

.footer-container-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.copyright a {
    color: #cc0000;
    text-decoration: none;
    font-weight: 600;
}

.copyright a:hover {
    text-decoration: underline;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: #cc0000;
}

/* Newsletter Widget */
.newsletter-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px 18px;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #cc0000;
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-btn {
    background: #cc0000;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-btn:hover {
    background: #b30000;
    transform: translateY(-2px);
}

.newsletter-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* Floating Crane Element */
.footer-crane {
    position: absolute;
    bottom: 100px;
    right: 5%;
    width: 150px;
    opacity: 0.1;
    pointer-events: none;
    animation: floatCrane 6s ease-in-out infinite;
}

@keyframes floatCrane {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
    .footer-crane {
        display: none;
    }
}

@media (max-width: 992px) {
    .footer-modern {
        padding: 60px 0 0;
    }
    
    .footer-top {
        padding-bottom: 40px;
    }
    
    .footer-bottom {
        margin-top: 40px;
    }
    
    .footer-container-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .footer-widget {
        margin-bottom: 40px;
    }
    
    .footer-widget:last-child {
        margin-bottom: 0;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-modern {
        padding: 50px 0 0;
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .company-tagline {
        font-size: 1rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }
}


/* ================= CLIENT LOGOS SECTION ================= */
.clients-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

/* Header */
.clients-header {
    text-align: center;
    margin-bottom: 40px;
}

.clients-subtitle {
    display: inline-block;
    background: rgba(204, 0, 0, 0.08);
    color: var(--primary-red);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.clients-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.clients-description {
    color: #666;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Logos Container */
.clients-logos-container {
    position: relative;
    padding: 20px 0;
}

/* Auto-scrolling wrapper */
.clients-logos-wrapper {
    display: flex;
    gap: 40px;
    animation: scrollLogos 40s linear infinite;
    padding: 10px 0;
}

/* Reverse scrolling wrapper for second row */
.clients-logos-wrapper.reverse {
    animation: scrollLogosReverse 40s linear infinite;
    margin-top: 30px;
}

/* Pause animation on hover */
.clients-logos-container:hover .clients-logos-wrapper,
.clients-logos-container:hover .clients-logos-wrapper.reverse {
    animation-play-state: paused;
}

/* Individual logo item */
.client-logo-item {
    flex-shrink: 0;
    width: 160px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Logo image styling */
.client-logo-item img {
    max-width: 100%;
    max-height: 60px;
    /*filter: grayscale(100%) contrast(0.8);*/
    /*opacity: 0.7;*/
    transition: all 0.4s ease;
}

/* Hover effects */
.client-logo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(204,0,0,0.15);
    border-color: rgba(204,0,0,0.2);
}

.client-logo-item:hover img {
    /*filter: grayscale(0%) contrast(1);*/
    opacity: 1;
    transform: scale(1.1);
}

/* Tooltip for company name */
.client-logo-item::after {
    content: attr(data-company);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-dark);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 10;
}

.client-logo-item:hover::after {
    opacity: 1;
    bottom: -35px;
}

/* Scrolling animations */
@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-160px * 10 - 40px * 10)); /* Total width of all logos */
    }
}

@keyframes scrollLogosReverse {
    0% {
        transform: translateX(calc(-160px * 10 - 40px * 10));
    }
    100% {
        transform: translateX(0);
    }
}

/* Gradient overlays for smooth edges */
.clients-logos-container::before,
.clients-logos-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-logos-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(248,249,250,1) 0%, rgba(248,249,250,0) 100%);
}

.clients-logos-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(248,249,250,1) 0%, rgba(248,249,250,0) 100%);
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 1200px) {
    .client-logo-item {
        width: 140px;
        height: 90px;
    }
    
    @keyframes scrollLogos {
        100% {
            transform: translateX(calc(-140px * 10 - 40px * 10));
        }
    }
}

@media (max-width: 992px) {
    .clients-section {
        padding: 50px 0;
    }
    
    .client-logo-item {
        width: 120px;
        height: 80px;
    }
    
    .clients-logos-container::before,
    .clients-logos-container::after {
        width: 60px;
    }
}

@media (max-width: 768px) {
    .clients-title {
        font-size: 1.6rem;
    }
    
    .client-logo-item {
        width: 100px;
        height: 70px;
        padding: 15px;
    }
    
    .client-logo-item img {
        max-height: 40px;
    }
    
    .clients-logos-container {
        padding: 10px 0;
    }
}

@media (max-width: 576px) {
    .clients-section {
        padding: 40px 0;
    }
    
    .clients-header {
        margin-bottom: 30px;
    }
    
    .client-logo-item {
        width: 90px;
        height: 65px;
        padding: 12px;
    }
    
    .clients-logos-wrapper {
        gap: 20px;
    }
}

.client-logo-item:hover::after {
    content: attr(data-company);
    position: absolute;
    bottom: -20px;
    background: rgba(0,0,0,0.8);
    color: white;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.section-header-accent {
    margin-bottom: 55px;
    position: relative;
}

.section-header-accent h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.line-accent {
    width: 70px;
    height: 3px;
    background: var(--primary-red);
    display: block;
    margin: 14px auto;
    border-radius: 3px;
}

.pill-red {
    background: linear-gradient(135deg, var(--primary-red), #b30000);
    color: #fff;
    display: inline-block;
    padding: 6px 22px;
    font-weight: 600;
    font-size: 12px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* ===========================
   ABOUT PAGE — GLOBAL STYLES
============================= */

.inner-page-banner {
    position: relative;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.inner-page-banner h1 {
    font-size: 2.4rem;
    font-weight: 800;
}

.inner-page-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
}
/* ===========================
   INNER PAGE BANNER ENHANCED
============================= */
.inner-page-banner {
    padding: 160px 0 120px !important;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), 
                var(--banner-bg) center/cover no-repeat !important;
}

.banner-overlay {
    background: linear-gradient(135deg, 
                rgba(204,0,0,0.3) 0%, 
                rgba(0,0,0,0.7) 100%) !important;
}

.inner-page-banner .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.inner-page-banner h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.inner-page-banner p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Breadcrumb */
.page-breadcrumb {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.page-breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-breadcrumb a:hover {
    color: var(--primary-red);
}

/* ===========================
   ENHANCED ABOUT SECTION
============================= */

/* HERO BANNER FIX */
.inner-page-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 200px 0 120px;
    position: relative;
}

.inner-page-banner::after {
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

.banner-content {
    position: relative;
    z-index: 2;
}

.page-breadcrumb a {
    color:white;
    text-decoration:none;
}
.page-breadcrumb span { color:#ccc; }

/* ABOUT & OTHER SECTIONS REMAIN SAME */

.about-section {
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(204,0,0,0.03) 0%, 
                transparent 50%);
    z-index: -1;
}

.about-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-red);
    padding: 8px 20px;
    background: rgba(204,0,0,0.1);
    border-radius: 50px;
    margin-bottom: 20px;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 25px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
    border-radius: 2px;
}

.about-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.highlight-text {
    background: linear-gradient(90deg, rgba(204,0,0,0.1), transparent);
    padding: 15px 20px;
    border-left: 4px solid var(--primary-red);
    border-radius: 8px;
    margin: 30px 0;
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.about-image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 35px 70px rgba(204,0,0,0.2);
}

.about-image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-container:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-red);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(204,0,0,0.3);
}

/* ===========================
   ENHANCED CORE VALUES
============================= */
.core-values-section {
    padding: 40px 0;
    background:  #d3cece;
    position: relative;
}

/*.core-values-section::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 5px;*/
/*    background: linear-gradient(90deg, var(--primary-red), transparent);*/
/*}*/

.section-title-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-center h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-title-center p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.feature-box-modern {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary-red) 0%, transparent 50%) border-box;
}

.feature-box-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(204,0,0,0.15);
}

.feature-box-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), #ff3333);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-box-modern:hover::before {
    transform: scaleX(1);
}

.feature-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), #ff3333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
    transition: all 0.4s ease;
}

.feature-box-modern:hover .feature-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(204,0,0,0.3);
}

.feature-box-modern h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.feature-box-modern p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ===========================
   ENHANCED MISSION & VISION
============================= */
.mission-vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.mission-card, .vision-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.mission-card {
    background: linear-gradient(135deg, rgba(204,0,0,0.05) 0%, white 50%);
}

.vision-card {
    background: linear-gradient(135deg, white 0%, rgba(204,0,0,0.05) 50%);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(204,0,0,0.15);
}

.mission-card h4, .vision-card h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 15px;
}

.mission-card h4 i, .vision-card h4 i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), #ff3333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.mission-card p, .vision-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* ===========================
   INDUSTRIES SERVED ENHANCED
============================= */
.industries-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1515 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), #ff3333);
}

.industries-section h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.industries-section > p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.industry-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.industry-card:hover {
    background: rgba(204,0,0,0.2);
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(204,0,0,0.2);
}

.industry-card span {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

/* ===========================
   OUR TEAM SECTION
============================= */
.team-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(204,0,0,0.15);
}

.team-img {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.team-card:hover .team-overlay {
    transform: translateY(0);
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.team-info p {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(204,0,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-3px);
}

/* ===========================
   LEADERSHIP SECTION
============================= */
.leadership-section {
    padding: 100px 0;
    background: white;
}

.leadership-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary-red) 0%, transparent 50%) border-box;
}

.leadership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(204,0,0,0.15);
}

.leader-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 5px solid rgba(204,0,0,0.1);
    transition: all 0.4s ease;
}

.leadership-card:hover .leader-img {
    border-color: var(--primary-red);
    transform: scale(1.05);
}

.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.leader-info p.position {
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.leader-info p.desc {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.leader-contact {
    background: rgba(204,0,0,0.05);
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
}

.leader-contact p {
    margin: 5px 0;
    color: #555;
    font-size: 0.95rem;
}

/* ===========================
   RESPONSIVE DESIGN
============================= */

.team-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    position: relative;
}

.team-scroll::-webkit-scrollbar {
    display: none;
}

.team-inner {
    display: inline-flex;
    gap: 20px;
}

.team-card-simple {
    width: 230px;
    flex-shrink: 0;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 15px;
    background: #fff;
    text-align: center;
}

.team-img-simple {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 1200px) {
    .inner-page-banner h1 {
        font-size: 3rem;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .inner-page-banner h1 {
        font-size: 2.5rem;
    }
    
    .inner-page-banner {
        padding: 140px 0 100px !important;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .section-title-center h3 {
        font-size: 2.2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 50px auto 0;
    }
}

@media (max-width: 768px) {
    .inner-page-banner h1 {
        font-size: 2rem;
    }
    
    .inner-page-banner p {
        font-size: 1rem;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .section-title-center h3 {
        font-size: 1.8rem;
    }
    
    .feature-box-modern {
        padding: 30px 20px;
    }
    
    .mission-card, .vision-card {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .inner-page-banner {
        padding: 120px 0 80px !important;
    }
    
    .inner-page-banner h1 {
        font-size: 1.8rem;
    }
    
    .about-section, .core-values-section, 
    .mission-vision-section, .industries-section,
    .team-section, .leadership-section {
        padding: 70px 0;
    }
    
    .about-title {
        font-size: 1.6rem;
    }
    
    .team-img {
        height: 250px;
    }
    
    .leader-img {
        width: 150px;
        height: 150px;
    }
}
.team-section {
    padding:50px 0;
    background: #ffffff;
}

.team-card-simple {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 25px 15px;
    transition: 0.3s;
}

.team-card-simple:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.team-img-simple {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.team-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 3px;
}

.team-role {
    font-size: 0.95rem;
    color: #cc0000;
    font-weight: 600;
}
.team-auto-scroll {
    overflow: hidden;
    position: relative;
}

.team-track {
    display: flex;
    gap: 20px;
    animation: teamSlide 25s linear infinite;
    padding: 10px 0;
}

.team-track:hover {
    animation-play-state: paused;
    cursor: grab;
}

.team-card-simple {
    flex: 0 0 230px;
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 12px;
    text-align: center;
    padding: 18px;
    white-space: normal;
}
    
.team-img-simple {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 12px;
}

.team-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.team-role {
    color: #cc0000;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Auto Scroll Keyframes */
@keyframes teamSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.team-scroll {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    padding-bottom: 5px;
}

.team-scroll::-webkit-scrollbar {
    display: none;
}

.team-card-simple {
    flex: 0 0 230px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    text-align: center;
    padding: 18px;
}

.team-img-simple {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}


/* ================= PRODUCTS PAGE CSS ================= */

/* Category Cards */
.products-categories-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.category-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.category-card {
    background: white;
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(204,0,0,0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), #ff3333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: rotate(15deg) scale(1.1);
}

.category-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.category-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.category-badge {
    display: inline-block;
    background: rgba(204,0,0,0.1);
    color: var(--primary-red);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Featured Products */
.featured-products-section {
    padding: 80px 0;
}

.product-card-featured {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card-featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(204,0,0,0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-red);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-featured:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-featured:hover .product-overlay {
    opacity: 1;
}

.btn-view-details {
    background: var(--primary-red);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    background: #b30000;
    transform: scale(1.05);
    color: white;
}

.product-content {
    padding: 25px;
}

.product-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.product-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.product-specs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.product-specs span {
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #555;
}

.btn-get-quote {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.btn-get-quote:hover {
    background: #b30000;
    color: white;
}

/* Product Detail Sections */
.product-detail-section {
    padding: 80px 0;
}

.product-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.features-list {
    margin: 20px 0;
}

.feature-item {
    margin-bottom: 10px;
    color: #555;
    font-size: 1.05rem;
}

/* Product Type Cards */
.product-type-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.product-type-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.type-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.product-type-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.product-type-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.product-type-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.product-type-card ul li {
    margin-bottom: 8px;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.product-type-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* Specifications Table */
.specifications-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.spec-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.spec-table th {
    background: var(--primary-dark) !important;
    color: white;
    font-weight: 600;
    padding: 20px 15px;
    border: none;
}

.spec-table td {
    padding: 15px;
    vertical-align: middle;
    border-color: #eee;
}

.spec-table tbody tr:hover {
    background-color: rgba(204,0,0,0.05);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .product-image {
        height: 200px;
    }
    
    .product-image-container img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .products-categories-section,
    .featured-products-section,
    .product-detail-section,
    .specifications-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .category-card,
    .product-card-featured,
    .product-type-card {
        margin-bottom: 30px;
    }
    
    .product-specs {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .category-card {
        padding: 30px 20px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .product-content {
        padding: 20px;
    }
}
/* ================= VISION SECTION ================= */
.vision-section {
    padding: 50px 0;
    background: linear-gradient(135deg, 
                rgba(204, 0, 0, 0.05) 0%, 
                rgba(255, 255, 255, 0.9) 50%, 
                rgba(204, 0, 0, 0.05) 100%);
    position: relative;
    overflow: hidden;
}


.vision-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, 
                rgba(204, 0, 0, 0.1) 0%, 
                transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.vision-text {
    position: relative;
    z-index: 2;
    padding-right: 30px;
}

.vision-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.vision-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, 
                var(--primary-red), 
                transparent);
    border-radius: 3px;
}

.vision-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    position: relative;
    padding-left: 30px;
    border-left: 4px solid var(--primary-red);
}

.vision-desc::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 5rem;
    color: rgba(204, 0, 0, 0.1);
    font-family: serif;
    font-weight: bold;
    line-height: 1;
}

.vision-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.vision-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(204,0,0,0.1);
    transition: all 0.3s ease;
}

.vision-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(204,0,0,0.15);
    border-color: var(--primary-red);
}

.vision-feature i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.vision-feature span {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.vision-img-container {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.vision-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    transform: perspective(1000px) rotateY(-10deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 8px solid white;
}

.vision-img-container:hover .vision-img {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    box-shadow: 0 35px 70px rgba(204,0,0,0.2);
}

.vision-img-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: linear-gradient(135deg, 
                var(--primary-red), 
                #ff3333);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 15px 30px rgba(204,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.vision-img-badge i {
    font-size: 1.5rem;
}

/* Floating elements */
.vision-floating {
    position: absolute;
    z-index: 1;
}

.floating-1 {
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    border: 3px solid rgba(204,0,0,0.2);
    border-radius: 50%;
    animation: floatVision 6s ease-in-out infinite;
}

.floating-2 {
    bottom: 30%;
    left: 5%;
    width: 60px;
    height: 60px;
    background: rgba(204,0,0,0.1);
    border-radius: 20px;
    transform: rotate(45deg);
    animation: floatVision 8s ease-in-out infinite reverse;
}

@keyframes floatVision {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
    .vision-title {
        font-size: 2.5rem;
    }
    
    .vision-desc {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .vision-section {
        padding: 80px 0;
    }
    
    .vision-text {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .vision-title::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .vision-desc {
        padding-left: 0;
        border-left: none;
        border-top: 4px solid var(--primary-red);
        padding-top: 20px;
    }
    
    .vision-desc::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .vision-features {
        justify-content: center;
    }
    
    .vision-img {
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }
    
    .vision-img-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }
}

@media (max-width: 768px) {
    .vision-title {
        font-size: 2rem;
    }
    
    .vision-desc {
        font-size: 1rem;
    }
    
    .vision-features {
        flex-direction: column;
        align-items: center;
    }
    
    .vision-feature {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .vision-section {
        padding: 60px 0;
    }
    
    .vision-title {
        font-size: 1.8rem;
    }
    
    .vision-desc::before {
        font-size: 4rem;
    }
    
    .vision-img {
        max-width: 300px;
    }
    
    .vision-img-badge {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
