   /* --- BRAND COLORS --- */
        :root {
            --navy:  #1E5A96;
            --red: #6E9E1E;
            --white: #ffffff;
            --light-bg: #f8f9fa;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                --navy: #1E5A96;
            --red:   #6E9E1E;
            --white: #ffffff;
            --footer-bg: #1E5A96; /* Deeper Navy for Footer contrast */
            --footer-text: #ffffff;
            --transition: all 0.3s ease;
                  --border-gray: #ddd;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: var(--light-bg);
        }

        /* --- HEADER DESIGN --- */
        header {
            background: var(--white);
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            border-bottom: 4px solid var(--navy);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 6%;
            max-width: 1300px;
            margin: 0 auto;
            height: 90px;
        }

      .logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    transition: var(--transition);
}

.logo-container:hover {
    transform: scale(1.02);
}

.logo-container img {
    height: 75px;
    width: auto;
    object-fit: contain;
}

/* TEXT PART */
.logo-text h1 {
    font-size: 18px;
    margin: 0;
    color: var(--navy);
    font-weight: 700;
    line-height: 1.2;
}

.logo-text p {
    font-size: 11px;
    margin: 0;
    color: var(--red);
    font-weight: 500;
    letter-spacing: 0.3px;
}
        .brand-text {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            color: var(--navy);
            font-weight: 800;
            font-size: 1.3rem;
            line-height: 1;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .brand-tagline {
            color: var(--red);
            font-weight: 600;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-top: 3px;
        }

        /* --- DESKTOP MENU --- */
        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 10px;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            text-decoration: none;
            color: var(--navy);
            font-weight: 600;
            padding: 12px 20px;
            display: block;
            font-size: 0.95rem;
            transition: var(--transition);
            text-transform: uppercase;
            border-radius: 5px;
        }

        .nav-link:hover {
            color: var(--red);
            background: rgba(227, 30, 36, 0.05);
        }

        /* Dropdown Design (Desktop) */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            min-width: 260px;
            list-style: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border-top: 4px solid var(--red);
            border-radius: 0 0 10px 10px;
            padding: 10px 0;
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item a {
            text-decoration: none;
            color: var(--navy);
            padding: 12px 20px;
            display: block;
            font-size: 0.9rem;
            font-weight: 500;
            transition: var(--transition);
        }

        .dropdown-item a:hover {
            background-color: var(--navy);
            color: var(--white);
            padding-left: 25px;
        }

        /* --- MOBILE TOGGLE BUTTON --- */
        .menu-toggle {
            display: none;
            cursor: pointer;
            width: 40px;
            height: 40px;
            position: relative;
            z-index: 1100;
        }

        .menu-toggle span {
            position: absolute;
            left: 5px;
            width: 30px;
            height: 3px;
            background: var(--navy);
            border-radius: 3px;
            transition: var(--transition);
        }

        .menu-toggle span:nth-child(1) { top: 12px; }
        .menu-toggle span:nth-child(2) { top: 19px; }
        .menu-toggle span:nth-child(3) { top: 26px; }

        /* Cross Icon Animation */
        .menu-toggle.open span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
            background: var(--white);
        }
        .menu-toggle.open span:nth-child(2) {
            opacity: 0;
        }
        .menu-toggle.open span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
            background: var(--white);
        }
  /* --- HERO SECTION STYLING --- */
        .hero {
            position: relative;
            background: linear-gradient(135deg, var(--white) 0%, #eef2f7 100%);
            min-height: 90vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 40px 6%;
        }

        /* Decorative background element for a modern look */
        .hero::before {
            content: '';
            position: absolute;
            top: -10%;
            right: -5%;
            width: 40%;
            height: 60%;
            background: rgba(10, 29, 66, 0.03);
            border-radius: 50%;
            z-index: 0;
        }

        .hero-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        /* --- TEXT CONTENT AREA --- */
        .hero-content {
            animation: fadeInUp 1s ease-out;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(227, 30, 36, 0.1);
            color: var(--red);
            padding: 6px 15px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            border: 1px solid rgba(227, 30, 36, 0.2);
        }

        .hero-content h1 {
            color: var(--navy);
            font-size: 3.5rem;
            line-height: 1.2;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .hero-content h1 span {
            color: var(--red);
            position: relative;
        }

        /* Decorative line under the main word */
        .hero-content h1 span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(227, 30, 36, 0.2);
            z-index: -1;
        }

        .hero-content p {
            color: #555;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
            max-width: 600px;
        }

        .highlight-box {
            background: var(--white);
            border-left: 5px solid var(--red);
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border-radius: 0 10px 10px 0;
            margin-bottom: 35px;
            animation: slideInLeft 1.2s ease-out;
        }

        .highlight-box b {
            color: var(--navy);
            font-size: 1.3rem;
            display: block;
            margin-bottom: 5px;
        }

        /* --- CTA BUTTONS --- */
        .hero-btns {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 35px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            text-transform: uppercase;
            font-size: 0.9rem;
            display: inline-block;
            text-align: center;
        }

        .btn-primary {
            background: var(--navy);
            color: var(--white);
            box-shadow: 0 10px 20px rgba(10, 29, 66, 0.2);
        }

        .btn-primary:hover {
            background: var(--red);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(227, 30, 36, 0.3);
        }

        .btn-secondary {
            border: 2px solid var(--navy);
            color: var(--navy);
        }

        .btn-secondary:hover {
            background: var(--navy);
            color: var(--white);
            transform: translateY(-3px);
        }

        /* --- IMAGE AREA --- */
        .hero-image-container {
            position: relative;
            animation: fadeInRight 1.2s ease-out;
        }

        .main-image {
            width: 100%;
            height: 500px;
        
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            border-bottom: 10px solid var(--navy);
            border-right: 10px solid var(--red);
            transition: var(--transition);
        }

        .main-image:hover {
            transform: scale(1.02);
        }

        /* Floating Experience Card */
        .exp-card {
            position: absolute;
            bottom: -20px;
            left: -30px;
            background: var(--white);
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            gap: 15px;
            border-top: 4px solid var(--red);
            animation: float 3s ease-in-out infinite;
        }

        .exp-card .icon {
            background: var(--navy);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .exp-card .text b {
            color: var(--navy);
            font-size: 1.2rem;
            display: block;
        }

        .exp-card .text span {
            font-size: 0.8rem;
            color: #777;
        }

        /* --- ANIMATIONS --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
 /* --- ABOUT SECTION MAIN --- */
        .about-section {
            padding: 100px 6%;
            background-color: var(--white);
            overflow: hidden;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
        }

        /* --- LEFT SIDE: IMAGE AREA --- */
        .about-image-wrapper {
            position: relative;
            animation: slideInLeft 1s ease-out;
        }

        .main-about-img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 20px 20px 0px var(--navy);
            border: 2px solid var(--navy);
            position: relative;
            z-index: 2;
        }

        .image-bg-decoration {
            position: absolute;
            top: -30px;
            left: -30px;
            width: 150px;
            height: 150px;
            background: var(--red);
            border-radius: 50%;
            z-index: 1;
            opacity: 0.2;
        }

        .experience-badge {
            position: absolute;
            bottom: 30px;
            right: -20px;
            background: var(--red);
            color: var(--white);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(227, 30, 36, 0.3);
            z-index: 3;
            animation: float 3s ease-in-out infinite;
        }

        .experience-badge h3 {
            font-size: 2rem;
            font-weight: 800;
            line-height: 1;
        }

        .experience-badge p {
            font-size: 0.8rem;
            text-transform: uppercase;
            font-weight: 600;
        }

        /* --- RIGHT SIDE: CONTENT AREA --- */
        .about-text {
            animation: fadeInRight 1s ease-out;
        }

        .section-subtitle {
            color: var(--red);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 10px;
        }

        .section-title {
            color: var(--navy);
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 25px;
        }

        .section-title span {
            color: var(--red);
        }

        .about-description {
            color: var(--text-gray);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        /* --- CORE VALUES GRID --- */
        .values-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 40px;
        }

        .value-card {
            background: var(--light-bg);
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid var(--navy);
            transition: var(--transition);
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            border-left-color: var(--red);
        }

        .value-card i {
            color: var(--red);
            font-size: 1.5rem;
            margin-top: 5px;
        }

        .value-card h4 {
            color: var(--navy);
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .value-card p {
            font-size: 0.85rem;
            color: #666;
            line-height: 1.5;
        }

        /* --- BOTTOM SUMMARY --- */
        .about-footer {
            border-top: 2px solid #eee;
            padding-top: 25px;
            font-style: italic;
            color: var(--navy);
            font-weight: 500;
            position: relative;
            padding-left: 20px;
        }

        .about-footer::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 3rem;
            color: var(--red);
            opacity: 0.3;
            font-family: serif;
        }

        /* --- ANIMATIONS --- */
        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
 /* Main Section */
.infra-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px;
    text-align: center;
    box-sizing: border-box;
}

/* Header */
.section-header {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.section-header h2 {
    color: var(--navy);
    font-size: 32px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    margin: 0 0 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2::after {
    content: "";
    width: 65px;
    height: 4px;
    background-color: var(--accent);
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
}

.section-header p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin: 20px auto 0;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    align-items: stretch;
}

/* Card */
.service-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border-gray);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
    border-color: var(--navy);
}

/* Image */
.card-image {
    width: 100%;
    height: 190px;
    overflow: hidden;
    position: relative;
    background: #f4f4f4;
}

.card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.12));
    pointer-events: none;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .card-image img {
    transform: scale(1.08);
}

/* Content */
.card-content {
    padding: 0 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.icon-box {
    width: 56px;
    height: 56px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-top: -28px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    border: 5px solid var(--white);
    transition: var(--transition);
    flex-shrink: 0;
}

.service-card:hover .icon-box {
    background: var(--accent);
    transform: rotate(360deg);
}

.service-card h3 {
    color: var(--navy);
    font-size: 19px;
    line-height: 1.3;
    margin: 0 0 12px;
}

.service-card p {
    color: #747474;
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 22px;
    flex: 1;
}

.learn-more {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    margin-top: auto;
}

.learn-more:hover {
    gap: 13px;
    color: var(--navy);
}


 /* --- CLIENT SECTION MAIN --- */
        .clients-section {
            padding: 100px 6%;
            background-color: var(--light-bg);
            text-align: center;
            position: relative;
        }

        /* Background decoration to make it look premium */
        .clients-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--navy), var(--red), var(--navy));
        }

        .section-header {
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .section-subtitle {
            color: var(--red);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 10px;
        }

        .section-title {
            color: var(--navy);
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .section-title span {
            color: var(--red);
        }

        /* --- LOGO GRID --- */
        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }

        .client-card {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 160px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            border: 1px solid #eee;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        /* The Red line detail on hover */
        .client-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 4px;
            background: var(--red);
            transition: var(--transition);
        }

        .client-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-color: transparent;
        }

        .client-card:hover::before {
            width: 100%;
        }

        .client-logo {
            max-width: 100%;
            max-height: 150px;
            width: auto;
            height: auto;
            object-fit: contain;
            /* Grayscale effect for premium look */
            /* filter: grayscale(100%); */
            opacity: 0.7;
            transition: var(--transition);
        }

        .client-card:hover .client-logo {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }

        .client-name {
            position: absolute;
            bottom: 10px;
            font-size: 0.7rem;
            color: #aaa;
            font-weight: 500;
            text-transform: uppercase;
            opacity: 0;
            transition: var(--transition);
        }

        .client-card:hover .client-name {
            opacity: 1;
            color: var(--navy);
        }
           /* --- KEY HIGHLIGHTS SECTION --- */
        .highlights-section {
            padding: 100px 6%;
            background-color: var(--white);
            position: relative;
        }

        /* Background Decoration */
        .highlights-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: rgba(10, 29, 66, 0.03);
            border-radius: 50%;
            z-index: 0;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
            position: relative;
            z-index: 1;
        }

        .subtitle {
            color: var(--red);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 10px;
        }

        .title {
            color: var(--navy);
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
        }

        .title span {
            color: var(--red);
        }

        .underline {
            width: 80px;
            height: 4px;
            background: var(--red);
            margin: 20px auto 0;
            border-radius: 2px;
        }

        /* --- STATS GRID --- */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .stat-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid #eee;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-color: var(--red);
        }

        /* Top Accent Line */
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--navy);
            transition: var(--transition);
        }

        .stat-card:hover::before {
            background: var(--red);
        }

        .stat-icon {
            width: 70px;
            height: 70px;
            background: rgba(10, 29, 66, 0.1);
            color: var(--navy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .stat-card:hover .stat-icon {
            background: var(--navy);
            color: var(--white);
            transform: rotateY(360deg);
        }

        .stat-number {
            color: var(--red);
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 10px;
            display: block;
        }

        .stat-title {
            color: var(--navy);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .stat-desc {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.6;
        }
          /* --- CONTACT SECTION MAIN --- */
        .contact-section {
            padding: 100px 6%;
            background-color: var(--white);
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .section-subtitle {
            color: var(--red);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 10px;
        }

        .section-title {
            color: var(--navy);
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
        }

        .section-title span {
            color: var(--red);
        }

        /* --- LAYOUT GRID --- */
        .contact-container {
            display: grid;
            /* grid-template-columns: 1.2fr 0.8fr; */
            gap: 40px;
            max-width: 1300px;
            margin: 0 auto;
        }

        /* --- LEFT SIDE: CONTACT INFO --- */
        .contact-info-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        .contact-card {
            background: var(--light-bg);
            padding: 30px;
            border-radius: 20px;
            transition: var(--transition);
            border-bottom: 4px solid transparent;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-card:hover {
            transform: translateY(-10px);
            background: var(--white);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-bottom: 4px solid var(--red);
        }

        .contact-card i {
            font-size: 1.8rem;
            color: var(--red);
            margin-bottom: 10px;
        }

        .contact-card h3 {
            color: var(--navy);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .contact-card p, .contact-card a {
            color: #555;
            font-size: 0.9rem;
            line-height: 1.6;
            text-decoration: none;
            transition: var(--transition);
        }

        .contact-card a:hover {
            color: var(--red);
        }

        /* Full Width Card for Map */
        .map-card {
            grid-column: span 2;
            border-radius: 20px;
            overflow: hidden;
            height: 350px;
            border: 2px solid var(--light-bg);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }

        /* --- RIGHT SIDE: COMPLIANCE/LICENCE --- */
        .compliance-wrapper {
            background: var(--navy);
            color: var(--white);
            padding: 40px;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            gap: 30px;
            box-shadow: 0 20px 40px rgba(10, 29, 66, 0.2);
        }

        .compliance-wrapper h2 {
            font-size: 1.8rem;
            font-weight: 700;
            border-bottom: 2px solid var(--red);
            padding-bottom: 15px;
            margin-bottom: 10px;
        }

        .license-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .license-item {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 10px;
            transition: var(--transition);
            border-left: 3px solid var(--red);
        }

        .license-item:hover {
            background: rgba(255,255,255,0.1);
            transform: translateX(10px);
        }

        .license-item i {
            color: var(--red);
            font-size: 1.2rem;
        }

        .license-item span {
            font-size: 0.95rem;
            font-weight: 500;
        }

 /* --- FOOTER MAIN STYLING --- */
        footer {
            background-color: var(--footer-bg);
            color: var(--footer-text);
            padding: 80px 6% 30px;
            position: relative;
            border-top: 5px solid var(--red);
        }

        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 40px;
        }

        /* --- COLUMN 1: Company Info --- */
        .footer-about .logo-footer {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            margin-bottom: 25px;
        }

        .footer-about .logo-footer img {
            height: 60px;
            width: auto;
        }

        .footer-about .brand-name {
            color: var(--white);
            font-weight: 800;
            font-size: 1.2rem;
            text-transform: uppercase;
            line-height: 1;
        }

        .footer-about .brand-name span {
            display: block;
            font-size: 0.7rem;
            color: var(--red);
            letter-spacing: 1px;
        }

        .footer-about p {
            font-size: 0.9rem;
            line-height: 1.8;
            margin-bottom: 25px;
            opacity: 0.8;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.05);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .social-links a:hover {
            background: var(--red);
            transform: translateY(-5px);
            border-color: var(--red);
        }

        /* --- COLUMN 2 & 3: Links --- */
        .footer-links h3, .footer-services h3 {
            color: var(--white);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h3::after, .footer-services h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--red);
        }

        .link-list {
            list-style: none;
        }

        .link-list li {
            margin-bottom: 12px;
        }

        .link-list a {
            color: var(--footer-text);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .link-list a:hover {
            color: var(--white);
            padding-left: 8px;
        }

        .link-list a i {
            font-size: 0.7rem;
            color: var(--red);
        }

        /* --- COLUMN 4: Contact Details --- */
        .footer-contact h3 {
            color: var(--white);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-contact h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--red);
        }

        .contact-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .contact-item i {
            color: var(--red);
            font-size: 1.1rem;
            margin-top: 4px;
        }

        .contact-item span, .contact-item a {
            color: var(--footer-text);
            font-size: 0.9rem;
            line-height: 1.6;
            text-decoration: none;
            transition: var(--transition);
        }

        .contact-item a:hover {
            color: var(--white);
        }

        /* --- BOTTOM BAR --- */
        .footer-bottom {
            margin-top: 60px;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: #777;
        }

        .footer-bottom .copyright {
            opacity: 0.7;
        }

        .footer-bottom .footer-credits a {
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
        }
    /* --- UNIQUE ABOUT HEADER --- */
        .about-page-header {
            position: relative;
            height: 400px; /* Fixed height as requested */
            width: 100%;
            background: linear-gradient(135deg, rgba(10, 29, 66, 0.9), rgba(10, 29, 66, 0.7)), 
                        url('https://images.unsplash.com/photo-1504307651254-35682f97447a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            overflow: hidden;
            /* UNIQUE CUT: Diagonal bottom edge */
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
        }

        /* Floating decorative element */
        .about-page-header::before {
            content: '';
            position: absolute;
            top: -10%;
            right: -5%;
            width: 300px;
            height: 300px;
            background: var(--red);
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.3;
            z-index: 1;
        }

        .header-container {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            padding: 0 20px;
            animation: fadeInUp 1s ease-out;
        }

        /* Breadcrumb Style Tag */
        .breadcrumb {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 6px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.9);
        }

        .breadcrumb span {
            color: var(--red);
            font-weight: 700;
        }

        /* Main Heading */
        .about-title {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .about-title span {
            color: var(--red);
            position: relative;
            display: inline-block;
        }

        /* Red line under the span */
        .about-title span::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            height: 12px;
            background: rgba(227, 30, 36, 0.3);
            z-index: -1;
        }

        .about-subtitle {
            font-size: 1.2rem;
            font-weight: 300;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* --- ANIMATIONS --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* --- PROGRESS SECTION MAIN --- */
        .progress-section {
            padding: 100px 6%;
            background-color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .subtitle {
            color: var(--red);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 10px;
        }

        .title {
            color: var(--navy);
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
        }

        .title span {
            color: var(--red);
        }

        .underline {
            width: 80px;
            height: 4px;
            background: var(--red);
            margin: 20px auto 0;
            border-radius: 2px;
        }

        /* --- PROGRESS GRID --- */
        .progress-container {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px 80px;
            position: relative;
            z-index: 1;
        }

        .progress-item {
            position: relative;
        }

        .progress-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .progress-label {
            color: var(--navy);
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .progress-percentage {
            color: var(--red);
            font-weight: 800;
            font-size: 1.2rem;
        }

        /* The Bar Background */
        .progress-bar-bg {
            width: 100%;
            height: 12px;
            background: var(--light-bg);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #eee;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
        }

        /* The Actual Filling Bar */
        .progress-fill {
            height: 100%;
            width: 0%; /* Start at 0 for animation */
            background: linear-gradient(to right, var(--navy), var(--red));
            border-radius: 10px;
            transition: width 2s cubic-bezier(0.1, 0.42, 0.41, 1);
            position: relative;
        }

        /* Shimmer effect on the bar */
        .progress-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
 /* --- UNIQUE CONTACT HEADER --- */
        .contact-page-header {
            position: relative;
            height: 350px;
            width: 100%;
            background: linear-gradient(45deg, rgba(10, 29, 66, 0.95), rgba(10, 29, 66, 0.7)), 
                        url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            overflow: hidden;
            /* UNIQUE CUT: Sharp asymmetric bottom edge */
            clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
        }

        /* Red Accent Shape in background */
        .contact-page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, var(--red) 0%, transparent 30%);
            opacity: 0.2;
            z-index: 1;
        }

        .header-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            padding: 0 20px;
            animation: slideInUp 1s ease-out;
        }

        /* Unique Glassy Breadcrumb */
        .breadcrumb-contact {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(12px);
            padding: 8px 20px;
            border-radius: 0 20px 0 20px; /* Unique asymmetric corners */
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 25px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
        }

        .breadcrumb-contact span {
            color: var(--red);
            font-weight: 700;
        }

        /* Main Heading */
        .contact-title {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: -2px;
        }

        .contact-title span {
            color: var(--red);
            position: relative;
        }

        /* Bottom Red line for the title */
        .contact-title span::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(227, 30, 36, 0.4);
            z-index: -1;
        }

        .contact-subtitle {
            font-size: 1.1rem;
            font-weight: 300;
            opacity: 0.9;
            max-width: 550px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* --- ANIMATION --- */
        @keyframes slideInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }
 /* --- FORM SECTION CONTAINER --- */
        .form-section {
            max-width: 800px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        /* Top Accent Bar */
        .form-top-bar {
            height: 8px;
            background: linear-gradient(to right, var(--navy), var(--red));
        }

        .form-container {
            padding: 40px;
        }

        .form-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .form-header h2 {
            color: var(--navy);
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .form-header p {
            color: #666;
            font-size: 0.95rem;
        }

        /* --- FORM ELEMENTS --- */
        .contact-form {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* 2 columns for desktop */
            gap: 25px;
        }

        .input-group {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .input-group label {
            color: var(--navy);
            font-weight: 600;
            font-size: 0.9rem;
            margin-left: 5px;
        }

        .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-wrapper i {
            position: absolute;
            left: 15px;
            color: #aaa;
            transition: var(--transition);
            font-size: 1rem;
        }

        .input-wrapper input, 
        .input-wrapper textarea {
            width: 100%;
            padding: 12px 15px 12px 45px;
            border: 2px solid var(--border-gray);
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: var(--transition);
            color: #333;
        }

        /* Focus Effects */
        .input-wrapper input:focus, 
        .input-wrapper textarea:focus {
            border-color: var(--red);
            box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.1);
        }

        .input-wrapper input:focus + i, 
        .input-wrapper textarea:focus + i {
            color: var(--red);
        }

        /* Full Width Fields */
        .full-width {
            grid-column: span 2;
        }

        textarea {
            height: 150px;
            resize: vertical;
        }

        /* --- SUBMIT BUTTON --- */
        .submit-btn {
            grid-column: span 2;
            background: var(--navy);
            color: var(--white);
            padding: 15px;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
        }

        .submit-btn:hover {
            background: var(--red);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(227, 30, 36, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }
/* --- UNIQUE BLUEPRINT HEADER --- */
        .turnkey-hero {
            position: relative;
            height: 450px;
            width: 100%;
            background-color: var(--navy);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            color: var(--white);
        }

        /* UNIQUE CSS-ONLY BLUEPRINT GRID BACKGROUND */
        .blueprint-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(var(--grid-color) 1px, transparent 1px),
                linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
            background-size: 40px 40px; /* Grid size */
            z-index: 1;
        }

        /* The "Industrial Slice" - Red Decorative Element */
        .industrial-slice {
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: var(--red);
            clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
            z-index: 2;
            opacity: 0.9;
            transition: var(--transition);
        }

        /* Floating Glass Content Card */
        .glass-card {
            position: relative;
            z-index: 3;
            background: var(--glass);
            backdrop-filter: blur(15px);
            padding: 50px;
            border-radius: 0 50px 0 50px; /* Unique asymmetric rounded corners */
            border: 1px solid rgba(255,255,255,0.2);
            box-shadow: 0 25px 50px rgba(0,0,0,0.4);
            max-width: 700px;
            margin-left: 5%;
            transform: rotate(-2deg); /* Subtle tilt for uniqueness */
            animation: floatIn 1s ease-out;
            border-left: 8px solid var(--red);
        }

        /* Typography - Using 'Syncopate' for a technical look */
        .turnkey-title {
            font-family: 'Syncopate', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.1;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .turnkey-title span {
            color: var(--red);
            display: block;
            font-size: 1.2rem;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 5px;
            margin-bottom: 10px;
        }

        .turnkey-subtitle {
            font-size: 1.1rem;
            font-weight: 300;
            line-height: 1.6;
            opacity: 0.9;
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 20px;
        }

        /* --- ANIMATIONS --- */
        @keyframes floatIn {
            from { opacity: 0; transform: translateX(-100px) rotate(-10deg); }
            to { opacity: 1; transform: translateX(0) rotate(-2deg); }
        }
        
           /* --- COMMON SECTION HEADER --- */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            color: var(--navy);
            font-size: 2.5rem;
            font-weight: 800;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--red);
        }

        .section-intro {
            color: var(--gray-text);
            max-width: 700px;
            margin: 20px auto 0;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* --- SECTION 1: COMPLETED PROJECTS (Timeline Style) --- */
        .completed-wrapper {
            background-color: var(--white);
            margin-bottom: 100px;
        }

        .project-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .completed-card {
            background: var(--light-bg);
            padding: 30px;
            border-radius: 15px;
            border-left: 6px solid var(--navy);
            transition: var(--transition);
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .completed-card:hover {
            transform: translateY(-10px);
            border-left-color: var(--red);
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            background: var(--white);
        }

        .completed-card .tag {
            background: var(--navy);
            color: var(--white);
            font-size: 0.7rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 50px;
            width: fit-content;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .completed-card h3 {
            color: var(--navy);
            font-size: 1.2rem;
            font-weight: 700;
            line-height: 1.4;
        }

        .completed-card p {
            color: var(--gray-text);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .partner-info {
            margin-top: 15px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--red);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* --- SECTION 2: ONGOING PROJECTS (Premium Value Style) --- */
        .ongoing-wrapper {
            background-color: var(--light-bg);
            padding: 80px 6%;
            border-radius: 50px 50px 0 0;
        }

        .scope-box {
            background: var(--navy);
            color: var(--white);
            padding: 30px;
            border-radius: 20px;
            margin-bottom: 50px;
            border-right: 10px solid var(--red);
            box-shadow: 0 15px 30px rgba(10,29,66,0.2);
        }

        .scope-box h3 {
            color: var(--red);
            font-size: 1.5rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .scope-box p {
            font-size: 1rem;
            line-height: 1.8;
            opacity: 0.9;
            font-weight: 300;
        }

        .ongoing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .ongoing-card {
            background: var(--white);
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transition: var(--transition);
            border: 1px solid #eee;
            position: relative;
            overflow: hidden;
        }

        .ongoing-card:hover {
            transform: scale(1.03);
            border-color: var(--red);
        }

        .value-badge {
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--red);
            color: var(--white);
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: 800;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .ongoing-card h4 {
            color: var(--navy);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.4;
            padding-right: 40px;
        }

        .ongoing-card .details {
            font-size: 0.9rem;
            color: var(--gray-text);
            line-height: 1.6;
        }

        .ongoing-card .details strong {
            color: var(--navy);
        }
                .container1 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 6%;
        }

 /* --- WATER TANK PAGE HEADER --- */
        .water-tank-header {
            position: relative;
            height: 400px;
            width: 100%;
            /* Background image of a water tower/tank */
            background: linear-gradient(135deg, rgba(10, 29, 66, 0.9) 0%, rgba(10, 29, 66, 0.5) 100%), 
                        url('https://images.unsplash.com/photo-1584467735815-f779ca896283?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            overflow: hidden;
            /* UNIQUE WAVE CUT: Represents water and structure */
            clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 90%, 50% 85%, 15% 90%, 0 85%);
        }

        /* Decorative Red Glow in background */
        .water-tank-header::after {
            content: '';
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 250px;
            height: 250px;
            background: var(--red);
            filter: blur(100px);
            opacity: 0.4;
            z-index: 1;
        }

        .header-container {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            padding: 0 20px;
            animation: fadeInUp 1s ease-out;
        }

        /* Premium Glass Badge */
        .service-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(15px);
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: var(--white);
        }

        /* Main Heading */
        .tank-title {
            font-size: 3.8rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .tank-title span {
            color: var(--red);
            position: relative;
        }

        /* Red highlight bar for a professional look */
        .tank-title span::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            width: 100%;
            height: 10px;
            background: rgba(227, 30, 36, 0.3);
            z-index: -1;
        }

        .tank-subtitle {
            font-size: 1.2rem;
            font-weight: 300;
            opacity: 0.9;
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* --- ANIMATION --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }
      /* --- IMPORTANCE SECTION MAIN --- */
        .importance-section {
            /* padding: 100px 6%; */
            background-color: var(--white);
            position: relative;
        }

        .section-header1 {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .section-subtitle1 {
            color: var(--red);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 10px;
        }

        .section-title1 {
            color: var(--navy);
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .section-title1 span {
            color: var(--red);
        }

        .divider1 {
            width: 70px;
            height: 4px;
            background: var(--red);
            margin: 0 auto;
            border-radius: 2px;
        }

        /* --- VALUE GRID --- */
        .importance-grid1 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .value-card1 {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid #eee;
            transition: var(--transition);
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        /* Bottom Accent Line */
        .value-card1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 5px;
            background: var(--red);
            transition: var(--transition);
        }

        .value-card1:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border-color: transparent;
        }

        .value-card1:hover::after {
            width: 100%;
        }

        .icon-box1 {
            width: 80px;
            height: 80px;
            background: rgba(10, 29, 66, 0.05);
            color: var(--navy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 25px;
            transition: var(--transition);
        }

        .value-card1:hover .icon-box {
            background: var(--navy);
            color: var(--white);
            transform: rotateY(360deg);
        }

        .value-card1 h3 {
            color: var(--navy);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .value-card1 p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* --- BOTTOM SUMMARY BAR --- */
        .summary-bar {
            max-width: 1200px;
            margin: 60px auto 0;
            background: linear-gradient(135deg, var(--navy) 0%, #1a3a8a 100%);
            color: var(--white);
            padding: 40px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 30px;
            box-shadow: 0 15px 30px rgba(10, 29, 66, 0.2);
        }

        .summary-icon {
            font-size: 3rem;
            color: var(--red);
            flex-shrink: 0;
        }

        .summary-text h4 {
            font-size: 1.4rem;
            margin-bottom: 5px;
        }

        .summary-text p {
            font-size: 1rem;
            opacity: 0.8;
            font-weight: 300;
        }
          /* --- SECTION MAIN --- */
        .installation-section {
            padding: 100px 6%;
            background-color: var(--blueprint-blue);
            position: relative;
            overflow: hidden;
        }

        /* Background Blueprint Grid Effect */
        .installation-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: linear-gradient(var(--navy) 1px, transparent 1px),
                              linear-gradient(90deg, var(--navy) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.03;
            z-index: 0;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
            position: relative;
            z-index: 1;
        }

        .section-header h2 {
            color: var(--navy);
            font-size: 3rem;
            font-weight: 800;
            text-transform: uppercase;
            line-height: 1.1;
        }

        .section-header h2 span {
            color: var(--red);
            position: relative;
        }

        /* --- THE MAIN PIPELINE (Central Line) --- */
        .pipeline-container {
            position: relative;
            max-width: 1100px;
            margin: 0 auto;
            z-index: 1;
        }

        .main-pipe {
            position: absolute;
            left: 50%;
            top: 0;
            width: 8px;
            height: 100%;
            background: linear-gradient(to bottom, var(--navy), var(--red), var(--navy));
            transform: translateX(-50%);
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(10, 29, 66, 0.3);
        }

        /* Pipeline-Joint (The Dot) */
        .pipe-joint {
            position: absolute;
            left: 50%;
            width: 20px;
            height: 20px;
            background: var(--white);
            border: 4px solid var(--red);
            border-radius: 50%;
            transform: translate(-50%, 0);
            z-index: 3;
            box-shadow: 0 0 0 5px rgba(227, 30, 36, 0.2);
        }

        /* --- UNIQUE PROCESS PODS --- */
        .process-pod {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 100px;
            width: 100%;
            position: relative;
        }

        .pod-content {
            width: 45%;
            position: relative;
            transition: var(--transition);
        }

        /* Left Side Pod */
        .pod-left { text-align: right; }
        /* Right Side Pod */
        .pod-right { text-align: left; }

        /* THE UNIQUE SHAPE: Skewed Industrial Box */
        .industrial-box {
            background: var(--white);
            padding: 30px;
            border-radius: 20px;
            box-shadow: 15px 15px 0px var(--navy);
            border: 2px solid var(--navy);
            position: relative;
            transition: var(--transition);
            /* Subtle tilt for unique look */
            transform: skewX(-2deg); 
        }

        .pod-right .industrial-box {
            transform: skewX(2deg);
            box-shadow: -15px 15px 0px var(--red);
            border-color: var(--red);
        }

        .industrial-box:hover {
            transform: skewX(0deg) scale(1.05);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .step-num {
            font-family: 'Syncopate', sans-serif; /* Technical font feel */
            font-size: 3rem;
            font-weight: 800;
            color: rgba(10, 29, 66, 0.1);
            position: absolute;
            top: -30px;
            z-index: -1;
            transition: var(--transition);
        }

        .pod-right .step-num {
            right: 0;
            color: rgba(227, 30, 36, 0.1);
        }

        .industrial-box:hover .step-num {
            color: var(--red);
            top: -40px;
        }

        .industrial-box h3 {
            color: var(--navy);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .pod-right .industrial-box h3 {
            color: var(--red);
        }

        .industrial-box p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* Technical Spec List */
        .tech-specs {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: inherit;
        }

        .tech-specs li {
            background: var(--blueprint-blue);
            color: var(--navy);
            padding: 5px 12px;
            border-radius: 5px;
            font-size: 0.75rem;
            font-weight: 600;
            border: 1px solid rgba(10, 29, 66, 0.1);
        }

        /* Image Wrapper */
        .pod-image {
            width: 45%;
            position: relative;
            z-index: 2;
        }

        .pod-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
            filter: grayscale(30%);
            transition: var(--transition);
        }

        .pod-image:hover img {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

   @media (max-width: 1024px) {
            .hero-content h1 { font-size: 2.8rem; }
              .section-title { font-size: 2.2rem; }
              /* .services-grid {
                grid-template-columns: repeat(2, 1fr);
            } */
            .section-title { font-size: 2.4rem; }
               .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .title { font-size: 2.4rem; }
                   .contact-container {
                grid-template-columns: 1fr;
            }
            .compliance-wrapper {
                order: 2;
            }
             .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 50px;
            }
                 .importance-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        /* --- MOBILE MENU VIEW --- */
        @media (max-width: 992px) {
            .menu-toggle {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background: var(--navy);
                flex-direction: column;
                align-items: flex-start;
                padding: 100px 30px;
                transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
                box-shadow: -10px 0 30px rgba(0,0,0,0.3);
                gap: 0;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-item {
                width: 100%;
            }

            .nav-link {
                color: var(--white);
                font-size: 1.1rem;
                padding: 15px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .nav-link:hover {
                color: var(--red);
                background: transparent;
            }

            /* Mobile Dropdown Fix */
            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                background: rgba(0, 0, 0, 0.2);
                box-shadow: none;
                border: none;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
                padding: 0;
            }

            .dropdown.open {
                max-height: 300px; /* Opens the dropdown on click */
                padding: 10px 0;
            }

            .dropdown-item a {
                color: #ccc;
                padding: 12px 20px 12px 20px;
                border-bottom: 1px solid rgba(255,255,255,0.05);
            }

            .dropdown-item a:hover {
                color: var(--white);
                background: transparent;
            }
               .progress-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
              .turnkey-title { font-size: 2.5rem; }
            .industrial-slice { width: 30%; }
             .process-pod {
                flex-direction: column;
                gap: 40px;
                text-align: center;
            }
            .pod-content, .pod-image {
                width: 100%;
            }
            .pod-left, .pod-right {
                text-align: center;
            }
            .pod-left .industrial-box, .pod-right .industrial-box {
                transform: skewX(0deg);
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }
            .tech-specs {
                justify-content: center;
            }
              .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
        }
        @media (max-width: 991px) {
    .infra-section {
        padding: 60px 18px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .card-image {
        height: 210px;
    }
}
   @media (max-width: 768px) {
     .logo-text h1 {
        font-size: 14px;
        display: none;
    }
    .main-image {
        height: 400px;
    }
    .logo-text p {
        font-size: 10px;
        display: none;
    }
    .logo-container img {
        height: 55px;
    }
            .hero { padding: 60px 5%; }
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 60px;
            }
            .hero-content p { margin: 0 auto 30px; }
            .highlight-box {
                margin: 0 auto 35px;
                border-left: none;
                border-top: 5px solid var(--red);
                border-radius: 10px;
                text-align: center;
            }
            .hero-btns { justify-content: center; }
            .exp-card {
                left: 50%;
                transform: translateX(-50%);
                bottom: -20px;
                width: 80%;
                justify-content: center;
            }
            @keyframes float {
                0%, 100% { transform: translate(-50%, 0); }
                50% { transform: translate(-50%, -15px); }
            }
               .about-section { padding: 60px 5%; }
            .container {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
            }
            .about-image-wrapper {
                order: 2; /* Image niche chali jayegi mobile pe */
            }
            .about-text {
                order: 1;
            }
            .values-grid {
                text-align: left;
            }
            .about-footer {
                text-align: center;
                padding-left: 0;
            }
            .about-footer::before { display: none; }
              .infra-section {
        padding: 55px 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 430px;
        margin: 0 auto;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 15px;
    }

    .card-image {
        height: 220px;
    }

    .service-card h3 {
        font-size: 20px;
    }
            .clients-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 logos per row on tablet */
                gap: 20px;
            }
            .client-card { height: 140px; padding: 20px; }
            .highlights-section { padding: 70px 5%; }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            .title { font-size: 2rem; }
            .contact-info-wrapper {
                grid-template-columns: 1fr;
            }
            .map-card {
                grid-column: span 1;
            }
            .section-title { font-size: 2.2rem; }
              footer { padding: 60px 5% 30px; }
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-about .logo-footer {
                justify-content: center;
            }

            .footer-links h3::after, .footer-services h3::after, .footer-contact h3::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .link-list a {
                justify-content: center;
            }

            .social-links {
                justify-content: center;
            }

            .contact-item {
                justify-content: center;
                text-align: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

             .about-page-header {
                height: 350px; /* Slightly reduced for mobile */
                clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
            }
            .about-title {
                font-size: 2.8rem;
            }
            .about-subtitle {
                font-size: 1rem;
            }
               .progress-section { padding: 70px 5%; }
            .title { font-size: 2.2rem; }
              .contact-page-header {
                height: 300px;
                clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
            }
            .contact-title {
                font-size: 2.8rem;
            }
            .contact-subtitle {
                font-size: 1rem;
            }
            .contact-form {
                grid-template-columns: 1fr; /* Single column for tablet/mobile */
            }
            .full-width {
                grid-column: span 1;
            }
            .submit-btn {
                grid-column: span 1;
            }
            .form-container {
                padding: 30px 20px;
            }
            .form-header h2 {
                font-size: 1.7rem;
            }
             .turnkey-hero {
                height: 400px;
                justify-content: center;
            }
            .glass-card {
                margin: 0 auto;
                padding: 30px;
                transform: rotate(0deg); /* Straight on mobile for readability */
                border-radius: 20px;
                width: 90%;
                text-align: center;
            }
            .industrial-slice {
                display: none; /* Remove slice on mobile for cleaner look */
            }
            .turnkey-title { font-size: 2rem; }
            .turnkey-subtitle { font-size: 0.9rem; }
            .section-header h2 { font-size: 2rem; }
            .ongoing-wrapper { padding: 60px 5%; }
            .scope-box { border-right: none; border-bottom: 10px solid var(--red); }
            .project-list { grid-template-columns: 1fr; }
              .water-tank-header {
                height: 350px;
                clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 90%); /* Simpler cut for mobile */
            }
            .tank-title {
                font-size: 2.5rem;
            }
            .tank-subtitle {
                font-size: 1rem;
            }
               .importance-section { padding: 70px 5%; }
            .section-title { font-size: 2.2rem; }
            .importance-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            .summary-bar {
                flex-direction: column;
                text-align: center;
            }
        }
  @media (max-width: 480px) {
               .infra-section {
        padding: 45px 12px;
    }

    .section-header h2 {
        font-size: 23px;
    }

    .section-header p {
        font-size: 14px;
        line-height: 1.6;
    }

    .services-grid {
        max-width: 100%;
        gap: 24px;
    }

    .card-image {
        height: 200px;
    }

    .card-content {
        padding: 0 18px 22px;
    }

    .icon-box {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 13.5px;
    }
            .values-grid {
                grid-template-columns: 1fr; /* Single column on small mobile */
            }
            .experience-badge {
                right: 10px;
                bottom: 10px;
                padding: 10px;
            }
            .experience-badge h3 { font-size: 1.5rem; }
            .about-description { font-size: 0.95rem; }
              .section-title { font-size: 1.6rem; }
            .clients-grid {
                grid-template-columns: repeat(2, 1fr); /* Keeping 2 for better look, or use 1fr for very big logos */
                gap: 15px;
            }
            .client-card { 
                height: 120px; 
                padding: 15px; 
                border-radius: 10px;
            }
            .client-logo { max-height: 60px; }
        }
        /* Perfect for 320px screens */
        @media (max-width: 320px) {
            .brand-name { font-size: 1rem; }
            .logo-container img { height: 90px; }
            nav { padding: 0 4%; }
               .hero-content h1 { font-size: 2rem; }
            .btn { width: 100%; }
            .hero-btns { flex-direction: column; gap: 10px; }
            .brand-name { font-size: 0.9rem; }
            .exp-card { width: 90%; left: 5%; height: 106px; transform: translateX(0); }
            @keyframes float {
                0%, 100% { transform: translateY(0); }
                50% { transform: translateY(-15px); }
            }
               .infra-section {
        padding: 40px 10px;
    }

    .section-header h2 {
        font-size: 20px;
        letter-spacing: 0.5px;
    }

    .section-header p {
        font-size: 13px;
    }

    .card-image {
        height: 175px;
    }

    .card-content {
        padding: 0 14px 20px;
    }

    .service-card h3 {
        font-size: 17px;
    }

    .service-card p {
        font-size: 13px;
        line-height: 1.55;
    }

    .learn-more {
        font-size: 13px;
    }

            .section-title { font-size: 2rem; }
              .clients-grid {
                grid-template-columns: 1fr; /* 1 logo per row for ultra small screens */
            }
              .title { font-size: 1.7rem; }
            .stat-card { padding: 30px 20px; }
            .stat-number { font-size: 1.8rem; }
            .stat-title { font-size: 1.1rem; }
            .stat-desc { font-size: 0.85rem; }
             .contact-section { padding: 60px 4%; }
            .section-title { font-size: 1.8rem; }
            .contact-card { padding: 20px; }
            .compliance-wrapper { padding: 25px; }
            .license-item span { font-size: 0.85rem; }
              footer { padding: 50px 4% 20px; }
            .footer-about .brand-name { font-size: 1.1rem; }
            .footer-links h3, .footer-services h3, .footer-contact h3 { font-size: 1.1rem; }
            .contact-item span, .contact-item a { font-size: 0.85rem; }
              .about-page-header {
                height: 320px;
                clip-path: none; /* Remove cut on very small screens for better space */
            }
            .about-title {
                font-size: 2.2rem;
            }
            .breadcrumb {
                font-size: 0.7rem;
            }
            .about-subtitle {
                font-size: 0.9rem;
            }
                 .title { font-size: 1.8rem; }
            .progress-label { font-size: 0.9rem; }
            .progress-percentage { font-size: 1rem; }
            .progress-section { padding: 60px 4%; }
             .contact-page-header {
                height: 280px;
                clip-path: none; /* Remove cut on very small screens for stability */
            }
            .contact-title {
                font-size: 2.2rem;
            }
            .breadcrumb-contact {
                font-size: 0.7rem;
                padding: 6px 12px;
            }
            .contact-subtitle {
                font-size: 0.85rem;
            }
               
            .form-container { padding: 25px 15px; }
            .form-header h2 { font-size: 1.5rem; }
            .input-wrapper input, .input-wrapper textarea {
                padding: 10px 15px 10px 40px;
                font-size: 0.85rem;
            }
            .submit-btn {
                font-size: 1rem;
            }
            .turnkey-hero { height: 350px; }
            .turnkey-title { font-size: 1.6rem; }
            .turnkey-title span { font-size: 1rem; }
            .turnkey-subtitle { font-size: 0.8rem; }
            .glass-card { padding: 20px; }
                    .section-header h2 { font-size: 1.7rem; }
            .completed-card h3 { font-size: 1.1rem; }
            .ongoing-card h4 { font-size: 1rem; }
            .scope-box p { font-size: 0.9rem; }
            .ongoing-grid { grid-template-columns: 1fr; }
              .water-tank-header {
                height: 300px;
                clip-path: none; /* Remove cut for maximum space on tiny screens */
            }
            .tank-title {
                font-size: 2rem;
            }
            .service-badge {
                font-size: 0.7rem;
            }
            .tank-subtitle {
                font-size: 0.85rem;
            }
             .section-title { font-size: 1.8rem; }
            .value-card { padding: 30px 20px; }
            .value-card h3 { font-size: 1.1rem; }
            .value-card p { font-size: 0.85rem; }
            .summary-bar { padding: 30px 20px; }
            .summary-text h4 { font-size: 1.2rem; }
                 .installation-section { padding: 60px 4%; }
            .section-header h2 { font-size: 2rem; }
            .industrial-box { padding: 20px; }
            .industrial-box h3 { font-size: 1.2rem; }
            .industrial-box p { font-size: 0.85rem; }
            .step-num { font-size: 2rem; }
        }