/* General Styles */
:root {
    --primary-color: #2E5A88; /* Dark Blue */
    --secondary-color: #FF6B35; /* Orange */
    --accent-color: #4CAF50; /* Green */
    --text-color: #333; /* Dark Gray */
    --white: #fff;
    --gray: #2a2929;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: #000;
    width: 100%;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Combined Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar .container .icon-link {
    text-decoration: none;
}
.top-bar .container img{
    width: 30px;
    height: 30px;
}

.top-bar p {
    margin: 0;
    font-size: 0.9rem;
}

.phone-link, .email-link {
    color: inherit;
    text-decoration: none;
    font-weight: bold;
}

.phone-link:hover, .email-link:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: bold;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}


.hamburger {
    color: black;
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Callback Form and Button */
.callback-floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: bounce 2s infinite;
}

.callback-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #ff6b35, #ff9900);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.callback-btn:hover {
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.callback-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1001;
    backdrop-filter: blur(5px);
}

.callback-popup {
    background: #5e585c;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    position: relative;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease-out;
}

.callback-popup.animate-popup {
    transform: scale(1);
    opacity: 1;
}

.callback-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: red;
    transition: color 0.3s ease;
}

.callback-close-btn:hover {
    color: darkred;
}

.callback-form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.callback-form-group input,
.callback-form-group textarea {
    width: 90%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.callback-form-group input:focus,
.callback-form-group textarea:focus {
    border-color: #4A90E2;
    box-shadow: 0 0 8px rgba(74, 144, 226, 0.5);
}

.callback-submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #ff6b35, #ff9900);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.callback-submit-btn:hover {
    background: linear-gradient(135deg, #ff9900, #ff6b35);
    transform: scale(1.05);
}

/* Updated Discount Popup */
.dis-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Darkened background */
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

/* Glassmorphic Popup */
.dis-popup {
    background: rgba(34, 34, 34, 0.8); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Glass effect */
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    max-width: 400px;
    width: 90%;
    position: relative;
    transform: scale(0.85);
    opacity: 0;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

/* Popup Animation */
.dis-popup.animate-popup {
    transform: scale(1);
    opacity: 1;
}

/* Improved Form Inputs */
.dis-input {
    width: 90%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    color: #9a9696;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.dis-input:focus {
    border: 2px solid #ff9900;
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}


/* Improved Submit Button */
.dis-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #ff9900, #ff6b35);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(255, 165, 0, 0.3);
}

.dis-btn:hover {
    background: linear-gradient(135deg, #ff6b35, #ff9900);
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(255, 165, 0, 0.5);
}

/* Improved Close Button */
.dis-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.3rem;
    cursor: pointer;
    color: white;
    background: red;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 8px rgba(255, 0, 0, 0.3);
}

.dis-close-btn:hover {
    background: darkred;
    transform: scale(1.1);
}


/* Success Popup */
.success-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    z-index: 1002;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

/* Success Box */
.success-box {
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

/* Checkmark Animation */
.checkmark {
    display: block;
    font-size: 60px;
    color: #4CAF50;
    font-weight: bold;
    animation: popIn 0.5s ease-in-out;
}

/* Animation for the Checkmark */
@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Updated Hero Section */
/* Specific styling for the main hero image section */
.main-hero-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

/* Common styles for hero images */
.main-hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: none;
}

/* Show landscape image on tablets and desktop */
@media screen and (min-width: 768px) {
    .main-landscape {
        display: block;
    }
}

/* Show portrait image on mobile screens */
@media screen and (max-width: 767px) {
    .main-portrait {
        display: block;
    }
}


/* Products Section */
.products {
    padding: 4rem 5%;
    text-align: center;
    background-color: #0a0a0a; /* Dark Background */
}

.products h2 {
    color: #ffcc00; /* Bright Yellow for Title */
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Product Grid Styles */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* Individual Product Card */
.product-card {
    background: #1a1a1a; /* Darker Gray */
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    border: 2px solid #444; /* Subtle Border */
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: #ff6b35; /* Highlight Color */
}

/* Product Image */
.product-card img {
    width: 100%;
    max-width: 250px;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Product Name */
.product-card .product-name {
    font-size: 1.5rem;
    color: #4CAF50; /* Green */
    font-weight: bold;
}

/* Product Description */
.product-card .product-desc {
    color: #aaa; /* Light Gray */
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Discount Tag */
.discount-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff6b35;
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 7px;
}

/* CTA (Call to Action) Button */
.cta {
    display: inline-block;
    padding: 12px 20px;
    background: linear-gradient(135deg, #ff6b35, #ff9900); /* Orange Gradient */
    color: white;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    box-shadow: 0px 4px 8px rgba(255, 107, 53, 0.3);
}

.cta:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #ff9900, #ff6b35);
    box-shadow: 0px 6px 12px rgba(255, 107, 53, 0.5);
}

/* =============================
   Updated View More Button Styling
   ============================= */
   .view-more-btn {
    display: block;
    margin: 20px auto;
    padding: 14px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #494cf7, #937bfe);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(255, 126, 95, 0.4);
}

.view-more-btn:hover {
    background: linear-gradient(135deg, #7bfe86, #5fff87);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 126, 95, 0.6);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .products {
        padding: 3rem 10px;
    }

    .product-card {
        padding: 15px;
    }
}

/* Product Details Section */
.product-details {
    padding: 4rem 5%;
    background: var(--background-dark);
    color: var(--white);
    text-align: center;
    background-color: #0a0a0a;
}

.product-details .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.product-image img {
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

.product-info h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.product-info p {
    font-size: 1.2rem;
    color: #ccc;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.old-price {
    text-decoration: line-through;
    color: gray;
    margin-left: 10px;
}

.product-info ul {
    text-align: left;
    list-style: none;
    padding-left: 0;
}

.product-info ul li::before {
    content: "\2714";
    color: var(--secondary-color);
    margin-right: 10px;
}

.cta {
    padding: 12px 20px;
    background: var(--secondary-color);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.cta:hover {
    transform: scale(1.1);
}

/* ==============================
   🏆 Pricing Section - Boxed & Modern
   ============================== */
   .marutiaqua-pricing-section {
    background: radial-gradient(circle at top, #141414, #0a0a0a); /* Dark gradient */
    padding: 80px 5%;
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 📦 Bordered Container for the Entire Section */
.marutiaqua-pricing-container {
    background: rgba(255, 255, 255, 0.05); /* Glassmorphism effect */
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 204, 0, 0.5); /* Glowing Gold Border */
    padding: 40px;
    border-radius: 15px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.2); /* Subtle Glow */
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect on Entire Container */
.marutiaqua-pricing-container:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.3);
}

/* ✨ Section Title */
.marutiaqua-pricing-title {
    font-size: 2.2rem;
    color: #ffcc00;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.8);
}

/* 🚀 Grid Layout for Pricing */
.marutiaqua-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    justify-content: center;
    margin-bottom: 25px;
}

/* 🏆 Glassmorphic Pricing Cards */
.marutiaqua-pricing-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 15px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    border: 1px solid rgba(255, 204, 0, 0.4);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

/* Modern Hover Effects */
.marutiaqua-pricing-item:hover {
    transform: scale(1.05);
    border-color: #ffcc00;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.4);
}

/* Gold Highlight for Text */
.marutiaqua-pricing-item span {
    color: #ffcc00;
    font-weight: bold;
}

/* 💡 Service Guarantee Box */
.marutiaqua-service-info {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 204, 0, 0.4);
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.3);
    backdrop-filter: blur(12px);
}

.marutiaqua-service-info h3 {
    font-size: 1.4rem;
    color: #ffcc00;
    font-weight: bold;
}

.marutiaqua-service-info span {
    color: #ff5733;
    font-weight: bold;
}

.marutiaqua-service-info p {
    font-size: 1rem;
    color: #ddd;
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
    .marutiaqua-pricing-title {
        font-size: 1.5rem;
    }

    .marutiaqua-pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 8px;
    }

    .marutiaqua-pricing-item {
        font-size: 0.9rem;
        padding: 12px;
    }

    .marutiaqua-service-info h3 {
        font-size: 1.2rem;
    }

    .marutiaqua-service-info p {
        font-size: 0.9rem;
    }

    .marutiaqua-pricing-container {
        padding: 30px;
    }
}



/* Customer Reviews Section */
.customer-reviews {
    padding: 4rem 5%;
    background-color: #222;
    text-align: center;
}

.customer-reviews h2 {
    font-size: 2rem;
    color: #6c9f29;
    margin-bottom: 2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: var(--gray);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.review-card:hover {
    transform: translateY(-8px);
}

.reviewer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.reviewer-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.rating {
    color: gold;
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Related Products */
.related-products {
    padding: 4rem 5%;
    background: var(--gray);
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card img {
    width: 100%;
    max-width: 250px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
}

/* Related Products */
.related-products {
    padding: 4rem 5%;
    background: var(--gray);
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: var(--gray);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card img {
    width: 100%;
    max-width: 250px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .product-details .container {
        flex-direction: row;
        text-align: left;
    }

    .product-image {
        flex: 1;
    }

    .product-info {
        flex: 1;
    }
}


/* Footer Section */
.footer {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Footer Grid Layout */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
    text-align: left;
}

/* Footer Columns */
.footer-about,
.footer-links,
.footer-contact {
    flex: 1;
    min-width: 280px;
}

.footer-contact {
    text-align: center;
    padding: 20px;
}

/* Footer Headings */
.footer h3, 
.footer h4 {
    font-size: 22px;
    color: #ffcc00;
    margin-bottom: 15px;
    position: relative;
    text-align: center;
}

/* Heading Underline Effect */
.footer h3::after,
.footer h4::after {
    content: '';
    width: 50px;
    height: 3px;
    background: #ffcc00;
    display: block;
    margin: 5px auto 0;
}

/* Footer Text */
.footer p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
}

/* Quick Links */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
    text-align: center;
}

.footer-links ul li a {
    text-decoration: none;
    color: #ddd;
    font-size: 16px;
    transition: color 0.3s ease-in-out;
}

.footer-links ul li a:hover {
    color: #ffcc00;
}

/* Contact Details */
.footer-contact p {
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    word-break: break-word;
}

.footer-contact i {
    color: #FFD700;
    font-size: 18px;
}

/* Social Media Links */
.footer-social {
    margin-top: 20px;
    text-align: center;
}

.footer-social a {
    color: #fff;
    font-size: 24px;
    margin: 0 12px;
    transition: transform 0.3s ease-in-out, color 0.3s;
}

.footer-social a:hover {
    color: #ffcc00;
    transform: scale(1.2);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 30px;
    font-size: 14px;
    color: #bbb;
    text-align: center;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-about, 
    .footer-links, 
    .footer-contact {
        width: 90%;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }
}


/* 📱 Mobile Optimization */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-about,
    .footer-links,
    .footer-contact,
    .footer-newsletter {
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }

    .footer-contact p {
        display: flex;
        flex-direction: column;
        text-align: center;
        font-size: 14px;
        word-break: break-word;
    }

    .footer-newsletter input {
        width: 90%;
    }

    .footer-newsletter button {
        width: 70%;
    }

    .footer-social {
        margin-top: 15px;
    }

    .footer-social a {
        font-size: 22px;
        margin: 0 8px;
    }
}


/* Popup */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.popup {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.popup h2 {
    margin-bottom: 1rem;
}

.popup input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.popup button {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.popup button:hover {
    background: var(--secondary-color);
}

.close-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #FF6B35;
    background: transparent;
    border: none;
}

.contact-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .contact-icons {
        display: block;
        align-items: center;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    #pincode-display {
        margin-top: 0;
    }


}

/* Responsive Styles  For Hero Section*/
@media (max-width: 768px) {

    .slider-container {
        flex-direction: column;
        gap: 20px;
    }

    .content-section {
        max-width: 100%;
        order: 1;
    }

    .image-section {
        max-width: 100%;
        order: 2;
    }

    .hero {
        height: auto;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .product-content {
        text-align: center;
    }

    .product-image img {
        max-width: 100%;
    }
    .slider-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .content-section,
    .image-section {
        max-width: 100%;
        padding: 10px;
        text-align: center;
    }

    .product-content {
        text-align: center;
        width: 100%;
    }

    .product-image img {
        max-width: 90%;
        margin: 0 auto;
        display: block;
    }

    .hero-title {
        font-size: 18px;
        text-align: center;
    }

    .brand-name {
        font-size: 28px;
        text-align: center;
    }

    .product-name {
        font-size: 22px;
        text-align: center;
    }

    .product-desc {
        font-size: 16px;
        text-align: center;
    }

    .price {
        font-size: 20px;
        text-align: center;
    }

    .old-price {
        font-size: 16px;
        text-align: center;
    }

    .callback-popup {
        width: 70%;
    }
}

/* Book a Demo Section */
.ask-demo-section {
  background-color: #0b0b0b;
  padding: 4rem 10px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  color: #fff;
}

/* Container */
.ask-demo-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: stretch;
}

/* Why Choose Section */
.ask-demo-why-choose {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #131313;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease;
  min-height: 100%;
}

.ask-demo-why-choose:hover {
  transform: translateY(-5px);
}

.ask-demo-why-choose h2 {
  font-size: 2rem;
  color: #FFD700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.ask-demo-why-choose span {
  color: #FFBF00;
}

.ask-demo-why-choose ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ask-demo-why-choose ul li {
  font-size: 1.05rem;
  color: #f5f5f5;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.ask-demo-why-choose ul li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: #FFD700;
}

/* Form Container */
.ask-demo-form-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #131313;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease;
  min-height: 100%;
}

.ask-demo-form-container:hover {
  transform: translateY(-5px);
}

.ask-demo-form-container h2 {
  font-size: 2rem;
  color: #FFD700;
  margin-bottom: 1rem;
  text-align: center;
}

.ask-demo-form-container p {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
  text-align: center;
}

/* Form Fields */
.ask-demo-form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.ask-demo-form-group input,
.ask-demo-form-group textarea {
  width: 85%;
  padding: 12px 15px;
  border: 1px solid #FFD700;
  border-radius: 8px;
  background: #1b1b1b;
  color: #fff8dc;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s ease, background 0.3s ease;
}

.ask-demo-form-group input:focus,
.ask-demo-form-group textarea:focus {
  border-color: #ffcc00;
  background: #222;
}

/* Placeholder */
.ask-demo-form-group input::placeholder,
.ask-demo-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* CTA Button */
.ask-demo-cta {
  width: 100%;
  padding: 12px;
  background: linear-gradient(145deg, #FFD700, #b8860b);
  color: #0b0b0b;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.ask-demo-cta:hover {
  transform: scale(1.05);
  background: linear-gradient(145deg, #ffcc00, #daa520);
}

/* Responsive for Small Devices */
@media (max-width: 768px) {
  .ask-demo-container {
    flex-direction: column;
  }

  .ask-demo-why-choose,
  .ask-demo-form-container {
    width: 100%;
    text-align: center;
    padding: 0;
  }

  .ask-demo-why-choose ul li {
    text-align: left;
  }

  .ask-demo-form-group input,
  .ask-demo-form-group textarea {
    text-align: left;
  }

  .ask-demo-form-container h2,
  .ask-demo-why-choose h2 {
    font-size: 1.7rem;
  }

  .ask-demo-form-container p {
    font-size: 0.95rem;
  }
}



/* How We Works for you */
#how-it-works {
    text-align: center;
    padding: 60px 20px;
    background: #111;
    color: #fff;
}

#how-it-works h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold color for premium look */
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.step {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    width: 250px;
    transition: 0.3s ease-in-out;
}

.step:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6); /* Glowing gold effect */
}

.step img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #FFD700;
}

.step p {
    font-size: 1em;
    color: #ccc;
}

/* testimonials Section*/
#testimonials {
    text-align: center;
    padding: 60px 20px;
    background: #222;
    color: white;
    position: relative;
    overflow: hidden;
}

#testimonials h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold color for premium look */
}

.testimonial-container {
    display: flex;
    justify-content: center;
    position: relative;
    height: 320px; /* Set a fixed height for smooth transitions */
    overflow: hidden;
}

.testimonial-slide {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    position: absolute;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease-in-out;
    min-height: 200px; /* Ensure uniform height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-slide img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 3px solid #FFD700;
}

.testimonial-slide h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #FFD700;
}

.testimonial-slide p {
    font-size: 1em;
    color: #ccc;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 215, 0, 0.8);
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    color: black;
    border-radius: 50%;
    transition: 0.3s;
}

.prev-btn:hover, .next-btn:hover {
    background: #FFD700;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #0d0d0d;
    color: #fff;
}

/* FAQs Section */
.faqs-section {
    padding: 80px 20px;
    text-align: center;
}

/* FAQs Container */
.faqs-container {
    max-width: 800px;
    margin: auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* FAQs Heading */
.faqs-container h2 {
    font-size: 36px;
    color: #ffcc00;
    margin-bottom: 15px;
}

/* FAQs Description */
.faqs-container p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 30px;
}

/* FAQ Item */
.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    background: #222;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

/* FAQ Question */
.faq-question {
    width: 100%;
    padding: 18px;
    text-align: left;
    background: #333;
    color: #fff;
    font-size: 18px;
    border: none;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease-in-out;
}

.faq-question:hover {
    background: #ff9900;
    color: #000;
}

/* FAQ Answer */
.faq-answer {
    display: none;
    padding: 15px;
    background: #444;
    color: #ccc;
    font-size: 16px;
    text-align: left;
}

/* Active State */
.faq-item.active .faq-answer {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faqs-container {
        padding: 30px;
    }

    .faq-question {
        font-size: 16px;
        padding: 14px;
    }

    .faq-answer {
        font-size: 14px;
    }
}



/* == Servises Header Section === */
/* General Styles */
body {
    background-color: #121212;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* Service Header */
.ser-header {
    text-align: center;
    background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
    color: #d4af37;
    padding: 30px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0px 4px 10px rgba(212, 175, 55, 0.3);
}

.ser-header h2 {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
}

.ser-header ul {
    list-style-type: none;
    padding: 0;
    margin-top: 10px;
}

.ser-header li {
    font-size: 18px;
    margin: 5px 0;
}

/* Pricing Section */
.ser-pricing {
    text-align: center;
    padding: 40px 20px;
    background: #1b1b1b;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(212, 175, 55, 0.4);
    margin: 40px auto;
    max-width: 800px;
    border: 2px solid #d4af37;
}

.ser-pricing h2 {
    font-size: 28px;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.ser-pricing-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.ser-pricing-item {
    font-size: 18px;
    padding: 15px 20px;
    background-color: #262626;
    border-left: 5px solid #d4af37;
    width: 100%;
    max-width: 500px;
    text-align: left;
    box-shadow: 0px 3px 10px rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    color: #fff;
}

.ser-highlight {
    font-weight: bold;
    color: #ffcc00;
}

/* Service Section with Circle Icons */
.ser-services {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.ser-service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #1b1b1b;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(212, 175, 55, 0.4);
    width: 90%;
    max-width: 700px;
    border: 2px solid #d4af37;
}

.ser-service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #ffcc00);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #121212;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0px 3px 8px rgba(212, 175, 55, 0.6);
}

.ser-service-content h3 {
    font-size: 22px;
    color: #d4af37;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.ser-service-content p {
    font-size: 16px;
    color: #bdbdbd;
}

/* Hover Effects */
.ser-service-item:hover,
.ser-pricing-item:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
    box-shadow: 0px 6px 20px rgba(212, 175, 55, 0.6);
}


/* === Service Coverage Area === */
.ser-coverage {
    text-align: center;
    padding: 3rem 2rem;
}

.ser-coverage h2 {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

/* City List Container */
.ser-city-list {
    list-style: none;
    padding: 0;
    margin: 2rem auto;
    max-width: 600px;
    background: rgba(255, 223, 79, 0.1); /* Light golden background */
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0px 4px 10px rgba(255, 223, 79, 0.2);
    text-align: center;
}

/* City List Items */
.ser-city-list li {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFD700; /* Golden color */
    padding: 12px;
    border-bottom: 1px solid rgba(255, 223, 79, 0.3);
    transition: all 0.3s ease-in-out;
}

/* Remove Border for Last Item */
.ser-city-list li:last-child {
    border-bottom: none;
}

/* Hover Effect */
.ser-city-list li:hover {
    color: #fff;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 8px;
    transform: scale(1.05);
}

/* === Service Area Section === */
.ser-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 2rem;
    gap: 2rem;
}

.ser-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
}

.ser-content h2 {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.ser-content span {
    color: #f5c518;
}

.ser-list {
    list-style: none;
    padding: 0;
}

.ser-list li {
    font-size: 1.2rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* === Google Map Section === */
.ser-map {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* === Service Inquiry Section === */
.ser-inquiry {
    text-align: center;
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #2b2b2b, #111);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 4rem auto;
}

.ser-inquiry h2 {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.ser-inquiry p {
    font-size: 1.1rem;
    color: #bbb;
    margin-bottom: 2rem;
}

.ser-inquiry form {
    display: flex;
    flex-direction: column;
}

.ser-inquiry input,
.ser-inquiry select,
.ser-inquiry textarea {
    width: 90%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.12);
    color: #f1f1f1;
    outline: none;
    transition: 0.3s;
    appearance: none;
}

.ser-inquiry input:focus,
.ser-inquiry select:focus,
.ser-inquiry textarea:focus {
    background: rgba(255, 255, 255, 0.18);
}

.ser-inquiry select option{
    background: #1a1a1a;
    color: #f1f1f1;
    padding: 10px;
}
.ser-inquiry button {
    width: 94%;
    padding: 14px;
    background: linear-gradient(135deg, #d4af37), #f5c518;
    color: #222;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ser-inquiry button:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #f5c518, #d4af37);
}

/* === Responsive Design === */
@media (max-width: 768px) {
    .ser-header h1 {
        font-size: 2rem;
    }

    .ser-header p {
        font-size: 1rem;
    }

    .ser-area {
        flex-direction: column;
        text-align: center;
    }

    .ser-city-list {
        max-width: 90%;
        padding: 1rem;
    }

    .ser-city-list li {
        font-size: 1rem;
        padding: 10px;
    }

    .ser-content {
        width: 100%;
        text-align: center;
    }

    .ser-map {
        width: 100%;
    }

    .ser-inquiry {
        width: 90%;
        margin: 2rem auto;
    }

    .ser-inquiry h2 {
        font-size: 2rem;
    }

    .ser-inquiry p {
        font-size: 1rem;
    }

    .ser-inquiry input,
    .ser-inquiry select,
    .ser-inquiry textarea {
        font-size: 1rem;
        padding: 12px;
    }

    .ser-inquiry button {
        font-size: 1rem;
    }
}


/* Success Popup */
.newsletter-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #4CAF50;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    z-index: 1001;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Tick Animation */
.newsletter-popup .tick {
    display: block;
    font-size: 30px;
    margin-top: 10px;
    animation: pop 0.5s ease-in-out;
}

/* Error Message */
.newsletter-error {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff4d4d;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    z-index: 1000;
    animation: fadeIn 0.5s ease-in-out;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -55%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Pop effect for tick */
@keyframes pop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}


/* ✅ Popup Message */
.callback-popup-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #4CAF50;
    color: white;
    padding: 20px;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    z-index: 1001;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

/* ❌ Error Popup */
.callback-popup-message.error {
    background: #ff4d4d;
}

/* ✅ Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -55%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Newly Added Products Section */
/* Newly Added Products Section */
.newly-added-section {
    text-align: center;
    padding: 2rem 0;
    background: #111;
    color: #fff;
}

.newly-added-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #f4c842;
}

.newly-added-section p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
}

/* Slider Container */
.newly-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 600px;
    margin: auto;
}

.newly-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.newly-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.newly-slide img {
    width: 50%;
    max-height: 380px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(255, 255, 255, 0.1);
}

.newly-product-details {
    margin-top: 15px;
}

.newly-product-details h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.newly-product-details p {
    font-size: 1rem;
    color: #ccc;
}

.newly-product-details .price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #f4c842;
    margin-top: 8px;
}

.cta {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #f4c842, #d49b1b);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #d49b1b, #f4c842);
}

/* Navigation Buttons */
.newly-prev, .newly-next {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.newly-prev {
    left: -45px;
}

.newly-next {
    right: -45px;
}

.newly-prev:hover, .newly-next:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Animation */
.animate-slide {
    animation: fadeInSlide 0.8s ease-in-out;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .newly-slider-container {
        max-width: 90%;
    }

    .newly-prev, .newly-next {
        font-size: 1.2rem;
        padding: 8px;
        left: 10px;
        right: 10px;
    }

    .newly-slide img {
        width: 90%;
        height: 100%;
        max-height: 350px;
    }
}

/* ---------------- Product Modal Overlay ---------------- */
.product-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* ---------------- Modal Container ---------------- */
.product-modal {
    background: linear-gradient(145deg, #1e1e1e, #2b2b2b);
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    padding: 30px;
    overflow-x: hidden;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.25);
    border: 2px solid #FFD700;
    position: relative;
    animation: modalFadeIn 0.4s ease-out;
    overflow: hidden;
}

/* Modal Entrance Animation */
@keyframes modalFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ---------------- Close Button ---------------- */
.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 32px;
    color: #FFD700;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10;
    line-height: 1;
    background: none;
    border: none;
    padding: 5px;
}

.close-modal:hover {
    transform: rotate(90deg) scale(1.2);
    color: #fff;
}

/* ---------------- Modal Content Layout ---------------- */
.modal-content {
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
    overflow-x: hidden;
}

/* ---------------- Product Image ---------------- */
.modal-image {
    flex: 1 1 300px;
    text-align: center;
}

.modal-image img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* ---------------- Product Info ---------------- */
.modal-info {
    flex: 1 1 400px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal-info h2 {
    font-size: 2.2rem;
    color: #FFD700;
    margin-bottom: 15px;
}

.modal-info p {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.modal-info .price {
    font-size: 1.8rem;
    color: #FF6B35;
    font-weight: bold;
}

.modal-info .old-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 1.2rem;
    margin-left: 10px;
}

/* ---------------- Features List ---------------- */
.modal-info ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.modal-info ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
    color: #ddd;
}

.modal-info ul li::before {
    content: "✔";
    color: #4CAF50;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* ---------------- Buttons ---------------- */
.modal-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.modal-cta,
.modal-close-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
}

.modal-cta {
    background: linear-gradient(135deg, #FF6B35, #FFA500);
    color: white;
    text-decoration: none;
    border: none;
}

.modal-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

.modal-close-btn {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    cursor: pointer;
}

.modal-close-btn:hover {
    background: rgba(255, 215, 0, 0.1);
}

/* ------------ Responsive: Tablet & Mobile ------------ */
@media (max-width: 768px) {
  .product-modal {
      padding: 16px 14px;
      width: 95%;
      max-height: 94vh;
      border-radius: 14px;
      box-shadow: 0 0 16px rgba(255, 215, 0, 0.15);
      background: #111;
      overflow-y: scroll;
      -ms-overflow-style: none;  /* IE and Edge */
      scrollbar-width: none;     /* Firefox */
  }

  .product-modal::-webkit-scrollbar {
      display: none; /* Chrome, Safari and Opera */
  }

  .modal-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
  }

  .modal-image img {
      max-height: 240px;
      width: 100%;
      object-fit: contain;
      border-radius: 10px;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  }

  .modal-info {
      text-align: center;
  }

  .modal-info h2 {
      font-size: 1.5rem;
      color: #FFD700;
      margin: 6px 0;
  }

  .modal-info p {
      font-size: 1rem;
      color: #ccc;
      margin: 4px 0;
  }

  .modal-info .price {
      font-size: 1.35rem;
      font-weight: 600;
      color: #00FFB7;
  }

  .modal-info .old-price {
      font-size: 0.95rem;
      color: #888;
      text-decoration: line-through;
  }

  .modal-info ul {
      margin: 10px 0;
      padding: 0;
  }

  .modal-info ul li {
      list-style: none;
      font-size: 0.95rem;
      color: #eee;
      padding-left: 20px;
      position: relative;
      margin-bottom: 6px;
  }

  .modal-info ul li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: #FFD700;
  }

  .modal-buttons {
      display: flex;
      flex-direction: column;
      gap: 10px;
      width: 100%;
  }

  .modal-cta,
  .modal-close-btn {
      width: 100%;
      padding: 12px 14px;
      font-size: 1rem;
      border-radius: 6px;
  }
}


@media (max-width: 480px) {
  .product-modal {
      padding: 14px 5px;
      width: 93%;
      max-height: 92vh;
      border-radius: 12px;
      overflow-y: scroll;
      -ms-overflow-style: none;
      scrollbar-width: none;
  }

  .product-modal::-webkit-scrollbar {
      display: none;
  }

  .modal-image img {
      max-height: 220px;
      width: 100%;
      border-radius: 8px;
      object-fit: contain;
  }

  .modal-info h2 {
      font-size: 1.3rem;
      margin: 4px 0;
      color: #FFD700;
  }

  .modal-info p {
      font-size: 0.92rem;
      margin: 3px 0;
      color: #ccc;
  }

  .modal-info .price {
      font-size: 1.25rem;
      color: #00FFB7;
  }

  .modal-info .old-price {
      font-size: 0.9rem;
      color: #888;
  }

  .modal-info ul li {
      font-size: 0.88rem;
      padding-left: 18px;
  }

  .modal-buttons {
      gap: 10px;
  }

  .modal-cta,
  .modal-close-btn {
      font-size: 0.95rem;
      padding: 10px;
  }

  .close-modal {
      font-size: 26px;
      top: 6px;
      right: 6px;
  }
}

