/* 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;
}
