* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}
body{
    background: #c02323;
    min-height: 100vh;
}
/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    gap: 2rem;
    background: transparent;
    box-shadow: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Logo and Brand Group */
.logo {
    width: 60px;  /* Adjusted size for better clarity */
    height: 60px;
    border-radius: 50%; /* Makes it a circle */
    overflow: hidden; /* Crops extra parts */
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 100%; /* Ensures full coverage */
    height: 100%;
    object-fit: cover; /* Prevents stretching and maintains quality */
}

/* Media Query for Smaller Screens */
@media (max-width: 768px) { 
    .logo {
        width: 45px; /* Decrease size on smaller screens */
        height: 45px;
    }
}

@media (max-width: 480px) { 
    .logo {
        width: 35px; /* Further reduce size on very small screens */
        height: 35px;
    }
}




/* Nav Links */
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin-left: auto;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-links a:hover {
    background: rgb(255, 165, 0);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}


.hamburger {
    display: none; /* Initially hidden on large screens */
    position: absolute;
    right: 20px; /* Keep inside screen */
    top: 15px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 1001;
}
/* Social Media Icons - Moved to the Right */
.social-icons {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-icons i {
    font-size: 1.5rem;
    color: white; /* White text */
    background: #FFA500; /* Orange Background */
    padding: 10px;
    border-radius: 50%;
    transition: background 0.3s ease, color 0.3s ease;
}

.social-icons i:hover {
    background: #FF8C00; /* Darker Orange on hover */
    color: white;
}

.hero {
    height: 100vh;
    background: url('/assets/landingPage.png') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    padding: 1rem;
    font-family: "Arial", sans-serif; /* Default font */
}


/* Position p at the bottom */
.hero p {
    font-size: 1.4rem;
    max-width: 800px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 10px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    position: absolute;
    bottom: 30px; /* Moves p to the bottom */
    left: 50%;
    transform: translateX(-50%);
    width: 90%; /* Ensures responsiveness */
    text-align: center;
}

.factory {
    background-image: url('./assets/stockMap3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 20px;
    display: flex;
    align-items: center;

    /* Card Styles */
    max-width: 1400px;
    max-height: 60%;
    margin: 30px auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px) saturate(120%);
    background-color: rgba(20, 20, 20, 0.85); /* Darkened background */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Content Section */
.content {
    text-align: center;
    padding: 30px 15px;
    margin-top: 70px;
    width: 100%;
}

.content h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Stats Grid */
.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px 20px;
    width: 100%;
    margin: 0 auto;
}

.stat-box {
    background: rgba(30, 30, 30, 0.7); /* Darkened card */
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.stat-box i {
    font-size: 1.8rem;
    color: #4A90E2;
    padding: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.stat-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px; /* Adjusted spacing */
}

.stat-box h3 {
    font-size: 1.3rem;
    margin: 0;
    color: white;
}

.stat-box p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
    line-height: 1.5;
    
    /* Ensuring proper alignment */
    text-indent: 0;
    padding-left: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .factory {
        max-width: 95%;
        margin: 20px auto;
        padding: 30px 15px;
    }

    .content {
        padding: 20px 10px;
        margin-top: 60px;
    }

    .content h2 {
        font-size: 1.8rem;
    }

    .content p {
        font-size: 1rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 15px;
    }
}

@media (max-width: 576px) {
    .content {
        margin-top: 50px;
        padding: 15px 10px;
    }

    .content h2 {
        font-size: 1.6rem;
    }

    .stat-box {
        padding: 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .stat-box i {
        margin-bottom: 10px;
    }

    .stat-box h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .stat-box p {
        border-left: none;
        padding-left: 0;
    }
}


/* Footer Styles */
.custom-footer {
    background: #1E3A5F; /* Deep Blue */
    padding: 40px 0;
    width: 100%;
    color: white;
}

/* Footer Container */
.footer-container {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

/* Footer Brand Name */
.footer-center .footer-brand-name {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: hsl(120, 14%, 99%); /* Gold */
}

.footer-center .footer-brand-name img {
    height: 40px;
    max-width: 100px;
    width: auto;
    margin-right: 10px;
}

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

.footer-icons a {
    color: hsl(45, 12%, 94%); /* Orange */
    font-size: 1.8rem;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 8px;
}

.footer-icons a:hover {
    color: #FF8C00; /* Darker Orange */
}

/* Contact Us Button */
.contact-btn {
    background: #D81B60; /* Rose Red */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background: #E63946; /* Slightly Brighter Red */
}
    
/* General Styles */
.map-section {
    background: url('/assets/newadi12.jpg') no-repeat center center/cover;
    padding: 50px 20px;
    color: #fff;
}

.map-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.map-left-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.map-left-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.map-left-content p {
    font-size: 16px;
    line-height: 1.5;
}

.map-right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    min-width: 300px;
}

.map-container iframe {
    width: 100%;
    max-width: 350px;
    height: 300px;
    border-radius: 10px;
    border: 2px solid #fff;
}

@media (max-width: 768px) {
    .map-content {
        flex-direction: column;
        gap: 30px;
    }

    .map-left-content,
    .map-right-content {
        min-width: 100%;
        width: 100%;
    }

    .map-left-content {
        margin-bottom: 20px;
    }

    .map-container iframe {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .map-section {
        padding: 30px 10px;
    }

    .map-left-content {
        padding: 15px;
    }

    .map-left-content h2 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .map-left-content p {
        font-size: 14px;
    }

    .map-container iframe {
        height: 250px;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        background: url('/assets/mobileLanding.png') no-repeat center center/cover;
        background-size: cover; /* Ensures it covers the entire section */
        min-height: 100vh;
        font-size: 1.8rem;
        padding: 2rem 1.5rem;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
       
    
    .hero h2 {
        font-size: 2rem;
        text-align: justify;
        width: 90%;
        margin: auto;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.5;
        max-width: 90%;
        background: rgba(0, 0, 0, 0.5);
        padding: 10px;
        border-radius: 10px;
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }
    .factory {
        display: block;
        padding: 60px 15px;
        min-height: auto;
        width: 100%;
      }
    
      .content {
        margin-top: 60px;
        margin-bottom: 40px; /* Ensure spacing before footer */
        text-align: center;
      }
    
      .content h2 {
        font-size: 36px;
      }
    
      .content p {
        font-size: 18px;
      }
    
      .stats-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 15px;
        width: 100%;
        position: relative;
      }
    
      .stat-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 15px;
        width: 100%;
      }
    
      .stat-box h3 {
        min-width: auto;
        padding: 5px 8px;
      }
    
      /* Prevents extra white space */
      .footer {
        position: relative;
        width: 100%;
        bottom: 0;
        clear: both; /* Prevents float issues */
        margin-top: 20px; /* Adds spacing between content and footer */
      }
    
      /* Remove unnecessary height from empty sections */
      .empty-space {
        display: none;
        height: 0;
      }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-btn {
        margin-top: 15px;
    }

    .navbar {
        padding: 10px 15px;
        flex-direction: column;
        align-items: center;
        background: rgba(30, 58, 95, 0.8);
    }

    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        width: 60%;
        background: rgba(30, 58, 95, 0.9);
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 15px 0;
        border-radius: 0 0 10px 10px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        animation: slideIn 0.3s ease-in-out;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 12px 20px;
        display: block;
        text-align: left;
        color: #1e3a5f;
        font-weight: 500;
        transition: background 0.3s ease, color 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(255, 145, 77, 0.15);
        color: #FF914D;
        border-left: 4px solid #FF914D;
        padding-left: 16px;
    }

    /* Slide-in Animation */
    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hamburger {
        display: block;
    }

    .social-icons {
        display: none;
    }

    .logo-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 10px;
    }

    .navbar .logo img {
        height: 50px;
        max-width: 120px;
    }

    .brand-name {
        font-size: 1.5rem;
        margin-top: 5px;
    }

    

/* Media Query for Smaller Mobile Devices (Portrait Orientation) */
@media (max-width: 480px) {
    
    .nav-links {
        width: 100%;
        height: 100vh;
        top: 0;
        right: 0;
        border-radius: 0;
        box-shadow: none;
        background: rgba(30, 58, 95, 0.95);
        padding-top: 80px;
        align-items: center;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 15px;
        color: white;
        width: 100%;
        display: block;
    }

    .nav-links a:hover {
        background: rgba(255, 145, 77, 0.3);
        color: #FF914D;
    }

    .hamburger {
        font-size: 1.5rem;
        right: 1rem;
    }
}

/* Smooth fade-in animation for the mobile menu */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
}
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Gallery Section with Background Image */
.gallery-section {
    padding: 60px 40px;
    background:  url('/assets/newadi6.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.gallery-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: #00ff88;
}

/* Grid Container */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Image Card */
.image-card {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3);
}

.thumbnail {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: grayscale(30%);
}

.thumbnail:hover {
    transform: scale(1.1);
    filter: grayscale(0);
}

/* Image Name */
.image-name {
    margin: 15px 0;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: modalFade 0.3s ease-out;
}

@keyframes modalFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.full-image {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.2);
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
    color: #00ff88;
}

/* Hover Overlay Effect */
.image-card::before {
    content: 'VIEW →';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.5rem;
    opacity: 0;
    z-index: 2;
    transition: opacity 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.image-card:hover::before {
    opacity: 1;
}

/* Media Queries */
@media screen and (max-width: 1200px) {
    .grid-container {
        gap: 20px;
    }
    
    .thumbnail {
        height: 200px;
    }
}

@media screen and (max-width: 768px) {
    .gallery-section {
        padding: 40px 20px;
    }
    
    .gallery-section h2 {
        font-size: 2rem;
    }
    
    .thumbnail {
        height: 180px;
    }
}

@media screen and (max-width: 480px) {
    .full-image {
        max-width: 95%;
    }
    
    .close-btn {
        top: 15px;
        right: 15px;
        font-size: 2rem;
    }
}
/* Global Box Sizing */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Categories Section */
.categories-section {
    background-image: url('./assets/newadi8.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px;
    display: block;
    position: relative;
    max-width: 1400px;
    margin: 30px auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px) saturate(120%);
    background-color: rgba(20, 20, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #FFD700;
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* Swiper Container */
.categories-section .swiper-container {
    width: calc(100% - 40px);
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 0;
}

/* Card Design */
.swiper-slide {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 420px;
    display: flex !important;
    flex-direction: column;
    margin: 0 10px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.6);
}

.swiper-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

/* Image Container */
.image-container {
    height: 260px;
    position: relative;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.swiper-slide:hover .image-container img {
    transform: scale(1.08);
}

/* Content Container */
.content-container {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(45deg, rgba(255,255,255,0.9), rgba(255,255,255,1));
}

/* Category Title */
.category-title {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}

/* Description Text */
.category-description {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    font-weight: 400;
}

/* CTA Button */
.category-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white !important;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    align-self: flex-start;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.category-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

/* Navigation Arrows */
.categories-section .swiper-button-prev,
.categories-section .swiper-button-next {
    display: none !important;
    background: rgba(255,255,255,0.98);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
}

.categories-section .swiper-button-prev::after,
.categories-section .swiper-button-next::after {
    font-size: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

/* Pagination */
.swiper-pagination-bullet {
    background: rgba(255,255,255,0.8) !important;
    opacity: 1 !important;
    width: 10px !important;
    height: 10px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #2563eb !important;
    transform: scale(1.4);
}

/* Responsive Design */
@media (min-width: 992px) {
    .categories-section .swiper-button-prev,
    .categories-section .swiper-button-next {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 1400px) {
    .categories-section {
        margin: 30px 20px;
    }
}

@media (max-width: 1200px) {
    .swiper-slide {
        min-height: 380px;
    }
    .image-container {
        height: 220px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.8rem;
    }
    .swiper-slide {
        min-height: 350px;
    }
    .category-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .categories-section {
        margin: 30px 15px;
        padding: 40px 15px;
    }
    .swiper-slide {
        min-height: 320px;
        border-radius: 20px;
        margin: 0 5px;
    }
    .image-container {
        height: 180px;
    }
    .categories-section .swiper-container {
        width: calc(100% - 30px);
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    .section-description {
        font-size: 1rem;
    }
    .category-title {
        font-size: 1.3rem;
    }
    .swiper-slide {
        min-height: 300px;
    }
    .image-container {
        height: 160px;
    }
    .categories-section {
        margin: 30px 10px;
        padding: 40px 10px;
    }
    .categories-section .swiper-container {
        width: calc(100% - 20px);
    }
    .category-cta {
        width: 100%;
        justify-content: center;
    }
}
/* Modal Styles */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 8px;
    width: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: fadeIn 0.5s;
}

/* Close Button */
.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #000;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Labels Styling */
label {
    font-size: 16px;
    font-weight: 600;
    color: #333;  /* Darker text for visibility */
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

/* Button Styling */
button {
    background-color: #FF8C00;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #e07b00;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 🌐 Media Queries for Responsiveness */

/* Tablets and smaller desktops */
@media screen and (max-width: 1024px) {
    .modal-content {
        width: 70%;
        padding: 25px;
    }
}

/* Large mobile devices */
@media screen and (max-width: 768px) {
    .modal-content {
        width: 85%;
        padding: 20px;
    }

    button {
        padding: 8px 16px;
    }
}

/* Small mobile devices */
@media screen and (max-width: 480px) {
    .modal-content {
        width: 95%;
        padding: 15px;
    }

    input, textarea {
        padding: 8px;
    }

    button {
        padding: 8px 14px;
    }
}

