
     
    /* CSS for Mechanic Shop Navbar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    position: relative;
    overflow-x: hidden;
    background-color: #121212; /* Dark background for contrast */
}



/* ✅ Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(90deg, #232526, #414345);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    height: 80px;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* ✅ Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 60px;
    height: 60px;
    /* border-radius: 50%; */
    margin-right: 10px;
}

.shop-name {
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    width:180px;
}

/* ✅ Navbar Links */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 8px 12px;
    transition: 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #ffcc00;
    transform: scale(1.1);
}

/* ✅ Book Now Button */
.book-now {
    background: #ffcc00;
    color: black !important;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
    margin-right: 10px; /* Added margin to prevent sticking to language toggle */
    padding: 8px 12px; /* Adjusted padding */
}

.book-now:hover {
    background: #ffa500;
    transform: scale(1.1);
}

/* ✅ Login Button */
.login-link {
    background: #333;
    padding: 8px 12px;
    border-radius: 5px;
    transition: 0.3s;
}

.login-link:hover {
    background: #555;
}

/* ✅ Hamburger Menu */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

/* ✅ Language Dropdown */
.translate-container {
    position: relative;
}

.translate-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    margin-right: 10px; /* Added margin to prevent sticking to language toggle */
    padding: 8px 12px; /* Adjusted padding */
}

.language-dropdown {
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    background: #333;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.language-dropdown button {
    background: transparent;
    color: white;
    border: none;
    padding: 10px 20px;
    width: 100%;
    cursor: pointer;
    transition: 0.3s;
}

.language-dropdown button:hover {
    background: #555;
}

/* ✅ Responsive Styles */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        padding: 20px;
        border-radius: 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        margin-bottom: 10px;
    }

    .language-dropdown {
        position: relative;
        top: 5px;
        width: 100%;
        text-align: center;
    }
}

/* ✅ Dropdown Button */
.dropdown {
    position: relative;
}

.dropbtn {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 8px 12px;
    transition: 0.3s;
    cursor: pointer;
}

.dropbtn:hover {
    color: #ffcc00;
}

/* ✅ Dropdown Content */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 5px;
}

/* ✅ Links inside the dropdown */
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* ✅ Change color on hover */
.dropdown-content a:hover {
    background-color: #ffcc00;
    color: black;
}

/* ✅ Show dropdown when hovered */
.dropdown:hover .dropdown-content {
    display: block;
}

/* ✅ Mobile Fix: Make Dropdown Work in Mobile Menu */
@media screen and (max-width: 768px) {
    .dropdown {
        position: relative;
        width: 100%;
        text-align: center;
    }

    .dropdown-content {
        position: relative;
        width: 100%;
        background: #222;
        display: none;
    }

    .dropdown-content.show {
        display: block;
    }

    .dropdown-content a {
        display: block;
        padding: 10px 15px;
        color: white;
        text-decoration: none;
        font-size: 16px;
    }

    .dropdown-content a:hover {
        background-color: #ffcc00;
        color: black;
    }
}





/* Hero section starts */
/* ✅ HERO SECTION STYLING */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
    padding: 50px;
    overflow: hidden;
    /* background: #121212; Adjust background if needed */
}

/* ✅ Hero Content Styling (Left Side) */
.hero-content {
    flex: 1;
    max-width: 50%;
    animation: slideInLeft 1.2s ease-in-out;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff9800;
    text-transform: uppercase;
    
}

.hero p {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 10px;
}

/* ✅ Stylish Button */
.explore-btn {
    display: inline-block;
    padding: 12px 24px;
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    background: #C0C0C0;
    color: black;
    border-radius: 30px;
    box-shadow: 0px 5px 15px rgba(255, 152, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1.8s ease-in-out;
}

.explore-btn:hover {
    transform: scale(1.1);
    box-shadow: 0px 10px 25px rgba(255, 152, 0, 0.5);
}

/* ✅ Hero Image Styling (Right Side) */
.hero-image-container {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    animation: floatUpDown 3s ease-in-out infinite, fadeInRight 1.2s ease-in-out;
}

/* ✅ Responsive Adjustments for Mobile */
@media screen and (max-width: 768px) {
    .hero {
        flex-direction: column-reverse; /* Moves the image below the text */
        text-align: center;
        padding: 30px;
        height: auto;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        animation: none;
    }

    .hero-image-container {
        max-width: 100%;
        justify-content: center;
        align-items: center;
    }

    .hero-image {
        max-width: 90%;
        height: auto;
        border-radius: 15px;
        margin-top: 70px;
        animation: none;
    }
}

/* ✅ Keyframe Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ✅ Floating Effect for Image */
@keyframes floatUpDown {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Hero section end */

#about {
    /* background-color: #121212;  */
    color: white;
    padding: 80px 10%;
    text-align: left;
}

/* Layout Styling */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px; /* Ensures spacing between text & image */
}

/* Image Section (Left) */
.about-image {
    flex: 1;
    max-width: 45%;
    text-align: left;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

/* Simple Hover Effect */
.about-image img:hover {
    transform: scale(1.05);
}

/* Text Section (Right) */
.about-text {
    flex: 1;
    max-width: 50%;
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .about-text {
        max-width: 100%;
        text-align: center;
    }

    .about-image {
        max-width: 100%;
        text-align: center;
    }

    .about-image img {
        max-width: 300px; /* Reduce size for smaller screens */
    }
}

/* General Styles */
body {
    align-items: center;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* background-color: #f5f5f5; */
}

/* Container */
.container {
    position: relative;
    width: 90vw;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Heading */
.choose {
    color: orange;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
    scroll-margin-top: 100px;
    font-size: 2rem;
}

/* Wrapper to add white edges */
.car-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    background: linear-gradient(to right, white 8%, transparent 20%, transparent 80%, white 92%);
    padding: 20px;
}

/* Car Image */
.car-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
}

/* Hotspots */
.hotspot {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: red;
    border-radius: 50%;
    cursor: pointer;
    animation: hotspotPulse 1.5s infinite ease-in-out;
}

/* Hotspot Animation */
@keyframes hotspotPulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.5); opacity: 1; }
    100% { transform: scale(1); opacity: 0.7; }
}

/* Tooltip Popup */
#raisup {
    position: absolute;
    background: white;
    padding: 8px 12px;
    border: 1px solid black;
    border-radius: 5px;
    display: none;
    font-size: 14px;
    white-space: nowrap;
    max-width: 200px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    transform: translateX(10px);
    z-index: 1000;
}

/* Facilities Section */
.facilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
    align-items: center;
    max-width: 90vw;
    margin: 40px auto 0; /* Added margin-top: 40px */
}

/* Facility Box */
.facility {
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    
}

.facility:hover {
    transform: translateY(-5px);
}

/* Facility Images */
.facility img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .container { width: 95vw; }
    .choose { font-size: 1.8rem; }
    .car-wrapper { padding: 15px; }
    .car-image { max-width: 80%; }
    #raisup { font-size: 12px; max-width: 150px; }
}

@media (max-width: 768px) {
    .choose { font-size: 1.6rem; }
    .facilities { grid-template-columns: repeat(2, 1fr); }
    .facility img { width: 60px; height: 60px; }
    .hotspot { width: 12px; height: 12px; }
    #raisup { font-size: 11px; }
}

@media (max-width: 480px) {
    .choose { font-size: 1.4rem; }
    .facilities { grid-template-columns: repeat(1, 1fr); }
    .facility { max-width: 90%; margin: 0 auto; }
    .facility img { width: 50px; height: 50px; }
    .car-wrapper { padding: 10px; }
    .car-image { max-width: 100%; }
    #raisup { font-size: 10px; max-width: 120px; }
}




/* Service Section Styling */
#services {
    text-align: center;
    padding: 80px 5%;
    /* background: #1a1a1a; Dark background for a raw industrial look */
    color: white;
    position: relative;
    overflow: hidden;
}

/* Title Styling */
#services h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    color: #ff9800; /* Industrial yellow-orange */
}

/* Service Container */
.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Individual Service */
.service {
    position: relative;
    width: 300px; /* Uniform size */
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Service Hover Effects */
.service:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 153, 0, 0.5);
}

/* Service Image */
.service img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

/* Zoom Effect on Hover */
.service:hover img {
    transform: scale(1.2) rotate(2deg);
}

/* Service Caption Styling */
.service-caption {
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    background: transparent;
    color: white;
    padding: 10px;
    font-weight: bold;
    text-align: center;
    transition: left 0.5s ease-in-out;
}

.service:hover .service-caption {
    left: 0;
}

/* Cool Glowing Effect on Text */
.service-caption span {
    position: relative;
}

.service-caption span::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 153, 0, 0.8), rgba(255, 153, 0, 0.2));
    filter: blur(10px);
    z-index: -1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-container {
        flex-direction: column;
        align-items: center;
    }
    .service {
        width: 90%;
        height: auto;
    }
}

/* End of Service Section */




/* PRICING SECTION */
#pricing {
    padding: 60px 20px;
    text-align: center;
    /* background: #1a1a1a; Dark, raw industrial feel */
    position: relative;
    overflow: hidden;
}

.pricing-heading {
    font-size: 2.5rem;
    color: #ff9800; /* Industrial Yellow */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

/* PRICING CONTAINER */
.pricing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* ROW FLEXBOX */
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* PRICE BOX */
.price-box {
    position: relative;
    width: 280px;
    height: 320px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* PRICE BOX HOVER EFFECT */
.price-box:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 153, 0, 0.5);
}

/* IMAGE STYLING */
.price-box img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: transform 0.7s ease, filter 0.5s ease;
}

/* HOVER EFFECT ON IMAGE */
.price-box:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* FIXED PRICE TAG (ALWAYS VISIBLE) */
.price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff9800; /* Bright Industrial Orange */
    color: black;
    font-weight: bold;
    padding: 12px 18px;
    border-radius: 50%;
    font-size: 1.3rem;
    box-shadow: 0px 0px 15px rgba(255, 153, 0, 0.7);
    z-index: 10; /* Keeps it above everything */
    transition: transform 0.3s ease-in-out;
    animation: floatTag 3s infinite ease-in-out alternate;
}

/* ENSURE PRICE TAG STAYS VISIBLE ON HOVER */
.price-box:hover .price-tag {
    opacity: 1; /* Always visible */
    transform: scale(1.1); /* Slight pop effect */
}

/* FLOATING PRICE TAG EFFECT */
@keyframes floatTag {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(8px);
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
        align-items: center;
    }

    .price-box {
        width: 90%;
        height: auto;
    }

    .price-tag {
        font-size: 1rem;
        padding: 8px 14px;
    }
}

/* end of pricing */

/* start of gallery */
#gallery {
    text-align: center;
    /* background: #1a1a1a; */
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Adjust this to match your navbar height */
    margin-top: -80px; /* Negative margin to counteract the padding */
}


/* Gallery Heading */
.gallery-heading {
    font-size: 2.5rem;
    color: #ff9800;
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* Gallery Wrapper - Aligning Image Left & Controls Right */
.gallery-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

/* GALLERY CONTAINER (LEFT SIDE IMAGE) */
.gallery-container {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 1000px;
    height: 300px;
}

.gallery-item {
    position: absolute;
    opacity: 0;
    transform: scale(0.8) rotateY(30deg);
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

.gallery-item.active {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
}

.gallery-item img {
    width: 300px;
    height: 240px;
    border-radius: 10px;
    box-shadow: 0px 5px 20px rgba(255, 153, 0, 0.5);
}

/* CONTROL BUTTONS (RIGHT SIDE) */
.remote-controls {
    width: 40%;
    display: grid;
    grid-template-columns: 50px 50px 50px;
    grid-template-rows: 50px 50px 50px;
    gap: 10px;
    justify-content: center;
}

.arrow, .ok-btn {
    width: 50px;
    height: 50px;
    background: #ff9800;
    color: black;
    font-size: 1.3rem;
    font-weight: bold;
    border: none;
    border-radius: 50%;
    box-shadow: 0px 3px 10px rgba(255, 153, 0, 0.5);
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.arrow:hover, .ok-btn:hover {
    transform: scale(1.1);
    background: #ffa726;
}

/* POSITIONING BUTTONS IN CIRCLE */
.up {
    grid-column: 2;
    grid-row: 1;
}
.left {
    grid-column: 1;
    grid-row: 2;
}
.ok-btn {
    grid-column: 2;
    grid-row: 2;
    background: #ffeb3b;
}
.right {
    grid-column: 3;
    grid-row: 2;
}
.down {
    grid-column: 2;
    grid-row: 3;
}

/* POPUP IMAGE MODAL */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 100px;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

/* POPUP IMAGE MODAL */
.popup-content {
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 10px 30px rgba(255, 153, 0, 0.5);
    text-align: center;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Fixed image size issue */
.popup-content img {
    width: auto;
    max-width: 90%;
    max-height: 80vh; /* Ensures the image doesn't become too tall */
    border-radius: 10px;
    object-fit: contain; /* Ensures the image fits without distortion */
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: black;
}

.close-btn:hover {
    color: red;
}

/* RESPONSIVENESS */
@media screen and (max-width: 768px) {
    .gallery-wrapper {
        flex-direction: column;
    }

    .gallery-container {
        width: 100%;
    }

    .remote-controls {
        width: 100%;
        margin-top: 20px;
    }
}

/* end of gallery */

/* Overall section styling */
/* Payment Section - Mechanic Shop Theme */
.payment-section {
    color: #fff;
    padding: 40px 15px;
    text-align: center;
    padding-top: 80px; /* Adjust this to match your navbar height */
    margin-top: -80px; /* Negative margin to counteract the padding */
    
}

/* Payment Title */
.payment-title {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #ff9800; /* Mechanic-style orange */
    margin-bottom: 20px;
    padding-top: 80px; /* Adjust this to match your navbar height */
    margin-top: -80px; /* Negative margin to counteract the padding */
}

/* Payment Container */
.payment-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 900px;
    margin: auto;
}

/* Common Styling for Both Sections */
.qr-code-section, .payment-info {
    background: #252525;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #ff9800;
    text-align: center;
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 280px;
}

/* QR Code Styling */
.qr-code {
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* QR Code Text */
.qr-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 10px;
    text-align: center;
    max-width: 90%;
}

/* Payment Info Section */
.payment-info p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: center;
    max-width: 90%;
}

/* List Marker Fix */
.payment-info ul {
    padding-left: 15px;
    text-align: center;
    margin-left: 20px; /* Manually adjust margin */
    list-style-position: outside; /* Ensures bullets stay properly aligned */
}

.payment-info ul li {
    margin-bottom: 8px;
}

/* Payment Methods Section */
.payment-methods {
    margin-top: 10px;
}

/* Payment Icons */
.method-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.icon {
    width: 40px;
    height: 40px;
}

/* Fully Responsive Fix for Smallest Screens */
@media (max-width: 480px) {
    .payment-container {
        flex-direction: column;
        align-items: center;
    }

    .qr-code-section, .payment-info {
        width: 95%;
        min-height: auto;
        padding: 15px;
    }

    .payment-title {
        font-size: 1.8rem;
    }

    .qr-code {
        width: 150px;
        height: 150px;
    }

    .qr-text, .payment-info p {
        font-size: 0.95rem;
        text-align: center;
    }

    .payment-info ul {
        padding-left: 0;
        text-align: center;
    }

    .icon {
        width: 35px;
        height: 35px;
    }
}

/* Fix for 320×498 Screens */
@media (max-width: 320px) {
    .payment-title {
        font-size: 1.5rem;
    }

    .qr-code-section, .payment-info {
        width: 100%;
        padding: 10px;
    }

    .qr-code {
        width: 140px;
        height: 140px;
    }

    .qr-text, .payment-info p {
        font-size: 0.9rem;
    }

    .icon {
        width: 30px;
        height: 30px;
    }
}





/* General Contact Section Styling */
.contact-section {
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px; /* Increased space at the top */
    margin-top: 50px; /* Added margin to prevent overlap */
}

/* Animated Gear Background */
.contact-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('https://cdn.pixabay.com/photo/2017/03/12/13/41/gears-2139006_1280.png');
    background-size: 200px;
    opacity: 0.1;
    animation: gearRotate 30s linear infinite;
}

/* Contact Title */
.contact-title {
    color: orange;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 3px 3px 8px rgba(255, 0, 0, 0.7);
}

/* Flickering Effect */
@keyframes flicker {
    0% { opacity: 1; text-shadow: 3px 3px 8px rgba(255, 0, 0, 0.7); }
    50% { opacity: 0.7; text-shadow: 2px 2px 6px rgba(255, 255, 0, 0.8); }
    100% { opacity: 1; text-shadow: 3px 3px 8px rgba(255, 0, 0, 0.7); }
}

/* Container to Align Contact Info and Image Side by Side */
.contact-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px; /* Increased space between contact info and image */
    max-width: 1000px;
    margin: auto;
    flex-wrap: wrap;
}

/* Contact Info Styling */
.contact-info {
    background: rgba(50, 50, 50, 0.9);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    text-align: left;
    max-width: 450px;
    flex: 1;
}

/* Improved Text Readability */
.contact-info p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 6px rgba(0, 255, 255, 0.8);
    animation: textGlow 2s infinite alternate;
    line-height: 1.8; /* Added line height for better readability */
    margin-bottom: 15px; /* Added spacing between paragraphs */
}

/* Glowing Effect */
@keyframes textGlow {
    from { text-shadow: 1px 1px 6px rgba(0, 255, 255, 0.8); }
    to { text-shadow: 2px 2px 10px rgba(0, 255, 255, 1); }
}

/* Contact Image Section */
.contact-image {
    flex: 1;
    text-align: center;
}

.contact-image img {
    max-width: 450px; /* Increased image size */
    height: auto;
    width: 80%;
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* Centered "Connect With Us" Button */
.connect-btn-container {
    margin-top: 30px;
    text-align: center;
}

.connect-btn {
    display: inline-block;
    background: linear-gradient(45deg, orange, red);
    color: white;
    padding: 12px 24px;
    font-size: 1.3rem;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.connect-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        max-width: 100%;
        padding: 20px;
    }

    .contact-info p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    /* .contact-image {
        margin-top: 20px;
    } */

    .contact-image img {
       height: 100%;
       width: 100%;
    }
}




/* Connect Button */
.connect-btn-container {
    margin-top: 20px;
}

.connect-btn {
    display: inline-block;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    background: #C0C0C0;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

/* Button Hover Effect */
.connect-btn:hover {
    transform: scale(1.1);
    /* box-shadow: 0 0 25px rgba(255, 255, 0, 1); */
}

/* Button Spark Animation */
.connect-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    /* background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent); */
    transition: all 0.5s ease-in-out;
    transform: translate(-50%, -50%) scale(0);
}

.connect-btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

/* Lightning Flash Effect */
@keyframes flash {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

.contact-section::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('https://static.vecteezy.com/system/resources/previews/001/205/364/non_2x/metallic-texture-brushed-steel-background-free-vector.jpg');
    background-size: cover;
    opacity: 0.05;
    animation: flash 5s infinite alternate;
}

/* footer starts */
.footer {
    background: linear-gradient(45deg, #1a1a1a, #333333);
    color: #ffffff;
    text-align: center;
    padding: 20px 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0px -5px 15px rgba(255, 153, 0, 0.5);
}

/* Glowing Neon Text */
.footer-copyright p, .product-by-visys {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    text-shadow: 0 0 10px #ff9500, 0 0 20px #ff9500, 0 0 30px #ff9500;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-icon img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 50%;
}

/* Pulsating Hover Effect */
.social-icon img:hover {
    transform: scale(1.3);
    box-shadow: 0 0 15px #ff6600;
}

/* Background Animation */
@keyframes bgAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 102, 0, 0.5);
    border-radius: 50%;
    filter: blur(80px);
    animation: bgAnimation 6s infinite alternate linear;
}

/* Gear Animation */
@keyframes rotateGear {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: url('https://upload.wikimedia.org/wikipedia/commons/9/90/Gear_icon.svg') no-repeat center/cover;
    opacity: 0.5;
    animation: rotateGear 4s linear infinite;
}

/* footer ends */

/* whatsapp icon start */

.whatsapp-btn {
    position: fixed;
    bottom: 12px;
    right: 9px;
    width: 50px;
    height: 50px;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, background 0.3s;
    text-decoration: none;
    z-index: 9999;
  }
  
  /* Hover effect */
  .whatsapp-btn:hover {
    background-color: #1ebe5d;
    transform: scale(1.1);
  }
  
  /* WhatsApp icon */
  .whatsapp-btn img {
    width: 35px;
    height: 35px;
  }
  
  /* whatsapp icon end  */

  /* Custom Translate Button */
  .translate-container {
    position: relative;
  }
  
  .translate-btn {
    background: #fff;
    color: black;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
  }
  
  .translate-btn:hover {
    background: #939292;
  }
  
  /* Language Dropdown */
  .language-dropdown {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    background: white;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    width: 120px;
    z-index: 100;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  /* @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  } */
  
  .language-dropdown button {
    background: none;
    border: none;
    color: #333;
    padding: 10px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
  }
  
  .language-dropdown button:hover {
    background: #fff;
    color: red;
  }
  
  
  /* Hide Google Translate Branding Completely */
  .goog-te-banner-frame, .goog-logo-link, .goog-te-gadget span, .goog-te-balloon-frame, 
  #google_translate_element select, .goog-te-gadget {
    display: none !important;
  }
  
  
  
  /* Hide the Google Translate banner */
  .goog-te-banner-frame {
    display: none !important;
  }
  
  /* Hide the Google Translate branding and unnecessary elements */
  .goog-logo-link,
  .goog-te-gadget span,
  .goog-te-balloon-frame,
  #google_translate_element select,
  .goog-te-gadget {
    display: none !important;
  }
  
  /* Ensure body does not shift down due to hidden banner */
  body {
    top: 0px !important;
  }
  /* Hide Google Translate banner */
  .skiptranslate, .goog-te-banner-frame {
    display: none !important;
  }
  
  .form-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
  }
  
  .form-container h2 {
    text-align: center;
    color: #333;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: #f9f9f9;
  }
  
  .form-group button {
    width: 100%;
    padding: 12px;
    background-color: #333333;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
  }
  
  /* .form-group button:hover {
    background-color: #a10d0d8f;
  }
  
  .form-group button:active {
    background-color: #a10d0d;
  } */
  
  /* Thank You Message */
  .thank-you-message {
    display: none;
    text-align: center;
    font-size: 18px;
    color: #4CAF50;
    padding: 20px;
  }
  
  /* Popup styles */
  
  #contactpopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    position: relative;
  }
  
  /* Close button (cross mark) */
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    background: none;
    border: none;
  }
  
  .close-btn:hover {
    color: red;
  }
  
  /* Button to select date */
  
  #datePickerButton {
    background-color:#a10d0d;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
  }
  
  #datePickerButton:hover {
    background-color: #a10d0da5;
  }
  
  /* Text input for hidden date selection */
  #popup input[type="text"]{
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    display: none;
  }
  
  /* Text input for email address */
  input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
  }
  
  /* Textarea */
  textarea {
    width: 100%;
    padding: 12px;
    margin: 15px 0;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    resize: vertical;
    min-height: 120px;
  }
  
  /* Submit button */
  button[type="submit"] {
    background-color: #333333;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s ease;
  }
  
  /* button[type="submit"]:hover {
    background-color: orange;
  } */
  
  #popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

/* General video container */

#videos {

padding: 2rem 0;

}

.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

#videos h2 {
  font-size: 32px;
  font-weight: bold;
  color: orange;
  margin-bottom: 20px;
  display: block; /* Ensures it behaves as a block element */
  width: 100%; /* Makes sure it takes full width */
  text-align: center; /* Explicit centering */
  position: relative;
  padding-bottom: 10px;
}

/* Styling for each video item */
.video-item video {
    width: 80%; /* Make videos responsive */
    /* max-width: 320px; Limit width */
    height: auto;
    position: relative;
    border-radius: 8px;
}

/* Row for 2 or more videos */
.video-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Specific layouts for different video counts */
.video-item {
  position: relative; /* This makes the button position absolute within */
  display: inline-block;
}

.video-item video {
  width: 100%; 
  max-width: 320px; 
  height: auto;
  border-radius: 8px;
  display: block; /* Ensures no extra space below the video */
}

.video-item {
  position: relative; /* This makes the button position absolute within */
  display: inline-block;
}

.video-item video {
  width: 100%; 
  max-width: 320px; 
  height: auto;
  border-radius: 8px;
  display: block; /* Ensures no extra space below the video */
}

/* .video-item .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 5px 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
} */

/* .video-item .play-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
} */

 
/* Responsive handling */
@media (max-width: 768px) {
    .video-item video {
        max-width: 100%;
    }
    .video-container {
        flex-direction: column;
        align-items: center;
    }
}



/* ---pop up----- */
 #popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  overflow-y: auto; /* Allow scrolling inside popup */
  z-index: 9999; /* Ensure it appears above everything */
}

/* Popup box (Centered properly) */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  width: 90%;
  max-width: 800px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  max-height: 80vh; /* Restrict height */
  overflow-y: auto; /* Enable scrolling inside popup */
  z-index: 10001; /* Ensure it appears above navbar */
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: red;
  color: white;
  border: none;
  font-size: 16px;
  font-weight: bold;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
}

.close-btn:hover {
  background: darkred;
}

/* Prevent background scrolling when popup is open */
body.no-scroll {
  overflow: hidden;
}

/* Fix Navbar Overlapping */
.navbar {
  position: relative;
  z-index: 100; /* Ensure navbar does not cover popup */
}


/* Product grid layout */
.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Dynamic grid */
  gap: 15px;
  padding: 10px;
}

.product-items {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.product-items img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 5px;
}

.discounted-price {
  color: #d9534f;
  font-weight: bold;
}

.original-price {
  text-decoration: line-through;
  color: #777;
}

/* Buttons inside the popup */
.popup button {
  display: block;
  margin: 10px auto;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.popup button:hover {
  opacity: 0.8;
}

.cart-item button {
  background-color: #dc3545;
  color: white;
}

.popup button {
  display: block;
  margin: 10px auto;
  padding: 10px 20px;
}

.popup button:first-of-type {
  background-color: #007bff;
  color: white;
}
.view-cart-btn {
  position: absolute;
  top: 10px;
  right: 80px;
  background-color: #28a745;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
}

.view-cart-btn:hover {
  background-color: #218838;
}
.cart-popup {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #28a745;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  display: none;
  z-index: 9999;
}


    