/* --- GLOBAL STYLES --- */
        body {
            font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            overflow-x: hidden;
            color: #333;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; padding: 0; margin: 0; }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .flex-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* --- TOP BAR --- */
        .top-bar {
            background-color: #1568a8;
            padding: 10px 0;
            font-size: 14px;
            border-bottom: 1px solid #eee;
        }
        .top-bar .container { display: flex; justify-content: space-between; }
        .contact-info span, .contact-info a { margin-right: 20px; color: #fff; display: inline-flex; align-items: center; }
        .contact-info .icon { color: #fff; margin-right: 8px; }
        
        @media(max-width: 768px) {
            .top-bar {
                padding: 8px 0;
                font-size: 12px;
            }
            .top-bar .container {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }
            .contact-info {
                display: flex;
                flex-direction: column;
                gap: 5px;
                width: 100%;
            }
            .contact-info span,
            .contact-info a {
                margin-right: 0;
                font-size: 11px;
                justify-content: center;
            }
        }

        /* --- NAVIGATION --- */
        .navigation {
            background: white;
            padding: 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 70px; /* Explicitly set height for the header */
        }
        .navigation .container {
            position: relative; /* For mobile menu positioning */
        }
        .logo-container { display: flex; align-items: center; }
        .logo-img {
            height: 70px;
            width: auto;
        }



        .desktop-menu a {
            margin-left: 25px;
            font-weight: 500;
            color: #333;
            transition: color 0.3s;
        }
        .desktop-menu a:hover { color: #2196F3; }
        
        .mobile-menu-button {
            display: none;
            border: none;
            background: none;
            cursor: pointer;
            padding: 8px;
        }
        .mobile-menu-button button {
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
        }
        .mobile-menu-button i {
            font-size: 24px;
            color: #333;
        }
        #mobile-menu {
            display: none;
            background: white;
            padding: 0;
            border-top: 1px solid #eee;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            width: 100%;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 999;
            animation: slideDown 0.3s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        #mobile-menu a {
            display: block;
            padding: 15px 20px;
            border-bottom: 1px solid #f0f0f0;
            color: #333;
            font-weight: 500;
            transition: background 0.3s, color 0.3s;
        }
        #mobile-menu a:hover,
        #mobile-menu a:active {
            background: linear-gradient(90deg, rgba(21, 104, 168, 0.1) 0%, rgba(21, 162, 103, 0.1) 100%);
            color: #1568a8;
            padding-left: 25px;
        }
        #mobile-menu a:last-child {
            border-bottom: none;
        }
        #mobile-menu.hidden { display: none; }

        @media(max-width: 768px) {
            .desktop-menu { display: none; }
            .mobile-menu-button { display: block; }
            #mobile-menu:not(.hidden) { display: block; }
            .navigation .container { padding: 5px 15px; }
            .logo-img { height: 70px; }
            .navigation { height: 80px; }
            .flex-container { padding: 5px 0; }
        }

        @media(max-width: 480px) {
            .logo-img { height: 65px; }
            .navigation { height: 75px; }
            .hero-section { height: calc(100vh - 75px); }
        }

        /* --- HERO CAROUSEL SECTION --- */
        .hero-section {
            position: relative;
            height: calc(100vh - 70px); /* screen height - header section height */
            min-height: 500px;
            overflow: hidden;
            color: white;
            margin-top: 0;
            padding-bottom: 0; /* Removed padding under hero section */
        }        .carousel-container {
            height: 100%;
            position: relative;
        }

        .carousel-slide {
            display: none; /* Hidden by default */
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* For JavaScript controlled slide-in effect */
            transition: transform 0.5s ease-out, opacity 0.5s ease-out;
            transform: translateY(0); /* Default position */
            opacity: 1; /* Default opacity */
        }

        .carousel-slide.slide-active {
            display: block;
        }

        .carousel-slide.slide-enter {
            transform: translateY(-100%);
            opacity: 0;
        }
        
        /* Background Images for Slides */
        .slide-bg {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: absolute;
            z-index: 1;
        }

        /* Dark Overlay */
        .slide-bg::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6); /* Darkens the image */
        }

        /* Slide 1: Construction Management - Cranes/Site */
        .slide-1 .slide-bg {
            background-image: url('images/hero/slide1.jpg');
        }
        
        /* Slide 2: Technical Support - Schematics/Electrical */
        .slide-2 .slide-bg {
            background-image: url('images/hero/slide2.jpg');
        }

        /* Slide 3: Heavy Equipment Rental - Machinery */
        .slide-3 .slide-bg {
            background-image: url('images/hero/slide3.jpg');
        }

        /* Slide 4: General Contracting */
        .slide-4 .slide-bg {
            background-image: url('images/hero/slide4.jpg');
        }

        /* Slide 5: Industrial Support */
        .slide-5 .slide-bg {
            background-image: url('images/hero/slide5.jpg');
        }

        .hero-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center; /* Center vertically */
            align-items: center; /* Center horizontally */
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        .hero-content h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-content p {
            font-size: 18px;
            max-width: 700px;
            margin-bottom: 30px;
            line-height: 1.6;
            font-weight: 300;
            text-align: justify;
        }

        .hero-btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(90deg, #1568a8 0%, #15a267 100%); /* Teal gradient */
            color: white;
            border-radius: 4px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: transform 0.2s;
            width: fit-content;
        }

        .hero-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        }

        @media(max-width: 768px) {
            .hero-content h1 { font-size: 32px; }
            .hero-content { padding-bottom: 50px; }
        }

        /* Hide Arrows */
        .prev, .next { display: none !important; }


        /* --- SECTIONS COMMON --- */
        section { padding: 0 0 80px 0; }
        .section-header { margin-bottom: 50px; }
        .section-header h4 { color: #2196F3; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
        .section-header h2 { font-size: 36px; margin: 0 0 20px 0; color: #333; }
        .divider { height: 4px; width: 60px; background: #2196F3; }

        @media(max-width: 768px) {
            section { padding: 0 0 50px 0; }
            .section-header { margin-bottom: 30px; }
            .section-header h4 { font-size: 14px; }
            .section-header h2 { font-size: 28px; }
        }

        @media(max-width: 480px) {
            .section-header h2 { font-size: 24px; }
        }

        /* --- ABOUT SECTION --- */
          
        .about-section-new {
            background: linear-gradient(rgba(0, 77, 64, 0.9), rgba(0, 77, 64, 0.9)), url('images/about.jpg');
            background-size: cover;
            background-attachment: fixed;
            padding: 80px 0;
            color: white;
            position: relative;
        }

        .about-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
            z-index: 0;
        }

        .about-content {
            position: relative;
            z-index: 1;
        }

        .about-content {
            position: relative;
            z-index: 1;
        }

        /* Styles for Row 2 (Image and Text) */
        .about-row-2 {
            display: flex;
            gap: 40px;
            align-items: flex-start;
            margin-bottom: 50px;
        }

        .about-image-col {
            flex: 0 0 40%; /* 40% width for the image column */
        }

        .about-image-col img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .about-text-col {
            flex: 1; /* Takes up remaining space */
            color: #eee;
            line-height: 1.8;
            font-size: 16px;
        }

        .about-text-col p {
            margin-bottom: 15px;
            text-align: justify;
        }

        /* Styles for Row 3 (Two columns of bullet points) */
        .about-row-3 {
            display: flex;
            gap: 40px;
        }

        .about-list-col {
            flex: 1;
        }

        .about-list-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .about-list-col ul li {
            padding-left: 25px;
            position: relative;
            margin-bottom: 10px;
            font-size: 15px;
            line-height: 1.6;
            color: #eee;
        }

        .about-list-col ul li i {
            position: absolute;
            left: 0;
            top: 5px; /* Adjust vertical alignment of icon */
            color: #26a69a; /* Teal color for checkmark */
        }
        
        /* Media Queries for Responsiveness */
        @media(max-width: 992px) {
            .about-row-2 {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .about-image-col {
                flex: 0 0 80%; /* Wider image on smaller screens */
                margin-bottom: 30px;
            }

            .about-row-3 {
                flex-direction: column;
            }
        }

        /* CTA SECTION */
        .cta-section {
            background: #1a1a1a;
            color: white;
            padding: 60px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 16px;
            max-width: 700px;
            margin: 0 auto 30px;
            color: #ddd;
            text-align: justify;
        }

        .btn {
            background: linear-gradient(135deg, #1568a8 0%, #15a267 100%);
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            display: inline-block;
            transition: transform 0.3s;
        }

        .btn:hover {
            transform: translateY(-2px);
        }
        
        .btn i {
            margin-right: 10px;
        }
        
        /* --- GALLERY SECTION --- */
        .gallery-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }
        
        
        /* --- SERVICES SECTION --- */
        .services-section { background: #f8fafc; padding: 60px 0; }
        .services-grid {
            display: grid;            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        /* --- CLIENTS SECTION --- */
        .clients-section { background: white; overflow: hidden; padding: 60px 0; }
        .scrolling-container { width: 100%; overflow: hidden; white-space: nowrap; position: relative; padding: 40px 0; }
        .scrolling-wrapper { display: inline-block; animation: scroll 30s linear infinite; }
        .logo-strip { display: inline-block; }
        .logo-strip img { height: 240px; width: 240px; object-fit: contain; margin: 0 30px; opacity: 1; transition: all 0.6s; }
        .logo-strip img:hover { filter: grayscale(0); }        
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); } /* Move half width since we duplicated content */
        }

        /* --- CLIENTS RESPONSIVE --- */
        @media(max-width: 768px) {
            .logo-strip img {
                height: 120px;
                width: 120px;
                margin: 0 15px;
            }
            .scrolling-container {
                padding: 20px 0;
            }
            .services-section {
                padding: 40px 0;
            }
            .clients-section {
                padding: 40px 0;
            }
        }

        @media(max-width: 480px) {
            .logo-strip img {
                height: 80px;
                width: 80px;
                margin: 0 10px;
            }
        }

        /* --- Combined Sections Wrapper --- */
        .combined-sections-wrapper {
            display: flex;
            flex-direction: column;
            /* Removed fixed height and overflow to allow natural page flow */
        }


        /* --- CTA SECTION --- */
        .cta-section {
            background: linear-gradient(rgba(0, 77, 64, 0.9), rgba(0, 77, 64, 0.9)), url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-attachment: fixed;
            color: white;
            text-align: center;
        }
        .cta-section h2 { font-size: 36px; margin-bottom: 20px; }
        .cta-section p { max-width: 600px; margin: 0 auto 40px; font-size: 18px; opacity: 0.9; }
        .cta-section .btn {
            background: white;
            color: #004d40;
            padding: 15px 40px;
            border-radius: 30px;
            font-weight: bold;
            transition: transform 0.3s;
            display: inline-block;
        }
        .cta-section .btn:hover { transform: scale(1.05); }

        /* --- CONTACT SECTION --- */
        .contact-section { background: #f8fafc; padding: 80px 0;}
        .contact-section .flex-container { align-items: flex-start; gap: 50px; }
        .contact-info-container { flex: 1; }
        .contact-item { display: flex; gap: 20px; margin-bottom: 30px; }
        .contact-item .icon-container {
            width: 50px; height: 50px; background: white; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: #2196F3; box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .contact-item h5 { margin: 0 0 5px 0; font-size: 18px; color: #333; }
        .contact-item p { margin: 0; color: #666; text-align: justify;}

        .contact-form-container {
            flex: 1;
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; color: #555; font-weight: 500; }
        .form-group input, .form-group textarea {
            width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px;
            font-family: inherit; outline: none; transition: border-color 0.3s;
        }
        .form-group input:focus, .form-group textarea:focus { border-color: #2196F3; }
        .form-group textarea { height: 120px; resize: vertical; }
        .submit-btn {
            background: linear-gradient(90deg, #1568a8 0%, #15a267 100%); color: white; border: none; padding: 15px 30px;
            border-radius: 4px; font-weight: 600; cursor: pointer; width: 100%;
            transition: background 0.3s;
        }
        .submit-btn:hover { background: #1976D2; }

        @media(max-width: 768px) {
            .contact-section .flex-container {
                flex-direction: column;
                align-items: center;
            }
            .contact-info-container {
                width: 100%;
                text-align: center;
            }
            .contact-item {
                justify-content: center;
            }
            .contact-form-container {
                width: 100%;
                max-width: 500px;
            }
            .form-grid { grid-template-columns: 1fr; }
        }

        /* --- FOOTER --- */
        .footer { background: #1e293b; color: white; padding: 80px 0 20px; }
        .footer-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px; margin-bottom: 60px;
        }
        .footer h2 span { color: #2196F3; }
        .footer p { color: #94a3b8; line-height: 1.6; text-align: justify; }
        .footer h4 { color: white; margin-bottom: 25px; font-size: 18px; }
        .links-list li, .contact-list li { margin-bottom: 15px; color: #94a3b8; }
        .links-list a:hover { color: #2196F3; }
        .contact-list i { margin-right: 10px; color: #2196F3; }
        .footer-bottom {
            border-top: 1px solid #334155; padding-top: 20px;
            text-align: center; color: #64748b; font-size: 14px;
        }
        .footer-bottom p {
            text-align: center;
        }

/* --- NEW SERVICES SECTION --- */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    /* Removed padding-bottom as scrollbar is no longer needed */
}

.service-card-new {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 300px; /* Or other fixed height */
    /* Removed min-width to allow cards to shrink responsively */
}

.service-card-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-new:hover img {
    transform: scale(1.1);
}

.service-card-new .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
}

.service-card-new:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.details-btn {
    padding: 10px 20px;
    background: linear-gradient(90deg, #1568a8 0%, #15a267 100%);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.details-btn:hover {
    background: #1976D2;
}

/* --- SERVICES RESPONSIVE --- */
@media(max-width: 1024px) {
    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media(max-width: 768px) {
    .services-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-card-new {
        height: 250px;
    }
    .overlay h3 {
        font-size: 20px;
    }
}

/* --- MODAL STYLES --- */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}


.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 900px;
    border-radius: 8px;
    position: relative;
    animation: slide-down 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('images/Gallery.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}




.modal-img {
    margin-bottom: 20px;
    max-width: 60%; /* Reduce image size */
    margin-left: auto;
    margin-right: auto;
}

.modal-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.modal-text {
    color: #333; /* Darker text for better readability */
}

.modal-text h2 {
    font-weight: bold;
}

.modal-text ul {
    list-style-type: disc;
    padding-left: 20px;
}

.modal-text ul li {
    margin-bottom: 10px;
}

@keyframes slide-down {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-btn {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.about-section-redesigned {
    background: linear-gradient(rgba(0, 77, 64, 0.9), rgba(0, 77, 64, 0.9)), url('IMAGES/banner-1.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: white;
    height: 100vh;
    padding-top: 0; /* Removed padding above about us section */
    padding-bottom: 0; /* Ensure no extra padding */
}

.about-flex-container {
    display: flex;
    gap: 40px;
}

.about-text-container {
    flex: 1;
}



