/* ------------------- GLOBAL ------------------- */
body {
    margin: 0;
    font-family: Arial, sans-serif;
     padding-top: 80px;
     
}

/* ------------------- HEADER ------------------- */
.header {
    width: 100%;
    height: 80px;
    padding: 0 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position:fixed !important;
    top: 0 !important;
    left: 0;
    z-index: 9999;
    background: rgba(229, 229, 226, 0.8);
    backdrop-filter: blur(10px);
}

.logo img {
    height: 80px;
}

.nav-menu a,
.nav-menu span,
.dropdown-menu-custom a,
.drawer a {
    color: #ae7e2a;
    text-decoration: none;
    margin: 0 15px;
    cursor: pointer;
}       

.nav-menu a:hover,
.nav-menu span:hover,
.dropdown-menu-custom a:hover,
.drawer a:hover,
.nav-menu a:active,
.nav-menu span:active,
.dropdown-menu-custom a:active,
.drawer a:active {
    color: #000;
}

/* Dropdown */
.dropdown-menu-custom {
    display: block;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    top: 40px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 9999;
    transition: opacity 0s ease 0.4s, visibility 0s linear 0.4s;
    border-radius: 5px;
}
.dropdown:hover .dropdown-menu-custom {
    display: block;
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}
.dropdown-menu-custom a {
    display: block;
    padding: 8px 15px;
    white-space: nowrap;
}
/* Drawer */
#menuToggle { display: none; }
.drawer {
    position: fixed;
    top: 0;
    left: -260px;
    width: 250px;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    padding: 15px;
    transition: 0.3s;
    z-index: 1000;
}
#menuToggle:checked ~ .drawer { left: 0; }
.drawer a, .drawer details summary {
    display: block;
    padding: 10px 0;
    color: #000;
    cursor: pointer;
    margin-left: 10px;
}
.close-btn { text-align: right; font-size: 20px; margin-bottom: 10px; cursor: pointer; }
.nav-link, .dropdown-item{color:#ae7e2a;}
.nav-link:hover, .dropdown-item:hover{color:#000;}
.navbar-brand img{height:55px;}

 .drawer summary {
    list-style: none;
    cursor: pointer;
}
.drawer summary::-webkit-details-marker {
    display: none;
}

.drawer .submenu {
    overflow: hidden;
    height: 0;
    transition: height 0.4s ease;
}

.drawer summary span {
    display: inline-block;
    transition: transform 0.6s ease;
}

.drawer details.open summary span {
    transform: rotate(180deg);
}

/* ------------------- HERO ------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

/* Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    text-align: center;
    color: #fff;
    opacity: 0;
    transition: all 1s ease;
    z-index: 2;
    padding: 0 20px;
}

.slide.active .hero-content {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}


.btn {
    display: inline-block;
    padding: 12px 28px;
    background: #ae7e2a;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.1s ease;

    -webkit-tap-highlight-color: transparent;
}
.btn:hover {
    background: black;
}
/* Dots */
.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.dots span {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
}

.dots span.active {
    background: #ae7e2a;
}

/* 📱 Mobile View */
@media (max-width: 768px) {
    .hero-slider {
        height: 350px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn {
        padding: 10px 22px;
        font-size: 14px;
    }
}


/* ------------------- ABOUT ------------------- */
.about-section {
    max-width: 90%;
    margin: 30px auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    background: #fff;
}
.about-text {
    flex: 1;
    padding: 20px;
    min-width: 300px;
}
.about-text h2 {
    font-size: 32px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}
.about-text h2 span {
    width: 50px;
    height: 3px;
    background: black;
    margin: 0 15px;
    display: inline-block;
}
.about-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}
.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 300px;
}
.about-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
}

/* GENERAL RESET about page */
/* ABOUT BANNER */

.about-banner {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center; /* Vertical Center */
}

/* IMAGE FULL WIDTH */
.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* DARK OVERLAY ON IMAGE */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

/* TEXT ON IMAGE */
.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 100%;
    padding: 0 80px; /* Desktop side padding */
    text-align: left; /* Desktop standard */
}

/* TITLE */
.banner-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

/* BREADCRUMB */
.breadcrumb-text {
    font-size: 15px;
    opacity: 0.9;
    margin: 0;
}

.breadcrumb-text span {
    margin: 0 6px;
}

/* --- MOBILE VIEW (Responsive) --- */
@media (max-width: 600px) {
    .about-banner {
        height: 250px; 
    }

    .banner-content {
        padding: 0 20px; 
        text-align: center; 
    }

    .banner-content h1 {
        font-size: 32px; 
    }

    .breadcrumb-text {
        font-size: 14px;
    }
}


/* WHO WE ARE */

.who-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 120px auto;
    padding-left: 200px;
}

/* Image Box */
.who-image {
    position: absolute;
    top: -70px;
    left: 0;
    width: 260px;
    height: 320px;
}

.who-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Content Box */
.who-content {
    background: #f3f2ee;
    padding: 60px 60px 60px 120px;
    border-radius: 12px;
}

.who-content h3 span {
    width: 45px;
    height: 3px;
    background: #1e3a8a;
}

/* Text */
.who-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 900px) {
    .who-wrapper {
        padding-left: 0;
        margin: 60px 20px;
    }

    .who-image {
        position: static;
        width: 100%;
        height: 280px;
        margin-bottom: 20px;
    }

    .who-content {
        padding: 40px;
    }
}




/* MISSION & VISION */
.mission-vision{
    display: flex;
    gap: 30px;
    max-width: 1100px;
    margin: 60px auto;
}

.mv-box{
    flex: 1;
    background: #fff;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.mv-box img{
    width: 70px;
    margin-bottom: 15px;
}

.mv-box h3{
    font-size: 22px;
    color: #ae7e2a;
    margin-bottom: 10px;
}

.mv-box p{
    font-size: 15px;
    color: #555;
}

/* MOBILE */
@media(max-width:768px){
    .mission-vision{
        flex-direction: column;
        margin: 40px 20px;
    }
}


/* WHY CHOOSE US */
.why-choose-us {
    padding: 80px 20px;
    background: #f7f9fc;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: #222;
}

.why-choose-us h2 span {
    color: #e63946;
}

/* Rows */
.hex-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

/* Bottom row slight up */
.hex-row.bottom {
    margin-top: -10px;
}

/* Hex Box */
.hex-box {
    width: 260px;
    height: 300px;
    background: #fff;
    clip-path: polygon(
        50% 0%,
        100% 25%,
        100% 75%,
        50% 100%,
        0% 75%,
        0% 25%
    );
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 65px 20px;
    transition: 0.3s ease;
}

.hex-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* Icon */
.hex-box .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: #ffe5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #e63946;
}

/* Text */
.hex-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}

.hex-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .hex-row {
        flex-wrap: wrap;
    }
}


/* MOBILE RESPONSIVE */
@media (max-width: 991px){
    .about-header h1{
        font-size: 34px;
    }

    .about-section{
        padding: 30px;
    }

    .mission-vision{
        flex-direction: column;
    }
}

@media (max-width: 768px){
    .about-header h1{
        font-size: 30px;
    }

    .about-header p{
        font-size: 16px;
    }

    .about-section h2{
        font-size: 26px;
    }

    .about-section p,
    .about-points li{
        font-size: 15px;
    }
}

@media (max-width: 480px){
    .about-page{
        padding: 40px 15px;
    }

    .about-header h1{
        font-size: 26px;
    }

    .about-section{
        padding: 25px 20px;
    }

    .mission h3,
    .vision h3{
        font-size: 20px;
    }
}

/* -------------------POLICY------------------------- */

    .policy-container {
            max-width: 850px;
            margin: 0 auto;
            padding: 40px 20px;
            line-height: 1.6;
        }

/* -----------------CERTIFICATE---------------------- */

.certificate-section {
    padding: 50px 20px;
    text-align: center;
    background: #fafafa;
}

.certificate-section h2 {
    margin-bottom: 40px;
    font-size: 30px;
    font-weight: 600;
}

/* Grid */
.certificate-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 1000px;
    margin: auto;
}

/* Card */
.certificate-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-5px);
}

/* Image */
.certificate-card img {
    width: 100%;
    height: 260px;          /* 🔑 fixed height */
    object-fit: contain;
}

/* Title */
.certificate-card p {
    margin-top: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Bottom center card */
.center-card {
    grid-column: 1 / span 2;
    max-width: 420px;       /* 🔑 controlled width */
    margin: auto;
}

/* Mobile */
@media (max-width: 768px) {
    .certificate-grid {
        grid-template-columns: 1fr;
    }

    .center-card {
        grid-column: auto;
        max-width: 100%;
    }

    .certificate-card img {
        height: 230px;
    }
}


/* ------------------- PRODUCTS ------------------- */
.products-section {
    background: #fff;
    padding: 0 40px 50px;
}
.products-section h2 {
    font-size: 38px;
    text-align: center;
    padding-bottom: 10px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}
.product-card {
    display: flex;
    background: #fff;
    height: 260px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.product-card:hover { transform: translateY(-5px); }
.product-image { width: 40%; flex-shrink: 0; }
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-content {
    width: 60%;
    padding: 12px 25px 30px;
    display: flex;
    flex-direction: column;
}
.product-content h2 { font-size: 26px; margin-bottom: 0px; color: #000; text-align: left; }
.product-content p { font-size: 16px; color: #555; line-height: 1.6; flex-grow: 1; }
.button {
    margin-top: auto;
    align-self: flex-start;
    padding: 9px 20px;
    font-size: 15px;
    background: #ae7e2a;
    color: #fff;
    border-radius: 5px;
    border: none;
    transition: 0.3s;
    text-decoration: none;
}
.button:hover { background: #000; }

/* -----------product page------------------------ */


/* --------FRUITS----------- */
/* PARENT SCOPE */
.mk-products {
    max-width: 1250px;
    margin: 70px auto;
    padding: 0 15px;
}

/* GRID */
.mk-products .mk-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

/* CARD */
.mk-products .mk-card {
    background: #fff;
    border-radius: 18px;
    padding: 14px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

/* IMAGE */
.mk-products .mk-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    transition: transform 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
}

/* TEXT — ALWAYS BELOW */
.mk-products .mk-card h3 {
    margin-top: 14px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

/* HOVER EFFECT */
.mk-products .mk-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.mk-products .mk-card:hover img {
    transform: scale(1.06);
}

.mk-products .mk-card:hover h3 {
    color: #2e7d32;
}

/* TABLET */
@media (max-width: 992px) {
    .mk-products .mk-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .mk-products .mk-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .mk-products .mk-card img {
        height: 190px;
    }

    .mk-products .mk-card h3 {
        font-size: 16px;
    }
}


/*--------------------CONTACT US----------------- */

.contact-section {
    padding: 60px 20px;
    font-family: Arial, sans-serif;
}

.page-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
    color: #002b5b;
}

.contact-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info {
    background: #243545;
    color: #fff;
    padding: 40px;
    border-radius: 12px;
}

.contact-info h2 {
    margin-bottom: 25px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 16px;
}
.contact-info a{color: inherit; text-decoration: none;}
.contact-info .address {
    margin-top: 25px;
    line-height: 1.6;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form h2 {
    margin-bottom: 25px;
    color: #243545;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input {
    flex: 1;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
}

textarea {
    width: 100%;
    height: 120px;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    resize: none;
    font-size: 15px;
}

button {
    margin-top: 20px;
    padding: 14px 40px;
    background: #243545;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: #243345;
}
.icon-white {
    color: #ffffff;
    margin-right: 10px;
    font-size: 16px;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }
}

.contact-map {
    width: 100%;
    margin-top: 20px;
}

.contact-map iframe {
    width: 100%;
    height: 350px;
    display: block;
    border: none;
    border-radius: 0; /* full straight width */
}



/* ------------------- FOOTER ------------------- */
.footer-dark {
    background: #18292e;
    color: #fff;
    padding: 50px 40px 20px;
    margin-top: 30px;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}
.footer-logo img { max-width: 270px; }
.footer-col h4 { font-size: 22px; margin-bottom: 20px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
    color: #d9ad60;
    text-decoration: none;
    font-size: 17px;
}
.footer-col ul li a::before { content: "» "; color: #d9ad60; }
.footer-col ul li a:hover { text-decoration: underline; }
.footer-col p { font-size: 17px; margin-bottom: 12px; color: #d9ad60; }
.footer-col i { margin-right: 10px; }
.footer-col a {color: inherit; text-decoration: none;}
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid #35545c;
    color: #d9ad60;
    font-size: 16px;
}

/* ------------------- RESPONSIVE ------------------- */
/* REMOVE HORIZONTAL SCROLL */
html, body{
    width: 100%;
    overflow-x: hidden;
}

/* MOBILE HEADER FIX */
@media (max-width: 991px){
    .logo{
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    /* HIDE HEADER DROPDOWN IN MOBILE */
    .dropdown-menu-custom{
        display: none !important;
    }
}

/* TABLET & MOBILE CONTENT */
@media (max-width: 768px){
    .about-text h2{ font-size: 28px; }
    .about-text p{ font-size: 15px; }

    .products-grid{
        grid-template-columns: 1fr;
    }

    .product-card{
        flex-direction: column;
        height: auto;
    }

    .product-image{
        width: 100%;
        height: 200px;
    }

    .product-content{
        width: 100%;
        padding: 20px;
    }

    .product-content h2{ font-size: 22px; }
    .product-content p{ font-size: 15px; }

    .button{
        font-size: 14px;
        padding: 8px 18px;
    }

    .footer-container{
        flex-direction: column;
        text-align: center;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px){
    .about-text h2{ font-size: 24px; }
    .about-text p{ font-size: 14px; }

    .product-content h2{ font-size: 20px; }
    .product-content p{ font-size: 14px; }

    .button{
        font-size: 13px;
        padding: 7px 15px;
    }
}
/* HEADER */
.header{
    position: relative;
    z-index: 1000;
}

.breadcrumb-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.breadcrumb-link:hover {
    color: #ae7e2a;
    text-decoration: none;
}
