
        /* Base Styles */
        :root {
            --primary-color: #D4AF37;
            --primary-light: #F5E7A3;
            --primary-dark: #9E7C0C;
            --dark-color: #000000;
            --light-color: #ffffff;
            --gray-color: #333333;
            --light-gray: #f8f8f8;
            --medium-gray: #e0e0e0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: var(--dark-color);
            background-color: var(--light-color);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            
        }

        .container {
            margin: 0 auto;     /* Center the container */
            padding-left: 20px; /* Inner padding */
            padding-right: 20px;
            box-sizing: border-box;

            
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Roboto', sans-serif;
            font-weight: 600;
            line-height: 1.3;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            position: relative;
            color: var(--dark-color);
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-dark), var(--primary-color), var(--primary-light));
            margin: 15px auto 0;
        }

        .section-subtitle {
            text-align: center;
            max-width: 800px;
            margin: -30px auto 50px;
            color: var(--gray-color);
            font-size: 1.1rem;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: var(--dark-color);
            padding: 12px 24px;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
            box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-dark);
        }

        .btn-outline:hover {
            background: var(--primary-color);
            color: var(--dark-color);
        }

        .btn-dark {
            background: linear-gradient(135deg, var(--dark-color), #d4af37);
            color: var(--light-color);
        }

        .btn-dark:hover {
            background: linear-gradient(135deg, #9e7c0c, var(--dark-color));
        }

        /* Header Styles */
        header {
            background-color: var(--dark-color);
            color: var(--light-color);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 60px;
            margin-right: 10px;
        }

nav ul {
    display: flex;
}

nav ul li {
    position: relative;
    margin-left: 25px;
}

nav ul li a {
    color: var(--light-color);
    padding: 10px;
    display: block;
    transition: color 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Hover effect */
nav ul li a:hover {
    color: var(--primary-dark); /* golden hover */
}

/* ACTIVE LINK STYLE (when dropdown is open) */
nav ul li.active > a {
    color: var(--primary-color);
    font-weight: bold;
    border-bottom: 2px solid var(--primary-color); /* underline */
}

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--dark-color);
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
    border-top: 2px solid var(--primary-color);
}

.dropdown-content li {
    margin: 0;
}

.dropdown-content a {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--light-color);
}

/* Hover effect for dropdown items */
.dropdown-content a:hover {
    background-color: rgba(212, 175, 55, 0.1); /* semi-golden bg */
}
nav ul li a.active {
    color: var(--primary-color, #d4af37);  /* gold-like color */
    font-weight: bold;
    border-bottom: 2px solid var(--primary-color, #d4af37); /* underline effect */
}



nav ul li.active .dropdown-content {
    display: block;
}

        /* Mobile Nav Toggle */
        .nav-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .nav-toggle span {
            display: block;
            width: 25px;
            height: 2px;
            margin: 3px;
            background-color: var(--primary-color);
            transition: all 0.3s ease;
        }

        /* Slider Styles */
        .slider-container {
            position: relative;
            overflow: hidden;
            height: 600px;
        }

        .slider {
            position: relative;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-bg {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .slide-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(95, 90, 90, 0.7), rgba(146, 144, 144, 0.2));
        }

        .slide-content {
            position: absolute;
            bottom: 50%;
            left: 10%;
            transform: translateY(50%);
            color: var(--light-color);
            max-width: 600px;
            text-shadow: 2px 2px 4px rgba(112, 107, 107, 0.7);
            z-index: 2;
        }

     .slide-content h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .slider-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 30px;
            z-index: 3;
        }

        .slider-controls button {
            background-color: rgba(0,0,0,0.5);
            color: var(--light-color);
            border: 2px solid var(--primary-color);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-controls button:hover {
            background-color: var(--primary-color);
            color: var(--dark-color);
        }

        .slider-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 3;
        }

        .dot {
            width: 12px;
            height: 12px;
            background-color: rgba(255,255,255,0.5);
            border-radius: 50%;
            margin: 0 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid var(--primary-color);
        }

        .dot.active {
            background-color: var(--primary-color);
            transform: scale(1.2);
        }

        /* Intro Section */
        .intro-section {
            padding: 20px 20px 40px 20px; /* Add horizontal padding */
            background-color: var(--light-color);
            position: relative;
            max-width: 1400px;  /* Slightly smaller for better centering */
            margin: 0 auto;
            overflow-x: hidden; /* Changed from auto to hidden to avoid scroll */
            padding-bottom: 40px; /* Increased for visual balance */
                    }

        .intro-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .intro-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--dark-color);
        }

        .intro-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: var(--gray-color);
            line-height: 1.8;
        }

        .intro-image {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .intro-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .intro-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(212, 175, 55, 0.3), transparent);
        }

        /* Call to Action Banner */
        .cta-banner {
            background: linear-gradient(135deg, var(--dark-color), #1a1a1a);
            padding: 20px 0;
            color: var(--light-color);
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="%23D4AF37" opacity="0.3"/></svg>');
            opacity: 0.2;
        }

        .cta-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .cta-text {
            flex: 1;
        }

        .cta-text h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        .cta-text p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .cta-button {
            margin-left: 30px;
        }

        /* Products Section - UPDATED for 3x3 grid */
        /* Products Section */
.products-section {
     padding: 20px 20px 40px 20px; /* Padding for spacing on smaller screens */
    background-color: var(--light-color);
}

/* Centered and constrained grid container */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1600px;     /* Constrain max width */
    margin-left: auto;     /* Center horizontally */
    margin-right: auto;
    width: 100%;
}

/* Product Card */
.product-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Badge */
.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Image Wrapper */
.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff; /* Optional: improves look if image doesn't cover fully */
}

.product-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}


.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

/* Info Box */
.product-info {
    padding: 25px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-color), var(--primary-light));
}

.product-info h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
    font-size: 1.3rem;
}

.product-info p {
    margin-bottom: 20px;
    color: var(--gray-color);
    font-size: 0.9rem;
    line-height: 1.7;
    flex-grow: 1;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    display: block;
}

.product-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;
}


        /* Features Section */
        .features-section {
            background-color: #000; /* Black background */
            padding: 60px 20px;
            color: #fff;
            text-align: center;
             max-width: 1600px;
    margin: 0 auto;
    padding: 20px 20px; /* Keeps spacing from screen edge on small screens */
    position: relative;
    padding-top: 20px;
    z-index: 1;
        }

        .features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            max-width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="%23D4AF37" opacity="0.3"/></svg>');
            opacity: 0.5;
            padding-right: 20px;
        }

        .features-section .section-title {
            color: var(--light-color);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .feature-card {
            background-color: rgba(255,255,255,0.05);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 20px solid rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(5px);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--dark-color);
        }

        .feature-card h3 {
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .feature-card p {
            color: var(--light-color);
            opacity: 0.8;
        }

        /* Why Choose Us Section */
        .why-us-section {
      padding: 20px 0px; /* Add horizontal padding to prevent edge-touching */
    background-color: var(--light-color);
        }

        .why-us-container {
           display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1600px; /* Optional: for content width control */
    margin: 0 auto;     /* Center the container */
        }

        .why-us-content h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: var(--dark-color);
        }

        .why-us-list {
            list-style: none;
        }

        .why-us-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .why-us-icon {
            background-color: var(--primary-color);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .why-us-icon img {
            width: 20px;
            height: 20px;
            filter: invert(1);
        }

        .why-us-text h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--dark-color);
        }

        .why-us-text p {
            color: var(--gray-color);
            line-height: 1.7;
        }

        .why-us-image {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .why-us-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .why-us-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(212, 175, 55, 0.3), transparent);
        }

        /* Purification Process Section - UPDATED for single line */
.process-section {
    padding: 20px 0 20px;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    overflow-x: hidden;
    padding-left: 60px;
    
}

.process-steps {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
}

.process-step {
    flex: 0 0 auto;
    width: 240px;
    scroll-snap-align: start;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin: 0 10px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color, gold);
    color: var(--dark-color, #000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 100px;
    height: 100px;
    background-color: var(--light-color, #f9f9f9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-icon img {
    width: 50px;
    height: 50px;
}

.process-step h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--dark-color, #333);
}

.process-step p {
    font-size: 0.9rem;
    color: var(--gray-color, #666);
    line-height: 1.5;
    padding: 0 10px;
}

/* Optional: prevent scrollbar from overlapping content */
.process-steps::-webkit-scrollbar {
    height: 8px;
}

.process-steps::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.process-steps::-webkit-scrollbar-track {
    background-color: transparent;
}

/* Optional media query for more control */
@media (max-width: 768px) {
    .process-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .process-step {
        width: 80vw; /* makes each step nearly full screen on small devices */
    }
}


        /* Service Plans Section - UPDATED for equal height cards */
        .service-plans-section {
            padding: 20px 0;
            background-color: var(--light-color);
        }

        .plans-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .plan-card {
            background-color: var(--light-color);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--medium-gray);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .plan-header {
            background: linear-gradient(135deg, var(--dark-color), #333);
            color: var(--light-color);
            padding: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .plan-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
            opacity: 0.1;
        }

        .plan-header h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        .plan-price {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .plan-price span {
            font-size: 1rem;
            font-weight: 400;
            opacity: 0.8;
        }

        .plan-features {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .plan-features ul {
            margin-bottom: 30px;
            flex-grow: 1;
        }

        .plan-features li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

        .plan-features li::before {
            content: '✓';
            color: var(--primary-color);
            font-weight: 700;
            margin-right: 10px;
            flex-shrink: 0;
        }

        .plan-description {
            margin-bottom: 20px;
            color: var(--gray-color);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .plan-button {
            text-align: center;
            margin-top: auto;
        }

        .popular-plan {
            position: relative;
            transform: scale(1.05);
        }

        .popular-plan::before {
            content: 'Most Popular';
            position: absolute;
            top: 20px;
            right: -35px;
            background-color: var(--primary-color);
            color: var(--dark-color);
            padding: 5px 40px;
            font-size: 0.8rem;
            font-weight: 600;
            transform: rotate(45deg);
            z-index: 2;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 20px 0;
         
            position: relative;
        }

        .testimonial-slider {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            overflow: hidden;
            min-height: 300px;
        }

        .testimonial {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
            padding: 20px;
        }

        .testimonial.active {
            opacity: 1;
            position: relative;
        }

        .testimonial-content {
            background-color: var(--light-color);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            border: 1px solid var(--medium-gray);
        }

        .testimonial-content:before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 80px;
            color: var(--primary-color);
            opacity: 0.3;
            font-family: Georgia, serif;
        }

        .testimonial-content p {
            font-style: italic;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .testimonial-author .avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
        }

        .testimonial-author .avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-author h4 {
            color: var(--dark-color);
            margin-bottom: 5px;
            font-size: 1.2rem;
        }

        .testimonial-author p {
            color: var(--gray-color);
            font-style: normal;
            margin: 0;
            font-size: 0.9rem;
        }

       .testimonial-controls {
    position: absolute;
    top: 50%;
    width: 3000px;           /* narrower width */
    max-width: 80%;         /* optional max width for responsiveness */
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 2;
    left: 50%;              /* center horizontally */
    transform: translate(-50%, -50%);
}

        .testimonial-controls button {
            background-color: rgba(0,0,0,0.5);
            color: var(--light-color);
            border: 2px solid var(--primary-color);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonial-controls button:hover {
            background-color: var(--primary-color);
            color: var(--dark-color);
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        /* Contact Section Styles - UPDATED */
        .contact-section {
            padding: 100px 0;
          
            position: relative;
                max-width: 1600px;
    margin: 0 auto;
    overflow-x: auto;
    padding-bottom: 20px;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 30px;
            margin-top: 50px;
        }

        .contact-info {
            background-color: var(--dark-color);
            color: var(--light-color);
            padding: 40px;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="%23D4AF37" opacity="0.3"/></svg>');
            opacity: 0.2;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            position: relative;
        }

        .contact-info p {
            margin-bottom: 30px;
            font-size: 1.1rem;
            line-height: 1.7;
            opacity: 0.9;
            position: relative;
        }

        .contact-details {
            position: relative;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .contact-icon {
            font-size: 1.5rem;
            margin-right: 15px;
            color: var(--primary-color);
        }

        .contact-item p {
            margin-bottom: 0;
            font-size: 1rem;
        }

        .contact-form {
            background-color: var(--light-color);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 1px solid var(--medium-gray);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-color);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--medium-gray);
            border-radius: 5px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
            outline: none;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .btn-submit {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: var(--dark-color);
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            width: 100%;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background-color: var(--light-color);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--medium-gray);
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-question {
            background-color: var(--light-gray);
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background-color: var(--medium-gray);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--primary-color);
        }

        .faq-item.active .faq-question::after {
            content: '-';
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }

        /* Footer Styles */
        footer {
            background-color: var(--dark-color);
            color: var(--light-color);
            padding: 80px 0 20px;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-dark), var(--primary-color), var(--primary-light));
        }

       
        .footer-logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-logo img {
            height: 80px;
            margin-bottom: 20px;
            padding-left: 40px;
        }

        .footer-quote {
            max-width: 270px;
            font-style: italic;
            color: var(--primary-color);
            font-size: 1.1rem;
            line-height: 1.8;
            padding-left: 40px;
        }
  
  .footer-top {
    /* Option 1: Light Gray Background */
    background-color:var(--dark-color); /* Light gray */

    /* Option 2: Off-White Background */
    /* background-color: #fafafa; /* Off-white */

    /* Option 3: Very Light Blue Background */
    /* background-color: #e8f0fe; /* Very light blue */

    padding: 20px 20px;
    /* Option 1: Dark Text */
    color: #333; /* Dark gray text */

    /* Option 2: Medium Gray Text */
    /* color: #555; /* Medium gray text */

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-zigzag-row1 {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap; /* Adjust the value as needed for desired spacing */
}
/* 
.footer-zigzag-row {
    
} */


.footer-zigzag-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-zigzag-row.reverse {
    flex-direction: row-reverse;
}

.footer-zigzag-img,
.footer-zigzag-img2,
.footer-zigzag-img3 {
    flex: 0 0 35%;
    max-width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 280px;
    /* Initial state for animation */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards; /* Apply animation */
}

.footer-zigzag-img img,
.footer-zigzag-img2 img,
.footer-zigzag-img3 img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    /* Option 1: Lighter Border */
    border: 2px solid #ddd; /* Light gray border */
    background: #ddd; /* Light gray background */

    /* Option 2:  Subtle Gray Border */
    /* border: 2px solid #ccc; */
    /* background: #ccc; */

    object-fit: cover;
    transition: transform 0.3s ease; /* Add transition for hover effect */
}

.footer-zigzag-img img:hover,
.footer-zigzag-img2 img:hover,
.footer-zigzag-img3 img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

.footer-zigzag-content {
    flex: 0 0 60%;
    max-width: 60%;
    /*  Option 1: Light Gray  */
    background: var(--light-color) /* Light gray with slight transparency */

    /*  Option 2:  Very Light Blue  */
    /* background: rgba(220, 230, 240, 0.95); /* Very light blue with slight transparency */

    /*  Option 3:  Off-White  */
    /* background: rgba(250, 250, 250, 0.95); /* Off-white with slight transparency */


    border-radius: 18px;
    padding: 36px 32px 28px 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    min-width: 300px;
    /* Initial state for animation */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards 0.3s; /* Apply animation with delay */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add transition for hover effect */
}


  .footer-zigzag-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.footer-zigzag-content h4 {
    font-size: 2rem;
    /* Option 1: Dark Text for Light Background */
    color: #333; /* Dark gray for better contrast */

    /* Option 2:  Subtle Accent Color */
    /* color: #007bff; /* A blue accent color (adjust as needed) */

    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.footer-zigzag-content p {
    font-size: 1.1rem;
    /* Option 1: Darker Gray for Paragraph Text */
    color: #666; /* A slightly darker gray */

    /* Option 2:  Slightly Darker, More Readable Gray */
    /* color: #555; */

    margin-bottom: 18px;
    line-height: 1.7;
}

.about-captions {
    margin: 0;
    padding-left: 20px;
    list-style: disc;
}

.about-captions li {
    margin-bottom: 14px;
    /* Option 1:  Dark Accent Color for List Items */
    color: #007bff; /* A blue accent color (adjust as needed) */

    /* Option 2:  Subtle Gray Accent */
    /* color: #777; */

    font-size: 1.1rem;
    font-style: italic;
}

.about-captions li strong {
    font-weight: 700;
    color: #333; /* Dark gray for strong text */
    font-style: normal;
}

.footer-about-us-title {
    text-align: center;
    /* Option 1:  Dark Primary Color */
    color: #222; /* A dark color for the title */

    /* Option 2:  Brand Color (if applicable) */
    /* color: your-brand-color; */

    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: 2px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* Initial state for animation */
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.8s ease-out forwards; /* Apply animation */
}
    
    /* Responsive adjustments */
    @media (max-width: 900px) {
        .footer-zigzag-row,
        .footer-zigzag-row.reverse {
            flex-direction: column !important;
            gap: 30px;
            margin-bottom: 40px;
        }

        .footer-zigzag-img,
        .footer-zigzag-img2,
        .footer-zigzag-img3,
        .footer-zigzag-content {
            max-width: 100%;
            flex: 1 1 100%;
            min-width: auto;
        }

        .footer-zigzag-img img,
        .footer-zigzag-img2 img,
        .footer-zigzag-img3 img {
            max-width: 100%;
            max-height: 100%;
        }
    }

    /* Keyframes for animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

  
        
        
        .footer-content {
            padding-left: 80px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-section h3 {
            color: var(--primary-color);
            margin-bottom: 25px;
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary-color);
        }

        .footer-section ul li {
            margin-bottom: 15px;
        }

        .footer-section a {
            color: var(--light-color);
            transition: color 0.3s ease;
            opacity: 0.8;
        }

        .footer-section a:hover {
            color: var(--primary-color);
            opacity: 1;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }

        .social-link img {
            width: 20px;
            height: 20px;
            filter: invert(1);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }

        .created-by {
            display: block;
            margin-top: 10px;
            color: var(--primary-color);
            font-weight: 500;
        }

        .created-by a {
            color: var(--primary-color);
            text-decoration: underline;
        }

   /* Tablet & Large Phone - max-width 992px */
@media (max-width: 992px) {
    .slide-content h2 {
        font-size: 2.4rem;
    }

    .slider-container {
        height: 450px;
    }

    .intro-container,
    .why-us-container,
    .calculator-container {
        display: flex;
        flex-direction: column;
    }

    .intro-image,
    .why-us-image {
        order: -1;
        margin-bottom: 20px;
    }

    .cta-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cta-button {
        margin: 20px 0 0;
    }

    .process-steps {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 20px;
    }

    .process-line {
        width: 100%;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* Mobile - max-width 768px */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: var(--dark-color);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        z-index: 1000;
    }

    nav.active {
        max-height: 500px;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
    }

    nav ul li {
        margin-bottom: 15px;
    }

    .dropdown-content {
        position: static;
        display: none;
        padding-left: 20px;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .slider-container {
        height: 380px;
    }

    .slide-content {
        left: 5%;
        max-width: 90%;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 0.95rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-logo {
        margin-bottom: 20px;
        justify-content: center;
    }

    .footer-quote {
        text-align: center;
    }

    .popular-plan {
        transform: scale(1);
    }

    .contact-info,
    .contact-form {
        padding: 20px;
    }
}

/* Small Phones - max-width 480px */
@media (max-width: 480px) {
    .slider-container {
        height: 320px;
    }

    .slide-content h2 {
        font-size: 1.6rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .slider-controls button {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .product-image {
        height: 180px;
    }

    .product-info {
        padding: 15px;
    }

    .testimonial-content {
        padding: 20px;
    }

    .contact-info,
    .contact-form {
        padding: 20px;
    }

    .product-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 0.95rem;
    }

    .btn-submit {
        padding: 10px 15px;
        font-size: 0.95rem;
    }
}
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #25D366;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
}
/* Back to Top Button - Stylish */
#backToTopBtn {
  display: none;
  position: fixed;
  bottom: 85px; /* Adjust if WhatsApp icon overlaps */
  right: 80px;
  z-index: 998;
  background-color: #1c1c1c;
  color: #fff;
  border: none;
  outline: none;
  font-size: 20px;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

#backToTopBtn:hover {
  background-color: #333;
  transform: translateY(-5px) scale(1.1);
}

#backToTopBtn i {
  pointer-events: none; /* Prevents double clicking issue */
}
.product-card.highlight {
  background-color: #ffff99;
  box-shadow: 0 0 15px 5px #ffeb3b;
  transition: background-color 0.5s ease, box-shadow 0.5s ease;
}
