   :root {
            --primary-teal: #006d77; /* Logo Teal Blue */
            --secondary-gold: #c5a059; /* Logo Gold */
            --dark-text: #333;
            --white: #ffffff;
            --light-bg: #f8f9fa;
            --transition: all 0.3s ease;
              --dark-bg: #0f172a; /* Deep Navy/Charcoal for premium look */
        --footer-text: #94a3b8;
          --bg-gradient: linear-gradient(135deg, #006d77 0%, #004d54 100%);
           --text-dark: #2d3436;
        --text-light: #636e72;
    

        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: #f4f4f4;
        }

        /* --- Header Styles --- */
        header {
            background: var(--white);
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
        }

        /* --- Logo & Name Section --- */
        .logo-box {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 12px; /* Space between image and text */
        }

        .logo-box img {
            height: 55px; 
            width: auto;
            display: block;
        }

        .logo-text-container {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .brand-name {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary-teal);
            line-height: 1.1;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .brand-name span {
            color: var(--secondary-gold);
        }

        .brand-tagline {
            font-size: 10px;
            color: #666;
            font-weight: 400;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            margin-top: 2px;
        }

        /* --- Desktop Navigation --- */
        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            text-decoration: none;
            color: var(--dark-text);
            padding: 15px 20px;
            font-weight: 500;
            font-size: 15px;
            transition: var(--transition);
            display: block;
        }

        .nav-link:hover {
            color: var(--primary-teal);
        }

        /* --- Mega Menu --- */
        .has-mega-menu {
            position: static; 
        }

        .mega-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: var(--white);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            padding: 30px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: var(--transition);
            border-top: 4px solid var(--secondary-gold);
        }

        .has-mega-menu:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mega-col h3 {
            color: var(--primary-teal);
            font-size: 17px;
            margin-bottom: 15px;
            border-left: 4px solid var(--secondary-gold);
            padding-left: 10px;
        }

        .mega-col ul {
            list-style: none;
        }

        .mega-col ul li {
            margin-bottom: 8px;
        }

        .mega-col ul li a {
            text-decoration: none;
            color: #555;
            font-size: 14px;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .mega-col ul li a:hover {
            color: var(--primary-teal);
            padding-left: 5px;
        }

        .mega-col ul li a i {
            font-size: 10px;
            margin-right: 10px;
            color: var(--secondary-gold);
        }

        /* --- Mobile Toggle --- */
        .mobile-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--primary-teal);
        }

       
 
 /* --- Hero Section Main --- */
    .hero-section {
        position: relative;
        min-height: 90vh;
        display: flex;
        align-items: center;
        padding: 80px 5% 40px 5%;
        background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
        overflow: hidden;
    }

    /* Decorative Background Elements */
    .hero-section::before {
        content: '';
        position: absolute;
        top: -10%;
        right: -5%;
        width: 500px;
        height: 500px;
        background: rgba(0, 109, 119, 0.05);
        border-radius: 50%;
        z-index: 0;
    }

    .hero-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    /* --- Hero Content (Left) --- */
    .hero-content {
        animation: fadeInUp 0.8s ease forwards;
    }

    .hero-badge {
        display: inline-block;
        background: rgba(0, 109, 119, 0.1);
        color: var(--primary-teal);
        padding: 6px 15px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 20px;
        border: 1px solid var(--primary-teal);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        line-height: 1.2;
        color: var(--text-dark);
        margin-bottom: 20px;
    }

    .hero-content h1 span {
        color: var(--primary-teal);
        position: relative;
        display: inline-block;
    }

    .hero-content h1 span::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 8px;
        background: rgba(197, 160, 89, 0.3);
        z-index: -1;
    }

    .hero-content p {
        font-size: 1.1rem;
        color: var(--text-light);
        line-height: 1.7;
        margin-bottom: 35px;
        max-width: 550px;
    }

    .hero-btns {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .btn-primary {
        background: var(--primary-teal);
        color: var(--white);
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0, 109, 119, 0.2);
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 25px rgba(0, 109, 119, 0.3);
        background: #005a62;
    }

    .btn-secondary {
        background: transparent;
        color: var(--text-dark);
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        border: 2px solid #ddd;
        transition: var(--transition);
    }

    .btn-secondary:hover {
        border-color: var(--secondary-gold);
        color: var(--secondary-gold);
        background: rgba(197, 160, 89, 0.05);
    }

    /* --- Hero Visual (Right) --- */
    .hero-visual {
        position: relative;
        animation: fadeInRight 1s ease forwards;
        display: flex;
        justify-content: center;
    }

    .main-img {
        width: 100%;
        max-width: 500px;
        border-radius: 30px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        z-index: 2;
        border: 10px solid var(--white);
    }

    /* Floating Feature Cards */
    .feature-card {
        position: absolute;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(10px);
        padding: 15px 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        display: flex;
        align-items: center;
        gap: 12px;
        z-index: 3;
        border-left: 5px solid var(--secondary-gold);
        animation: floating 3s ease-in-out infinite;
        font-weight: 600;
        font-size: 14px;
        color: var(--text-dark);
    }

    .card-1 {
        top: 10%;
        left: -10%;
        animation-delay: 0s;
    }

    .card-2 {
        bottom: 15%;
        right: -5%;
        animation-delay: 1.5s;
        border-left-color: var(--primary-teal);
    }

    .feature-card i {
        font-size: 20px;
        color: var(--primary-teal);
    }

    /* --- 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 floating {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-15px); }
    }

    /* --- About Section Main --- */
    .about-section {
        padding: 100px 5% 80px 5%;
        background-color: var(--bg-light);
        position: relative;
        overflow: hidden;
    }

    .about-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    /* --- Image Side (Left) --- */
    .about-image-wrapper {
        position: relative;
        animation: fadeInRight 1s ease;
    }

    .main-about-img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        z-index: 2;
        position: relative;
        border: 8px solid var(--white);
    }

    /* Decorative Gold Box behind image */
    .img-deco-box {
        position: absolute;
        top: -20px;
        left: -20px;
        width: 100px;
        height: 100px;
        background: var(--secondary-gold);
        z-index: 1;
        border-radius: 10px;
        opacity: 0.3;
    }

    .exp-badge {
        position: absolute;
        bottom: 30px;
        right: -20px;
        background: var(--primary-teal);
        color: var(--white);
        padding: 20px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 15px 30px rgba(0,109,119,0.3);
        z-index: 3;
        animation: floating 3s ease-in-out infinite;
        border: 3px solid var(--secondary-gold);
    }

    .exp-badge h2 {
        font-size: 32px;
        font-weight: 700;
        line-height: 1;
    }

    .exp-badge p {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 500;
    }

    /* --- Text Side (Right) --- */
    .about-text {
        animation: fadeInLeft 1s ease;
    }

    .section-subtitle {
        color: var(--secondary-gold);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 14px;
        margin-bottom: 10px;
        display: block;
    }

    .about-text h2 {
        font-size: 2.5rem;
        color: var(--text-dark);
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .about-text h2 span {
        color: var(--primary-teal);
    }

    .about-text p {
        color: var(--text-light);
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    /* --- Value Points Grid --- */
    .value-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    .value-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        transition: var(--transition);
    }

    .value-item:hover {
        transform: translateX(10px);
    }

    .value-icon {
        background: rgba(0, 109, 119, 0.1);
        color: var(--primary-teal);
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 14px;
        border: 1px solid var(--secondary-gold);
    }

    .value-text h4 {
        font-size: 16px;
        color: var(--text-dark);
        margin-bottom: 4px;
    }

    .value-text p {
        font-size: 13px;
        margin-bottom: 0;
        line-height: 1.4;
    }

    /* --- Trust Stats Bar --- */
    .stats-bar {
        display: flex;
        gap: 30px;
        border-top: 1px solid #ddd;
        padding-top: 30px;
    }

    .stat-item h3 {
        font-size: 24px;
        color: var(--primary-teal);
        margin-bottom: 5px;
    }

    .stat-item p {
        font-size: 13px;
        color: var(--text-light);
        margin-bottom: 0;
    }

    /* --- Animations --- */
    @keyframes fadeInLeft {
        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 floating {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-15px); }
    }

    /* --- Services Section Main --- */
    .services-main-section {
        padding: 100px 5% 80px 5%;
        background-color: var(--white);
        font-family: 'Poppins', sans-serif;
    }

    .section-title-area {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 60px auto;
    }

    .section-title-area span {
        color: var(--secondary-gold);
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 2px;
        font-size: 14px;
        display: block;
        margin-bottom: 10px;
    }

    .section-title-area h2 {
        font-size: 2.8rem;
        color: var(--text-dark);
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .section-title-area h2 span {
        color: var(--primary-teal);
    }

    /* --- Service Pillars (Fire & Electrical) --- */
    .service-pillar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto 80px auto;
        align-items: center;
        background: var(--bg-light);
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0,0,0,0.05);
        border: 1px solid #eee;
    }

    .pillar-image {
        position: relative;
        height: 100%;
        min-height: 400px;
    }

    .pillar-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .pillar-image:hover img {
        transform: scale(1.05);
    }

    .pillar-content {
        padding: 50px;
    }

    .pillar-content h3 {
        font-size: 2rem;
        color: var(--primary-teal);
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .pillar-content h3 i {
        color: var(--secondary-gold);
        font-size: 1.5rem;
    }

    .pillar-content p {
        color: var(--text-light);
        line-height: 1.7;
        margin-bottom: 30px;
        font-size: 16px;
    }

    /* Grid of small service items */
    .service-details-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Updated detail-item to support Anchor tags */
    .detail-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px;
        background: var(--white);
        border-radius: 12px;
        border: 1px solid #eee;
        transition: var(--transition);
        cursor: pointer;
        text-decoration: none; /* Remove underline from link */
        color: inherit;        /* Keep text color from parent */
    }

    .detail-item:hover {
        border-color: var(--secondary-gold);
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        background: #fff;
    }

    .detail-item i {
        color: var(--primary-teal);
        font-size: 16px;
    }

    .detail-item span {
        font-size: 14px;
        font-weight: 500;
        color: var(--text-dark);
    }

    /* Reverse Layout for second pillar */
    .pillar-reverse {
        direction: rtl;
    }
    .pillar-reverse .pillar-content {
        direction: ltr;
    }

    /* --- CTA Button --- */
    .service-cta {
        text-align: center;
        margin-top: 40px;
    }

    .btn-quote {
        background: var(--primary-teal);
        color: white;
        padding: 18px 40px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 18px;
        transition: var(--transition);
        box-shadow: 0 15px 30px rgba(0, 109, 119, 0.3);
        display: inline-block;
    }

    .btn-quote:hover {
        background: var(--secondary-gold);
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(197, 160, 89, 0.4);
    }
/* --- Why Choose Us Section --- */
    .why-choose-section {
        padding: 100px 5% 80px 5%;
        background-color: var(--bg-soft);
        font-family: 'Poppins', sans-serif;
        position: relative;
    }

    .why-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 60px auto;
    }

    .why-header span {
        color: var(--secondary-gold);
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 2px;
        font-size: 14px;
        display: block;
        margin-bottom: 10px;
    }

    .why-header h2 {
        font-size: 2.8rem;
        color: var(--text-dark);
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .why-header h2 span {
        color: var(--primary-teal);
    }

    .why-header p {
        color: var(--text-light);
        font-size: 16px;
        line-height: 1.6;
    }

    /* Features Grid */
    .why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .why-card {
        background: var(--white);
        padding: 40px 30px;
        border-radius: 20px;
        border-top: 5px solid var(--secondary-gold);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: var(--transition);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .why-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        border-top-color: var(--primary-teal);
    }

    .why-icon {
        width: 80px;
        height: 80px;
        background: rgba(0, 109, 119, 0.1);
        color: var(--primary-teal);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        margin-bottom: 25px;
        transition: var(--transition);
    }

    .why-card:hover .why-icon {
        background: var(--primary-teal);
        color: var(--white);
        transform: rotateY(360deg);
    }

    .why-card h3 {
        font-size: 22px;
        color: var(--text-dark);
        margin-bottom: 15px;
        font-weight: 600;
    }

    .why-card p {
        color: var(--text-light);
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 0;
    }

    /* Local SEO Text Area (Subtle) */
    .local-seo-footer {
        text-align: center;
        margin-top: 50px;
        font-size: 13px;
        color: #aaa;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.5;
    }
 /* --- Contact Section Main --- */
    .contact-hub-section {
        padding: 100px 5% 80px 5%;
        background-color: var(--white);
        font-family: 'Poppins', sans-serif;
    }

    .contact-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 60px auto;
    }

    .contact-header span {
        color: var(--secondary-gold);
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 2px;
        font-size: 14px;
        display: block;
        margin-bottom: 10px;
    }

    .contact-header h2 {
        font-size: 2.8rem;
        color: var(--text-dark);
        line-height: 1.2;
    }

    .contact-header h2 span {
        color: var(--primary-teal);
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* --- Left Side: Contact Info & Leadership --- */
    .contact-info-wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .info-card {
        background: var(--bg-light);
        padding: 30px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        gap: 25px;
        transition: var(--transition);
        border: 1px solid #eee;
    }

    .info-card:hover {
        transform: translateX(10px);
        background: var(--white);
        box-shadow: 0 15px 30px rgba(0,0,0,0.05);
        border-left: 5px solid var(--secondary-gold);
    }

    .info-icon {
        width: 60px;
        height: 60px;
        background: var(--white);
        color: var(--primary-teal);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        flex-shrink: 0;
    }

    .info-text h4 {
        font-size: 18px;
        color: var(--text-dark);
        margin-bottom: 5px;
    }

    .info-text p {
        color: var(--text-light);
        font-size: 15px;
        line-height: 1.5;
        margin: 0;
    }

    .action-btns {
        display: flex;
        gap: 15px;
        margin-top: 10px;
    }

    .btn-action {
        padding: 8px 18px;
        border-radius: 50px;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        transition: var(--transition);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .btn-call { background: var(--primary-teal); color: white; }
    .btn-email { background: var(--secondary-gold); color: white; }
    .btn-action:hover { opacity: 0.9; transform: translateY(-2px); }

    /* --- Leadership Section --- */
    .leadership-area {
        margin-top: 20px;
    }

    .leadership-area h3 {
        font-size: 22px;
        color: var(--text-dark);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .leadership-area h3 i { color: var(--secondary-gold); }

    .owner-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .owner-card {
        background: var(--white);
        padding: 20px;
        border-radius: 15px;
        text-align: center;
        border: 1px solid #eee;
        transition: var(--transition);
    }

    .owner-card:hover {
        border-color: var(--primary-teal);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    .owner-avatar {
        width: 60px;
        height: 60px;
        background: var(--bg-light);
        color: var(--primary-teal);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px auto;
        font-size: 20px;
        font-weight: 700;
        border: 2px solid var(--secondary-gold);
    }

    .owner-card h4 {
        font-size: 16px;
        color: var(--text-dark);
        margin-bottom: 5px;
    }

    .owner-card p {
        font-size: 13px;
        color: var(--secondary-gold);
        font-weight: 600;
        margin: 0;
    }

    /* --- Right Side: Map & Address --- */
    .map-wrapper {
        position: relative;
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        height: 100%;
        min-height: 400px;
        border: 10px solid var(--white);
    }

    .map-placeholder {
        width: 100%;
        height: 100%;
        background: #e5e3df;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #888;
        text-align: center;
        padding: 20px;
    }

    .address-overlay {
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 15px;
        border-left: 5px solid var(--primary-teal);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .address-overlay h4 {
        font-size: 16px;
        color: var(--text-dark);
        margin-bottom: 5px;
    }

    .address-overlay p {
        font-size: 13px;
        color: var(--text-light);
        line-height: 1.5;
        margin: 0;
    }
   /* --- Footer Main Section --- */
    .main-footer {
        background-color: var(--dark-bg);
        color: var(--white);
        padding: 80px 5% 30px 5%;
        font-family: 'Poppins', sans-serif;
        position: relative;
        border-top: 5px solid var(--secondary-gold);
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 40px;
    }

    /* --- Brand Column --- */
    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .footer-logo-box {
        display: flex;
        align-items: center;
        gap: 15px;
        text-decoration: none;
    }

    .footer-logo-box img {
        height: 60px;
        width: auto;
    }

    .footer-brand-text h2 {
        font-size: 22px;
        color: var(--white);
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .footer-brand-text h2 span {
        color: var(--secondary-gold);
    }

    .footer-brand-text p {
        font-size: 14px;
        color: var(--footer-text);
        line-height: 1.6;
        margin-top: 15px;
    }

    .footer-socials {
        display: flex;
        gap: 12px;
        margin-top: 10px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        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-icon:hover {
        background: var(--secondary-gold);
        color: var(--dark-bg);
        transform: translateY(-5px);
        border-color: var(--secondary-gold);
    }

    /* --- Footer Links Columns --- */
    .footer-col h3 {
        font-size: 18px;
        color: var(--white);
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 10px;
        font-weight: 600;
    }

    .footer-col h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background: var(--secondary-gold);
    }

    .footer-links {
        list-style: none;
        padding: 0;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: var(--footer-text);
        text-decoration: none;
        font-size: 14px;
        transition: var(--transition);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .footer-links a:hover {
        color: var(--secondary-gold);
        padding-left: 8px;
    }

    .footer-links a i {
        font-size: 10px;
        color: var(--secondary-gold);
    }

    /* --- Contact Info Column --- */
    .contact-item {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        color: var(--footer-text);
        font-size: 14px;
        line-height: 1.6;
    }

    .contact-item i {
        color: var(--secondary-gold);
        font-size: 18px;
        margin-top: 3px;
    }

    .contact-item span {
        display: block;
    }

    /* --- 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;
        color: var(--footer-text);
        font-size: 13px;
    }

    .footer-bottom p {
        margin: 0;
    }
/* --- About Page Header Main --- */
    .about-page-header {
        position: relative;
        min-height: 400px; /* Requested height */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        color: var(--white);
        font-family: 'Poppins', sans-serif;
    }

    /* Background Image with Overlay */
    .about-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -2;
    }

    .about-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.6); /* Darkens image for better text contrast */
    }

    .about-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 109, 119, 0.9) 0%, rgba(0, 109, 119, 0.4) 100%);
        z-index: -1;
    }

    /* --- Content Area --- */
    .about-header-content {
        max-width: 900px;
        padding: 0 20px;
        animation: fadeInUp 0.8s ease forwards;
    }

    .about-badge {
        display: inline-block;
        background: var(--secondary-gold);
        color: var(--white);
        padding: 5px 15px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 20px;
        box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
    }

    .about-header-content h1 {
        /* clamp(min, preferred, max) - Ensures text never cuts and scales perfectly */
        font-size: clamp(2rem, 8vw, 3.5rem); 
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 15px;
        text-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    .about-header-content h1 span {
        color: var(--secondary-gold);
    }

    .about-header-content p {
        font-size: clamp(1rem, 3vw, 1.2rem);
        color: rgba(255, 255, 255, 0.9);
        max-width: 650px;
        margin: 0 auto 30px auto;
        line-height: 1.6;
    }

    /* Decorative gold line */
    .gold-divider {
        width: 80px;
        height: 4px;
        background: var(--secondary-gold);
        margin: 0 auto 30px auto;
        border-radius: 2px;
        position: relative;
    }

    .gold-divider::after {
        content: '';
        position: absolute;
        top: -5px;
        left: -10px;
        width: 100px;
        height: 14px;
        border: 2px solid var(--secondary-gold);
        border-radius: 10px;
        opacity: 0.3;
    }

    /* Breadcrumb Navigation */
    .about-breadcrumb {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        margin-top: 20px;
        color: rgba(255, 255, 255, 0.7);
    }

    .about-breadcrumb a {
        color: var(--white);
        text-decoration: none;
        transition: var(--transition);
    }

    .about-breadcrumb a:hover {
        color: var(--secondary-gold);
    }

    /* --- Animations --- */
    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }
 /* --- Progress Section Main --- */
    .progress-section {
        padding: 100px 5% 80px 5%;
        background: var(--bg-gradient);
        color: var(--white);
        font-family: 'Poppins', sans-serif;
        position: relative;
        overflow: hidden;
    }

    /* Background Decorative Circles */
    .progress-section::before, .progress-section::after {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background: rgba(197, 160, 89, 0.1);
        border-radius: 50%;
        z-index: 0;
    }
    .progress-section::before { top: -100px; left: -100px; }
    .progress-section::after { bottom: -100px; right: -100px; }

    .progress-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .progress-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .progress-header h2 {
        font-size: 2.8rem;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .progress-header h2 span {
        color: var(--secondary-gold);
    }

    .progress-header p {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.8);
        max-width: 600px;
        margin: 0 auto;
    }

    /* Stats Grid */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .stat-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 40px 30px;
        border-radius: 25px;
        text-align: center;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }

    .stat-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.2);
        border-color: var(--secondary-gold);
    }

    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--secondary-gold);
        transform: scaleX(0);
        transition: var(--transition);
    }

    .stat-card:hover::before {
        transform: scaleX(1);
    }

    .stat-icon {
        width: 70px;
        height: 70px;
        background: var(--white);
        color: var(--primary-teal);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        margin: 0 auto 20px auto;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        transition: var(--transition);
    }

    .stat-card:hover .stat-icon {
        background: var(--secondary-gold);
        color: var(--white);
    }

    .stat-number {
        font-size: 3.5rem;
        font-weight: 700;
        display: block;
        margin-bottom: 10px;
        color: var(--white);
    }

    .stat-number span {
        color: var(--secondary-gold);
    }

    .stat-label {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
 /* --- Best Services Section Main --- */
    .best-services-section {
        padding: 100px 5% 80px 5%;
        background-color: var(--white);
        font-family: 'Poppins', sans-serif;
        position: relative;
        overflow: hidden;
    }

    /* Decorative Background Element */
    .best-services-section::before {
        content: '';
        position: absolute;
        top: -10%;
        right: -5%;
        width: 400px;
        height: 400px;
        background: rgba(0, 109, 119, 0.05);
        border-radius: 50%;
        z-index: 0;
    }

    .best-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    /* --- Visual Side (Left) --- */
    .best-visual {
        position: relative;
        animation: fadeInLeft 1s ease;
    }

    .main-feature-img {
        width: 100%;
        border-radius: 30px;
        box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        border: 10px solid var(--white);
        z-index: 2;
        position: relative;
    }

    .experience-tag {
        position: absolute;
        top: -20px;
        right: -20px;
        background: var(--secondary-gold);
        color: var(--white);
        padding: 15px 25px;
        border-radius: 15px;
        font-weight: 700;
        font-size: 16px;
        box-shadow: 0 10px 20px rgba(197, 160, 89, 0.4);
        z-index: 3;
        animation: floating 3s ease-in-out infinite;
    }

    /* --- Content Side (Right) --- */
    .best-content {
        animation: fadeInRight 1s ease;
    }

    .best-content span {
        color: var(--secondary-gold);
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 2px;
        font-size: 14px;
        display: block;
        margin-bottom: 15px;
    }

    .best-content h2 {
        font-size: clamp(2rem, 5vw, 3rem);
        color: var(--text-dark);
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .best-content h2 span {
        color: var(--primary-teal);
        display: block;
    }

    .best-content p {
        color: var(--text-light);
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 35px;
    }

    /* Best-Feature Grid */
    .best-features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    .feature-box {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px;
        background: var(--bg-soft);
        border-radius: 15px;
        transition: var(--transition);
        border: 1px solid transparent;
    }

    .feature-box:hover {
        background: var(--white);
        border-color: var(--secondary-gold);
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    .feature-box i {
        color: var(--primary-teal);
        font-size: 22px;
        background: var(--white);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .feature-box span {
        color: var(--text-dark);
        font-size: 14px;
        font-weight: 600;
        text-transform: none;
        letter-spacing: 0;
    }

    .btn-best {
        background: var(--primary-teal);
        color: white;
        padding: 18px 35px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: var(--transition);
        box-shadow: 0 15px 30px rgba(0, 109, 119, 0.3);
    }

    .btn-best:hover {
        background: var(--secondary-gold);
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(197, 160, 89, 0.4);
    }

    /* --- Animations --- */
    @keyframes fadeInLeft {
        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 floating {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-15px); }
    }

    /* --- Client Section Main --- */
    .client-section {
        padding: 100px 5% 80px 5%;
        background-color: var(--bg-soft);
        font-family: 'Poppins', sans-serif;
        overflow: hidden;
    }

    .section-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 60px auto;
    }

    .section-header span {
        color: var(--secondary-gold);
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 2px;
        font-size: 14px;
        display: block;
        margin-bottom: 10px;
    }

    .section-header h2 {
        font-size: 2.8rem;
        color: var(--text-dark);
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .section-header h2 span {
        color: var(--primary-teal);
    }

    /* --- Logo Grid (Trusted By) --- */
    .logo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
        max-width: 1100px;
        margin: 0 auto 80px auto;
        align-items: center;
    }

    .logo-item {
        background: var(--white);
        padding: 20px;
        border-radius: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.03);
        transition: var(--transition);
        border: 1px solid #eee;
        filter: grayscale(100%);
        opacity: 0.7;
    }

    .logo-item:hover {
        filter: grayscale(0%);
        opacity: 1;
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        border-color: var(--secondary-gold);
    }

    .logo-item img {
        max-width: 100%;
        height: auto;
        max-height: 60px;
    }

    /* --- Testimonials Grid --- */
    .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .testimonial-card {
        background: var(--white);
        padding: 40px 30px;
        border-radius: 25px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.05);
        transition: var(--transition);
        position: relative;
        border-bottom: 5px solid transparent;
    }

    .testimonial-card:hover {
        transform: translateY(-10px);
        border-bottom-color: var(--secondary-gold);
        box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    }

    .quote-icon {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 40px;
        color: rgba(0, 109, 119, 0.1);
    }

    .client-info {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .client-img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid var(--secondary-gold);
    }

    .client-details h4 {
        font-size: 17px;
        color: var(--text-dark);
        margin: 0;
        font-weight: 600;
    }

    .client-details p {
        font-size: 13px;
        color: var(--secondary-gold);
        margin: 0;
        font-weight: 500;
    }

    .star-rating {
        color: var(--secondary-gold);
        font-size: 14px;
        margin-bottom: 15px;
    }

    .testimonial-text {
        color: var(--text-light);
        font-size: 15px;
        line-height: 1.7;
        font-style: italic;
    }
 /* --- Contact Page Header Main --- */
    .contact-page-header {
        position: relative;
        min-height: 350px; /* Optimal height for contact header */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        color: var(--white);
        font-family: 'Poppins', sans-serif;
    }

    /* Background Image with Dynamic Overlay */
    .contact-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -2;
    }

    .contact-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.5); /* Ensures text readability */
    }

    .contact-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Gradient from deep teal to transparent teal */
        background: linear-gradient(135deg, rgba(0, 109, 119, 0.95) 0%, rgba(0, 109, 119, 0.6) 100%);
        z-index: -1;
    }

    /* --- Content Area --- */
    .contact-header-content {
        max-width: 800px;
        padding: 0 20px;
        animation: fadeInScale 0.7s ease-out forwards;
    }

    .contact-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--secondary-gold);
        color: var(--white);
        padding: 6px 16px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
        box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
    }

    .contact-badge i {
        animation: pulse 2s infinite;
    }

    .contact-header-content h1 {
        /* clamp() ensures font is perfectly responsive from 320px to 1440px */
        font-size: clamp(2.2rem, 7vw, 3.8rem);
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 15px;
        text-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .contact-header-content h1 span {
        color: var(--secondary-gold);
    }

    .contact-header-content p {
        font-size: clamp(1rem, 3vw, 1.2rem);
        color: rgba(255, 255, 255, 0.9);
        max-width: 600px;
        margin: 0 auto 30px auto;
        line-height: 1.6;
    }

    /* Stylish Breadcrumbs */
    .contact-breadcrumb {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
    }

    .contact-breadcrumb a {
        color: var(--white);
        text-decoration: none;
        transition: var(--transition);
        font-weight: 500;
    }

    .contact-breadcrumb a:hover {
        color: var(--secondary-gold);
    }

    .contact-breadcrumb i {
        font-size: 10px;
        color: var(--secondary-gold);
    }

    /* --- Animations --- */
    @keyframes fadeInScale {
        from { opacity: 0; transform: scale(0.9); }
        to { opacity: 1; transform: scale(1); }
    }

    @keyframes pulse {
        0% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.2); opacity: 0.7; }
        100% { transform: scale(1); opacity: 1; }
    }

    /* --- Contact Form Section Main --- */
    .form-section {
        padding: 80px 5% 100px 5%;
        background-color: var(--bg-light);
        font-family: 'Poppins', sans-serif;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .form-wrapper {
        background: var(--white);
        max-width: 700px;
        width: 100%;
        padding: 50px;
        border-radius: 30px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.08);
        position: relative;
        overflow: hidden;
        border: 1px solid #eee;
    }

    /* Top Gold Accent Line */
    .form-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: linear-gradient(to right, var(--primary-teal), var(--secondary-gold));
    }

    .form-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .form-header h2 {
        font-size: 2rem;
        color: var(--text-dark);
        margin-bottom: 10px;
    }

    .form-header h2 span {
        color: var(--primary-teal);
    }

    .form-header p {
        color: var(--text-light);
        font-size: 15px;
    }

    /* --- Form Layout --- */
    .contact-form {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Two columns for desktop */
        gap: 25px;
    }

    .input-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
        position: relative;
    }

    /* Make message and subject full width on desktop */
    .full-width {
        grid-column: span 2;
    }

    .input-group label {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-dark);
        margin-left: 5px;
    }

    .input-group input, 
    .input-group textarea {
        padding: 15px 20px;
        border: 2px solid #eee;
        border-radius: 12px;
        font-size: 15px;
        font-family: 'Poppins', sans-serif;
        transition: var(--transition);
        background: #fafafa;
        outline: none;
        width: 100%;
        box-sizing: border-box;
    }

    .input-group input:focus, 
    .input-group textarea:focus {
        border-color: var(--secondary-gold);
        background: var(--white);
        box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
        transform: translateY(-2px);
    }

    .input-group textarea {
        height: 150px;
        resize: none;
    }

    /* --- Submit Button --- */
    .submit-container {
        grid-column: span 2;
        text-align: center;
        margin-top: 20px;
    }

    .btn-submit {
        background: var(--primary-teal);
        color: var(--white);
        padding: 16px 45px;
        border: none;
        border-radius: 12px;
        font-size: 17px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0, 109, 119, 0.2);
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .btn-submit:hover {
        background: var(--secondary-gold);
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(197, 160, 89, 0.3);
    }

    .btn-submit i {
        transition: var(--transition);
    }

    .btn-submit:hover i {
        transform: translateX(5px);
    }

      /* --- Service Page Header Main --- */
    .service-page-header {
        position: relative;
        min-height: 400px; /* Requested Height */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        color: var(--white);
        font-family: 'Poppins', sans-serif;
    }

    /* Background Image with Professional Overlay */
    .service-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -2;
    }

    .service-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.5); /* Darkens image to make text stand out */
    }

    .service-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Gradient from deep teal to slightly transparent */
        background: linear-gradient(135deg, rgba(0, 109, 119, 0.9) 0%, rgba(0, 109, 119, 0.5) 100%);
        z-index: -1;
    }

    /* --- Content Area --- */
    .service-header-content {
        max-width: 900px;
        padding: 0 20px;
        animation: fadeInUp 0.8s ease forwards;
    }

    .service-badge {
        display: inline-block;
        background: var(--secondary-gold);
        color: var(--white);
        padding: 6px 18px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 20px;
        box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
    }

    .service-header-content h1 {
        /* clamp(min, preferred, max) - Prevents cutting on 320px screens */
        font-size: clamp(2.2rem, 8vw, 3.8rem); 
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 15px;
        text-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    .service-header-content h1 span {
        color: var(--secondary-gold);
    }

    .service-header-content p {
        font-size: clamp(1rem, 3vw, 1.2rem);
        color: rgba(255, 255, 255, 0.9);
        max-width: 650px;
        margin: 0 auto 30px auto;
        line-height: 1.6;
    }

    /* Gold Decorative Line */
    .gold-line {
        width: 60px;
        height: 4px;
        background: var(--secondary-gold);
        margin: 0 auto 30px auto;
        border-radius: 2px;
        position: relative;
    }

    .gold-line::after {
        content: '';
        position: absolute;
        top: -5px;
        left: -10px;
        width: 80px;
        height: 14px;
        border: 2px solid var(--secondary-gold);
        border-radius: 10px;
        opacity: 0.3;
    }

    /* Breadcrumb Navigation */
    .service-breadcrumb {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
    }

    .service-breadcrumb a {
        color: var(--white);
        text-decoration: none;
        transition: var(--transition);
        font-weight: 500;
    }

    .service-breadcrumb a:hover {
        color: var(--secondary-gold);
    }

    .service-breadcrumb i {
        font-size: 10px;
        color: var(--secondary-gold);
    }

    /* --- Animations --- */
    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }
 /* --- LT/HT Page Header Main --- */
    .lt-ht-header {
        position: relative;
        min-height: 400px; /* Requested Height */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        color: var(--white);
        font-family: 'Poppins', sans-serif;
    }

    /* Industrial Background Image with Dark Overlay */
    .lt-ht-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -2;
    }

    .lt-ht-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.4) contrast(1.2); /* Makes it look like a cinematic industrial shot */
    }

    .lt-ht-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Gradient from deep teal to almost black for a powerful look */
        background: linear-gradient(135deg, rgba(0, 109, 119, 0.9) 0%, rgba(15, 23, 42, 0.8) 100%);
        z-index: -1;
    }

    /* --- Content Area --- */
    .lt-ht-content {
        max-width: 900px;
        padding: 0 20px;
        animation: zoomIn 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    }

    .lt-ht-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--secondary-gold);
        color: var(--white);
        padding: 6px 18px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
        box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
    }

    .lt-ht-content h1 {
        /* Responsive font: Smallest 2rem, Scales with width, Max 3.8rem */
        font-size: clamp(2rem, 7vw, 3.8rem); 
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 15px;
        text-shadow: 0 5px 15px rgba(0,0,0,0.5);
    }

    .lt-ht-content h1 span {
        color: var(--secondary-gold);
    }

    .lt-ht-content p {
        font-size: clamp(1rem, 3vw, 1.2rem);
        color: rgba(255, 255, 255, 0.9);
        max-width: 700px;
        margin: 0 auto 30px auto;
        line-height: 1.6;
    }

    /* Circuit-style Gold Divider */
    .circuit-line {
        width: 80px;
        height: 4px;
        background: var(--secondary-gold);
        margin: 0 auto 30px auto;
        border-radius: 2px;
        position: relative;
    }

    .circuit-line::before, .circuit-line::after {
        content: '';
        position: absolute;
        width: 10px;
        height: 10px;
        background: var(--secondary-gold);
        border-radius: 50%;
        top: -3px;
    }
    .circuit-line::before { left: -5px; }
    .circuit-line::after { right: -5px; }

    /* Breadcrumb Navigation */
    .lt-ht-breadcrumb {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
    }

    .lt-ht-breadcrumb a {
        color: var(--white);
        text-decoration: none;
        transition: var(--transition);
        font-weight: 500;
    }

    .lt-ht-breadcrumb a:hover {
        color: var(--secondary-gold);
    }

    .lt-ht-breadcrumb i {
        font-size: 10px;
        color: var(--secondary-gold);
    }

    /* --- Animations --- */
    @keyframes zoomIn {
        from { opacity: 0; transform: scale(0.95); }
        to { opacity: 1; transform: scale(1); }
    }
 .lt-ht-details-section {
        font-family: 'Poppins', sans-serif;
        color: var(--text-dark);
        line-height: 1.6;
    }

    /* --- Intro Section --- */
    .service-intro {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 80px 5%;
        align-items: center;
    }

    .intro-image-box {
        position: relative;
        animation: fadeInLeft 1s ease;
    }

    .intro-image-box img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        border: 8px solid var(--white);
    }

    .intro-text {
        animation: fadeInRight 1s ease;
    }

    .intro-text span {
        color: var(--secondary-gold);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 2px;
        display: block;
        margin-bottom: 10px;
    }

    .intro-text h2 {
        font-size: 2.5rem;
        color: var(--primary-teal);
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .intro-text p {
        color: var(--text-light);
        margin-bottom: 30px;
        font-size: 16px;
    }

    /* --- LT vs HT Comparison --- */
    .comparison-area {
        background: var(--bg-light);
        padding: 80px 5%;
        text-align: center;
    }

    .comp-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 40px auto 0 auto;
    }

    .comp-card {
        background: var(--white);
        padding: 40px;
        border-radius: 20px;
        border-top: 5px solid var(--primary-teal);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: var(--transition);
    }

    .comp-card:hover {
        transform: translateY(-10px);
        border-top-color: var(--secondary-gold);
    }

    .comp-card h3 {
        font-size: 24px;
        color: var(--primary-teal);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .comp-card ul {
        list-style: none;
        padding: 0;
        text-align: left;
    }

    .comp-card ul li {
        margin-bottom: 12px;
        font-size: 15px;
        color: var(--text-light);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .comp-card ul li i {
        color: var(--secondary-gold);
        font-size: 14px;
    }

    /* --- Process Section --- */
    .process-section {
        padding: 80px 5%;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .process-section h2 {
        font-size: 2.5rem;
        color: var(--primary-teal);
        margin-bottom: 50px;
    }

    .process-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }

    .step-card {
        padding: 30px;
        text-align: center;
        position: relative;
        transition: var(--transition);
    }

    .step-number {
        width: 50px;
        height: 50px;
        background: var(--primary-teal);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 20px;
        margin: 0 auto 20px auto;
        border: 3px solid var(--secondary-gold);
    }

    .step-card h4 {
        font-size: 18px;
        margin-bottom: 10px;
        color: var(--text-dark);
    }

    .step-card p {
        font-size: 14px;
        color: var(--text-light);
    }

    /* --- Technical Benefits Section --- */
    .benefit-area {
        background: var(--primary-teal);
        color: var(--white);
        padding: 80px 5%;
        text-align: center;
    }

    .benefit-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 40px auto 0 auto;
    }

    .benefit-box {
        background: rgba(255, 255, 255, 0.1);
        padding: 30px;
        border-radius: 15px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: var(--transition);
    }

    .benefit-box:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
    }

    .benefit-box i {
        font-size: 30px;
        color: var(--secondary-gold);
        margin-bottom: 15px;
        display: block;
    }

    .benefit-box h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    /* --- Animations --- */
    @keyframes fadeInLeft {
        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); }
    }

     /* --- Responsive Design --- */
        @media (max-width: 992px) {
            .mobile-toggle {
                display: block;
            }

            .nav-menu {
                position: absolute;
                top: 100%;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: var(--white);
                flex-direction: column;
                align-items: flex-start;
                transition: 0.4s;
                overflow-y: auto;
                padding: 20px 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-item {
                width: 100%;
            }

            .nav-link {
                padding: 15px 25px;
                width: 100%;
                border-bottom: 1px solid #eee;
            }

            .mega-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none; 
                grid-template-columns: 1fr;
                padding: 10px 30px;
                box-shadow: none;
                background: var(--light-bg);
                border-top: none;
            }

            .has-mega-menu.open .mega-menu {
                display: block;
            }

            .nav-link.dropdown-toggle::after {
                content: '\f107';
                font-family: 'Font Awesome 6 Free';
                font-weight: 900;
                float: right;
            }
             .hero-container {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 60px;
        }
        .hero-content p {
            margin: 0 auto 35px auto;
        }
        .hero-btns {
            justify-content: center;
        }
        .hero-content h1 {
            font-size: 2.8rem;
        }
         .about-container {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 80px;
        }
        .about-image-wrapper {
            order: 1;
            max-width: 600px;
            margin: 0 auto;
        }
        .about-text {
            order: 2;
        }
        .value-grid {
            text-align: left;
        }
        .stats-bar {
            justify-content: center;
        }
         .service-pillar, .pillar-reverse {
            grid-template-columns: 1fr;
            direction: ltr;
        }
        .pillar-image {
            min-height: 300px;
        }
        .pillar-content {
            padding: 30px;
        }
        .section-title-area h2 {
            font-size: 2.2rem;
        }
        .why-header h2 {
            font-size: 2.2rem;
        }
                .contact-grid {
            grid-template-columns: 1fr;
        }
        .map-wrapper {
            min-height: 300px;
            order: -1; /* Map comes first on mobile */
        }
  .footer-container {
            grid-template-columns: 1fr 1fr;
        }
         .progress-header h2 {
            font-size: 2.2rem;
        }
          .best-container {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 60px;
        }
        .best-visual {
            order: 1;
            max-width: 600px;
            margin: 0 auto;
        }
        .best-content {
            order: 2;
        }
        .best-features-grid {
            justify-content: center;
        }
        .feature-box {
            text-align: left;
        }
          .section-header h2 {
            font-size: 2.2rem;
        }
         .service-intro {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 40px;
        }
        .intro-image-box {
            order: 1;
            max-width: 600px;
            margin: 0 auto;
        }
        .intro-text {
            order: 2;
        }
        
        }

 @media (max-width: 768px) {
        .about-page-header {
            min-height: 350px; /* Slightly reduced for mobile but still spacious */
        }
          .client-section {
            padding: 60px 20px;
        }
        .logo-grid {
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
        }
        .testimonial-grid {
            grid-template-columns: 1fr;
        }
         .contact-page-header {
            min-height: 300px;
        }
           .form-wrapper {
            padding: 30px 20px;
        }
        .contact-form {
            grid-template-columns: 1fr; /* Single column for tablets/mobile */
        }
        .full-width {
            grid-column: span 1;
        }
        .submit-container {
            grid-column: span 1;
        }
        .form-header h2 {
            font-size: 1.7rem;
        }
          .service-page-header {
            min-height: 350px;
        }
          .lt-ht-header {
            min-height: 350px;
        }
    }

 @media (max-width: 576px) {
        .hero-section {
            padding: 60px 20px 30px 20px;
        }
        .hero-content h1 {
            font-size: 2.2rem;
        }
        .hero-btns {
            flex-direction: column;
            gap: 15px;
        }
        .btn-primary, .btn-secondary {
            width: 100%;
            text-align: center;
        }
        .feature-card {
            padding: 10px 15px;
            font-size: 12px;
        }
        .card-1 { left: 0; }
        .card-2 { right: 0; }
        .about-section {
            padding: 60px 20px;
        }
        .about-text h2 {
            font-size: 2rem;
        }
        .exp-badge {
            right: 10px;
            bottom: 10px;
            padding: 15px;
        }
        .exp-badge h2 {
            font-size: 24px;
        }
        .value-grid {
            grid-template-columns: 1fr;
        }
        .stats-bar {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }
          .services-main-section {
            padding: 60px 20px;
        }
        .service-details-grid {
            grid-template-columns: 1fr;
        }
        .pillar-content h3 {
            font-size: 1.6rem;
        }
        .section-title-area h2 {
            font-size: 1.8rem;
        }
         .why-choose-section {
            padding: 60px 20px;
        }
        .why-header h2 {
            font-size: 1.8rem;
        }
        .why-card {
            padding: 30px 20px;
        }
         .contact-header h2 {
            font-size: 2.2rem;
        }
        .info-card {
            flex-direction: column;
            text-align: center;
            padding: 25px;
        }
        .action-btns {
            justify-content: center;
        }
        .owner-grid {
            grid-template-columns: 1fr;
        }
          .footer-container {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .footer-brand {
            align-items: center;
        }
        .footer-logo-box {
            justify-content: center;
        }
        .footer-socials {
            justify-content: center;
        }
        .footer-col h3::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .footer-links a {
            justify-content: center;
        }
        .contact-item {
            justify-content: center;
            text-align: center;
        }
        .footer-bottom {
            flex-direction: column;
            gap: 15px;
        }
          .progress-section {
            padding: 60px 20px;
        }
        .progress-header h2 {
            font-size: 1.8rem;
        }
        .stats-grid {
            grid-template-columns: 1fr; /* Single column for mobile */
            gap: 20px;
        }
        .stat-card {
            padding: 30px 20px;
        }
         .best-services-section {
            padding: 60px 20px;
        }
        .best-features-grid {
            grid-template-columns: 1fr;
        }
        .best-content h2 {
            font-size: 2rem;
        }
            .intro-text h2 {
            font-size: 2rem;
        }
        .process-section h2 {
            font-size: 1.8rem;
        }
        
    }

        /* --- Extreme Small Screens (320px) --- */
        @media (max-width: 400px) {
            .brand-name {
                font-size: 16px;
            }
            .brand-tagline {
                font-size: 8px;
            }
            .logo-box img {
                height: 40px;
            }
            .nav-container {
                padding: 10px 10px;
            }
        }
         @media (max-width: 320px) {
        .hero-content h1 {
            font-size: 1.8rem;
        }
        .hero-content p {
            font-size: 1rem;
        }
        .hero-badge {
            font-size: 11px;
        }
         .about-text h2 {
            font-size: 1.7rem;
        }
        .about-text p {
            font-size: 0.95rem;
        }
        .value-text h4 {
            font-size: 15px;
        }
        .pillar-content {
            padding: 20px;
        }
        .detail-item span {
            font-size: 13px;
        }
        .btn-quote {
            width: 100%;
            box-sizing: border-box;
            height: 100px;
        }
         .why-header h2 {
            font-size: 1.6rem;
        }
        .why-card h3 {
            font-size: 19px;
        }
        .why-card p {
            font-size: 14px;
        }
         .contact-header h2 {
            font-size: 1.8rem;
        }
        .info-text h4 {
            font-size: 16px;
        }
        .address-overlay {
            bottom: 10px;
            left: 10px;
            right: 10px;
            padding: 15px;
        }
            .footer-brand-text h2 {
            font-size: 18px;
        }
        .footer-container {
            gap: 30px;
        }
        .footer-logo-box img {
            height: 50px;
        }
        .about-page-header {
            min-height: 400px; /* Give it more height on very small screens so text doesn't feel cramped */
            padding: 40px 0;
        }
        .about-badge {
            font-size: 10px;
            padding: 4px 12px;
        }
        .about-breadcrumb {
            font-size: 12px;
        }
         .progress-header h2 {
            font-size: 1.6rem;
        }
        .stat-number {
            font-size: 2.8rem;
        }
        .stat-label {
            font-size: 0.9rem;
        }
        .best-content h2 {
            font-size: 1.7rem;
        }
        .best-content p {
            font-size: 15px;
        }
        .btn-best {
            width: 100%;
            justify-content: center;
        }
         .section-header h2 {
            font-size: 1.6rem;
        }
        .testimonial-card {
            padding: 30px 20px;
        }
        .testimonial-text {
            font-size: 14px;
        }
        .logo-grid {
            grid-template-columns: repeat(2, 1fr); /* 2 logos per row on very small screens */
        }
         .contact-page-header {
            min-height: 380px; /* More height to prevent content squeeze */
            padding: 40px 0;
        }
        .contact-badge {
            font-size: 10px;
            padding: 5px 12px;
        }
        .contact-breadcrumb {
            font-size: 12px;
            flex-wrap: wrap;
            justify-content: center;
        }
         .form-section {
            padding: 40px 15px;
        }
        .form-wrapper {
            padding: 25px 15px;
        }
        .form-header h2 {
            font-size: 1.5rem;
        }
        .btn-submit {
            width: 100%;
            justify-content: center;
        }
        .input-group input, .input-group textarea {
            padding: 12px 15px;
        }
          .service-page-header {
            min-height: 420px; /* Extra height to avoid content squeeze on very small screens */
            padding: 40px 0;
        }
        .service-badge {
            font-size: 10px;
            padding: 5px 12px;
        }
        .service-breadcrumb {
            font-size: 12px;
            flex-wrap: wrap;
            justify-content: center;
        }
          .lt-ht-header {
            min-height: 450px; /* Increased height for narrow screens to prevent text squeeze */
            padding: 40px 0;
        }
        .lt-ht-badge {
            font-size: 10px;
            padding: 5px 12px;
        }
        .lt-ht-breadcrumb {
            font-size: 12px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .service-intro {
            padding: 40px 15px;
        }
        .intro-text h2 {
            font-size: 1.6rem;
        }
        .comp-card {
            padding: 25px 15px;
        }
        .comp-card h3 {
            font-size: 20px;
        }
        .benefit-box {
            padding: 20px 10px;
        }
    }
