:root {
    color-scheme: light;
}
:root {
            /* --brand-green: #57C312; */
            --brand-accent: #cc3333;
            --dark-bg: #111111;
            --text-dark: #333333;
            --white: #ffffff;
            --primary: #006666;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--dark-bg);
            color: #ffffff;
            margin: 0;
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6, .hero-title, .navbar-brand {
            font-family: 'Montserrat', sans-serif;
        }

        .hero-wrapperer {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), 
                        url('img/lighting.webp') center/cover no-repeat;
        }
/* https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop */
        .hero-wrapper {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background:   url('img/bnr.png') center/cover no-repeat;
            /* background: url('img/bg-img.jpg'); */
        }

        .btn{
           background-color: var(--primary);
           color:var(--white);
           margin-right: 20px;
           border-radius: 0px;
           padding: 15px;
        }
        .btn:hover{
           background-color: var(--brand-accent);
           color:var(--white);
        }

        /* Top Info Bar */
        .top-bar {
            background-color: transparent;
            padding: 8px 0;
            font-size: 11px;
            position: relative;
            z-index: 20;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .top-bar .container {
            max-width: 100%;
            padding: 0 15px;
        }

/* Large Desktop */
@media (min-width: 1200px) {
    .top-bar {
        padding: 8px 300px;
    }
}

/* Extra Large Screens */
@media (min-width: 1400px) {
    .tob-bar {
        padding: 8px 300px;
    }
}
        .top-bar-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: nowrap;
            gap: 10px;
        }
        .contact-info {
            display: flex;
            align-items: center;
            gap: 15px;
            overflow: hidden;
        }
        .top-bar a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s;
            display: inline-flex;
            align-items: center;
            white-space: nowrap;
        }
        .top-bar i {
            color: var(--white);
        }
        .social-links {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .social-links a {
            margin: 0;
            opacity: 0.8;
            font-size: 12px;
        }

        /* Header Styling */
        .header-container {
            position: relative;
            z-index: 20;
            padding: 10px 0;
        }
        .navbar-box {
            background-color: #ffffff;
            border-radius: 0;
            padding: 5px 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border: none;
        }
        .nav-link {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark) !important;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 0.5px;
            padding: 15px 12px !important;
            transition: color 0.3s ease;
        }
        
        /* Active State - Forced accent */
        .nav-link.active, 
        .nav-link:hover,
        .dropdown-item.active,
        .dropdown-item:active {
            color: var(--brand-accent) !important;
        }

        /* Dropdown Styling */
        .dropdown-menu {
            border: none;
            border-radius: 0;
            background-color: #ffffff;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            margin-top: 0;
            padding: 0;
        }
        .dropdown-item {
            font-family: 'Montserrat', sans-serif;
            padding: 12px 20px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-dark);
            border-bottom: 1px solid #f5f5f5;
            transition: all 0.3s ease;
        }
        .dropdown-item:last-child {
            border-bottom: none;
        }
        /* Specific accent for dropdown active */
        .dropdown-item.active {
            background-color: #f9f9f9;
            color: var(--brand-accent) !important;
        }
        .dropdown-item:active,
        .dropdown-item:hover,
        .dropdown-item:focus {
        background-color: var(--brand-accent) !important;
        color: #fff !important;
        }


        /* Services Section Code on Home Page */
        .services-container{
    padding:100px 0;
    background:#f8f9fa;
}

.section-title{
    color:var(--primary);
    font-weight:700;
    text-transform:uppercase;
}

.service-card{
    background:var(--white);
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.service-img{
    height:260px;
    overflow:hidden;
    position:relative;
}

.service-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.service-card:hover .service-img img{
    transform:scale(1.12);
}

.service-content{
    /* width:88%;
    margin:-55px auto 25px; */
    background:#fff;
    height:300px;
    padding:30px;
    position:relative;
    z-index:2;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.service-card:hover .service-content{
    transform:translateY(-8px);
}

.service-content h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:18px;
    color:#222;
}

.service-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.service-btn{
    display:inline-block;
    padding:12px 30px;
    background:var(--primary);
    color:#fff;
    text-decoration:none;
    transition:.3s;
    font-weight:600;
}

.service-btn:hover{
    background:var(--brand-accent);
    color:#fff;
    transform:translateX(5px);
}
.service-img-slider{
    height:280px;
    overflow:hidden;
    position:relative;
}

.service-img-slider img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    animation:imageSlide 6s infinite;
}

.service-img-slider img:nth-child(1){
    animation-delay:0s;
}

.service-img-slider img:nth-child(2){
    animation-delay:3s;
}

@keyframes imageSlide{
    0%,45%{
        opacity:1;
        transform:scale(1);
    }
    50%,100%{
        opacity:0;
        transform:scale(1.08);
    }
}

        /* Hero Section Styling */
        .hero-section {
            flex-grow: 1;
            display: flex;
            align-items: center;
            position: relative;
            padding: 40px 0;
        }
        .hero-content {
            z-index: 5;
            position: relative;
            text-align: left;
        }
        .welcome-tag {
            font-family: 'Montserrat', sans-serif;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 15px;
            display: block;
            font-size: 0.9rem;
        }
        .hero-title {
            font-size: clamp(1.5rem, 5.5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            text-transform: uppercase;
        }
        .hero-title span {
            color: var(--brand-accent);
        }
        .hero-description {
            color: #e0e0e0;
            font-size: clamp(0.95rem, 1.5vw, 1.15rem);
            max-width: 600px;
            margin-bottom: 35px;
            font-weight: 300;
        }
        .btn-accent {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--brand-accent);
            color: white;
            padding: 16px 45px;
            border-radius: 0;
            font-weight: 700;
            text-transform: uppercase;
            border: none;
            transition: all 0.3s ease;
        }

        /* Engineer Image */
        .engineer-container {
            position: absolute;
            right: 0;
            bottom: 0;
            height: 90%;
            z-index: 2;
            display: flex;
            align-items: flex-end;
            pointer-events: none;
        }
        .engineer-img {
            height: 100%;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(-20px 0 30px rgba(0,0,0,0.5));
        }

        /* Responsive */
        @media (max-width: 767px) {
            .hero-content { text-align: center; }
            .hero-description { margin-left: auto; margin-right: auto; }
            .engineer-container { opacity: 0.2; height: 50%; right: -10%; }
            .navbar-collapse { background: #fff; padding: 10px; }
            .btn-accent { width: 100%; }
            .top-bar-flex { font-size: 9px; }
        }

        /* Product Section on Home Page */
        /* 3D Flip Card Container */
        .product-card-wrapper {
            perspective: 1000px;
            height: 450px;
            width: 100%;
        }

        .product-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            transform-style: preserve-3d;
        }

        /* Rotation Effect */
        .product-card-wrapper:hover .product-card-inner {
            transform: rotateY(-180deg);
        }

        .face {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 4px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            background: var(--white);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        /* Front Side */
        .face-front {
            z-index: 2;
            border-bottom: 4px solid var(--primary);
        }

        .image-container {
            height: 70%;
            width: 100%;
            overflow: hidden;
            background: #eee;
        }

        .image-container1 {
            height: 70%;
            width: 100%;
            overflow: hidden;
            background: #eee;
        }

        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(20%);
            cursor: pointer;
        }

        .image-container1 img {
            width: 55%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(20%);
            cursor: pointer;
        }

        .front-title {
            height: 30%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            text-align: center;
            font-weight: 700;
            font-size: 20px;
            color: var(--dark-bg);
            background: var(--white);
        }

        /* Back Side */
        .face-back {
            transform: rotateY(180deg);
            padding: 2.5rem;
            justify-content: center;
            align-items: center;
            text-align: center;
            background-color: var(--white);
            border: 1px solid #eee;
        }

        .face-back h3 {
            color: var(--primary);
            font-weight: 800;
            margin-bottom: 1rem;
            font-size: 20px;
        }

        .btn-view {
            margin-top: 2rem;
            padding: 0.75rem 2rem;
            background-color: var(--primary);
            color: var(--white);
            font-size: 14.4px;
            border-radius: 2px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
        }

        .btn-view:hover {
            background-color: var(--brand-accent);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* Section Styling */
        .section-header {
            margin-bottom: 4rem;
        }

        .section-title {
            font-weight: 800;
            color: var(--dark-bg);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--brand-accent);
        }

        .subheading {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            font-size: 18.4px;
        }
        .product-section{
            padding: 100px 0;
        }


        /* Contact Section on Home Page */

        #contact {
            padding: 100px 0;
            background-color: var(--primary);
            color: var(--white);
        }

        .section-header {
            max-width: 700px;
            margin: 0 auto 60px auto;
        }

        .section-title {
            font-weight: 900;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: -1px;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            color: #aaaaaa;
            font-size:18.4px;
        }

        /* Square Contact Card Styling */
        .contact-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 0; /* Sharp corners */
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: none;
        }

        .contact-card:hover {
            transform: translateY(-8px);
            border-color: var(--brand-accent);
            box-shadow: 10px 10px 0px var(--brand-accent); /* Sharp brand shadow using accent color */
        }

        .icon-wrapper {
            width: 60px;
            height: 60px;
            background: var(--primary);
            color: var(--white);
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 25px auto;
            transition: all 0.3s ease;
        }

        .contact-card:hover .icon-wrapper {
            background: var(--brand-accent);
            color: var(--white);
        }

        .card-title {
            font-weight: 800;
            color: var(--dark-bg);
            text-transform: uppercase;
            font-size: 1.25rem;
            margin-bottom: 15px;
        }

        .card-text {
            color: var(--text-dark);
            line-height: 1.6;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .contact-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s ease;
        }

        .contact-link:hover {
            color: var(--brand-accent);
            gap: 12px;
        }

        @media (max-width: 768px) {
            #contact {
                padding: 60px 0;
            }
            .contact-card {
                margin-bottom: 24px;
            }
        }


        /* Footer Section on Home Page */

        /* Footer Section Style Code*/

        .footer {
            position: relative;
            /* Overlay for readability + Background Image */
            background-image: linear-gradient(rgba(17, 17, 17, 0.94), rgba(10, 10, 10, 0.96)), var(--brand-accent);
            background-size: cover;
            background-position: center;
            background-attachment: scroll;          
            color: #ccc;
            padding: 80px 0 0;
            text-align: left;
            overflow: hidden;
        }

        .footer-container {
            max-width: 1200px;
            margin: auto;
            padding: 0 20px;
            /* Updated to 4 equal-ish columns */
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .footer-logo {
            width: 300px;
            margin-bottom: 25px;
        }

        .footer-col h4 {
            color: #fff;
            margin-bottom: 30px;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 35px;
            height: 3px;
            background: var(--white);
        }

        .footer-col p {
            line-height: 1.8;
            font-size: 14px;
            color: #bbb;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            text-decoration: none;
            color: #aaa;
            transition: 0.3s;
            position: relative;
            padding-bottom: 2px;
            font-size: 14px;
            display: inline-block;
        }

        .footer-col ul li a:hover {
            color: var(--white);
            transform: translateX(5px);
        }

        .social-icons {
            margin-top: 25px;
            display: flex;
            gap: 10px;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--primary);
            color: #ffffff;
            font-size: 16px;
            border-radius: 4px;
            transition: 0.3s;
            text-decoration: none;
        }

        .social-icons a:hover {
            background: var(--brand-accent);
            color: var(--white);
            transform: translateY(-3px);
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.3);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            text-align: center;
            padding: 25px;
            margin-top: 60px;
            font-size: 13px;
            color: #777;
        }

        .footer-col .fas, .footer-col .fa-location-dot {
            margin-top: 4px;
            margin-right: 12px;
            color: var(--white);
            font-size: 16px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .contact-item p {
            margin-bottom: 0;
            font-size: 14px;
        }

        #scrollTopBtn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--white);
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            display: none;
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        #scrollTopBtn i {
            color: #111;
            font-size: 18px;
        }

        #scrollTopBtn:hover {
            background: var(--white);
            transform: translateY(-5px);
        }

        /* Responsive Fixes */
        @media (max-width: 1024px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 600px) {
            .footer-container {
                grid-template-columns: 1fr;
                text-align: left;
            }
            .footer-col h4::after {
                left: 5%;
                transform: translateX(-50%);
            }
            .social-icons, .contact-item {
                justify-content: left;
            }
            .contact-item {
                text-align: left;
                width: fit-content;
                /* margin-left: auto; */
                margin-right: auto;
            }
        }

        .link1{
            color: var(--white);
            text-decoration: none;
        }
        .link1:hover {
            color: var(--brand-accent)
        }


        /* Gallery and testing report Page */
        /* --- Hero Gallery Section --- */
        .hero-gallery-section {
            position: relative;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-align: center;
            overflow: hidden;
        }

        .hero-gallery-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
        }

        .hero-gallery-content {
            position: relative;
            z-index: 2;
        }

        .hero-gallery-breadcrumb {
            margin-bottom: 15px;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .hero-gallery-breadcrumb a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: 0.3s;
            font-weight: 700;
        }

        .hero-gallery-breadcrumb a:hover {
            color: var(--brand-accent);
        }

        .hero-gallery-breadcrumb .divider {
            margin: 0 10px;
            color: rgba(255, 255, 255, 0.4);
        }

        .hero-gallery-breadcrumb .active-item {
            color: var(--brand-accent);
            font-weight: 700;
        }

        .hero-gallery-title {
            font-size: 64px;
            font-weight: 800;
            margin: 0;
            letter-spacing: 2px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
        }

        /* --- Gallery Grid Section --- */
        .gallery-section {
            padding: 80px 0;
            background-color: #f4f7f7; /* Slight tint of primary for background */
        }

        .gallery-section-title {
            text-align: center;
         font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    font-size: 36px;
        }

        .gallery-section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--brand-accent);
            margin: 15px auto 0;
        }

        /* Gallery Item */
        .gallery-item {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 1/1;
            border-radius: 4px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            background: var(--dark-bg);
            border: 1px solid rgba(0,0,0,0.05);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
            opacity: 1;
        }

        .gallery-item:hover img {
            transform: scale(1.15);
        }

        /* Overlay */
        .gallery-overlay {
            position: absolute;
            inset: 0;
           background: rgba(0,0,0,0.6);
           opacity: 0.1;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: var(--white);
            opacity: 0;
            transition: all 0.4s ease;
            transform: translateY(0);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay p {
            font-size: 20px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 2px;
            /* border-top: 2px solid var(--brand-accent);
            padding-top: 10px;
            border-bottom: 2px solid var(--brand-accent);
            padding-bottom: 10px; */
        }

        .zoom-icon {
            font-size: 40px;
            margin-bottom: 5px;
            color: var(--brand-accent);
            transition: 0.3s;
        }

        /* --- Lightbox Modal --- */
        .modal-content {
            background: transparent;
            border: none;
        }

        .modal-body {
            padding: 0;
            position: relative;
        }

        .lightbox-img {
            max-width: 95%;
            max-height: 80vh;
            border-radius: 2px;
            box-shadow: 0 0 50px rgba(0,0,0,0.8);
            border: 4px solid var(--primary);
        }

        #modalCaption {
            font-size: 1.2rem;
            background: var(--primary);
            color: var(--white);
            /* display: inline-block; */
            padding: 10px 30px;
            border-radius: 0px;
            margin-top: 20px;
            font-weight: 600;
        }

        .btn-close-white {
            position: fixed;
            top: 30px;
            right: 30px;
            z-index: 1070;
            width: 2.5em;
            height: 2.5em;
            opacity: 1;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        @media (max-width: 768px) {
            .hero-gallery-title { font-size: 2.5rem; }
            .btn-close-white { top: 15px; right: 15px; width: 2em; height: 2em; }
        }


        /* why choose us section on Home Page */
         /* Hero Section Styling */
        .earthing-section {
            position: relative;
            min-height: 85vh;
            display: flex;
            align-items: center;
            background: url('img/bg-img.jpg') no-repeat center center/cover;
            padding: 100px 0;
            color: var(--white);
        }

        /* Using --dark-bg for the overlay */
        .earthing-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(17, 17, 17, 0.9) 0%, rgba(17, 17, 17, 0.6) 100%);
            z-index: 1;
        }

        .content-container {
            position: relative;
            z-index: 2;
        }

        .section-tag {
            color: var(--brand-accent);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 700;
            display: block;
            margin-bottom: 15px;
            font-size: 18.4px;
        }

        .main-heading {
            font-size: 64px;
            font-weight: 800;
            margin-bottom: 25px;
            line-height: 1.1;
        }

        .main-description {
            font-size: 18.4px;
            line-height: 1.8;
            margin-bottom: 45px;
            color: var(--text-light);
            max-width: 650px;
            border-left: 4px solid var(--primary);
            padding-left: 20px;
        }

        /* List Items Styling */
        .points-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .point-item {
            display: flex;
            align-items: center;
            font-size: 1.15rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .point-item:hover {
            color: var(--brand-accent);
            transform: translateX(8px);
        }

        /* Using --primary for the icon background */
        .check-icon {
            background-color: var(--primary);
            color: var(--white);
            width: 36px;
            height: 36px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 18px;
            font-size: 1rem;
            flex-shrink: 0;
            box-shadow: 0 4px 10px rgba(0, 102, 102, 0.3);
        }

        /* Button Styling using --primary and --brand-accent on hover */
        .btn-custom {
            background-color: var(--primary);
            color: var(--white);
            padding: 15px 40px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            border-radius: 0;
            transition: all 0.4s ease;
            display: inline-block;
            text-decoration: none;
        }

        .btn-custom:hover {
            background-color: var(--brand-accent);
            color: var(--white);
            box-shadow: 0 10px 20px rgba(204, 51, 51, 0.3);
        }

        @media (max-width: 992px) {
            .main-heading {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .main-heading {
                font-size: 2.2rem;
            }
            .earthing-section {
                text-align: left;
                padding: 80px 20px;
            }
            .main-description {
                font-size: 1.1rem;
            }
        }

        /* Application Section Code on Home Page */

         /* Square Corners Override */
        .btn, .card, .icon-container, .app-card {
            border-radius: 0px !important;
        }

        .text-accent { color: var(--brand-accent); }
        .text-primary-custom { color: var(--primary); }
        
        .applications-section {
            padding: 100px 0;
            background-color: var(--white);
        }

        .section-subtitle {
            font-size: 18.4px;
            color: var(--brand-accent);
            display: block;
            margin-bottom: 1rem;
        }

        .section-title {
            font-weight: 900;
            color: var(--dark-bg);
            margin-bottom: 1.5rem;
        }

        .section-line {
            width: 60px;
            height: 4px;
            background-color: var(--brand-accent);
            margin: 0 auto 2rem;
        }

        .app-card {
            background: var(--white);
            border: 1px solid #eeeeee;
            padding: 40px;
            height: 100%;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .app-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 15px 30px rgba(0, 102, 102, 0.1);
        }

        .icon-container {
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f0f7f7;
            color: var(--primary);
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .app-card:hover .icon-container {
            background-color: var(--primary);
            color: var(--white);
        }

        .app-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark-bg);
            margin-bottom: 1rem;
        }

        .app-card p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 0;
        }

        .lead{
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            font-size: 18.4px;
            font-weight:400;
        }


        /*Client Logo Section Code on Home Page */

        .logo-section {
            padding: 80px 0;
        }

        .section-title {
                font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-size: 36px;
        }

        .section-subtitle {
            color: var(--text-dark);
            max-width: 700px;
            margin: 0 auto 3rem auto;
            font-size: 18.4px;
            opacity: 0.8;
        }

        /* Logo Grid Styling */
        .g-corporate {
            --bs-gutter-y: 2rem;
        }

        .logo-wrapper {
            background: var(--white);
            padding: 20px;
            border-radius: 0px; 
            display: flex;
            align-items: center;
            justify-content: center;
            height: 120px;
            transition: all var(--transition-speed) ease;
            border: 1px solid #eee;
        }

        .logo-wrapper img {
            max-width: 100%;
            max-height: 60px;
            width: auto;
            height: auto;
            filter: none;
            opacity: 1;
            transition: all var(--transition-speed) ease;
        }

        /* Hover Effects using brand-accent and primary */
        .logo-wrapper:hover {
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transform: translateY(-5px);
            /* Border changes to primary color on hover */
            border-color: var(--primary);
            background-color: #fafafa;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .logo-wrapper {
                height: 100px;
                padding: 15px;
            }
            .logo-wrapper img {
                max-height: 45px;
            }
        }
        
        /* Utility class for primary color usage if needed elsewhere */
        .text-primary-custom {
            color: var(--primary);
        }
        
        .bg-dark-custom {
            background-color: var(--dark-bg);
        }

        /*About Page Section Code on About Page*/
        /* --- Global Component Classes --- */
        .section-tag {
            color: var(--white);
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-size: 0.75rem;
            display: inline-block;
            margin-bottom: 1rem;
            padding: 4px 12px;
            background: var(--brand-accent);
            border-radius: 2px;
        }

        .main-heading {
                font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-size: 36px;
        }

        .main-heading span {
            color: var(--primary);
        }

        .content-text {
            font-size: 18.4px;
            color: var(--text-dark);
            margin-bottom: 1.2rem;
        }

        .highlight-quote {
            border-left: 5px solid var(--primary);
            padding: 15px 25px;
            margin: 25px 0;
            background: rgba(0, 102, 102, 0.05);
            font-style: italic;
            font-weight: 500;
            color: var(--primary);
        }

        .image-slider-wrapper {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            height: 450px;
            border: 4px solid var(--white);
        }

        .slide-img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity var(--transition-speed) ease-in-out;
        }

        .slide-img.active {
            opacity: 1;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-top: 20px;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 14.4px;
            color: var(--dark-bg);
            text-transform: uppercase;
        }

        .feature-list li::before {
            content: "●";
            color: var(--brand-accent);
            margin-right: 10px;
            font-size: 0.8rem;
        }

        /* --- Section Specific Styling --- */
        .about-section {
            padding: 80px 0;
            position: relative;
            background: linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)); 
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        /* --- Responsive Queries --- */
        @media (max-width: 991px) {
            .image-slider-wrapper { height: 350px; margin-top: 30px; }
            .main-heading { font-size: 1.8rem; }
        }


        /*Company Section on About Page*/

        .section-header {
            /* padding: 100px 0 60px; */
            text-align: center;
        }

        .section-header h1 {
                font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-size: 36px;
        }

        .section-header h1::after {
            content: '';
            width: 80px;
            height: 5px;
            background: var(--brand-accent);
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 0;
        }

        /* History Card Styling */
        .history-card {
            background: var(--white);
            border: 1px solid rgba(0,0,0,0.05);
            border-radius: 4px; /* More professional, less rounded */
            padding: 50px 40px;
            margin-bottom: 30px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
            transition: var(--transition);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .history-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--primary);
            transition: var(--transition);
        }

        .history-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--card-shadow);
            border-color: transparent;
        }

        .history-card:hover::before {
            width: 8px;
            background: var(--brand-accent);
        }

        .card-number {
            font-size: 14.4px;
            font-weight: 700;
            color: var(--brand-accent);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: block;
        }

        .card-title {
            font-weight: 700;
            font-size: 20px;
            margin-bottom: 25px;
            color: var(--dark-bg);
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }

        .card-content {
            font-size: 16px;
            color: var(--text-dark);
            opacity: 0.9;
        }

        /* Innovation Card Special Polish */
        .innovation-card {
            background: linear-gradient(to bottom right, var(--white), #f9fdfd);
        }
        
        .innovation-card strong {
            color: var(--primary);
        }

        /* Animation class */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            /* .section-header {
                padding: 60px 0 30px;
            } */
            .history-card {
                padding: 35px 25px;
            }
        }

        .text-para{
            color: var(--white);
            max-width: 700px;
            margin: 0 auto;
            font-size: 18.4px;
        }

        .card-about{
            margin-top: -50px;
        }


        /*Geohmic section Code and Why Choose Slept on About Page */

        /* GEOHMIC Section Styling */
        .geohmic-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--white) 0%, #f4f7f7 100%);
        }

        .section-tag {
            display: inline-block;
            background-color: rgba(0, 102, 102, 0.1);
            color: var(--primary);
            padding: 5px 15px;
            border-radius: 4px; /* Slightly sharper for industrial feel */
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            border-left: 3px solid var(--brand-accent);
        }

        .geohmic-heading {
            color: var(--dark-bg);
            margin-bottom: 25px;
            font-size: 36px;
            font-weight: 800;
        }

        .geohmic-heading span {
            color: var(--primary);
        }

        .geohmic-content {
            font-size: 18.4px;
            color: var(--text-dark);
            margin-bottom: 30px;
        }

        .image-container {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            border-bottom: 5px solid var(--primary);
        }

        .geohmic-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .image-container:hover .geohmic-image {
            transform: scale(1.05);
        }

        /* Buttons using new colors */
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            border-radius: 0; /* Modern industrial look */
            padding: 12px 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background-color: var(--dark-bg);
            border-color: var(--dark-bg);
            transform: translateY(-2px);
        }

        /* WHY CHOOSE SLEPL Section */
        .slepl-section {
            padding: 100px 0;
            background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url(img/bg-img.jpg) center / cover no-repeat;
            color: var(--white);
        }

        .slepl-title {
            text-align: center;
            margin-bottom: 60px;
            color: var(--white);
            font-size: 36px;
            font-weight: 800;
        }

        .slepl-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--brand-accent);
            margin: 15px auto 0;
        }

        .feature-card {
            background: var(--white);
            border: none;
            padding: 40px 30px;
            height: 100%;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            align-items: flex-start; /* Left aligned for technical look */
            text-align: left;
            border-top: 3px solid transparent;
        }

        .feature-card:hover {
            /* background: #222; */
            border-top-color: var(--brand-accent);
            transform: translateY(-10px);
        }

        .icon-wrapper {
            width: 50px;
            height: 50px;
            /* background: rgba(0, 102, 102, 0.2); */
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: var(--white);
            transition: all 0.3s ease;
        }
        .icon-wrapper:hover{
            background-color: var(--brand-accent);
        }

        .feature-card:hover .icon-wrapper {
            color: var(--white);
            transform: rotateY(180deg);
        }

        .card-title {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .card-text {
            color: var(--dark-bg);
            font-size: 16px;
            line-height: 1.7;
        }

        /* Placeholder */
        .image-placeholder {
            background: #222;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 400px;
            color: var(--primary);
        }

        @media (max-width: 768px) {
            .geohmic-heading { font-size: 2.2rem; }
            .geohmic-section { padding: 60px 0; }
        }
        

        /* CTA button */ 
         /* CTA SECTION */
  .cta-section {
    background-color: var(--primary);
    background-image: linear-gradient(135deg, var(--primary) 0%, #004d4d 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
    padding: 80px 0;
    opacity: 0;               /* For scroll animation */
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    text-align: center;
  }

  .cta-section.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Decorative Background Circle */
  .cta-section::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
  }

  /* CTA Badge */
  .cta-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14.4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
  }

  /* Heading */
  .cta-heading {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 1.5rem;
  }

  /* Description */
  .cta-description {
    color: rgba(255,255,255,0.9);
    max-width: 650px;
    margin: 0 auto 2rem auto;
    font-size: 18.4px;
    line-height: 1.6;
  }

  /* CTA Button */
  .btn-brand-cta {
    background-color: var(--brand-accent);
    color: var(--white) !important;
    padding: 15px 40px;
    font-weight: 700;
    font-size: 14.4px;
    border-radius: 0px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(204,51,51,0.3);
    text-decoration: none;
  }

  .btn-brand-cta:hover {
    background-color: #b32d2d;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(204,51,51,0.5);
  }

  .btn-brand-cta span {
    margin-left: 10px;
    transition: transform 0.3s ease;
  }

  .btn-brand-cta:hover span {
    transform: translateX(8px);
  }

  /* Responsive */
  @media(max-width:768px){
    .cta-heading {
      font-size: 2rem;
    }
    .cta-description {
      font-size: 1.1rem;
    }
    .cta-section {
      padding: 60px 20px;
    }
  }


  /* Map Section Code on Contact Us Page */
  /* Full width wrapper */
        .map-wrapper-full {
            position: relative;
            width: 99vw; /* Full Viewport Width */
            height: 20vw;
            background-color: #f8f9fa;
            overflow: hidden;
        }

        /* Floating Info Card */
        .map-card {
            position: absolute;
            top: 30px;
            left: 30px;
            display: none;
            z-index: 10;
            width: 350px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
            padding: 20px;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        .card-header-flex {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .business-title {
            font-size: 1.25rem;
            font-weight: 500;
            color: #202124;
            margin-bottom: 4px;
            line-height: 1.2;
        }

        .business-address {
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .rating-section {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            color: var(--text-gray);
        }

        .rating-score {
            color: #202124;
            font-weight: 500;
            margin-right: 4px;
        }

        .stars {
            color: #fbbc04;
            margin-right: 6px;
        }

        .review-count {
            color: var(--google-blue);
            cursor: pointer;
            text-decoration: none;
        }

        .action-buttons {
            display: flex;
            gap: 12px;
            margin-top: 10px;
        }

        .action-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid #dadce0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--google-blue);
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .action-circle:hover {
            background-color: #f8f9fa;
            border-color: #d1d3d8;
            box-shadow: 0 1px 2px rgba(60,64,67,0.3);
        }

        /* Map Iframe Settings */
        .google-map-iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        /* Responsive handling for mobile */
        @media (max-width: 768px) {
            .map-wrapper-full {
                height: auto;
                display: flex;
                flex-direction: column;
            }
            .map-card {
                position: static;
                width: 100%;
                border-radius: 0;
                box-shadow: none;
                border-bottom: 1px solid #e0e0e0;
                padding: 15px;
            }
            .google-map-iframe {
                height: 400px;
            }
        }


        /*Services Page Section Code on Service Page */

        /* Global Reset for the Services Page Wrapper */
        .services-page * {
            border-radius: 0 !important;
            transition: none !important;
            animation: none !important;
        }

        .services-page {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--white);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        .services-page .section-title {
                font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-size: 36px;
}

        .services-page .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background-color: var(--brand-accent);
        }

        .services-page .service-img-wrapper {
            overflow: hidden;
            border: 1px solid #ddd;
            background-color: #eee;
        }

        .services-page .service-img-wrapper img {
            height: 400px;
            width: 100%;
            object-fit: cover;
            display: block;
            transform: none !important;
        }

        .services-page .feature-tag {
            background: var(--white);
            border-left: 4px solid var(--primary);
            padding: 12px 20px;
            font-weight: 600;
            font-size: 0.9rem;
            height: 100%;
            display: flex;
            align-items: center;
            border-top: 1px solid #eee;
            border-right: 1px solid #eee;
            border-bottom: 1px solid #eee;
            color: var(--text-dark);
        }

        .services-page .process-container {
            position: relative;
            padding: 2rem 0;
        }

        .services-page .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .services-page .step-circle {
            width: 65px;
            height: 65px;
            background-color: var(--brand-accent);
            color: var(--white);
            border-radius: 50% !important;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1.25rem;
            border: 4px solid var(--white);
            box-shadow: 0 0 0 1px #ccc;
        }

        @media (min-width: 992px) {
            .services-page .process-line {
                position: absolute;
                top: 32px;
                left: 12%;
                right: 12%;
                height: 2px;
                background-color: #ddd;
                z-index: 1;
            }
        }

        .services-page .btn-custom {
            background-color: var(--primary);
            color: var(--white);
            padding: 14px 35px;
            text-decoration: none;
            display: inline-block;
            border: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14.4px;
            font-weight: 600;
        }

        .services-page .btn-custom:hover {
            background-color: var(--brand-accent);
            color: var(--white);
        }

        .services-page .text-primary-brand {
            color: var(--primary) !important;
            font-size:36px;
        }

        .services-page .bg-process {
            background-color: var(--light-gray);
        }


        /* Products page Section Code on Products Page*/

         /* Ensuring section background is white */
        .products-page-product-section {
            padding: 80px 0;
            overflow: hidden;
            background-color: var(--white);
        }

        /* Description Styling */
        .products-page-section-title {
                font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-size: 36px;
}

        /* Accent Line using --brand-accent */
        .products-page-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 5px;
            background-color: var(--brand-accent);
        }

        .products-page-description-text {
            font-size: 1.15rem;
            margin-bottom: 2.5rem;
            text-align: justify;
            color: var(--text-dark);
        }

        /* Enquire Button using --primary */
        .products-page-btn-custom {
            background-color: var(--primary);
            color: var(--white);
            border: none;
            transition: all 0.3s ease;
            font-weight: 700;
            letter-spacing: 0.5px;
            display: inline-block;
            text-decoration: none;
        }

        .products-page-btn-custom:hover {
            background-color: var(--brand-accent);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* Image Container - Sharp Edges */
        .products-page-product-image-container {
            width: 80%;
            height: auto;
            max-height: 650px;
            overflow: hidden;
            margin-top: 30px;
        }

        /* Mobile devices */
@media (max-width: 768px) {
    .products-page-product-image-container {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .products-page-product-image-container {
        width: 100%;
    }
}

        .products-page-product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Zero border radius as requested */
            border-radius: 0 !important; 
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            display: block;
        }

        /* Animation */
        .products-page-fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .products-page-fade-up.products-page-visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .products-page-description-text {
                font-size: 1.05rem;
                text-align: left;
            }
            /* .products-page-product-section {
                padding: 40px 0;
            } */
        }


        /* Scoped styles for the Products Section to prevent site-wide conflicts */
        .products-section {
            font-family: 'Montserrat', sans-serif;
            background-color: transparent;
            padding: 80px 0;
        }

        .products-section .section-title {
                font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-size: 36px;
        }

        .products-section .prod-feature-card {
            background: var(--white);
            border: 1px solid #f0f0f0;
            padding: 40px;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            display: flex;
            align-items: flex-start;
            position: relative;
            overflow: hidden;
        }

        /* Hover Effect */
        .products-section .prod-feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
            border-color: var(--brand-accent);
        }

        /* Accent line on hover */
        .products-section .prod-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background-color: var(--brand-accent);
            transition: height 0.3s ease;
        }

        .products-section .prod-feature-card:hover::before {
            height: 100%;
        }

        .products-section .feature-number {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary);
            margin-right: 25px;
            line-height: 1;
            opacity: 0.8;
        }

        .products-section .feature-content h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--brand-accent);
            line-height: 1.3;
        }

        .products-section .feature-content p {
            color: var(--text-dark);
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* Responsive adjustments */
        @media (max-width: 991px) {
            .products-section .prod-feature-card {
                padding: 30px;
            }
        }

        @media (max-width: 768px) {
            .products-section {
                padding: 50px 0;
            }
            .products-section .section-title {
                font-size: 1.8rem;
                margin-bottom: 35px;
            }
            .products-section .prod-feature-card {
                padding: 20px;
            }
        }

        .split-section {
    height: 1vh;
    width: 100%;
    background: linear-gradient(
        to right,
        var(--primary) 80%,
        var(--brand-accent) 20%
    );
}

/*Earthing images grid*/

/* DISCLAIMER */
.disclaimer {
    background: var(--primary);
    border: 1px solid #e2e8f0;
    font-weight: 600;
    font-size: 1.0rem;
    color:var(--white);
    text-align: center;
}