
        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #d4a017;
            --secondary: #1a365d;
            --accent: #2b6cb0;
            --light: #f8f9fa;
            --dark: #343a40;
            --gray: #6c757d;
        }

       

        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: #f9f9f9;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .btn {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 14px 30px;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

        .btn:hover {
            background: #b98c14;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

      

        .section-title p {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 700px;
            margin: 20px auto 0;
        }

        section {
            padding: 80px 0;
        }

        /* Header Styles */
         /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: #fff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo h1 {
            font-size: 28px;
            font-weight: 700;
            color: #2c3e50;
        }
        
        .logo span {
            color: #d4a017;
            font-weight: 800;
        }
        
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            width: 30px;
            height: 30px;
            cursor: pointer;
            z-index: 1001;
        }
        
        .menu-toggle span {
            display: block;
            height: 3px;
            width: 100%;
            background: #2c3e50;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 3px;
        }
        
        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        
        .main-nav {
            display: flex;
        }
        
        .main-nav nav ul {
            display: flex;
            list-style: none;
        }
        
        .main-nav nav ul li {
            position: relative;
        }
        
        .main-nav nav ul li a {
            display: flex;
            align-items: center;
            padding: 12px 16px;
            color: #2c3e50;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border-radius: 4px;
        }
        
        .main-nav nav ul li a:hover {
            color: #d4a017;
            background: #f8f9fa;
        }
        
        .main-nav nav ul li a i {
            margin-left: 5px;
            font-size: 12px;
        }
        
        /* Dropdown Styles */
        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            width: 220px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
            border-radius: 6px;
            overflow: hidden;
        }
        
        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-content a {
            padding: 12px 15px;
            border-bottom: 1px solid #f1f1f1;
            display: block;
            color: #444;
            font-weight: 500;
            transition: all 0.2s ease;
        }
        
        .dropdown-content a:hover {
            background: #f8f9fa;
            color: #d4a017;
            padding-left: 20px;
        }
        
        /* Mega Dropdown Styles */
        .mega-dropdown {
            position: static;
        }
        
        .mega-content {
            position: absolute;
            left: -300px;
            width: 1000px;
            background: #fff;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            display: flex;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
            border-radius: 6px;
        }
        
        .mega-dropdown:hover .mega-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .mega-column {
            flex: 1;
            padding: 0 15px;
        }
        
        .mega-column h4 {
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #d4a017;
            color: #2c3e50;
            font-size: 18px;
        }
        
        .mega-column a {
            display: block;
            padding: 10px 0;
            color: #555;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .mega-column a:hover {
            color: #d4a017;
            padding-left: 5px;
        }
        
        /* Mobile Styles - Completely reworked for better functionality */
        @media (max-width: 992px) {
            .mega-content {
                flex-wrap: wrap;
            }
            
            .mega-column {
                flex: 0 0 50%;
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }
            
            .main-nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 85%;
                height: 100vh;
                background: #fff;
                box-shadow: -5px 0 25px rgba(0,0,0,0.15);
                flex-direction: column;
                transition: right 0.4s ease;
                overflow-y: auto;
                padding: 80px 20px 30px;
            }
            
            .main-nav.active {
                right: 0;
            }
            
            .main-nav nav ul {
                flex-direction: column;
            }
            
            .main-nav nav ul li {
                margin-bottom: 8px;
                width: 100%;
            }
            
            .main-nav nav ul li a {
                padding: 16px;
                border-radius: 6px;
                background: #f8f9fa;
                justify-content: space-between;
                margin-bottom: 5px;
                width: 100%;
            }
            
            .dropdown-content,
            .mega-content {
                position: static;
                width: 100%;
                box-shadow: none;
                display: none;
                padding: 0;
                margin: 0;
                background: transparent;
                height: 0;
                overflow: hidden;
                transition: all 0.4s ease;
                opacity: 1;
                visibility: visible;
                transform: none;
            }
            
            .dropdown.active .dropdown-content,
            .mega-dropdown.active .mega-content {
                display: block;
                height: auto;
                overflow: visible;
                padding: 10px 0 10px 20px;
                background: #f1f2f6;
                margin-top: -5px;
                margin-bottom: 15px;
                border-radius: 0 0 6px 6px;
            }
            
            .mega-content {
                flex-direction: column;
                padding: 15px;
            }
            
            .mega-column {
                flex: 1;
                margin-bottom: 15px;
                padding: 0;
            }
            
            .mega-column h4 {
                font-size: 16px;
                margin-bottom: 10px;
                color: #d4a017;
            }
            
            /* Add arrow indicator for mobile */
            .dropdown > a:after,
            .mega-dropdown > a:after {
                content: '\f078';
                font-family: 'Font Awesome 5 Free';
                font-weight: 900;
                transition: transform 0.4s ease;
                font-size: 14px;
            }
            
            .dropdown.active > a:after,
            .mega-dropdown.active > a:after {
                transform: rotate(180deg);
            }
            
            /* Fix for touch devices */
            .dropdown > a,
            .mega-dropdown > a {
                position: relative;
            }
            
            /* Allow regular links to work */
            .main-nav nav ul li:not(.dropdown):not(.mega-dropdown) a {
                pointer-events: auto;
            }
            
            /* Close button for mobile menu */
            .menu-close {
                position: absolute;
                top: 20px;
                right: 20px;
                font-size: 24px;
                color: #2c3e50;
                background: none;
                border: none;
                cursor: pointer;
                display: none;
            }
            
            @media (max-width: 768px) {
                .menu-close {
                    display: block;
                }
            }
        }
        
        /* Demo content */
        .content {
            padding: 40px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .content h2 {
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .content p {
            margin-bottom: 15px;
            line-height: 1.6;
        }
 

        /* Hero Slider */
        .hero-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
            margin-top: 70px;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease;
            display: flex;
            align-items: center;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-1 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/banner1.jpg');
        }

        .slide-2 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/banner2.jpg');
        }

        .slide-3 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/banner3.jpg');
        }

        .slide-content {
            color: #fff;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .slide-content h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }

        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            margin: 0 8px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .slider-dot.active {
            background: #fff;
        }

        /* Introduction Section */
        .introduction {
            background: #fff;
        }

        .intro-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .intro-img {
            margin-top: -200px;
            height: 400px;
            border-radius: 8px;
            background-size: cover;
            background-position: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .intro-text h3 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .intro-text p {
            margin-bottom: 15px;
            color: var(--gray);
        }

        /* CEO Message Section */
        .ceo-message {
            background: #f9f9f9;
        }

        .ceo-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 50px;
            align-items: center;
        }

        .ceo-img {
            height: 400px;
            border-radius: 8px;
            background-size: cover;
            background-position: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .ceo-text h3 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .ceo-text h4 {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .ceo-text p {
            margin-bottom: 15px;
            color: var(--gray);
        }

        /* Mission Vision Section */
        .mission-vision {
            background: var(--secondary);
            color: #fff;
        }

        .mission-vision .section-title h2 {
            color: #fff;
        }

        .mv-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .mv-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .mv-card:hover {
            transform: translateY(-5px);
        }

        .mv-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .mv-card p {
            margin-bottom: 15px;
        }

        .mv-card ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .mv-card ul li {
            margin-bottom: 8px;
        }

        /* Core Values Section */
        .core-values {
            background: #fff;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .value-card {
            text-align: center;
            padding: 30px;
            background: #f9f9f9;
            border-radius: 8px;
            transition: transform 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .value-card:hover {
            transform: translateY(-5px);
        }

        .value-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .value-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }

        /* Services Section */
        .services {
            background: #f9f9f9;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .service-content {
            padding: 25px;
        }

        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }

        .service-content ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .service-content ul li {
            margin-bottom: 8px;
            color: var(--gray);
        }

        /* Projects Section */
        .projects {
            background: #fff;
        }

        .projects-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            overflow: hidden;
        }

        .projects-table th, .projects-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }

        .projects-table th {
            background-color: var(--secondary);
            color: #fff;
            font-weight: 600;
        }

        .projects-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        .projects-table tr:hover {
            background-color: #f1f1f1;
        }

        /* Counters Section */
        .counters {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1465433045946-ba6506ce5a59?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: #fff;
            text-align: center;
            padding: 80px 0;
        }

        .counters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .counter-item {
            padding: 30px;
        }

        .counter-item i {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .counter-item h3 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .counter-item p {
            font-size: 1.2rem;
            color: #ccc;
        }

        /* Testimonials Section */
        .testimonials {
            background: #f9f9f9;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            font-size: 5rem;
            color: rgba(212, 160, 23, 0.1);
            position: absolute;
            top: 10px;
            left: 20px;
            font-family: serif;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--gray);
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #ddd;
            margin-right: 15px;
            background-size: cover;
            background-position: center;
        }

        .author-info h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--secondary);
        }

        /* Contact Section */
        .contact {
            /* background: linear-gradient(to right, #f9f9f9 50%, var(--secondary) 50%); */
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .contact-info {
            padding: 50px;
            background: var(--secondary);
            color: #fff;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 30px;
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .info-item i {
            font-size: 1.5rem;
            color: var(--primary);
            margin-right: 15px;
            min-width: 30px;
        }

        .contact-form {
            padding: 50px;
        }

        .contact-form h3 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: var(--secondary);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            font-family: 'Montserrat', sans-serif;
        }

        .form-group textarea {
            height: 150px;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: #fff;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .footer-column p {
            color: #ccc;
            margin-bottom: 20px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #333;
            border-radius: 50%;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #ccc;
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .intro-content, .ceo-content, .mv-container {
                grid-template-columns: 1fr;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }

            .contact {
                background: #f9f9f9;
            }

            .mega-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            
            .section-title h2 {
                font-size: 2.2rem;
                margin-bottom: 150px;
            }
            .header-container {
                /* flex-direction: column; */
            }

            .main-nav {
                margin-top: 20px;
                width: 100%;
                justify-content: center;
            }

            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }

            nav ul li {
                margin: 10px 15px;
            }

            .slide-content h2 {
                font-size: 2.5rem;
            }

            

            .projects-table {
                display: block;
                overflow-x: auto;
            }

            .mega-content {
                grid-template-columns: 1fr;
            }

            .dropdown-content {
                left: -50%;
            }
        }
 

        :root {
            --primary: #d4a017;
            --secondary: #1a365d;
            --light: #f8f9fa;
            --dark: #343a40;
            --gray: #6c757d;
        }


        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

       

        

       

        .section-title p {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 700px;
            margin: 20px auto 0;
        }

        section {
            padding: 80px 0;
        }

        /* CEO Message Section */
        .ceo-message {
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
                        url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            overflow: hidden;
        }

        .ceo-message::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1545235617-9465d2a55698?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: 300px;
            opacity: 0.03;
            z-index: -1;
        }

        .ceo-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .ceo-profile {
            margin-bottom: 40px;
            position: relative;
        }

        .ceo-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background-image: url('./assets/images/ceo.jpg');
            background-size: cover;
            background-position: center;
            margin: 0 auto 25px;
            border: 5px solid #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            position: relative;
        }

        .ceo-img::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border: 2px solid var(--primary);
            border-radius: 50%;
            top: -15px;
            left: -15px;
            z-index: -1;
            opacity: 0.7;
        }

        .ceo-name {
            margin-bottom: 10px;
        }

        .ceo-name h3 {
            font-size: 1.8rem;
            color: var(--secondary);
            margin-bottom: 5px;
        }

        .ceo-name h4 {
            font-size: 1.2rem;
            color: var(--primary);
            font-weight: 600;
        }

        .ceo-credentials {
            margin-top: 15px;
            color: var(--gray);
            font-size: 0.95rem;
        }

        .ceo-text {
            background: #fff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .ceo-text::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 80px;
            color: rgba(212, 160, 23, 0.2);
            font-family: serif;
            line-height: 1;
        }

        .ceo-text h3 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: var(--secondary);
            position: relative;
        }

        .ceo-text p {
            margin-bottom: 20px;
            color: var(--gray);
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        .signature {
            margin-top: 30px;
            font-family: 'Playfair Display', serif;
            font-style: italic;
            color: var(--secondary);
        }

        /* Decorative Elements */
        .arch-element {
            position: absolute;
            opacity: 0.05;
            z-index: 0;
        }

        .arch-1 {
            top: 20%;
            left: 10%;
            font-size: 120px;
            transform: rotate(45deg);
        }

        .arch-2 {
            bottom: 15%;
            right: 8%;
            font-size: 100px;
            transform: rotate(-20deg);
        }

        /* Responsive Design */
        @media screen and (max-width: 768px) {
            .ceo-text {
                padding: 30px 20px;
            }

            .ceo-text::before {
                left: 20px;
                font-size: 60px;
            }

          

            .ceo-img {
                width: 150px;
                height: 150px;
            }

            .ceo-img::after {
                width: 170px;
                height: 170px;
                top: -12px;
                left: -12px;
            }
        }
 
        :root {
            --primary: #d4a017;
            --secondary: #1a365d;
            --light: #f8f9fa;
            --dark: #343a40;
            --gray: #6c757d;
        }



        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

       

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

     

       

        .section-title p {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 700px;
            margin: 20px auto 0;
        }

        section {
            padding: 80px 0;
        }

        /* Projects Timeline Section */
        .projects {
            background: #fff;
            padding: 80px 0;
        }

        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--primary);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
            margin-bottom: 40px;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
        }

        .timeline-content {
            padding: 20px 30px;
            background-color: #fff;
            position: relative;
            border-radius: 6px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .timeline-content::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: #fff;
            border: 4px solid var(--primary);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1;
        }

        .timeline-item:nth-child(odd) .timeline-content::after {
            right: -13px;
        }

        .timeline-item:nth-child(even) .timeline-content::after {
            left: -13px;
        }

        .timeline-year {
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .timeline-title {
            color: var(--secondary);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .timeline-details {
            margin-bottom: 15px;
            color: var(--gray);
        }

        .timeline-client, .timeline-consultant {
            display: flex;
            margin-bottom: 8px;
        }

        .timeline-label {
            font-weight: 600;
            min-width: 80px;
            color: var(--dark);
        }

        .timeline-cost {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.1rem;
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid #eee;
        }

        /* Responsive Design */
        @media screen and (max-width: 768px) {
            .timeline::after {
                left: 31px;
            }

            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }

            .timeline-item:nth-child(even) {
                left: 0;
            }

            .timeline-content::after {
                left: 18px !important;
            }

          
        }


        
        :root {
            --primary: #e9b741;
            --secondary: #2c5282;
            --accent: #2b6cb0;
            --light: #f8fafc;
            --dark: #2d3748;
            --gray: #718096;
        }
        

        
      
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            color: var(--secondary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--primary);
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 700px;
            margin: 20px auto 0;
        }
        
        .projects-filter {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .filter-btn {
            padding: 10px 20px;
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .project-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            position: relative;
            display: flex;
            flex-direction: column;
        }
        
        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .project-year {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--primary);
            color: #fff;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
            box-shadow: 0 4px 10px rgba(233, 183, 65, 0.3);
        }
        
        .project-img {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .project-img::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
        }
        
        .project-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .project-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .project-content p {
            color: var(--gray);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        /* Tags positioned at the top */
        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }
        
        .project-tag {
            padding: 5px 12px;
            background: #edf2f7;
            border-radius: 15px;
            font-size: 0.8rem;
            color: var(--dark);
        }
        
        /* Client and consultant info at the bottom */
        .project-details {
            background: #f8fafc;
            padding: 15px;
            border-radius: 8px;
            margin-top: auto;
        }
        
        .project-client, .project-consultant {
            display: flex;
            margin-bottom: 10px;
            align-items: center;
        }
        
        .project-client:last-child, .project-consultant:last-child {
            margin-bottom: 0;
        }
        
        .project-label {
            font-weight: 600;
            min-width: 80px;
            color: var(--dark);
        }
        
        .project-value {
            color: var(--gray);
            flex-grow: 1;
        }
        
        .consultant-logo {
            width: 24px;
            height: 24px;
            background-color: var(--primary);
            border-radius: 50%;
            margin-right: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: white;
        }
        
        .project-cta {
            margin-top: 25px;
            text-align: center;
        }
        
        .project-cta a {
            display: inline-block;
            padding: 10px 20px;
            background: var(--secondary);
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .project-cta a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        @media (max-width: 768px) {
            .projects-grid {
                grid-template-columns: 1fr;
            }
            
          
            
            .projects-filter {
                flex-direction: column;
                align-items: center;
            }
            
            .filter-btn {
                width: 200px;
                text-align: center;
            }
        }

       
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
       
        
        .section-title p {
            font-size: 1.1rem;
            color: #718096;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .clients-section {
            /* background: #fff; */
            border-radius: 10px;
            padding: 20px 10px;
            /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); */
        }
        
        .clients-carousel {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }
        
        .clients-track {
            display: flex;
            animation: carouselAnimation 30s linear infinite;
            width: calc(200px * 14);
        }
        
        .client-item {
            width: 200px;
            height: 120px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            margin: 0 15px;
            /* background: #fff; */
            /* border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); */
            transition: all 0.3s ease;
            /* border: 1px solid #e2e8f0; */
        }
        
        .client-item:hover {
            /* transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
            border-color: #cbd5e0; */
        }
        
        .client-logo {
            /* max-width: 100%;
            max-height: 60px; */
            width: 150px;
            /* filter: grayscale(100%); */
            /* opacity: 0.7; */
            transition: all 0.3s ease;
        }
        
        .client-item:hover .client-logo {
            /* filter: grayscale(0%);
            opacity: 1; */
        }
        
        .client-name {
            position: absolute;
            bottom: -25px;
            left: 0;
            right: 0;
            text-align: center;
            font-size: 0.8rem;
            color: #718096;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .client-item:hover .client-name {
            opacity: 1;
        }
        
        .carousel-controls {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            gap: 15px;
        }
        
        .carousel-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #2c5282;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 1.2rem;
        }
        
        .carousel-btn:hover {
            background: #e9b741;
            transform: scale(1.1);
        }
        
        .carousel-dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 10px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #cbd5e0;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dot.active {
            background: #2c5282;
            transform: scale(1.2);
        }
        
        @keyframes carouselAnimation {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-200px * 7));
            }
        }
        
        .clients-carousel:hover .clients-track {
            animation-play-state: paused;
        }
        
        @media (max-width: 768px) {
            .clients-track {
                animation: carouselAnimation 20s linear infinite;
            }
            
            .client-item {
                width: 150px;
                height: 100px;
                margin: 0 10px;
            }
            
          
        }


 
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }
        
        .card-image {
            height: 160px;
            overflow: hidden;
            position: relative;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .card-image img {
            transform: scale(1.05);
        }
        
        .card-content {
            padding: 20px;
        }
        
        .card-content h3 {
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: #2c3e50;
        }
        
        .card-content p {
            color: #7f8c8d;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 15px;
        }
        
        .icon {
            font-size: 1.8rem;
            color: #d4a017;
            margin-bottom: 15px;
        }
        
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            h1 {
                font-size: 2rem;
            }
        }
