        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #003d82;
            --secondary: #1b5e9f;
            --accent: #d4a574;
            --light-bg: #f8fafc;
            --text-dark: #1a2332;
            --text-light: #546e7a;
            --border-light: #e0e6ed;
            --white: #ffffff;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ==================== NAVBAR ==================== */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .logo span {
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 14px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--secondary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

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

        .cta-btn {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--white);
            padding: 12px 28px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 61, 130, 0.3);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--primary);
            font-size: 24px;
            cursor: pointer;
        }

        /* ==================== HERO SECTION ==================== */
        .hero {
            background: linear-gradient(135deg, rgba(0, 61, 130, 0.85) 0%, rgba(27, 94, 159, 0.85) 100%), 
                        url('./assets/images/1.jpg') center/cover;
            background-attachment: fixed;
            color: var(--white);
            padding: 200px 20px 100px;
            text-align: center;
            margin-top: 80px;
            min-height: calc(100vh - 80px);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 800px;
            position: relative;
            z-index: 1;
            animation: fadeInUp 0.8s ease;
        }

        .hero h1 {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            letter-spacing: -1px;
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.95;
            font-weight: 400;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--primary);
            padding: 16px 40px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            border: 2px solid var(--accent);
            transition: all 0.3s ease;
            cursor: pointer;
            font-size: 15px;
        }

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

        .btn-secondary {
            background: transparent;
            color: var(--white);
            padding: 16px 40px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            border: 2px solid var(--white);
            transition: all 0.3s ease;
            cursor: pointer;
            font-size: 15px;
        }

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

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ==================== ABOUT SECTION ==================== */
        .about {
            padding: 100px 20px;
            background: var(--light-bg);
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .section-header h2 {
            font-size: 42px;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .section-header p {
            font-size: 16px;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

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

        .about-content h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .about-content p {
            font-size: 15px;
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .about-values {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }

        .value-card {
            background: var(--white);
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid var(--accent);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

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

        .value-card h4 {
            font-size: 16px;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .value-card p {
            font-size: 13px;
            color: var(--text-light);
        }

        .about-image {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            height: 600px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 18px;
            text-align: center;
            padding: 40px;
        }

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

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

        .service-card {
            background: var(--light-bg);
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
            border-top: 4px solid transparent;
        }

        .service-card:hover {
            background: var(--white);
            border-top-color: var(--accent);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
            color: var(--white);
        }

        .service-card h3 {
            font-size: 18px;
            margin-bottom: 12px;
            color: var(--primary);
        }

        .service-card p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* ==================== INDUSTRIES SECTION ==================== */
        .industries {
            padding: 100px 20px;
            background: var(--light-bg);
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
        }

        .industry-item {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid var(--border-light);
        }

        .industry-item:hover {
            border-color: var(--accent);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            background: linear-gradient(135deg, rgba(0, 61, 130, 0.05) 0%, rgba(27, 94, 159, 0.05) 100%);
        }

        .industry-item h3 {
            font-size: 16px;
            color: var(--primary);
            font-weight: 600;
        }

        /* ==================== PROJECTS SECTION ==================== */
        .projects {
            padding: 100px 20px;
            background: var(--white);
        }

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

        .project-card {
            background: var(--light-bg);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .project-card:hover {
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            transform: translateY(-8px);
        }

        .project-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 16px;
            text-align: center;
            padding: 20px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .project-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 61, 130, 0.5);
            z-index: 1;
        }

        .project-image div {
            position: relative;
            z-index: 2;
        }

        .project-content {
            padding: 30px;
        }

        .project-content h3 {
            font-size: 18px;
            margin-bottom: 12px;
            color: var(--primary);
        }

        .project-content p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag {
            background: rgba(0, 61, 130, 0.1);
            color: var(--primary);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        /* ==================== TEAM SECTION ==================== */
        .team {
            padding: 100px 20px;
            background: var(--light-bg);
        }

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

        .capability-box {
            background: var(--white);
            padding: 35px;
            border-radius: 10px;
            border-bottom: 4px solid var(--accent);
            transition: all 0.3s ease;
        }

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

        .capability-box h3 {
            font-size: 18px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .capability-box p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* ==================== CONTACT SECTION ==================== */
        .contact {
            padding: 100px 20px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--white);
        }

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

        .contact-content h2 {
            font-size: 42px;
            margin-bottom: 30px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
            margin-top: 50px;
        }

        .contact-item h3 {
            font-size: 16px;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .contact-item p {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .contact-item a {
            color: var(--accent);
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .contact-item a:hover {
            opacity: 0.8;
        }

        /* ==================== FOOTER ==================== */
        .footer {
            background: #0a2540;
            color: var(--white);
            padding: 50px 20px 20px;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-top {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            text-align: left;
        }

        .footer-col h4 {
            margin-bottom: 15px;
            font-size: 16px;
        }

        .footer-col p {
            font-size: 13px;
            opacity: 0.8;
            line-height: 1.8;
        }

        .footer-divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.2);
            margin: 30px 0;
        }

        .footer-bottom {
            font-size: 13px;
            opacity: 0.8;
        }

        .footer-bottom p {
            margin: 5px 0;
        }

        /* ==================== RESPONSIVE ==================== */
        /* ==================== MODAL ==================== */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: var(--white);
            border-radius: 12px;
            max-width: 900px;
            width: 90%;
            max-height: 90vh;
            overflow: auto;
            position: relative;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px;
            border-bottom: 1px solid var(--border-light);
        }

        .modal-header h2 {
            color: var(--primary);
            font-size: 24px;
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 28px;
            color: var(--text-light);
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .modal-close:hover {
            color: var(--primary);
        }

        .carousel-container {
            position: relative;
            padding: 40px 20px;
            background: var(--light-bg);
        }

        .carousel-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 8px;
            display: none;
        }

        .carousel-image.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        .carousel-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
        }

        .carousel-btn {
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 12px 20px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .carousel-btn:hover {
            background: var(--secondary);
            transform: translateY(-2px);
        }

        .carousel-btn:disabled {
            background: var(--text-light);
            cursor: not-allowed;
            transform: none;
        }

        .carousel-counter {
            color: var(--text-dark);
            font-weight: 600;
            min-width: 80px;
            text-align: center;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--border-light);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: var(--primary);
            transform: scale(1.2);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                gap: 20px;
                font-size: 13px;
            }

            .menu-toggle {
                display: block;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                gap: 0;
                list-style: none;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links a {
                padding: 15px 20px;
                border-bottom: 1px solid var(--border-light);
            }

            .hero h1 {
                font-size: 38px;
            }

            .hero p {
                font-size: 16px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 300px;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-values {
                grid-template-columns: 1fr;
            }

            .section-header h2 {
                font-size: 32px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .project-gallery {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .footer-top {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .navbar-container {
                height: 70px;
            }

            .cta-btn {
                display: none !important;
            }

            .hero {
                padding: 150px 20px 80px;
                margin-top: 70px;
            }

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

            .hero p {
                font-size: 14px;
            }

            .section-header h2 {
                font-size: 28px;
            }

            .about-content h3 {
                font-size: 22px;
            }

            .service-card {
                padding: 25px 20px;
            }
        }