body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #6A1B9A, #C2185B);
    padding: 10px 20px;
    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    margin-right: 10px;
}

/* NAV */
nav {
    display: flex;
}

nav a {
    color: white;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

/* hover underline */
nav a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #6A1B9A;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

nav .cta {
    background: white;
    color: #6A1B9A;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: bold;
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* HERO */
.hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;              /* KEY */
    object-position: center 35%;    /* adjust here */
    transition: opacity 0.8s ease;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}


.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    top: 50%;
    transform: translateY(-50%);
}
.hero-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

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

/* BUTTONS */
.btn {
    background: #C2185B;
    color: white;
    padding: 10px 20px;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background: #6A1B9A;
}

.btn.secondary {
    background: transparent;
    border: 1px solid white;
}
.btn.secondary:hover {
    background:  #6A1B9A;
    border: 1px solid white;
}
/* MOBILE */
@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        background: linear-gradient(90deg, #6A1B9A, #C2185B);
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
    }

    nav a {
        margin: 10px;
    }

    .menu-toggle {
        display: block;
    }
}

/* ABOUT SECTION */
.about {
    padding: 70px 40px;
    background: #fff;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

/* LEFT TEXT */
.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2A0A3D;
}

.about-text p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* RIGHT STATS */
.about-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* STAT BOX */
.stat {
    background: linear-gradient(135deg, #6A1B9A, #C2185B);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.stat h3 {
    font-size: 28px;
    margin-bottom: 5px;
}

.stat p {
    font-size: 14px;
}

/* HOVER */
.stat:hover {
    transform: translateY(-5px);
}

/* TRUST SECTION */

.trust {
    background: linear-gradient(90deg, #2A0A3D, #6A1B9A);
    padding: 60px 20px;
    color: white;
}

.trust-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

/* HEADING */
.trust h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

/* SUBTEXT */
.trust-sub {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 30px;
}

/* REGIONS */
.trust-regions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* REGION BOX */
.region {
    padding: 12px 22px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.3);
    font-weight: 500;
    transition: 0.3s;
}

/* HOVER EFFECT */
.region:hover {
    background: white;
    color: #6A1B9A;
    transform: translateY(-2px);
}

/* WHY SECTION */

.why {
    padding: 60px 30px;
    background: #f9f7fb;
    text-align: center;
}

.why-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* CARD */
.why-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.icon {
    font-size: 26px;
    margin-bottom: 10px;
}

.why-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #6A1B9A;
}

.why-card p {
    font-size: 13px;
    color: #666;
}

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

/* PRODUCTS SECTION */

.products {
    padding: 60px 30px;
    text-align: center;
    background: #fff;
}

.product-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}

/* CARD */
.product-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}


.product-card:hover {
    transform: translateY(-6px);
}

/* BUTTON CENTER */
.product-btn {
    margin-top: 20px;
}

@media (max-width: 900px) {
    .product-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-container {
        grid-template-columns: 1fr;
    }
}

.product-content {
    padding: 18px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    height: 180px; 
}

.product-content h3 {
    color: #6A1B9A;
    font-size: 17px;
    margin-bottom: 8px;
}

.product-content p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;

    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
   
/* FOOTER */
 .footer { background: #2A0A3D; color: white; padding: 40px 20px 10px; } 
 .footer-container { display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; } 
 .footer-col { flex: 1; min-width: 220px; } 
 .footer-col p { margin: 4px 0; line-height: 1.4; }
 .footer-col h2 { color: #C2185B; } 
 .footer-col h3 { color: #C2185B; }
 .footer-col a { display: block; color: white; text-decoration: none; margin: 5px 0; } 
 .footer-col p a {  display: inline; color: white; text-decoration: none; margin: 5px 0; } 
 .footer-col a:hover { color: #C2185B; } 
 .footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.2); margin-top: 20px; padding-top: 10px; }

 /* About Page CSS */
 .page-hero {
    background: linear-gradient(90deg, #2A0A3D, #6A1B9A);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.page-hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.page-hero p {
    opacity: 0.9;
}


.about-page {
    padding: 70px 40px;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

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

.about-text h2 {
    color: #2A0A3D;
    margin-bottom: 10px;
}

.about-text p {
    color: #555;
    margin-bottom: 15px;
}

/* STATS */
.about-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat {
    background: linear-gradient(135deg, #6A1B9A, #C2185B);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}


/* MISSION VISION SECTION */
/* SECTION */
.mv {
    padding: 60px 40px;
    background: #ffffff;   /* clean white */
}

/* CONTAINER */
.mv-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* CARD BASE */
.mv-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    border-radius: 12px;
    color: white;
    transition: 0.3s;
}

/* GRADIENT CARDS */
.mission {
    background: linear-gradient(135deg, #6A1B9A, #8E24AA);
}

.vision {
    background: linear-gradient(135deg, #C2185B, #E91E63);
}

/* ICON */
.mv-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

/* TEXT */
.mv-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.mv-card p {
    opacity: 0.95;
    line-height: 1.6;
}

/* HOVER (SUBTLE, NOT OVERDONE) */
.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
/* MARKETS */
.markets {
    background: linear-gradient(90deg, #887d7d, #6A1B9A);
    padding: 60px 20px;
    color: white;
}

.market-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

/* HEADING */
.markets h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

/* SUBTEXT */
.trust-sub {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 30px;
}

/* REGIONS */
.market-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* REGION BOX */
.market {
    padding: 12px 22px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.3);
    font-weight: 500;
    transition: 0.3s;
}

/* HOVER EFFECT */
.market:hover {
    background: white;
    color: #6A1B9A;
    transform: translateY(-2px);
}



/* PRODUCTS PAGE */
.products-page {
    padding: 70px 40px;
    text-align: center;
}

.products-page h2 {
    margin-bottom: 40px;
    color: #2A0A3D;
}

/* GRID */
.products-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* ROW */
.product-row {
    display: flex;
    align-items: center;
    gap: 40px;
    border-bottom: 1px solid #eee;
}

/* REVERSE (alternating) */
.product-row.reverse {
    flex-direction: row-reverse;
}

/* IMAGE */
.product-img {
    flex: 1;
}

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

/* TEXT */
.product-text {
    flex: 1;
}

.product-text h3 {
    color: #6A1B9A;
    margin-bottom: 10px;
}

.product-text p {
    color: #555;
    line-height: 1.6;
    text-align: justify;
}

@media (max-width: 768px) {

    .product-row {
        flex-direction: column !important;
        gap: 15px;
    }

    /* IMAGE FIX */
    .product-img img {
        height: 200px;        /* 👈 reduce size */
        object-fit: cover;
    }

    /* TEXT FIX */
    .product-text {
        text-align: left;     /* 👈 fix alignment */
        padding: 0 5px;
    }

    .product-text p {
        text-align: justify;  /* 👈 clean reading */
        font-size: 14px;
        line-height: 1.5;
    }

    .product-text h3 {
        font-size: 16px;
    }
}

/* PACKAGING */
.packaging {
    padding: 60px 40px;
    background: #f9f7fb;
    text-align: center;
}

.packaging h2 {
    margin-bottom: 30px;
}

.pack-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.pack {
    background: white;
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid #ddd;
}


/* SOURCING */
.sourcing {
    padding: 70px 40px 40px;
    text-align: center;
}

.sourcing h2 {
    color: #2A0A3D;
}

.sourcing .sub {
    max-width: 700px;
    margin: auto;
    color: #555;
}

/* PROCESS */
.process {
    padding: 70px 40px;
    background: #f9f7fb;
    text-align: center;
}
.timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    position: relative;

}
.timeline::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #ddd;
    z-index: 0;
}
.t-step {
   max-width: 180px;
    margin: auto;
}

.circle {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #6A1B9A, #C2185B);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 10px;
    font-weight: bold;
      position: relative;
    z-index: 1;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.process,
.quality {
    border-top: 1px solid #eee;
}
.step {
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.step h3 {
    color: #6A1B9A;
}

/* QUALITY */
.quality {
    padding: 70px 40px;
    text-align: center;
}

.q-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-top: 4px solid #6A1B9A;
    transition: 0.3s;
}
.q-box:hover {
    transform: translateY(-5px);
}

.quality-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}


.q-box h3 {
    color: #6A1B9A;
}

/* EXPORT */
.export {
    padding: 70px 40px;
    text-align: center;
}

.export-box {
    max-width: 700px;
    margin: auto;
    padding: 25px;
    background: linear-gradient(135deg, #6A1B9A, #C2185B);
    color: white;
    border-radius: 10px;
}

.export p {
    max-width: 700px;
    margin: auto;
    color: #555;
}


/* CONTACT PAGE */
.contact-page {
    padding: 70px 40px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* LEFT SIDE */
/* Improve link appearance */
.contact-info a {
    color: #6A1B9A;
    text-decoration: none;
    font-weight: 500;
}

/* Hover effect */
.contact-info a:hover {
    text-decoration: underline;
}

/* Make labels (Email, Phone, etc.) stand out */
.contact-info strong {
    color: #2A0A3D;
}

/* Better spacing between lines */
.contact-info p {
    margin: 8px 0;
    line-height: 1.5;
}

/* Optional: add subtle card feel */
.contact-info {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}



.contact-note {
    margin-top: 20px;
    padding: 15px;
    background: #f9f7fb;
    border-left: 4px solid #6A1B9A;
}

/* RIGHT FORM */
.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-form h2 {
    margin-bottom: 15px;
    color: #2A0A3D;
}

/* FORM */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
}

.contact-form textarea {
    min-height: 100px;
}

/* BUTTON */
.contact-form button {
    background: linear-gradient(135deg, #6A1B9A, #C2185B);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.contact-form button:hover {
    opacity: 0.9;
}

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

.social-links a {
    display: inline-block;
    margin-right: 10px;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    color: white;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.social-links a:hover {
    background: #C2185B;
}


/* Thank You Section */
.thankyou {
    padding: 80px 20px;
    text-align: center;
}

.thankyou-box {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.thankyou-icon {
    font-size: 50px;
    color: #6A1B9A;
    margin-bottom: 15px;
}

.thankyou h2 {
    color: #2A0A3D;
    margin-bottom: 10px;
}

.thankyou p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.thankyou .btn {
    margin: 10px;
}
.thank-btn {
    background: transparent;
    color: #6A1B9A;
    border: 2px solid #6A1B9A;
}

.thank-btn:hover {
    background: #6A1B9A;
    color: #fff;
}

.btn.secondary.thank-btn {
    background: transparent;
    color: #6A1B9A;
    border: 2px solid #6A1B9A;
}

/* Hover */
.btn.secondary.thank-btn:hover {
    background: #6A1B9A;
    color: #fff;
}


/* CERTIFICATES */
.certificates {
    padding: 70px 40px;
    text-align: center;
}


.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* BOX */
.cert-box {
    background: white;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
}

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

/* IMAGE */
.cert-box img {
    width: 100%;
    height: 220px;
    object-fit: contain;   
    background: #f5f5f5;  
}

/* TITLE */
.cert-box h4 {
    margin: 10px 0;
    color: #2A0A3D;
}

/* BUTTON */
.view-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #6A1B9A, #C2185B);
    color: white;
    border-radius: 5px;
    font-size: 13px;
    text-decoration: none;
}

.view-btn:hover {
    opacity: 0.9;
}