
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
   
        /* --- GLOBAL VARIABLES & RESET --- */
        :root {
            --primary-color: #0c2d48; /* Deep Royal Blue */
            --secondary-color: #2e8bc0; /* Lighter Blue */
            --accent-color: #cfad5c; /* Construction Gold */
            --text-dark: #333333;
            --text-light: #666666;
            --white: #ffffff;
            --light-bg: #f4f7f6;
            --container-width: 1400px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
             font-family: "Inter", sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--primary-color);
        }

        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 14px 35px;
            background: var(--accent-color);
            color: var(--white);
            font-weight: 700;
            text-transform: uppercase;
            border-radius: 4px;
            cursor: pointer;
            letter-spacing: 1px;
            transition: 0.3s;
            border: none;
        }

        .btn:hover { background: #d68e1a; transform: translateY(-2px); }
        .btn-outline { background: transparent; border: 2px solid var(--white); }
        .btn-outline:hover { background: var(--white); color: var(--primary-color); }

        .section-padding { padding: 80px 0; }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            text-transform: uppercase;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--accent-color);
            margin: 10px auto 0;
        }

        /* --- HEADER --- */
        header {
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-color);
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        .logoimage {
            width: 150px;
        }

        .logo span {
            font-size: 0.75rem;
            font-weight: 400;
            color: var(--secondary-color);
            letter-spacing: 1px;
        }

        .nav-links { display: flex; gap: 30px; }
        .nav-links a { font-weight: 600; text-transform: uppercase; font-size: 0.9rem; }
        .nav-links a:hover, .nav-links a.active { color: var(--accent-color); }

        .hamburger { display: none; font-size: 1.5rem; cursor: pointer; }

        /* --- HERO SLIDER --- */
        .hero {
            position: relative;
            height: 85vh;
            margin-top: 80px;
            background: #000;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide.active { opacity: 1; }
        
        .slide::before {
            content: ''; position: absolute; top: 0; left: 0;
            width: 100%; height: 100%;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6));
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--white);
            max-width: 1200px;
           padding: 20px 10%;
            animation: fadeInUp 1s ease forwards;
        }

        .hero-content h1 {
               font-size: 50px;
    line-height: 65px;
            color: var(--white);
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }
        
        .hero-content p { 
            font-size: 1.3rem; 
            margin-bottom: 30px; 
            text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
        }

        /* Arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: 0.3s;
            font-size: 1.5rem;
            border-radius: 50%;
        }
        .slider-arrow:hover { background: var(--accent-color); }
        .arrow-left { left: 30px; }
        .arrow-right { right: 30px; }

        .slider-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            background: rgba(255,255,255,0.5);
            border-radius: 50%;
            cursor: pointer;
        }
        .slider-dot.active { background: var(--accent-color); transform: scale(1.2); }

        /* --- STATS COUNTER --- */
        .stats-section {
            background: var(--primary-color);
            color: var(--white);
            padding: 60px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            text-align: center;
            gap: 20px;
        }
        .stat-item h3 { font-size: 2.5rem; color: var(--accent-color); margin-bottom: 5px; }

        /* --- NEW WHY US SECTION (Matches image_a45404.png) --- */
        .why-us-new {
            background: var(--white);
            padding: 100px 0;
        }

        .why-wrapper {
            display: flex;
            justify-content: space-between;
            gap: 60px;
            align-items: flex-start;
        }

        .why-left {
            flex: 1;
            max-width: 350px;
        }

        .value-badge {
            background: #fff5eb;
            color: #d68e1a; /* Darker orange text */
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.85rem;
            display: inline-block;
            margin-bottom: 25px;
        }

        .why-left h2 {
            font-size: 3rem;
            line-height: 1.2;
            margin-bottom: 100px;
            color: var(--primary-color);
        }

        /* Specific link button from image */
        .why-link-btn {
            display: inline-flex;
            align-items: center;
            padding: 15px 30px;
            border: 1px solid #333;
            color: #333;
            font-weight: 600;
            text-decoration: none;
            transition: 0.3s;
        }
        .why-link-btn i { margin-left: 10px; }
        .why-link-btn:hover { background: #333; color: #fff; }

        .why-right {
            flex: 2;
        }

        .why-lead-text {
            font-size: 1.4rem;
            color: #555;
            margin-bottom: 50px;
            line-height: 1.5;
            font-weight: 500;
        }

        .features-grid-2x2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .feature-box-simple {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .feature-icon-wrapper {
            width: 60px;
            height: 60px;
            background: #fff5eb; /* Light orange bg */
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .feature-icon-wrapper i {
            font-size: 1.5rem;
            color: #ff6b35; /* Orange icon color */
        }

        .feature-box-simple h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        .feature-box-simple p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* --- SERVICES SECTION (With Images) --- */
        .services-section {
            background: var(--light-bg);
            padding: 100px 0;
        }

        .services-grid {
           display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;

        }

        .service-card {
            background: var(--white);
            text-align: center;
            border: 1px solid #eee;
            transition: 0.3s;
            overflow: hidden;
                width: calc((100% - 90px) / 3);
            margin: 10px 15px;
        }

        .service-card:hover { 
            transform: translateY(-10px); 
            box-shadow: 0 15px 30px rgba(0,0,0,0.1); 
        }

        .service-img-wrapper {
            width: 100%;
            height: 200px; /* Fixed height for consistency */
            overflow: hidden;
        }

        .service-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-img-wrapper img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 30px;
        }

        .service-content i { 
            font-size: 2.5rem; 
            color: var(--secondary-color); 
            margin-bottom: 15px; 
            display: block; /* Ensures icon is centered */
        }
        
        .service-card:hover .service-content i { color: var(--accent-color); }

        .service-content h3 { font-size: 1.3rem; margin-bottom: 10px; }
        .service-content p { color: #666; font-size: 0.95rem; }


        /* --- NEW DARK CTA BANNER (Matches image_a457a5.png) --- */
        .cta-dark-banner {
            background-color: #0d4372;
            position: relative;
            padding: 80px 0;
            overflow: hidden;
            /* Subtle grid pattern */
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 40px 40px;
        }

        .cta-dark-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .cta-left {
            flex: 1;
            max-width: 600px;
            z-index: 2;
        }

        .cta-sub-label {
            color: var(--accent-color);
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .cta-sub-label::before {
            content: '';
            width: 30px;
            height: 2px;
            background: var(--accent-color);
            margin-right: 15px;
        }

        .cta-left h2 {
            font-size: 3.5rem;
            color: var(--white);
            line-height: 1.1;
            text-transform: uppercase;
            margin-bottom: 25px;
            font-weight: 800;
        }

        .cta-left p {
            color: #ddd;
            margin-bottom: 40px;
            font-size: 1.1rem;
            max-width: 500px;
        }

        .btn-yellow {
            background: #b99444; /* Bright yellow/gold */
            color: #fff;
            padding: 15px 35px;
            font-weight: 700;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
        }
        .btn-yellow i { margin-left: 10px; font-size: 0.8rem; }
        .btn-yellow:hover { background: #ffca4ea6; }

        .cta-right-img {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            position: relative;
        }
        
        .cta-right-img img {
            max-height: 450px;
            width: auto;
            object-fit: contain;
            /* Adjust position to overlap properly if needed */
        }

        /* --- PROCESS --- */
        .process-section { background: var(--white); }
        .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; position: relative; }
        .process-icon-box { width: 80px; height: 80px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; border: 2px solid var(--accent-color); font-size: 1.8rem; color: var(--primary-color); }
        
        /* --- PROJECTS --- */
        .project-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
        .project-item { position: relative; height: 300px; overflow: hidden; border-radius: 8px; }
        .project-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .project-item:hover img { transform: scale(1.1); }
        .project-overlay { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); padding: 20px; color: var(--white); transform: translateY(100%); transition: 0.3s; }
        .project-item:hover .project-overlay { transform: translateY(0); }

        /* --- FOOTER --- */
        footer { background: #081f32; color: #bbb; padding: 70px 0 20px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .footer-col h4 { color: var(--white); margin-bottom: 25px; }
        .copyright { text-align: center; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.1); }

        /* --- RESPONSIVE --- */
        @media (max-width: 992px) {
            .why-wrapper { flex-direction: column; }
            .why-left { max-width: 100%; margin-bottom: 40px; }
            .why-left h2 { margin-bottom: 30px; }
            .features-grid-2x2 { gap: 30px; }
            
            .cta-dark-wrapper { flex-direction: column; text-align: center; }
            .cta-left { margin-bottom: 40px; margin-right: 0; }
            .cta-sub-label { justify-content: center; }
            .cta-right-img { justify-content: center; }
        }

        @media (max-width: 768px) {
            .navbar { height: 70px; }
            .nav-links { position: fixed; top: 70px; right: -100%; width: 100%; height: calc(100vh - 70px); background: var(--white); flex-direction: column; justify-content: center; transition: 0.4s; }
            .nav-links.active { right: 0; }
            .hamburger { display: block; }
            
            .stats-grid, .process-grid { grid-template-columns: 1fr; gap: 30px; }
            .slider-arrow { width: 40px; height: 40px; font-size: 1.2rem; }
            .features-grid-2x2 { grid-template-columns: 1fr; }
            
            .cta-left h2 { font-size: 2.2rem; }
        }
         .footer-link {
            text-decoration: none;
            color: #ccc;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }

        .footer-link i {
            margin-right: 10px;
            color: #f5a623;
            font-size: 0.8rem;
            transition: margin-right 0.3s;
        }

        .footer-link:hover {
            color: #f5a623;
            padding-left: 5px;
        }

        .footer-link:hover i {
            margin-right: 15px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border: 1px solid #f5a623;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f5a623;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: #f5a623;
            color: #0c2d48;
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .footer-col {
                text-align: center;
            }
            .bottom-footer {
                flex-direction: column;
                text-align: center;
            }
        }
    


.advertise .advertise_items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.advertise .advertise_items .advertise_item_single {
    width: 49%;
}
.advertise .advertise_items .advertise_item_single img {
    width: 100%;
}

       

        /* --- PAGE HEADER BANNER --- */
        .page-header {
            background: linear-gradient(rgba(12, 45, 72, 0.8), rgba(12, 45, 72, 0.8)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            margin-top: 80px;
        }

        .page-header h1 {
            color: var(--white);
            font-size: 3rem;
            margin-bottom: 10px;
        }

        .page-header p {
            font-size: 1.2rem;
            font-weight: 300;
        }


        /* --- NEW: HISTORY / EXPERIENCE SECTION (Matches image_a472a3.png) --- */
        .history-section {
            background: var(--light-bg); /* Light blue tint bg */
            overflow: hidden;
        }

        .history-wrapper {
            display: flex;
            align-items: center;
            gap: 80px;
        }

        .history-img-box {
            flex: 1;
            position: relative;
        }

        .history-img-box img {
            border-radius: 20px; /* Large rounded corners */
            width: 100%;
            height: auto;
            object-fit: cover;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        /* The floating white badge */
        .experience-badge {
            position: absolute;
            bottom: 30px;
            right: -30px;
            background: var(--white);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            min-width: 180px;
        }

        .experience-badge h3 {
            font-size: 3rem;
            line-height: 1;
            margin-bottom: 5px;
            color: var(--primary-color);
        }

        .experience-badge span {
            display: block;
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.3;
        }

        .history-content {
            flex: 1;
        }

        .history-subtitle {
            color: var(--accent-color);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.85rem;
            margin-bottom: 15px;
            display: block;
            letter-spacing: 1px;
        }

        .history-content h2 {
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 25px;
            color: var(--primary-color);
        }

        .history-content p {
            margin-bottom: 20px;
            color: var(--text-light);
            font-size: 1.05rem;
        }


        /* --- NEW: FULL WIDTH QUOTE BANNER (Matches image_a46f43.png) --- */
        .quote-banner {
            background-color: var(--primary-color); /* Deep Blue */
            padding: 100px 0;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        /* Faint gear icon in background */
        .quote-banner::before {
            content: '\f013'; /* FontAwesome gear icon */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            top: -50px;
            left: 50px;
            font-size: 300px;
            color: rgba(255, 255, 255, 0.03);
            z-index: 0;
            transform: rotate(20deg);
        }

        .quote-container {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }

        .quote-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 20px;
            color: var(--white);
            position: relative;
            padding-left: 40px;
        }
        
        .quote-label::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 30px;
            height: 2px;
            background: var(--accent-color);
        }

        .quote-text {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 30px;
            font-family: 'Montserrat', sans-serif;
        }

        .quote-author {
            color: var(--accent-color);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
        }


        /* --- NEW: WHY CHOOSE US GRID (Matches image_a46ee2.png) --- */
        .why-design-section {
            background: var(--white);
        }

        .wd-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 50px;
        }

        .wd-left {
            padding-right: 30px;
        }

        .wd-label {
            color: var(--accent-color);
            text-transform: uppercase;
            font-size: 0.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            display: block;
        }
        .wd-label::before {
            content: '— ';
            margin-right: 5px;
        }

        .wd-left h2 {
            font-size: 2.5rem;
            line-height: 1.2;
            margin-bottom: 30px;
        }
        .wd-left h2 span { color: #2ecc71; /* Greenish tint from sample, or use accent */ color: var(--primary-color); }

        .wd-check-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            font-weight: 500;
            color: #555;
        }
        .wd-check-list li i {
            color: var(--accent-color); /* Used Gold instead of green for brand consistency */
            margin-right: 15px;
        }

        .wd-right-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .wd-card {
            border: 1px solid #eee;
            padding: 40px 30px;
            transition: 0.3s;
        }
        .wd-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); border-color: transparent; }

        .wd-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            display: inline-block;
        }

        .wd-card h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .wd-card p {
            font-size: 0.9rem;
            color: #777;
            line-height: 1.6;
        }


        /* --- PARTNERS SECTION (3 Grid) --- */
        .partners-section {
            background: var(--light-bg);
        }
        
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* Exactly 3 columns */
            gap: 30px;
        }

        .partner-card {
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            transition: 0.3s;
        }
        .partner-words {
              background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
        }
        
        .partner-card:hover { transform: translateY(-10px); }

        .partner-img-box {
            height: 650px;
            width: 100%;
            overflow: hidden;
        }

        .partner-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }
        .partner-card:hover .partner-img-box img { transform: scale(1.05); }

        .partner-info { padding: 25px; }
        .partner-info h3 { font-size: 1.4rem; margin-bottom: 5px; color: var(--primary-color); }
        .partner-info p { color: var(--accent-color); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; }


        /* --- FOOTER (Same as Home) --- */
        footer { background: #081f32; color: #bbb; padding: 70px 0 20px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .footer-col h4 { color: var(--white); margin-bottom: 25px; }
        .copyright { text-align: center; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.1); }
        .footer-col ul li { margin-bottom: 12px; }
 .footer-link {
            text-decoration: none;
            color: #ccc;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }

        .footer-link i {
            margin-right: 10px;
            color: #fff;
            font-size: 0.8rem;
            transition: margin-right 0.3s;
        }

        .footer-link:hover {
            color: #f5a623;
            padding-left: 5px;
        }

        .footer-link:hover i {
            margin-right: 15px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border: 1px solid #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: #f5a623;
            border: 1px solid #f5a623;
            color: #fff;
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .footer-col {
                text-align: center;
            }
            .bottom-footer {
                flex-direction: column;
                text-align: center;
            }
        }
        /* --- RESPONSIVE --- */
        @media (max-width: 992px) {
            .history-wrapper { flex-direction: column; text-align: center; gap: 50px; }
            .history-img-box { width: 100%; max-width: 600px; }
            .experience-badge { right: 50%; transform: translateX(50%); bottom: -20px; }
            
            .wd-grid { grid-template-columns: 1fr; gap: 40px; }
            .partners-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
        }

        @media (max-width: 768px) {
            .navbar { height: 70px; }
            .nav-links { position: fixed; top: 70px; right: -100%; width: 100%; height: calc(100vh - 70px); background: var(--white); flex-direction: column; justify-content: center; transition: 0.4s; }
            .nav-links.active { right: 0; }
            .hamburger { display: block; }
            
            .wd-right-grid { grid-template-columns: 1fr; }
            .quote-text { font-size: 1.5rem; }
            .history-content h2 { font-size: 2.2rem; }
        }
    





        

        /* --- PAGE HEADER BANNER --- */
        .page-header {
            background: linear-gradient(rgba(12, 45, 72, 0.8), rgba(12, 45, 72, 0.8)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            margin-top: 80px;
        }

        .page-header h1 {
            color: var(--white);
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 3rem;
            margin-bottom: 10px;
        }

        .page-header p {
            font-size: 1.2rem;
            font-weight: 300;
        }

        /* --- GALLERY SECTION --- */
        .gallery-section {
            background: var(--light-bg);
            padding-bottom: 100px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* Strictly 3 columns */
            gap: 20px;
        }

        .project-item {
            position: relative;
            background: #000; /* Black background for hover contrast */
            overflow: hidden;
            border-radius: 4px;
            cursor: pointer;
            height: 300px; /* Fixed height for uniformity */
        }

        .project-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease, opacity 0.3s ease;
            opacity: 1;
        }

        /* Hover Zoom Effect */
        .project-item:hover img {
            transform: scale(1.1);
            opacity: 0.8;
        }
        
        /* Plus icon on hover */
        .zoom-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            font-size: 3rem;
            color: var(--white);
            transition: 0.3s;
            pointer-events: none; /* Let clicks pass through to container */
        }
        
        .project-item:hover .zoom-icon {
            transform: translate(-50%, -50%) scale(1);
        }


        /* --- LIGHTBOX MODAL --- */
        .lightbox {
            position: fixed;
            z-index: 2000;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            display: none; /* Hidden by default */
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-img {
            max-width: 90%;
            max-height: 85vh;
            box-shadow: 0 0 30px rgba(0,0,0,0.8);
        }

        .close-btn {
            position: absolute;
            top: 30px;
            right: 40px;
            color: #fff;
            font-size: 50px;
            cursor: pointer;
            transition: 0.3s;
            z-index: 2001;
        }
        .close-btn:hover { color: var(--accent-color); }

        .prev-btn, .next-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: #fff;
            font-size: 40px;
            cursor: pointer;
            padding: 20px;
            background: rgba(0,0,0,0.5); /* Semi-transparent background */
            width: 60px; height: 100px;
            display: flex; align-items: center; justify-content: center;
            transition: 0.3s;
            z-index: 2001;
        }

        .prev-btn:hover, .next-btn:hover { background: var(--accent-color); }
        .prev-btn { left: 0; border-radius: 0 10px 10px 0; }
        .next-btn { right: 0; border-radius: 10px 0 0 10px; }


        /* --- RESPONSIVE --- */
        @media (max-width: 992px) {
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .navbar { height: 70px; }
            .nav-links { position: fixed; top: 70px; right: -100%; width: 100%; height: calc(100vh - 70px); background: var(--white); flex-direction: column; justify-content: center; transition: 0.4s; }
            .nav-links.active { right: 0; }
            .hamburger { display: block; }
            
            .gallery-grid { grid-template-columns: 1fr; }
            .page-header h1 { font-size: 2.2rem; }
            
            .prev-btn, .next-btn { width: 40px; height: 60px; font-size: 25px; }
        }






          
      

        /* --- PAGE HEADER BANNER --- */
        .page-header {
            background: linear-gradient(rgba(12, 45, 72, 0.8), rgba(12, 45, 72, 0.8)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            margin-top: 80px;
        }

        .page-header h1 {
            color: var(--white);
            font-size: 3rem;
            margin-bottom: 10px;
        }

        .page-header p {
            font-size: 1.2rem;
            font-weight: 300;
        }

        /* --- CONTACT INFO CARDS --- */
        .info-cards {
            background: var(--light-bg);
            padding: 80px 0;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .info-box {
            background: var(--white);
            padding: 40px;
            text-align: center;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: 0.3s;
        }
        .info-box:hover { transform: translateY(-10px); }

        .info-icon {
            width: 70px;
            height: 70px;
            background: #fff5eb;
            color: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
        }

        .info-box h3 { font-size: 1.3rem; margin-bottom: 15px; }
        .info-box p { color: var(--text-light); }

        /* --- CONTACT FORM SECTION --- */
        .contact-section {
            padding: 100px 0;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 0 40px rgba(0,0,0,0.1);
        }

        .map-wrapper {
            width: 100%;
            height: 100%;
            min-height: 400px;
        }
        
        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        .form-wrapper {
            padding: 60px;
        }

        .form-wrapper h2 {
            margin-bottom: 30px;
            font-size: 2rem;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-color);
        }

        .form-group input, 
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
            transition: 0.3s;
        }

        .form-group input:focus, 
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-color);
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 992px) {
            .contact-container { grid-template-columns: 1fr; }
            .map-wrapper { height: 400px; order: -1; } /* Map on top on mobile */
        }

        @media (max-width: 768px) {
            .navbar { height: 70px; }
            .nav-links { position: fixed; top: 70px; right: -100%; width: 100%; height: calc(100vh - 70px); background: var(--white); flex-direction: column; justify-content: center; transition: 0.4s; }
            .nav-links.active { right: 0; }
            .hamburger { display: block; }
            .page-header h1 { font-size: 2.2rem; }
            .form-wrapper { padding: 40px 20px; }
        }

     
    
 @media (max-width: 1199px) {
   .hero-content h1 {
        font-size: 45px;
        line-height: 60px;
    }
}


    @media (max-width: 991px) {
    .service-card {
        width: calc((100% - 60px) / 2);
    }
     .nav-links.active {
        background: #202020;
        text-align: center;
        gap: 0px;
        justify-content: flex-start;
        padding-top: 35px;
    }
     .nav-links.active li {
         padding: 15px 0;
    }
     .nav-links.active li a{
         color: #fff;
         font-size: 18px;
    }
    
    .hero-content h1 {
       font-size: 32px;
        line-height: 42px;
    }
    .why-us-new {
    padding: 50px 0;
}
.why-left h2 {
    font-size: 40px;
}

.why-wrapper {
    text-align: center;
        align-items: center;
}
.feature-box-simple {
    align-items: center;
}

.services-section {
    padding: 50px 0;
}
.advertise .advertise_items .advertise_item_single {
    width: 100%;
    margin: 15px 0;
}

    .wd-grid {
        text-align: center;
    }
.wd-check-list li {
    justify-content: center;
}
   .logoimage {
            width: 135px;
        }

.section-padding {
    padding: 50px 0;
}
.hero-content p {
    font-size: 16px;
}


}







    @media (max-width: 767px) {
        .why-wrapper {
    gap: 20px;
}
       
    .service-card {
        width: 100%;
    }
    .hero-content p {
    font-size: 15px;
}
.hero-content .btn {
    display: none;
}
.slider-arrow {
    top: 90%;
}
    .why-left h2 {
        font-size: 30px;
    }
    .section-title h2 {
    font-size: 26px;
}
    .cta-left h2 {
        font-size: 25px;
        line-height: 40px;
    }
   
}




.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* IMAGE */
.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  animation: zoomIn 0.3s ease;
}

/* CLOSE BUTTON */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}

/* NAV ARROWS */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  font-size: 50px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-close:hover {
  color: #ccc;
}

/* ANIMATION */
@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}