 /* Modern CSS Variables */
        :root {
            --primary: #1a6fb0;
            --primary-dark: #0d4d7a;
            --secondary: #4cb050;
            --accent: #e53935;
            --light: #f8fdff;
            --dark: #2c3e50;
            --gray: #78909c;
            --light-gray: #eceff1;
            --white: #ffffff;
            --shadow: 0 4px 20px rgba(13, 77, 122, 0.1);
            --transition: all 0.3s ease;
        }

        /* Global Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--primary-dark);
        }

        p {
            margin-bottom: 1rem;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }

        /* Header & Navigation */
        header {
            background: var(--white);
            padding: 0.8rem 1rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .nav-logo img {
            height: 40px;
            width: auto;
        }

        .nav-logo h1 {
            font-size: 1.5rem;
            color: var(--primary);
            margin: 0;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            margin: 0;
            padding: 0;
            transition: var(--transition);
        }

        nav ul li a {
            color: var(--dark);
            text-decoration: none;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            transition: var(--transition);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        nav ul li a:hover {
            background: rgba(26, 111, 176, 0.1);
            color: var(--primary);
        }

     

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
            background: none;
            border: none;
            padding: 0.5rem;
        }

        /* Main Content */
        main {
            flex: 1;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 3rem 1rem;
            background: linear-gradient(135deg, rgba(26, 111, 176, 0.9) 0%, rgba(13, 77, 122, 0.9) 100%), url('./images/hero-bg.jpg') center/cover no-repeat;
            color: var(--white);
            border-radius: 12px;
            margin: 2rem 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
           
        }

        .hero h2 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            opacity: 0.95;
        }

        .hero-content {
            max-width: 800px;
        }

        .hero img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            max-height: 320px;
            object-fit: cover;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: var(--primary);
            color: var(--white);
            padding: 0.9rem 1.8rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow);
        }

        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(13, 77, 122, 0.3);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--white);
            color: var(--white);
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--primary);
        }

        .btn-secondary {
            background: var(--secondary);
        }

        .btn-secondary:hover {
            background: #3d9440;
        }

        .btn-accent {
            background: var(--accent);
        }

        .btn-accent:hover {
            background: #c62828;
        }

        .whatsapp-btn {
            background: #25D366;
        }

        .whatsapp-btn:hover {
            background: #1ebe5d;
        }

        .call-btn-small {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .call-btn-small:hover {
            background: var(--accent);
            transform: scale(1.1);
        }

       


    /* Sale Banner */
.sale-banner {
    background: linear-gradient(
        90deg,
        var(--primary) 0%,
        var(--primary-dark) 50%,
        var(--primary) 100%
    );
    color: var(--white);
    font-weight: bold;
    padding: 1rem;
    overflow: hidden;
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* scrolling text */
.sale-banner p {
    display: inline-block;
    padding-left: 100%;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
    font-size: 1.1rem;
}

/* Keyframes for scrolling */
@keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* --- Mobile adjustments --- */
@media (max-width: 600px) {
    .sale-banner {
        padding: 0.75rem;             /* slightly less padding */
        border-radius: 6px;           /* smaller radius for small screens */
    }
    .sale-banner p {
        font-size: 0.9rem;            /* smaller font so full text is visible */
        animation-duration: 15s;      /* scroll a bit faster on narrow screens */
    }
}

        /* Section Titles */
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.2rem;
            color: var(--primary-dark);
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }

        /* Products Section */
        .products {
            padding: 3rem 1rem;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 2rem;
        }

        .product {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .product:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(13, 77, 122, 0.15);
        }

        .product-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .product-content {
            padding: 1.8rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .product h3 {
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
            color: var(--primary-dark);
        }

        .product-price {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--accent);
            margin: 0.8rem 0;
        }

        .product-actions {
            display: flex;
            justify-content: space-between;
            margin-top: auto;
            padding-top: 1.5rem;
        }

        /* Gallery */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.8rem;
            padding: 2rem 0;
        }

        .gallery img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 12px;
            transition: var(--transition);
            box-shadow: var(--shadow);
            cursor: pointer;
        }

        .gallery img:hover {
            transform: scale(1.03);
            box-shadow: 0 12px 25px rgba(13, 77, 122, 0.2);
        }

        /* Contact Info */
        .contact-info {
            background: var(--primary);
            color: var(--white);
            padding: 3rem;
            border-radius: 16px;
            max-width: 700px;
            margin: 2rem auto;
            box-shadow: var(--shadow);
            line-height: 1.8;
        }

        .contact-info h3 {
            margin-bottom: 1.5rem;
            font-size: 1.6rem;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .contact-info p {
            margin: 1.2rem 0;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .contact-info i {
            color: var(--secondary);
            min-width: 28px;
            font-size: 1.2rem;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 3rem 1rem 1.5rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }

        .footer-column h3 {
            color: var(--secondary);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--white);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .footer-logo img {
            height: 40px;
            width: auto;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            transition: var(--transition);
        }

        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .footer-links a {
            color: var(--light-gray);
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 0.5rem;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* Call Button */
        .call-btn {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 60px;
            height: 60px;
            background: var(--secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
            z-index: 99;
            text-decoration: none;
            transition: var(--transition);
        }

        .call-btn:hover {
            background: #3d9440;
            transform: scale(1.1);
        }

        /* WhatsApp Form */
        .whatsapp-form-container {
            background: var(--white);
            border-radius: 16px;
            box-shadow: var(--shadow);
            width: 100%;
            max-width: 500px;
            margin: 40px auto;
            padding: 2.5rem;
            text-align: center;
        }

        .whatsapp-form-container h3 {
            color: #25D366;
            margin-bottom: 1.2rem;
            font-size: 1.7rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
        }

        .whatsapp-form-container p {
            color: var(--gray);
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            color: var(--dark);
            font-weight: 600;
        }

        .form-group select,
        .form-group input {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--light-gray);
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-group select:focus,
        .form-group input:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(26, 111, 176, 0.2);
        }

        .submit-btn {
            background-color: #25D366;
            color: white;
            border: none;
            border-radius: 8px;
            padding: 1.2rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: var(--transition);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.8rem;
        }

        .submit-btn:hover {
            background-color: #128C7E;
            transform: translateY(-3px);
        }

        .whatsapp-info {
            margin-top: 2rem;
            padding: 1.2rem;
            background-color: var(--light-gray);
            border-radius: 8px;
            font-size: 0.9rem;
            color: var(--gray);
        }

        .phone-number {
            font-weight: bold;
            color: #25D366;
        }

        /* Map Container */
        .map-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: var(--shadow);
            margin: 3rem auto;
        }

        .map-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Tabs */
        .tabs {
            display: flex;
            justify-content: center;
            margin: 2.5rem 0;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .tabs button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
        }

        .tabs button:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }

        .tabs button.active {
            background: var(--secondary);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            padding-top: 60px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.9);
        }

        .modal-content {
            margin: auto;
            display: block;
            max-width: 80%;
            max-height: 80%;
            border-radius: 10px;
        }

        #caption {
            margin: 15px auto;
            text-align: center;
            color: #f1f1f1;
            font-size: 18px;
        }

        .close {
            position: absolute;
            top: 20px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
        }

        .close:hover {
            color: #bbb;
        }

        /* Responsive Design */
        @media (max-width: 900px) {
            .hero h2 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 1.9rem;
            }
            
            .product-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav ul {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease-in-out;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            }
            
            nav ul.show {
                max-height: 500px;
            }
            
            nav ul li {
                width: 100%;
            }
            
            nav ul li a {
                padding: 1.2rem;
                border-radius: 0;
                display: block;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }
            
            .hero {
                padding: 3rem 1rem;
                min-height: 50vh;
            }
            
            .hero h2 {
                font-size: 1.9rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .hero-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .gallery {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
                gap: 1.2rem;
            }
            
            .contact-info {
                padding: 2rem;
                margin: 1.5rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .social-icons {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .nav-logo h1 {
                font-size: 1.2rem;
            }
            
            .nav-logo img {
                height: 30px;
            }
            
            .hero h2 {
                font-size: 1.7rem;
            }
            
            .btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
            
            .product-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 1.7rem;
            }
            
            .whatsapp-form-container {
                padding: 1.8rem;
            }
            
            .call-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }




        /* Style for active navigation item */
nav ul li a.active {
    background: var(--primary);
    color: var(--white);
}

/* Remove default focus outline and add custom style */
nav ul li a:focus {
    outline: none;
    background: var(--primary);
    color: var(--white);
}

/* Maintain the active style after click */
nav ul li a:active {
    background: var(--primary);
    color: var(--white);
}

/* For mobile devices - keep active state after tap */
@media (max-width: 768px) {
    nav ul li a:active {
        background: var(--primary);
        color: var(--white);
    }
}

/* === Mobile Full-Width Override === */
@media (max-width: 768px) {
  body,
  main
  {
    width: 100% !important;        /* take up 100% of the viewport */
    max-width: none !important;   /* remove the 1200px cap */
    margin: 0 auto !important;    /* center the 90% block */
    padding-left: 1px;
    padding-right: 1px;
  }
}





/* Fullscreen dark background for zoomed image */
#zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;             /* hidden until triggered */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#zoom-overlay img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

#zoom-overlay img:hover {
  transform: scale(1.05);     /* small hover zoom */
}




