﻿/* =========================================
   CSS Variables
   ========================================= */
:root {
    /* Google Material UI 3 Color Palette for Engineering */
    --primary-blue: #0b57d0;
    --primary-blue-light: #4285f4;
    --accent-blue: #d3e3fd;
    --bg-white: #ffffff;
    --bg-light: #f8fafd;
    --text-black: #1f1f1f;
    --text-muted: #444746;
    --border-color: #c7c7c7;
    --accent-green: #7ddc1f;
    --dark-blue: #0a1128;
    --primary-blue-dark: #0742a0;
    --geo-bg: #eef2f6;

    /* Google Official Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-mono: 'Roboto Mono', monospace;

    /* Spacing & Transitions */
    --transition-fast: 0.2s cubic-bezier(0.2, 0, 0, 1);
    --transition-normal: 0.3s cubic-bezier(0.2, 0, 0, 1);
    --transition-slow: 0.5s cubic-bezier(0.2, 0, 0, 1);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 1px 3px 1px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 4px 8px 3px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 2px 3px 0 rgba(0, 0, 0, 0.3), 0 6px 10px 4px rgba(0, 0, 0, 0.15);

    /* Precision Engineering Corners (Sharper than standard MD3 for an industrial look) */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-pill: 4px;
    /* Crisp Google Cloud / Engineering UI buttons */
}

/* =========================================
   Reset Basic Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-black);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-blue);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 2.5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.bg-light {
    background-color: var(--bg-light);
}

.border-top {
    border-top: 1px solid var(--border-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    /* Centralized spacing for icons & text */
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 500;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--primary-blue-light);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--bg-white);
    color: var(--bg-white);
}

.btn-outline:hover {
    background-color: var(--bg-white);
    color: var(--primary-blue);
}

.btn-success {
    background-color: var(--accent-green);
    color: var(--dark-blue);
    font-weight: 700;
}

.btn-success:hover {
    background-color: #68b91a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(125, 220, 31, 0.4);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.w-100 {
    width: 100%;
}

.text-center {
    text-align: center;
}

/* =========================================
   Header & Navigation
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color:rgba(255, 255, 255, 0.99);
    /* Semi-transparent base */
    backdrop-filter: blur(5px);
    transition: all var(--transition-normal);
    padding: 1rem 0;
}
.header .nav-links a{
    color: var(--dark-blue);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-sm);
}

.header .mobile-toggle {
    color: var(--primary-blue);
}

.header.scrolled .nav-links a,
.header.scrolled .logo span,
.header.scrolled .mobile-toggle {
    color: var(--primary-blue);
}

.header.scrolled .logo img {
    height: 70px;
    /* Reduced scrolled height */
    width: auto;
}

.header.header-inner {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-sm);
}

.header.header-inner .nav-links a,
.header.header-inner .logo span,
.header.header-inner .mobile-toggle {
    color: var(--primary-blue);
}

.header.header-inner .logo img {
    height: 70px;
    width: auto;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    /* Ensure consistent height */
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 100px;
    /* Reduced from 130px */
    width: auto;
    border-radius: var(--radius-sm);
    object-fit: contain;
    transition: all var(--transition-normal);
}

.logo span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--bg-white);
    transition: color var(--transition-normal);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--bg-white);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    /* Slightly smaller for better fit */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-blue);
    transition: width var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown i {
    font-size: 0.75rem;
    margin-left: 0.25rem;
    transition: transform var(--transition-normal);
}

.dropdown:hover i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -1rem;
    background-color: var(--bg-white);
    min-width: 300px;
    padding: 0.5rem 0;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    z-index: 1100;
}

.dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    color: var(--text-black) !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-blue) !important;
}

/* Deep Dropdown (Horizontal Submenu) */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    margin-left: 0.25rem;
    transform: translateX(10px);
}

.dropdown-submenu:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Icons for deep dropdowns */
.dropdown-submenu>a i {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--bg-white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1200;
}

/* Header Responsiveness */
@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem;
        gap: 1rem;
        transition: right var(--transition-normal);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1100;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--text-black) !important;
        font-size: 1.1rem;
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-toggle {
        display: block;
        color: var(--primary-blue);
    }

    .header:not(.scrolled) .mobile-toggle {
        color: var(--bg-white);
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .logo span {
        font-size: 1.2rem;
    }
}

/* =========================================
   MOBILE-FIRST HERO SECTION — REBUILT
   ========================================= */

.hero-rebuilt {
    position: relative;
    padding: 80px 20px 60px;
    /* Mobile-first padding */
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #0d1b2a;
    overflow: visible;
}

.hero-bg-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 26, 45, 0.95) 0%, rgba(7, 26, 45, 0.75) 20%, rgba(7, 26, 45, 0.6) 70%);
}

.hero-flex-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    /* Mobile stack */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 1. Content Block */
.hero-text-content {
    flex: 1;
    color: #fff;
    text-align: left;
}

.badge-trust {
    display: inline-block;
    padding: 6px 14px;
    background: #007bff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: 'Roboto Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.hero-text-content h1 {
    font-size: clamp(1rem, 8vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    font-weight: 800;
    color: #fff;
}

.hero-desc {
    font-size: clamp(1rem, 4vw, 1.15rem);
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    color: #f8f9fa;
}

.hero-trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 2rem;
}

.hero-trust-indicators span {
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-trust-indicators i {
    color: #28a745;
    font-size: 0.95rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-outline-white {
    padding: 0.8rem 1.6rem;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-white:hover {
    background: #fff;
    color: #0d1b2a;
}

/* 2. Form Block */
.hero-form-wrapper {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.hero-card-form {
    background: #fff;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-top: 5px solid #007bff;
}

.card-header h3 {
    color: #0d1b2a;
    font-size: 1.25rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.card-header p {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.responsive-hero-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row-split {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-input-hero {
    width: 100%;
    padding: 12px 14px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #212529;
    transition: all 0.3s ease;
}

.form-input-hero:focus {
    outline: none;
    border-color: #007bff;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.btn-full {
    width: 100%;
    padding: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* STICKY BOTTOM BAR */
.sticky-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    background: #fff;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    padding: 5px 0;
}

.sticky-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 5px;
    font-size: 0.7rem;
    font-weight: 700;
    text-decoration: none;
    gap: 3px;
    text-transform: uppercase;
}

.sticky-item i {
    font-size: 1.2rem;
}

.sticky-item.call {
    color: #007bff;
}

.sticky-item.quote {
    background: #007bff;
    color: #fff;
    border-radius: 4px;
    margin: 0 5px;
}

.sticky-item.whatsapp {
    color: #25D366;
}

/* Responsive adjustments */
@media (min-width: 992px) {
    .hero-rebuilt {
        padding: 140px 0 100px;
        min-height: 85vh;
    }

    .hero-flex-container {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .hero-text-content {
        text-align: left;
    }
    

    .hero-form-wrapper {
        margin: 0;
        flex: 0 0 420px;
    }

    .form-row-split {
        flex-direction: row;
    }

    .sticky-contact-bar {
        display: none;
    }

    .desktop-only {
        display: block;
    }
}

@media (max-width: 991px) {
    .desktop-only {
        display: none;
    }

    body {
        padding-bottom: 70px;
        /* Space for sticky bar */
    }
}

@media (max-width: 480px) {
    .hero-rebuilt {
        padding-top: 120px;
    }
     .hero-rebuilt h1{
        font-size: 10px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-outline-white {
        width: 100%;
    }
}

/* Micro-animations */
.animate-fade-up {
    animation: fadeUp 1s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================
   Scroll Animations (Intersection Observer)
   ========================================= */
.scroll-anim {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.2, 0, 0, 1), transform 0.6s cubic-bezier(0.2, 0, 0, 1);
    /* Stagger via CSS: each --delay unit = 80ms */
    transition-delay: calc(var(--delay, 0) * 80ms);
}

.scroll-anim.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   About Section
   ========================================= */
.about-flex {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.mt-2 {
    margin-top: 2rem;
}

.about-grid {
    flex: 1.2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    padding: 2rem;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.feature-card:hover .icon-box {
    background: var(--primary-blue);
    color: var(--bg-white);
}

.feature-card h3 {
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* =========================================
   Services Section
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
}

.service-img {
    height: 200px;
    overflow: hidden;

}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.read-more i {
    transition: transform var(--transition-fast);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* =========================================
   Recent Projects Horizontal Scroller
   ========================================= */
.projects.section {
    overflow: hidden;
}

.scroller-wrapper {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 1rem 0;
}

.scroller-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.scroller-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

.project-item {
    width: 400px;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

@media (max-width: 768px) {
    .project-item {
        width: 320px;
        height: 240px;
    }
}

.project-item:hover img {
    transform: scale(1.05);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--transition-normal);
}

.project-item:hover .project-info {
    transform: translateY(0);
    opacity: 1;
}

.project-info h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.project-info span {
    color: var(--accent-blue);
    font-weight: 500;
}

/* =========================================
   Awards & Achievements Section
   ========================================= */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.award-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.award-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.award-img {
    height: 220px;
    overflow: hidden;
}

.award-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.award-card:hover .award-img img {
    transform: scale(1.05);
}

.award-content {
    padding: 2rem;
    position: relative;
}

.award-year {
    position: absolute;
    top: -20px;
    right: 2rem;
    background: var(--accent-blue);
    color: var(--primary-blue);
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-sm);
}

.award-content h3 {
    margin-bottom: 0.5rem;
}

.award-content p {
    color: var(--text-muted);
}

/* =========================================
   Enquiry Form (Glassmorphism)
   ========================================= */
.enquiry {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--bg-white);
}

.enquiry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.85);
}

.enquiry-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.enquiry-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.enquiry-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
}

.contact-info i {
    font-size: 1.5rem;
    color: var(--accent-blue);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    font-family: inherit;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.error-msg {
    color: #ff8a8a;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #ff8a8a;
}

.form-group.error .error-msg {
    display: block;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: #04101d;
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
    max-width: 130px;
}

.brand-col p {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
}

.social-links a:hover {
    background: var(--primary-blue-light);
    transform: translateY(-3px);
}

.footer-col h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul a:hover {
    color: white;
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 4px 0 0 4px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-form button {
    padding: 0 1.5rem;
    border: none;
    background: var(--primary-blue-light);
    color: white;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--accent-blue);
    color: var(--primary-blue);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================================
   Clients Section
   ========================================= */
.clients.section {
    overflow: hidden;
}

.client-logo {
    height: 50px;
    object-fit: contain;
    transition: transform var(--transition-fast);
    margin: 0 3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.client-logo:hover {
    transform: scale(1.1);
}

/* =========================================
   Achievements & Testimonials Section
   ========================================= */
.achievements-section {
    background-color: var(--dark-blue);
    color: var(--bg-white);
}

.achievements-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.achievements-content h2 {
    color: var(--bg-white);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.achievements-content h3 {
    color: var(--bg-white);
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.achievements-content>p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 500px;
}

.achievements-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item i {
    font-size: 2rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.stat-item .stat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-item .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-container {
    position: relative;
    padding: 2rem 0;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-black);
    box-shadow: var(--shadow-lg);
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: -60px auto 1rem;
    border: 4px solid var(--bg-white);
}

.testimonial-name {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testimonial-time {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.testimonial-stars {
    color: #FFC107;
    margin-bottom: 1.5rem;
}

.testimonial-stars i.verified {
    color: var(--primary-blue);
    margin-left: 0.5rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    left: -20px;
    right: -20px;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 2;
}

.testimonial-btn {
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: background var(--transition-fast);
}

.testimonial-btn:hover {
    background: var(--primary-blue);
}

.testimonial-action {
    text-align: right;
    margin-top: 1.5rem;
}

.btn-danger {
    background-color: var(--accent-green);
    color: var(--bg-white);
}

.btn-danger:hover {
    background-color: #c91818;
}

/* =========================================
   Turnkey Solutions Section
   ========================================= */
.turnkey-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--dark-blue);
    color: var(--bg-white);
}

.turnkey-image {
    min-height: 500px;
    position: relative;
}

.turnkey-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.turnkey-content {
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.turnkey-content h2 {
    color: var(--bg-white);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.turnkey-content>p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.turnkey-list-title {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.turnkey-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.turnkey-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.turnkey-list li i {
    color: var(--bg-white);
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 0.4rem;
}

/* =========================================
   FAQs Section
   ========================================= */
.faq-section {
    background: var(--bg-white);
    padding: 6rem 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.5rem;
    background: var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.125rem;
}

.faq-question i {
    color: var(--primary-blue);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-muted);
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.faq-cta h3 {
    margin-bottom: 1rem;
}

.faq-cta p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* =========================================
   Responsive queries
   ========================================= */
@media (max-width: 992px) {
    .enquiry-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }


    .about-flex {
        flex-direction: column;
        gap: 2rem;
    }

    .achievements-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .turnkey-wrapper {
        grid-template-columns: 1fr;
    }

    .turnkey-image {
        min-height: 300px;
    }

    .turnkey-content {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 0;
    }

    .logo img {
        height: 60px !important;
        width: auto !important;
    }

    .header.scrolled .logo img {
        height: 48px !important;
        width: auto !important;
    }

    /* Removed old hero form override */

    .peb-form-row {
        grid-template-columns: 1fr;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-md);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path var(--transition-normal);
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-links a,
    .header.scrolled .nav-links a {
        color: var(--text-black);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        margin-top: 1rem;
        display: none;
    }

    .dropdown.active>.dropdown-menu {
        display: block;
    }

    .dropdown-submenu .dropdown-menu {
        margin-top: 0;
        padding-left: 1rem;
        background-color: rgba(0, 0, 0, 0.03);
    }

    .dropdown-submenu.active>.dropdown-menu {
        display: block;
    }

    .dropdown-submenu.active>a i {
        transform: rotate(180deg);
    }

    .header .btn {
        display: none;
    }

    .header.scrolled {
        background-color: var(--bg-white);
    }

    .header:not(.scrolled) .nav-links {
        background: var(--bg-white);
        box-shadow: var(--shadow-lg);
    }

    .header:not(.scrolled) .nav-links a {
        color: var(--text-black);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .turnkey-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-rebuilt h1 {
        font-size: 1.8rem !important;
    }

    .hero-btns {
        flex-direction: column;
    }

    .glass-panel {
        padding: 2rem 1.5rem;
    }
}
/* Make mobile menu scrollable */
@media (max-width: 1024px) {
    .nav-links {
        overflow-y: auto;
        max-height: 100vh;
        -webkit-overflow-scrolling: touch;
    }

    /* Ensure submenu items are fully visible */
    .dropdown-submenu .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        padding-left: 20px;
        display: none;
        background: transparent;
        width: 100%;
    }

    .dropdown-submenu.open > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu > a i {
        transition: transform 0.2s;
    }

    .dropdown-submenu.open > a i {
        transform: rotate(180deg);
    }
}

/* =========================================
   Fixed Contact Widgets (Floating)
   ========================================= */
.floating-widgets {
    position: fixed;
    bottom: 30px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
    animation: slideInRight 0.6s cubic-bezier(0.2, 0, 0, 1);
}

.widget-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: #0a1128;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    outline: none;
}

.widget-btn:hover {
    transform: scale(1.12) translateY(-4px);
    background-color: #0b57d0;
    box-shadow: 0 10px 24px rgba(11, 87, 208, 0.3);
}

.widget-btn.whatsapp {
    background-color: #25D366;
}

.widget-btn.whatsapp:hover {
    background-color: #128C7E;
}


@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Hide floating widgets on mobile */
@media (max-width: 768px) {
    .floating-widgets {
        display: none !important;
    }
}
/* =========================================
   Gallery & Lightbox
   ========================================= */
.gallery-section {
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 17, 40, 0.9) 0%, transparent 70%);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 1;
    transition: background 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(10, 17, 40, 0.95) 0%, rgba(10, 17, 40, 0.4) 50%, transparent);
}

.gallery-overlay .project-details {
    transform: translateY(0);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-overlay h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay ul {
    list-style: none;
    padding: 0;
    color: #cbd5e1;
    font-size: 0.875rem;
}

.gallery-overlay ul li {
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-overlay .zoom-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .zoom-btn {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

/* Lightbox styles are located at the end of the file */

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 500;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.lightbox-close:hover {
    background: #ef4444;
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .floating-widgets {
        bottom: 25px;
        right: 20px;
    }

    .widget-btn {
        width: 52px;
        height: 52px;
        font-size: 19px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Contact Page Specifics
   ========================================= */

.btn-accent {
    background-color: var(--accent-green);
    color: var(--bg-white);
    border: 1px solid var(--accent-green);
}

.btn-accent:hover {
    background-color: #68B91A;
    color: var(--bg-white);
    box-shadow: var(--shadow-hover);
}

.contact-hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    padding: 13rem 0 6rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    max-width: 900px;
    margin-inline: auto;
}

.contact-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.contact-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 992px) {
    .contact-split-layout {
        grid-template-columns: 1fr;
    }
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-green);
    transition: transform var(--transition-fast);
}

.info-card:hover {
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-blue);
}

.info-card h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    color: var(--dark-blue);
}

.info-card p {
    color: var(--text-black);
    margin-bottom: 0;
}

.premium-form-box {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--primary-blue);
}

.premium-form-box h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.form-group-enhanced {
    margin-bottom: 1.25rem;
}

.form-group-enhanced label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-group-enhanced input,
.form-group-enhanced select,
.form-group-enhanced textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--bg-light);
    transition: all var(--transition-fast);
}

.form-group-enhanced input:focus,
.form-group-enhanced select:focus,
.form-group-enhanced textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px var(--accent-blue);
}

.trust-authority-section {
    background-color: var(--dark-blue);
    padding: 4rem 0;
    color: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item i {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
    display: block;
}

.trust-item .trust-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
}

.trust-item .trust-text {
    font-size: 1rem;
    opacity: 0.8;
}

.service-icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}

.s-icon-card {
    padding: 2rem 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.s-icon-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.s-icon-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.s-icon-card h4 {
    font-size: 1.1rem;
    color: var(--text-black);
}

.why-us-section {
    padding: 5rem 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-box {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--accent-green);
}

.why-box i {
    font-size: 2rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.why-box h4 {
    margin-bottom: 0.75rem;
    color: var(--dark-blue);
}

.why-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   AEO & SEO 14-Point Service Template Styles
   ========================================= */

.quick-trust-bar {
    background-color: var(--dark-blue);
    color: white;
    padding: 1.5rem 0;
    border-bottom: 3px solid var(--accent-green);
}

.quick-trust-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.quick-trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.quick-trust-item i {
    color: var(--accent-green);
    font-size: 1.25rem;
}

.aeo-service-overview {
    background: var(--bg-light);
    border-left: 5px solid var(--primary-blue);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin: 3rem 0;
}

.aeo-service-overview h2 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.aeo-service-overview p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-black);
    margin-bottom: 1.5rem;
}

.aeo-service-overview ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.aeo-service-overview ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.aeo-service-overview ul li i {
    color: var(--accent-green);
}

.detailed-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2.5rem;
}

@media (max-width: 992px) {
    .detailed-service-grid {
        grid-template-columns: 1fr;
    }
}

.service-sub-block {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.service-sub-block h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-sub-block h3 i {
    color: var(--accent-green);
}

/* 5-Step Process Timeline */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 4rem auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--border-color);
    transform: translateX(-50%);
}

.timeline-step {
    position: relative;
    width: 50%;
    padding: 2rem 3rem;
    box-sizing: border-box;
}

.timeline-step:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-step:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-step::after {
    content: attr(data-step);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 1;
    border: 4px solid var(--bg-white);
}

.timeline-step:nth-child(odd)::after {
    right: -24px;
}

.timeline-step:nth-child(even)::after {
    left: -24px;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--primary-blue);
}

.timeline-content h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .process-timeline::before {
        left: 24px;
    }

    .timeline-step {
        width: 100%;
        left: 0 !important;
        padding: 1.5rem 1.5rem 1.5rem 4rem !important;
        text-align: left !important;
    }

    .timeline-step::after {
        left: 4px !important;
    }
}

.geo-seo-boost {
    background-color: var(--geo-bg);
    padding: 3rem 0;
    border-top: 1px dashed #ccc;
    border-bottom: 1px dashed #ccc;
}

.geo-seo-boost p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

.strong-cta-strip {
    background: linear-gradient(90deg, #7ddc1f 0%, #68B91A 100%);
    color: white;
    padding: 2.5rem 0;
    text-align: center;
    border-radius: var(--radius-md);
    margin: 4rem 0;
    box-shadow: 0 10px 30px rgba(125, 220, 31, 0.3);
}

.strong-cta-strip h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.strong-cta-strip p.urgency {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.map-embed {
    width: 100%;
    margin-bottom: -10px;
    /* Removes gap above footer */
}

.industries-served-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.industry-chip {
    background: var(--border-color);
    color: var(--dark-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.industry-chip:hover {
    background: var(--primary-blue);
    color: white;
}

/* =========================================
   FAQ Accordion Global Styles
   ========================================= */
.faq-section {
    padding: 6rem 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary-blue-light);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-blue);
    background: none;
    width: 100%;
    text-align: left;
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    font-size: 0.875rem;
    transition: transform var(--transition-normal);
    color: var(--text-muted);
}

.faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-question {
    color: var(--primary-blue);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-in-out;
}

.faq-answer-inner {
    padding: 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* =========================================
   Industrial Shed Landing Page
   ========================================= */

/* Hero Section */
.ind-hero {
    position: relative;
    padding: 10rem 0 6rem;
    background-size: cover;
    background-position: center;
    color: var(--bg-white);
}

.ind-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 17, 40, 0.9), transparent);
    z-index: 1;
}

.ind-hero .container {
    position: relative;
    z-index: 2;
}

.ind-hero h1 {
    font-size: 3.5rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
    max-width: 800px;
    font-weight: 700;
}

.ind-hero p.subheading {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 650px;
    color: var(--bg-white);
}

.ind-hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ind-btn-whatsapp {
    background-color: var(--accent-green);
    color: var(--text-black);
}

.ind-btn-whatsapp:hover {
    background-color: #6bc219;
    box-shadow: var(--shadow-hover);
}

/* Trust Bar */
.ind-trust-bar {
    background-color: var(--geo-bg);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.ind-trust-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.ind-trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-black);
}

.ind-trust-item i {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

/* Intro Section */
.ind-intro {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.ind-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ind-intro-highlight {
    background-color: var(--accent-blue);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--primary-blue);
    margin: 1.5rem 0;
    font-weight: 600;
    color: var(--dark-blue);
}

.ind-intro-img img {
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    width: 100%;
}

/* Enhanced Project Modal Lightbox */
.lightbox-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999999 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    width: 95%;
    max-width: 1000px;
    height: auto;
    max-height: 85vh;
    transform: scale(0.95) translateY(20px);
    transition: all 0.3s ease;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1) translateY(0);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: var(--dark-blue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10002;
    box-shadow: var(--shadow-sm);
}

.lightbox-close:hover {
    background: #ef4444;
    color: white;
    transform: scale(1.1);
}

.lightbox-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    height: 100%;
    min-height: 400px;
    overflow-y: auto;
}

.lightbox-image-container {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.lightbox-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-white);
    overflow-y: auto;
}

.lightbox-header {
    margin-bottom: 2rem;
}

.lightbox-header h3 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.status-chip {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: var(--accent-blue);
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lightbox-details-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.detail-text {
    display: flex;
    flex-direction: column;
}

.detail-text .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
}

.detail-text .value {
    font-size: 1.2rem;
    color: var(--dark-blue);
    font-weight: 600;
}

.verification-note {
    font-size: 0.85rem;
    color: #059669;
    /* Solid Green */
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lightbox-content {
        max-width: 900px;
    }

    .lightbox-header h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 900px) {
    .lightbox-main {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    .lightbox-image-container {
        height: 300px;
    }

    .lightbox-info {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .ind-intro-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Grid */
.ind-services {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.ind-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ind-service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.ind-service-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.ind-service-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.ind-service-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

/* Industries Section */
.ind-industries {
    padding: 5rem 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.ind-industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.ind-industry-card {
    background-color: var(--bg-white);
    padding: 2rem;
    text-align: center;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.ind-industry-card:hover {
    border-color: var(--accent-green);
    box-shadow: var(--shadow-sm);
}

.ind-industry-card i {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.ind-industry-card h4 {
    color: var(--text-black);
    font-size: 1.1rem;
}

/* Process Flow */
.ind-process {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.ind-process-flow {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.ind-process-flow::before {
    content: '';
    position: absolute;
    top: 25px;
    bottom: 25px;
    left: 29px;
    width: 2px;
    background-color: var(--border-color);
}

.ind-process-step {
    display: flex;
    gap: 2rem;
    position: relative;
}

.ind-process-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    z-index: 1;
}

.ind-process-content h3 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

/* Location Coverage */
.ind-location {
    padding: 5rem 0;
    background-color: var(--geo-bg);
    text-align: center;
}

.ind-location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.ind-loc-tag {
    background-color: var(--primary-blue-light);
    color: var(--bg-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 1rem;
}

.ind-loc-tag.primary {
    background-color: var(--primary-blue);
    font-size: 1.2rem;
    padding: 0.85rem 1.75rem;
}

/* Comparison Table */
.ind-comparison {
    padding: 5rem 0;
    background-color: var(--bg-white);
    overflow-x: auto;
}

.ind-table {
    width: 100%;
    max-width: 1000px;
    margin: 3rem auto 0;
    border-collapse: collapse;
}

.ind-table th,
.ind-table td {
    padding: 1.25rem;
    border: 1px solid var(--border-color);
    text-align: left;
    font-size: 1.1rem;
}

.ind-table th {
    background-color: var(--dark-blue);
    color: var(--bg-white);
    font-size: 1.2rem;
}

.ind-table td:nth-child(2) {
    background-color: var(--primary-blue-light);
    color: var(--bg-white);
    font-weight: 600;
}

.ind-table td:nth-child(3) {
    color: var(--text-muted);
}

/* Project Proof Grid */
.ind-proof {
    padding: 5rem 0;
}

.ind-proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.ind-proof-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    aspect-ratio: 4/3;
}

.ind-proof-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.ind-proof-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 17, 40, 0.85);
    color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
    padding: 2rem;
    text-align: center;
}

.ind-proof-item:hover .ind-proof-overlay {
    opacity: 1;
}

.ind-proof-item:hover img {
    transform: scale(1.05);
}

/* CTA Section */
.ind-cta-section {
    padding: 6rem 0;
    background-color: var(--dark-blue);
    color: var(--bg-white);
    text-align: center;
}

.ind-cta-section h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.ind-cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.ind-faq {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

/* Global adjust */
.ind-section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.ind-section-title h2 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.ind-section-title p {
    font-size: 1.15rem;
    color: var(--text-muted);
}

/* Fix Mobile Overlap - Force Logo Sizing */


/* =========================================
   Advanced Form & Contact Layout
   ========================================= */
.contact-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-col {
    flex: 1;
    min-width: 0;
}

.contact-form-col {
    flex: 1.5;
    min-width: 0;
}

.advanced-form-container {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.full-form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-color);
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.full-form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(11, 87, 208, 0.1);
}

select.full-form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23444746'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
}

.file-upload-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.file-upload-wrapper input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
}

.upload-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px dashed var(--primary-blue);
    border-radius: var(--radius-sm);
    background: var(--accent-blue);
    color: var(--primary-blue-dark);
    font-weight: 600;
    transition: all 0.3s;
}

.upload-btn:hover {
    background: var(--primary-blue-light);
    color: white;
    border-color: var(--primary-blue-light);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .contact-layout {
        flex-direction: column !important;
        gap: 2rem;
    }

    .contact-info-col,
    .contact-form-col {
        flex: unset;
        width: 100%;
    }

    .advanced-form-container {
        padding: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .upload-btn {
        font-size: 0.9rem;
        padding: 0.75rem;
        flex-direction: column;
    }
}


/* Sticky Bar Responsive Fix */
@media (max-width: 480px) {
    .sticky-item {
        font-size: 0.6rem;
        padding: 6px 2px;
    }
    
    .sticky-item i {
        font-size: 1rem;
    }
    
    .hero-cta-box {
        flex-direction: column;
    }
    
    .hero-cta-box .btn {
        width: 100%;
        text-align: center;
    }
}
/* HERO IMAGE FIX */
.hero-slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CAROUSEL TRANSITION */
.hero-slide {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {

    .hero-flex-container {
        gap: 20px;
    }

    /* REMOVE FORM FROM HERO FOR MOBILE (LCP FIX) */
    .hero-form-wrapper {
        display: none;
    }

    .hero-text-content h1 {
        font-size: 1.8rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }
}