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

/* Navigation Bar */
.horizontal-nav {
    background: #222;
    padding: 10px 0;
    text-align: center;
}

.horizontal-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.horizontal-nav ul li {
    display: inline;
    margin: 0 15px;
}

.horizontal-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

/* Hero Section */
.hero-section {
    background: url('../images/hero_banner.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-section h1 {
    font-size: 50px;
    margin: 0;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.hero-section p {
    font-size: 20px;
    margin-top: 10px;
}

.hero-button {
    margin-top: 20px;
    padding: 12px 20px;
    background: #ff416c;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.3s;
}

.hero-button:hover {
    background: #e03e5d;
}

/* Products Section */
.products {
    padding: 40px 20px;
    text-align: center;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.product {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 4px 4px 15px rgba(0,0,0,0.3);
}

.product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #1ebe57;
}

/* Footer */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
}
#about {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

#about h1 {
    font-size: 48px;
    text-align: center;
    color: #ff416c;
    margin-bottom: 20px;
}

#about h2 {
    font-size: 36px;
    color: #222;
    margin-top: 40px;
}

#about h3 {
    font-size: 28px;
    color: #444;
    margin-top: 30px;
}

#about p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

#about ul {
    list-style-type: none;
    padding-left: 0;
}

#about ul li {
    font-size: 18px;
    padding: 5px 0;
    position: relative;
}

#about ul li::before {
    content: "✔";
    color: #ff416c;
    font-weight: bold;
    margin-right: 10px;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
}
/* Product Box */
.product-box {
    width: 250px;
    text-align: center;
    padding: 15px;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    position: relative;
}

.product-box:hover {
    transform: scale(1.05);
}

/* View Image Button */
.view-btn {
    background: #ff416c;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

/* Lightbox Popup */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    max-width: 80%;
    max-height: 80%;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Prev & Next Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}
/* Preloader Full-Screen Overlay */
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, BLACK 1px, transparent 1px);
    background-color: #ddd;
    background-size: 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 9999;
    transition: opacity 1s ease-in-out;
}

/* Text & Tagline Box */
.loader-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Main Heading */
.loader-content h1 {
    font-size: 30px;
    color: #ff416c;
    margin-bottom: 10px;
}

/* Tagline */
.loader-content .tagline {
    font-size: 18px;
    color: #333;
    font-weight: bold;
}
/* ✅ Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    background-color: #f9f9f9;
}

/* ✅ Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #ffffff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    text-decoration: none;
    font-size: 18px;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: #ff416c;
}

/* ✅ Hero Section - Fixed Full Size */
.hero-section {
    position: relative;
    width: 100%;
    height: 85vh; /* Reduced height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-image: url('../images/hero_banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin-bottom: 0px; /* Removed extra space */
}

/* ✅ Mobile Fix */
@media (max-width: 768px) {
    .hero-section {
        height: 75vh; /* Adjusted for mobile */
        background-size: contain;
    }
}

.hero-content {
    position: absolute;
    bottom: 2%; /* Lowered padding */
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    width: 90%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.hero-content h2 {
    font-size: 30px;
    font-weight: bold;
}

.hero-content p {
    font-size: 16px;
    font-weight: bold;
}

/* ✅ 3 Brands Section - Moved Up */
.brands {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Adjusted space */
    padding: 20px 0; /* Reduced padding */
    flex-wrap: wrap;
    margin-top: -20px; /* Moved up */
}

.brand-box {
    text-align: center;
    width: 250px;
}

.brand-box img {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 50%;
}

.brand-button {
    display: block;
    margin-top: 10px;
    padding: 12px;
    background: #ff416c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
}

.brand-button:hover {
    background: #e03e5d;
}

/* ✅ Footer */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.footer-links a {
    color: #ff416c;
    text-decoration: none;
    font-size: 16px;
    margin: 0 10px;
}

.footer-links a:hover {
    color: white;
}

/* ✅ Responsive Fix */
@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
        display: none;
    }

    .navbar ul.active {
        display: flex;
    }

    .hero-content {
        bottom: 1%;
        width: 95%;
    }

    .brands {
        flex-direction: column;
    }
}
.founder-section {
    #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.founder-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    text-align: left;
}

.founder-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid #ff416c;
    object-fit: cover;
}

.founder-info {
    max-width: 500px;
}

.founder-info h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 5px;
}

.founder-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.5;
}

.founder-social {
    margin-top: 15px;
}

.founder-social a {
    display: inline-block;
    margin-right: 15px;
    text-decoration: none;
    color: #ff416c;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s ease-in-out;
}

.founder-social a:hover {
    color: #333;
    text-decoration: underline;
}
.vision-mission-section {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

.vision-mission-section h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.vision-mission-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: auto;
}

.vision-box, .mission-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
}

.vision-box h3, .mission-box h3 {
    font-size: 24px;
    color: #ff416c;
    margin-bottom: 10px;
}

.vision-box p, .mission-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}
.about-section {
    background: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

.about-section h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: auto;
    gap: 30px;
}

.about-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.about-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.btn-about {
    display: inline-block;
    padding: 10px 20px;
    background: #ff416c;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.btn-about:hover {
    background: #333;
}

.about-image img {
    width: 350px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
/* ✅ Why Choose Us Section Styling */
.why-choose-us {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    padding: 60px 20px;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

.why-choose-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.choose-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    text-align: center;
    transition: 0.3s ease-in-out;
}

.choose-box:hover {
    transform: translateY(-10px);
}

.choose-box h3 {
    font-size: 1.5rem;
    color: #ff416c;
    margin-bottom: 10px;
}

.choose-box p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
    .why-choose-container {
        flex-direction: column;
        align-items: center;
    }
}
/* ✅ Founder Section Styling */
.founder-section {
    background: #f9f9f9;
    padding: 60px 20px;
}

.founder-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

.founder-image img {
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.founder-info {
    max-width: 700px;
}

.founder-info h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}

.founder-info h3 {
    font-size: 1.8rem;
    color: #ff416c;
    margin-top: 20px;
}

.founder-info p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.founder-values {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.founder-values li {
    font-size: 1.1rem;
    color: #333;
    background: #fff;
    padding: 12px;
    border-left: 5px solid #ff416c;
    margin-bottom: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

    .founder-image img {
        width: 250px;
    }
}


/* ✅ Vision & Mission Section Styling */
.vision-mission-section {
    background: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: bold;
}

.vision-mission-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.vision-box, .mission-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    text-align: center;
    transition: 0.3s ease-in-out;
}

.vision-box:hover, .mission-box:hover {
    transform: translateY(-5px);
}

.vision-box h3, .mission-box h3 {
    font-size: 1.8rem;
    color: #ff416c;
    margin-bottom: 15px;
}

.vision-box p, .mission-box p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
    .vision-mission-container {
        flex-direction: column;
        align-items: center;
    }
}
/* ✅ Core Values Section Styling */
.core-values-section {
    background: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: bold;
}

.values-intro {
    font-size: 1.2rem;
    color: #555;
    max-width: 900px;
    margin: auto;
    line-height: 1.6;
    margin-bottom: 40px;
}

.values-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.value-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    text-align: center;
    transition: 0.3s ease-in-out;
}

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

.value-box h3 {
    font-size: 1.6rem;
    color: #ff416c;
    margin-bottom: 10px;
}

.value-box p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
    .values-container {
        flex-direction: column;
        align-items: center;
    }
}
/* ✅ Who We Are Section Styling */
.who-we-are {
    background: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

.who-intro {
    font-size: 1.2rem;
    color: #555;
    max-width: 900px;
    margin: auto;
    line-height: 1.6;
    margin-bottom: 40px;
}

.who-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.who-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    text-align: center;
    transition: 0.3s ease-in-out;
}

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

.who-box h3 {
    font-size: 1.6rem;
    color: #ff416c;
    margin-bottom: 10px;
}

.who-box p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* ✅ Our Reach Section Styling */
.our-reach {
    background: linear-gradient(to right, #e9ecef, #ffffff);
    padding: 60px 20px;
    text-align: center;
}

.reach-intro {
    font-size: 1.2rem;
    color: #555;
    max-width: 900px;
    margin: auto;
    line-height: 1.6;
    margin-bottom: 40px;
}

.reach-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.reach-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    text-align: center;
    transition: 0.3s ease-in-out;
}

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

.reach-box h3 {
    font-size: 1.6rem;
    color: #ff416c;
    margin-bottom: 10px;
}

.reach-box p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
    .who-container, .reach-container {
        flex-direction: column;
        align-items: center;
    }
}
/* ✅ About MJM Suppliers Section Styling */
.about-mjm {
    background: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

.about-mjm h1 {
    font-size: 2.5rem;
    color: #333;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-mjm span {
    color: #ff416c;
}

.about-mjm p {
    font-size: 1.2rem;
    color: #555;
    max-width: 900px;
    margin: auto;
    line-height: 1.8;
    margin-bottom: 20px;
}
/* ✅ Fix Hero Section Overlapping Issue */
.about-hero {
    background: transparent;
    color: white;
    text-align: center;
    padding: 120px 20px; /* 👈 Padding increase ki */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative; /* 👈 Ensures it doesn't overlap */
    z-index: 2;
}

.hero-content {
    max-width: 900px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
}

.hero-content span {
    color: rgb(9, 27, 82);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.hero-btn {
    display: inline-block;
    padding: 12px 25px;
    background: white;
    color: #ff416c;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.hero-btn:hover {
    background: yellow;
    color: #ff4b2b;
}
/* ✅ Navigation Bar Styling */
nav {
    background: #ff416c; /* 👈 Background color set */
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center; /* 👈 Horizontally align */
    align-items: center;
    gap: 25px; /* 👈 Spacing between items */
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 15px;
    transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    background: rgba(255, 255, 255, 0.2); /* 👈 Hover effect */
    border-radius: 5px;
}
/* ✅ Lightbox Styling */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
/* ✅ Lightbox Styling */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
}

.lightbox img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
    background: white;
    padding: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
/* ✅ Product Page Header Styling */
.product-header {
    background: linear-gradient(to right, #ff416c, #ff4b2b); /* Gradient Background */
    color: white;
    text-align: center;
    padding: 50px 20px;
    margin-top: 60px; /* Ensure Navbar Ke Neeche Show Ho */
    border-radius: 0 0 20px 20px; /* Soft Rounded Corners */
}

.product-header h1 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-header span {
    color: yellow;
}

.tagline {
    font-size: 1.5rem;
    font-style: italic;
    opacity: 0.9;
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
    .product-header h1 {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }
}
