        /* Reset and Base Styles */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Calibre', 'Inter', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #333;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img, video {
            max-width: 100%;
            height: auto;
        }

        /* Container for consistent max-width */
        .container {
            width: 100%;
            max-width: 1200px;
            padding: 0 20px;
            margin: 0 auto;
        }

        /* Header */
        .header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 5%;
            background: #fff;
            width: 100%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1001;
            min-height: 80px;
        }

        .logo img {
            height: 60px;
            width: auto;
        }

        /* Navigation */
        .nav-container {
            display: flex;
            justify-content: center;
            flex: 1;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: clamp(15px, 2.5vw, 30px);
        }

        .nav-links a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 600;
            transition: color 0.3s;
            white-space: nowrap;
            position: relative;
            padding: 8px 4px;
            font-size: clamp(14px, 1.6vw, 18px);
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 0;
            background-color: #e67e22;
            transition: width 0.3s ease;
            border-radius: 10px;
        }

        .nav-links a:hover {
            color: #e67e22;
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        /* Buttons */
        .lets-talk-btn {
            background: linear-gradient(90deg, #e67e22 0%, #d35400 100%);
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(230, 126, 34, 0.25);
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .lets-talk-btn:hover {
            background: linear-gradient(90deg, #d35400 0%, #e67e22 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(230, 126, 34, 0.35);
        }

        .btn {
            padding: 14px 30px;
            border: none;
            outline: none;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s ease;
            text-align: center;
            display: inline-block;
        }

        .btn-dark {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid #fff;
        }

        .btn-dark:hover {
            background: white;
            color: black;
        }

        .btn-orange {
            background: #ff6600;
            color: white;
        }

        .btn-orange:hover {
            background: #e65c00;
            transform: translateY(-2px);
        }

        /* Hamburger Menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
            position: relative;
        }

        .menu-toggle span {
            width: 100%;
            height: 3px;
            background-color: #2c3e50;
            border-radius: 2px;
            transition: all 0.3s;
            transform-origin: center;
        }

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

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

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

        .mobile-logo {
            display: none;
            padding: 20px;
            border-bottom: 1px solid #f0f0f0;
            margin-bottom: 10px;
            text-align: center;
        }

        .mobile-logo img {
            height: 50px;
            width: auto;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 85vh;
            width: 100%;
            background: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1350&q=80") no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            color: white;
            padding: 0 5%;
            margin-top: 0;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        .hero-content {
            position: relative;
            max-width: 650px;
            z-index: 2;
            width: 100%;
        }

        .hero-content h5 {
            font-size: clamp(14px, 2vw, 16px);
            font-weight: 400;
            letter-spacing: 2px;
            margin-bottom: 20px;
            text-transform: uppercase;
            color: #ff9f43;
        }

        .hero-content h1 {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .hero-content .buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        /* Content Section */
        .content-section {
            padding: 80px 5%;
            text-align: center;
            width: 100%;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin: 40px 0;
        }

        .content-section h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: clamp(28px, 4vw, 40px);
        }

        .content-section p {
            color: #7f8c8d;
            font-size: clamp(16px, 2vw, 18px);
            max-width: 700px;
            margin: 0 auto 30px;
            line-height: 1.8;
        }

        /* Services Section */
        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
            gap: 30px;
            width: 100%;
            padding: 60px 5%;
        }

        .service-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

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

        .service-img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
        }

        .service-content {
            padding: 25px;
        }

        .service-content h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .service-content p {
            color: #7f8c8d;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .read-more {
            display: inline-block;
            color: #e67e22;
            font-weight: 600;
            transition: color 0.3s;
        }

        .read-more:hover {
            color: #d35400;
        }

        /* About Section */
        .about-section {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin: 40px 0;
        }

        .about-img {
            flex: 1;
            min-width: 300px;
        }

        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 400px;
        }

        .about-content {
            flex: 1;
            padding: 60px;
            min-width: 300px;
        }

        .about-content h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: clamp(28px, 4vw, 40px);
        }

        .about-content p {
            color: #7f8c8d;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        /* Stats Section */
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
            gap: 20px;
            width: 100%;
            padding: 60px 5%;
        }

        .stat-item {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .stat-number {
            font-size: clamp(2.5rem, 5vw, 3rem);
            font-weight: 700;
            color: #e67e22;
            margin-bottom: 10px;
        }

        .stat-text {
            color: #7f8c8d;
            font-size: 1.1rem;
        }

        /* Testimonials */
        .testimonials {
            width: 100%;
            padding: 60px 5%;
        }

        .testimonial-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .testimonial-header h2 {
            color: #2c3e50;
            font-size: clamp(28px, 4vw, 40px);
            margin-bottom: 20px;
        }

        .testimonial-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .testimonial-text {
            color: #7f8c8d;
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.8;
        }

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

        .author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .author-info p {
            color: #7f8c8d;
            font-size: 0.9rem;
        }

        /* Contact Section */
        .contact-section {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin: 40px 0;
        }

        .contact-info {
            flex: 1;
            padding: 60px;
            background: #2c3e50;
            color: white;
            min-width: 300px;
        }

        .contact-info h2 {
            margin-bottom: 30px;
            font-size: clamp(28px, 4vw, 40px);
        }

        .contact-details {
            margin-bottom: 40px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .contact-text {
            flex: 1;
        }

        /* Map section */
        .contact-map {
            margin-top: 30px;
        }
        
        .contact-map h4 {
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        .map-container {
            height: 250px;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .contact-form {
            flex: 1;
            padding: 60px;
            min-width: 300px;
        }

        .contact-form h2 {
            color: #2c3e50;
            margin-bottom: 30px;
            font-size: clamp(28px, 4vw, 40px);
        }

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

        .form-group label {
            display: block;
            color: #2c3e50;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            transition: border-color 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: #e67e22;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(90deg, #e67e22 0%, #d35400 100%);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            max-width: 200px;
        }

        .submit-btn:hover {
            background: linear-gradient(90deg, #d35400 0%, #e67e22 100%);
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            width: 100%;
            background: #2c3e50;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
            gap: 40px;
            width: 100%;
            max-width: 1200px;
            margin: auto;
            padding: 0 20px;
        }

        .footer-logo img {
            height: 90px;
            margin-bottom: 20px;
        }

        .footer-about p {
            color: #bdc3c7;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer-heading {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: white;
        }

        .footer-links {
            list-style: none;
        }

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

        .footer-links a {
            color: #bdc3c7;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #e67e22;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
            color: whitesmoke;
        }

        .social-icon:hover {
            background: #e67e22;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bdc3c7;
            width: 100%;
            max-width: 1200px;
            margin: 40px auto 0;
            padding: 30px 20px 0;
        }

        /* Recent Projects Video Section */
        .projects-section {
            width: 100%;
            padding: 60px 5%;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin: 40px 0;
        }

        .projects-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .projects-header h2 {
            color: #2c3e50;
            font-size: clamp(28px, 4vw, 40px);
            margin-bottom: 15px;
        }

        .projects-header p {
            color: #7f8c8d;
            font-size: clamp(16px, 2vw, 18px);
            max-width: 600px;
            margin: 0 auto;
        }

        .projects-video-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .video-card {
            background: #f8f9fa;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            overflow: hidden;
        }

        .video-wrapper video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(230, 126, 34, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0.9;
        }

        .play-btn:hover {
            background: rgba(230, 126, 34, 1);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-info {
            padding: 25px;
        }

        .video-info h3 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .video-info p {
            color: #7f8c8d;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .project-date {
            display: inline-block;
            background: #e67e22;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .projects-cta {
            text-align: center;
        }

        /* Business Divisions Section */
        .business-divisions {
            width: 100%;
            padding: 60px 5%;
        }

        .divisions-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .divisions-header h2 {
            color: #2c3e50;
            font-size: clamp(28px, 4vw, 40px);
            margin-bottom: 15px;
        }

        .divisions-header p {
            color: #7f8c8d;
            font-size: clamp(16px, 2vw, 18px);
            max-width: 600px;
            margin: 0 auto;
        }

        .divisions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
            gap: 30px;
        }

        .division-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .division-card:hover {
            transform: translateY(-10px);
        }

        .division-img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
        }

        .division-content {
            padding: 30px;
        }

        .division-content h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .division-content p {
            color: #7f8c8d;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        /* Overlay for mobile menu */
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        .overlay.active {
            display: block;
        }

        /* Media Queries */
        @media screen and (max-width: 1024px) {
            .header {
                padding: 15px 20px;
            }
            
            .hero {
                padding: 0 30px;
            }
            
            .about-content, .contact-info, .contact-form {
                padding: 40px;
            }
        }

        @media screen and (max-width: 768px) {
            .header {
                min-height: 70px;
                padding: 10px 15px;
            }

            .logo {
                order: 1;
            }

            .logo img {
                height: 45px;
            }

            .nav-container {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: white;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                transition: right 0.3s ease;
                z-index: 1000;
                display: block;
                padding-top: 0;
                flex: none;
                overflow-y: auto;
            }

            .nav-container.active {
                right: 0;
            }

            .mobile-logo {
                display: block;
            }

            .nav-links {
                flex-direction: column;
                gap: 0;
                width: 100%;
                padding: 0 0 20px 0;
            }

            .nav-links a {
                display: block;
                padding: 15px 20px;
                border-bottom: 1px solid #f0f0f0;
                font-size: 16px;
                width: 100%;
            }

            .nav-links a:last-child {
                border-bottom: none;
            }

            .nav-links a:after {
                display: none;
            }

            .menu-toggle {
                display: flex;
                order: 3;
            }

            .lets-talk-btn {
                margin-left: auto;
                margin-right: 15px;
                order: 2;
                padding: 10px 20px;
                font-size: 14px;
            }

            .hero {
                padding: 0 20px;
                min-height: 70vh;
                text-align: center;
                justify-content: center;
            }

            .hero-content {
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .hero-content h1 {
                font-size: 32px;
            }

            .hero-content .buttons {
                flex-direction: column;
                width: 100%;
                max-width: 300px;
            }

            .content-section {
                padding: 60px 20px;
                margin: 30px 20px;
            }

            .about-content, .contact-info, .contact-form {
                padding: 30px;
            }
            
            .contact-map {
                margin-top: 20px;
            }
            
            .map-container {
                height: 200px;
            }
            
            /* Fix for footer alignment on mobile */
            .footer-content {
                grid-template-columns: 1fr;
                text-align: left; /* Changed from center to left */
            }
            
            .footer-social {
                justify-content: flex-start; /* Changed from center to flex-start */
            }
        }

        @media screen and (max-width: 480px) {
            .header {
                min-height: 60px;
                padding: 10px;
            }

            .logo img {
                height: 40px;
            }

            .lets-talk-btn {
                padding: 8px 16px;
                font-size: 13px;
                margin-right: 10px;
            }

            .hero-content h1 {
                font-size: 28px;
            }

            .hero-content h5 {
                font-size: 14px;
            }

            .nav-container {
                width: 85%;
                right: -85%;
            }

            .mobile-logo img {
                height: 40px;
            }

            .btn {
                padding: 12px 20px;
                font-size: 14px;
                width: 100%;
            }

            .about-content, .contact-info, .contact-form {
                padding: 20px 15px;
            }

            .stat-number {
                font-size: 2.5rem;
            }
            
            .contact-map h4 {
                font-size: 1.1rem;
            }
            
            .map-container {
                height: 180px;
            }
            
            .projects-header h2 {
                font-size: 2rem;
            }
            
            .video-info {
                padding: 20px;
            }
            
            .play-btn {
                width: 50px;
                height: 50px;
                font-size: 18px;
            }
            
            .divisions-header h2 {
                font-size: 2rem;
            }
            
            .submit-btn {
                width: 100%;
                max-width: none;
            }
        }

        /* Prevent body scroll when menu is open */
        body.no-scroll {
            overflow: hidden;
        }