/* .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
} */

/* h1,
h2,
h3,
p {
    margin: 0;
} */

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}


.section-heading {
    text-align: center;
    /* Centers the heading horizontally */
    font-size: 2rem;
    /* Adjust the size as needed */
    font-weight: 600;
    /* Make it bold */
    margin: 20px 0;
    /* Add spacing around the heading */
    color: #333;
    /* Set your preferred color */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: #2c3e50;
    color: white;
    position: relative;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 0.3rem;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Navigation links (desktop) */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;



    /* Increased gap between nav links */
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1abc9c;
}

.nav-links.show {
    display: flex;
    /* Show when toggled */
}

/* Mobile view styles */
@media screen and (max-width: 768px) {


    .hamburger {
        display: flex;
    }

    .nav-links {

        display: none;
        /* Hide by default */
        flex-direction: column;
        /* Stack links vertically */
        background-color: #2c3e50;
        /* Optional: Add a background */
        position: absolute;
        /* Place it over content */
        top: 60px;
        /* Adjust based on navbar height */
        right: 0;
        /* Align with the edge of the screen */
        left: 0;
        /* Make it span the width */
        border-radius: 5px;
        /* Optional: Add rounded corners */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        /* Optional: Add shadow */
        text-align: center;
        /* Center the text */
        padding: 20px 0;
        /* Add space around the links */
        z-index: 1000;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
        transform: translateY(-20px);


        /* Slide up by default */

    }


    .nav-links.show {
        max-height: 300px;
        /* Adjust based on number of links */
    }

    .navbar-container {
        justify-content: space-between;
    }

    .product-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        /* Adjust spacing between cards */
    }

    .card {
        width: 90%;
        /* Full width with some padding */
    }
}

/* General Section Styling */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

/* Slider Container */
.hero-slider {
    display: flex;
    /* Horizontal alignment of images */
    flex-wrap: nowrap;
    /* No wrapping, images stay in one row */
    transition: transform 0.5s ease-in-out;
    /* Smooth transition for sliding */
    gap: 0;
    /* No gaps between images */
}

/* Individual Slider Images */
.slider-image {
    flex-shrink: 0;
    /* Prevent images from shrinking */
    width: 100%;
    /* Full width of the viewport */
    height: auto;
    /* Maintain aspect ratio */
    max-height: 700px;
    /* Limit image height */
    object-fit: cover;
    /* Ensure images fill their container */
}

/* Welcome Text Overlay */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    font-family: Arial, sans-serif;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin: 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.2rem;
    margin-top: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Adjust for Smaller Screens */
@media screen and (max-width: 768px) {
    .slider-image {
        max-height: 250px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .slider-image {
        max-height: 200px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }
}

/* Optional Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.nav-arrow.left {
    left: 10px;
}

.nav-arrow.right {
    right: 10px;
}


/* Product Cards Layout */
.product-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 20px auto;
}

.card {
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.card img {
    max-width: 100%;
    border-radius: 8px;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
}

.card h3 {
    margin: 10px 0;
    font-size: 1.2rem;
}

.card p {
    font-size: 0.9rem;
    color: #555;
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 10px;
    background-color: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #1da851;
}

/* Modal for Enlarged Image */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 13px 0;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}


 /* .modal {
     display: none;
     position: fixed;
     z-index: 1000;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.8);
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .modal img {
     max-width: 90%;
     max-height: 80%;
     border-radius: 10px;
 }

 .modal .close {
     position: absolute;
     top: 20px;
     right: 30px;
     font-size: 40px;
     color: white;
     cursor: pointer;
 } */

 #pumpMore {
     display: inline-block;
     font-size: 16px;
     font-weight: 600;
     color: #2c3e50;
     /* Dark blue color */
     text-decoration: none;
     /* Removes underline */
     margin-top: 10px;
     transition: color 0.3s ease-in-out;
 }

 #pumpMore:hover {
     color: #3498db;
     /* Changes to a lighter blue on hover */
     text-decoration: underline;
     /* Underlines on hover */
 }