/* RESET */
html, body{
    overflow-x:hidden;
    width:100%;
}
*{
    box-sizing:border-box;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#111111;
    overflow-x:hidden;
}

/* CONTAINER */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */

.main-header{
    background:#000000;
    padding:10px 0;
    position:sticky;
    top:0;
    z-index:999;
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* LOGO */

.logo img{
    height:70px;
}

/* NAVBAR */

.navbar{
    display:flex;
    gap:30px;
    align-items:center;
}

.navbar a{
    color:white;
    text-decoration:none;
    font-size:16px;
    transition:0.3s;
}

.navbar a:hover{
    color:#f2a51a;
}

/* CONTACT BUTTON */

.contact-btn{
    background:#b32025;
    padding:12px 24px;
    border-radius:30px;
}

.contact-btn:hover{
    background:#1f7a3a;
    color:white !important;
}

/* HERO SECTION */

.hero{
    width:80%;
    max-width:1500px;
    height:520px;
    margin:35px auto 35px;
    background-color:#ffffff;
    background-image:url('../images/hero.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    border-radius:45px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
      border:8px solid #ffffff;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.10),
        0 25px 80px rgba(0,0,0,0.18);
}
.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:#ffffff;
    z-index:-1;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero h1{
    font-size:65px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    max-width:800px;
    margin:auto;
    line-height:1.8;
}

/* SECTION */

.section{
    padding:100px 0;
    background:#f3f0ea;
}

/* PRODUCTS */

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

.product-card{
    background:#111111;
    transition:0.4s ease;
    border-radius:20px;
    overflow:hidden;
    transition:0.4s;
}

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

.product-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:0.4s ease;
}

.product-card h3{
    padding:20px;
    text-align:center;
    color:#ffffff;
    font-size:24px;
    font-weight:600;
}

/* FOOTER */

.footer{
    background:#000000;
    padding-top:70px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;
    padding-bottom:50px;
}

.footer h2,
.footer h3{
    margin-bottom:20px;
    color:#f2a51a;
}

.footer p,
.footer a,
.footer li{
    color:#cccccc;
    line-height:2;
    text-decoration:none;
    list-style:none;
}

.footer a:hover{
    color:#ffffff;
}

.copyright{
    text-align:center;
    border-top:1px solid #222;
    padding:20px;
    color:#999;
}

/* RESPONSIVE */

@media(max-width:992px){

    .navbar{
        gap:15px;
    }

    .hero h1{
        font-size:45px;
    }

    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .nav-container{
        flex-direction:column;
        gap:20px;
    }

    .navbar{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:35px;
    }

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

    .product-grid{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

}
/* STATS COUNTER SECTION */

.stats-counter{
    background:#000000;
    padding:45px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:40px;
}

.stat-item{
    display:flex;
    align-items:center;
    gap:18px;
    color:#ffffff;
}

.stat-icon i{
    font-size:58px;
    color:#007dcc;
}

.stat-number{
    font-size:42px;
    font-weight:700;
    color:#ffffff;
    line-height:1;
}

.stat-number::after{
    content:'+';
}

.stat-text{
    font-size:17px;
    color:#ffffff;
    margin-top:8px;
}

/* MOBILE */

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

@media(max-width:768px){
    .stats-grid{
        grid-template-columns:1fr;
    }

    .stat-item{
        justify-content:center;
    }
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:30px;
    text-align:center;
}

.stat-item{
    color:#ffffff;
}

.stat-icon{
    font-size:55px;
    margin-bottom:15px;
}

.stat-number{
    font-size:45px;
    font-weight:700;
    color:#00a2ff;
    margin-bottom:10px;
}

.stat-number::after{
    content:'+';
}

.stat-text{
    font-size:18px;
    color:#ffffff;
}

/* MOBILE */

@media(max-width:992px){

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .stats-grid{
        grid-template-columns:1fr;
    }

}
/* GLOBAL PRESENCE SECTION */

.global-presence-section{
    position:relative;
    background:#ebe7df;
    padding:90px 0 100px;
    text-align:center;
    overflow:visible;
}

.global-presence-section h2{
    color:#111111;
    font-size:52px;
    font-weight:500;
    line-height:1.25;
    margin-bottom:55px;
}

.map-wrapper{
    width:100%;
    max-width:1050px;
    margin:0 auto;
}

.map-wrapper img{
    width:100%;
    display:block;
    opacity:0.9;
}

.global-text{
    margin-top:35px;
    color:#111111;
    font-size:30px;
    font-weight:500;
}

.global-text span{
    color:#b32025;
    font-weight:700;
}

.map-spice-left{
    position:absolute;
    left:-35px;
    top:80px;
    width:180px;
    height:250px;
    background:url('../images/spice-left.png') center/contain no-repeat;
    z-index:1;
}

.map-spice-right{
    position:absolute;
    right:-20px;
    top:20px;
    width:260px;
    height:260px;
    background:url('../images/spice-right.png') center/contain no-repeat;
    z-index:1;
}

.global-presence-section .container{
    position:relative;
    z-index:2;
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

    .global-presence-section{
        padding:70px 0;
    }

    .global-presence-section h2{
        font-size:34px;
        margin-bottom:35px;
    }

    .global-text{
        font-size:22px;
    }

    .map-spice-left,
    .map-spice-right{
        display:none;
    }
}
/* INTERACTIVE MAP PINS */

.interactive-map{
    position:relative;
    width:100%;
    max-width:1050px;
    margin:0 auto;
}

.interactive-map img{
    width:100%;
    display:block;
    opacity:0.9;
}

.map-pin{
    position:absolute;
    width:22px;
    height:22px;
    transform:translate(-50%, -50%);
    cursor:pointer;
    z-index:5;
}

.map-pin span{
    display:block;
    width:18px;
    height:18px;
    background:#007dcc;
    border:3px solid #ffffff;
    border-radius:50%;
    box-shadow:0 0 0 rgba(0,125,204,0.8);
    animation:pulsePin 1.6s infinite;
}

.map-pin::after{
    content:'';
    position:absolute;
    left:7px;
    top:14px;
    width:4px;
    height:18px;
    background:#007dcc;
    border-radius:4px;
}

.pin-tooltip{
    position:absolute;
    left:50%;
    bottom:38px;
    transform:translateX(-50%) translateY(10px);
    background:#ffffff;
    color:#111111;
    padding:10px 14px;
    border-radius:8px;
    font-size:14px;
    font-weight:700;
    white-space:nowrap;
    opacity:0;
    visibility:hidden;
    transition:0.3s ease;
}

.pin-tooltip small{
    color:#b32025;
    font-weight:600;
}

.map-pin:hover .pin-tooltip{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
}

@keyframes pulsePin{
    0%{
        box-shadow:0 0 0 0 rgba(0,125,204,0.8);
    }
    70%{
        box-shadow:0 0 0 16px rgba(0,125,204,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(0,125,204,0);
    }
}

/* pin positions - adjust if needed */

.oman{
    left:61%;
    top:55%;
}

.saudi{
    left:56%;
    top:53%;
}

.hongkong{
    left:77%;
    top:52%;
}
/* SIDE FRUIT DECORATIONS */

.map-spice-left,
.map-spice-right{
    position:absolute;
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
    z-index:100;
    pointer-events:none;
}

.map-spice-left{
    left:-170px;
    top:120px;
    width:340px;
    height:420px;
    background-image:url("../images/spice-left.png");
}

.map-spice-right{
    right:-180px;
    top:40px;
    width:420px;
    height:420px;
    background-image:url("../images/spice-right.png");
}
/* WELCOME SECTION */

.welcome-section{
    background:#f3f0ea;
    padding:100px 0;
}

.welcome-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.welcome-image{
    position:relative;
}

.welcome-image img{
    width:100%;
    height:390px;
    object-fit:cover;
    border-radius:18px;
}

.experience-box{
    position:absolute;
    right:-25px;
    bottom:-25px;
    background:#007dcc;
    color:#ffffff;
    width:130px;
    height:110px;
    border-radius:12px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.experience-box span{
    font-size:42px;
    font-weight:700;
    line-height:1;
}

.experience-box p{
    font-size:22px;
    margin:0;
}

.welcome-content h2{
    font-size:48px;
    font-weight:500;
    margin-bottom:20px;
}

.welcome-content p{
    color:#111111;
    font-size:18px;
    line-height:1.8;
    margin-bottom:18px;
}

.read-more-btn{
    display:inline-block;
    margin-top:10px;
    background:#b7d434;
    color:#ffffff;
    padding:13px 32px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
}

.read-more-btn:hover{
    background:#b32025;
}

@media(max-width:768px){
    .welcome-grid{
        grid-template-columns:1fr;
    }

    .welcome-content h2{
        font-size:34px;
    }
}
/* SUSTAINABLE / QUALITY SOURCING SECTION */

.sustainable-section{
    position:relative;
    background:url("../images/sustainable.jpg") center/cover no-repeat;
    min-height:420px;
    display:flex;
    align-items:center;
    text-align:center;
    overflow:hidden;
}

.sustainable-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

.sustainable-content{
    position:relative;
    z-index:2;
    max-width:850px;
}

.sustain-icon{
    font-size:58px;
    color:#ffffff;
    margin-bottom:15px;
}

.sustainable-content h2{
    font-size:58px;
    font-weight:500;
    margin-bottom:18px;
    color:#ffffff;
}

.sustainable-content p{
    font-size:20px;
    line-height:1.8;
    color:#ffffff;
    margin-bottom:25px;
}
/* CERTIFICATIONS SECTION */

.certifications-section{
    background:#f3f0ea;
    padding:80px 0 90px;
    text-align:center;
}

.certifications-section h2{
    font-size:48px;
    color:#111111;
    font-weight:500;
    margin-bottom:45px;
}

.cert-slider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;
}

.cert-card{
    background:#ffffff;
    width:180px;
    height:95px;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.cert-card img{
    max-width:100%;
    max-height:60px;
    object-fit:contain;
}

.cert-arrow{
    background:transparent;
    border:none;
    color:#ffffff;
    font-size:42px;
    cursor:pointer;
}

.cert-arrow:hover{
    color:#f2a51a;
}

@media(max-width:768px){
    .cert-slider{
        flex-wrap:wrap;
    }

    .certifications-section h2{
        font-size:36px;
    }
}
/* PRESTIGE EXIM FINAL COLOR THEME */

:root{
    --prestige-red:#9f1f24;
    --prestige-green:#1f5f2e;
    --prestige-light-green:#6fae2e;
    --prestige-yellow:#f2a51a;
    --dark:#050505;
}

/* Navigation hover */
.navbar a:hover{
    color:var(--prestige-yellow);
}

/* Contact button */
.contact-btn{
    background:var(--prestige-red);
}

.contact-btn:hover{
    background:var(--prestige-green);
}

/* Counter icons and numbers */
.stat-icon i,
.stat-number{
    color:var(--prestige-green);
}

/* Buttons */
.read-more-btn{
    background:var(--prestige-light-green);
    color:#ffffff;
}

.read-more-btn:hover{
    background:var(--prestige-red);
}

/* Global presence red text */
.global-text span{
    color:var(--prestige-red);
}

/* Certification arrows */
.cert-arrow:hover{
    color:var(--prestige-yellow);
}

/* Footer headings */
.footer h2,
.footer h3{
    color:var(--prestige-yellow);
}

/* Product card hover */
.product-card:hover{
    box-shadow:0 0 25px rgba(159,31,36,0.35);
}

/* Optional underline accents */
.section h2::after,
.products-section h2::after,
.certifications-section h2::after{
    background:var(--prestige-red);
}
@media(max-width:768px){
    .hero{
        width:92%;
        height:320px;
        margin-top:25px;
        border-radius:25px;
    }
}
/* SCROLL REVEAL ANIMATION */

.reveal{
    opacity:1;
    transform:translateY(0);
    transition:all 0.9s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}
/* SCROLL EFFECT */

.reveal{
    opacity:0;
    transform:translateY(80px);
    transition:all 1s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* ABOUT PAGE */

.about-hero{
    height:420px;
    background:url("../images/about-hero.jpg") center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:flex-end;
}

.about-hero-overlay{
    width:100%;
    padding:0 0 70px 12%;
}

.about-hero h1{
    display:inline-block;
    background:rgba(0,0,0,0.6);
    color:#ffffff;
    padding:16px 35px;
    border-radius:8px;
    font-size:46px;
}

/* ABOUT COMPANY */

.about-company-section{
    background:#f3f1eb;
    padding:85px 0 95px;
    position:relative;
    overflow:hidden;
}

.about-company-grid{
    display:grid;
    grid-template-columns:0.95fr 1.05fr;
    gap:45px;
    align-items:center;
    position:relative;
    z-index:2;
    max-width:1180px;
}

.about-logo-box{
    border-radius:28px;
    overflow:hidden;
    background:transparent;
    max-width:520px;
    margin-left:auto;
}

.about-logo-box img{
    width:100%;
    height:470px;
    object-fit:cover;
    display:block;
    border-radius:28px;
}

.about-company-content{
    max-width:620px;
}

.about-company-content h2{
    font-size:52px;
    line-height:1.1;
    margin-bottom:18px;
    color:#1e1e1e;
    font-weight:500;
}

.about-company-content p{
    color:#555555;
    font-size:20px;
    line-height:1.55;
    margin-bottom:22px;
}

/* LEFT DECORATION IMAGE */

.left-side-spice{
    position:absolute;
    left:-25px;
    top:20px;
    width:230px;
    z-index:1;
    opacity:0.95;
}

/* VISION MISSION VALUES */

.vmv-section{
    background: url("../images/vmv-bg.jpg") center center/cover no-repeat;
    padding:100px 0;
    position:relative;
    overflow:hidden;
}

.vmv-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
    z-index:1;
}

.vmv-content{
    position:relative;
    z-index:2;
    max-width:1000px;
    margin:auto;
}

.tab-btn{
    background:none;
    border:none;
    color:#bdbdbd;
    font-size:34px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.tab-btn.active{
    color:#8bc53f;
}

.vmv-tabs{
    display:flex;
    justify-content:center;
    gap:40px;
    margin-bottom:0;
}

.vmv-box{
    background:rgba(0,0,0,0.45);
    border-radius:30px;
    width:70%;
    margin:0 auto;
    padding:50px 70px;
    min-height:250px;
}
.vmv-item{
    background:rgba(0,0,0,0.65);
    padding:35px;
    border-radius:18px;
    text-align:center;
}

.tab-content{
    display:none;
}

.tab-content.active{
    display:block;
}

.tab-content p{
    color:#ffffff;
    font-size:20px;
    line-height:1.8;
    text-align:center;
    max-width:900px;
    margin:0 auto;
}

.vmv-item h3{
    color:#6fae2e;
    font-size:30px;
    margin-bottom:15px;
}

.vmv-item p{
    color:#ffffff;
    line-height:1.8;
}

/* WHY US */

.why-us-section{
    background:#f3f0ea;
    padding:90px 0 110px;
    text-align:center;
}

.why-us-section h2{
    color:#111111;
    font-size:52px;
    font-weight:500;
    margin-bottom:15px;
}

.why-intro{
    max-width:850px;
    margin:0 auto 80px;
    color:#555555;
    font-size:18px;
    line-height:1.8;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    column-gap:60px;
    row-gap:90px;
    align-items:start;
}

.why-card{
    text-align:center;
    min-height:160px;
}

.why-card i{
    display:block;
    font-size:62px;
    color:#1f5f2e;
    margin-bottom:35px;
    transition:0.3s ease;
}

.why-card h4{
    color:#111111;
    font-size:20px;
    font-weight:500;
    line-height:1.4;
}

.why-card:hover i{
    transform:translateY(-8px) scale(1.1);
    color:#9f1f24;
}

/* MOBILE */

@media(max-width:768px){
    .about-company-grid,
    .vmv-box,
    .why-grid{
        grid-template-columns:1fr;
    }

    .about-company-content h2{
        font-size:38px;
    }

    .about-logo-box img{
        height:320px;
    }

    .left-side-spice{
        display:none;
    }

    .about-hero h1{
        font-size:34px;
    }
}


.vmv-content{
    position:relative;
    z-index:2;
    max-width:1000px;
    margin:auto;
}
.vmv-content{
    width:80%;
    margin:auto;
}
.vmv-tabs{
    display:flex;
    justify-content:center;
    gap:40px;
}

.tab-btn{
    background:none;
    border:none;
    color:#bdbdbd;
    font-size:34px;
    font-weight:600;
    cursor:pointer;
}

.tab-btn.active{
    color:#8bc53f;
}

.vmv-box{
    background:rgba(0,0,0,0.45);
    backdrop-filter:blur(8px);
    border-radius:30px;
    padding:60px;
    width:75%;
    padding:45px 60px;
}

.tab-content{
    display:none;
}

.tab-content.active{
    display:block;
}
/* VMV TAB HOVER POP-UP ANIMATION */

.tab-btn{
    position:relative;
    transition:all 0.3s ease;
}

.tab-btn:hover{
    transform:translateY(-8px) scale(1.08);
    color:#8bc53f;
    text-shadow:0 0 18px rgba(139,197,63,0.8);
}

.tab-btn i{
    transition:all 0.3s ease;
}

.tab-btn:hover i{
    transform:rotate(-8deg) scale(1.15);
}
.why-card{
    opacity:0;
    transform:translateY(50px);
    transition:all 0.8s ease;
}

.why-card.active{
    opacity:1;
    transform:translateY(0);
}
.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:all 0.8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

.why-card{
    opacity:1;
    transform:translateY(0);
    transition:all 0.8s ease;
}

.why-us-section.reveal .why-card{
    opacity:0;
    transform:translateY(50px);
}

.why-us-section.reveal.active .why-card{
    opacity:1;
    transform:translateY(0);
}
.why-us-section.reveal .why-card{
    opacity:0;
    transform:translateY(50px);
}

.why-us-section.reveal.active .why-card{
    opacity:1;
    transform:translateY(0);
}
/* PRODUCTS DROPDOWN */

.nav-dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    background:#000000;
    min-width:230px;
    padding:12px 0;
    border-radius:12px;
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:0.3s ease;
    z-index:9999;
}

.dropdown-menu a{
    display:block;
    padding:12px 20px;
    color:#ffffff;
    text-decoration:none;
    white-space:nowrap;
}

.dropdown-menu a:hover{
    background:#9f1f24;
    color:#ffffff;
}

.nav-dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
/* PRODUCT SUB PAGE */

.product-hero{
    height:420px;
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    position:relative;
    display:flex;
    align-items:flex-end;
}

.spices-hero{
    background-image:url("../images/spices-hero.png");
}

.fruits-hero{
    background-image:url("../images/fruits-hero.jpg");
}

.vegetables-hero{
    background-image:url("../images/vegetables-hero.png");
}

.product-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.25);
}

.product-hero-content{
    position:relative;
    z-index:2;
    width:90%;
    max-width:1200px;
    margin:0 auto 70px;
}

.product-hero h1{
    display:inline-block;
    background:rgba(0,0,0,0.65);
    color:#ffffff;
    font-size:46px;
    padding:16px 32px;
    border-radius:10px;
}

.product-intro{
    background:#f3f0ea;
    padding:70px 0;
    text-align:center;
}

.product-intro h2{
    color:#111111;
    font-size:42px;
    font-weight:500;
    margin-bottom:18px;
}

.product-intro p{
    color:#555555;
    max-width:750px;
    margin:auto;
    font-size:17px;
    line-height:1.8;
}

.spices-section{
    background:#f3f0ea;
    padding:90px 0 120px;
    text-align:center;
}

.spices-section h2{
    color:#111111;
    font-size:40px;
    font-weight:500;
    margin-bottom:60px;
}

.spices-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:60px 70px;
}

.spice-item img{
    width:180px;
    height:180px;
    border-radius:50%;
    object-fit:cover;
    transition:0.4s ease;
}

.spice-item:hover img{
    transform:translateY(-10px) scale(1.05);
}

.spice-item p{
    color:#111111;
    font-size:17px;
    margin-top:18px;
}

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

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

    .product-hero h1{
        font-size:34px;
    }
}
/* SPICE HOVER CARD */

.spice-item{
    background:#ffffff;
    padding:25px;
    border-radius:20px;
    cursor:pointer;
    transition:0.35s ease;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.spice-item:hover{
    background:#b7d434;
    transform:translateY(-10px);
}

.spice-item:hover p{
    color:#ffffff;
}

.spice-item img{
    transition:0.35s ease;
}

.spice-item:hover img{
    transform:scale(1.05);
}

/* SPICE MODAL */

.spice-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.75);
    z-index:99999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:30px;
}

.spice-modal.active{
    display:flex;
}

.spice-modal-content{
    background:#ffffff;
    color:#111111;
    width:90%;
    max-width:1100px;
    max-height:90vh;
    overflow-y:auto;
    border-radius:8px;
    position:relative;
    padding:45px;
}

.spice-close{
    position:absolute;
    top:20px;
    right:25px;
    background:none;
    border:none;
    color:#111111;
    font-size:46px;
    cursor:pointer;
}

.spice-modal-content h2{
    font-size:32px;
    margin-bottom:35px;
}

.spice-modal-body{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:45px;
    align-items:start;
}

.modal-img-box img{
    width:100%;
    max-width:520px;
    border-radius:50%;
    object-fit:cover;
}

.modal-text p{
    color:#555555;
    font-size:22px;
    line-height:1.7;
    margin-bottom:30px;
}

.enquire-btn{
    display:inline-block;
    background:#b7d434;
    color:#ffffff;
    padding:13px 28px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
}

.enquire-btn:hover{
    background:#9f1f24;
}

@media(max-width:768px){
    .spice-modal-body{
        grid-template-columns:1fr;
    }

    .modal-text p{
        font-size:17px;
    }
}
.vegetables-page .spice-item{
    background:#ffffff;
    min-height:230px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.vegetables-page .spice-item img{
    width:150px;
    height:150px;
}

.vegetables-page .spice-item:hover{
    background:#6fae2e;
}

.vegetables-page .spice-item:hover p{
    color:#ffffff;
}
/* CONTACT PAGE */

.contact-hero{
    height:360px;
    background:
        linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)),
        url("../images/contact-hero.jpg") center/cover no-repeat;
    display:flex;
    align-items:flex-end;
}

.contact-hero-content{
    width:90%;
    max-width:1200px;
    margin:0 auto 70px;
}

.contact-hero h1{
    display:inline-block;
    background:rgba(0,0,0,.65);
    color:#ffffff;
    padding:16px 34px;
    border-radius:10px;
    font-size:46px;
}

.contact-section{
    background:#f3f0ea;
    padding:80px 0;
}

.contact-section h2,
.write-section h2{
    font-size:46px;
    color:#111111;
    margin-bottom:35px;
    text-align:center;
}

.contact-cards{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.contact-card{
    background:#ffffff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-card h3{
    color:#9f1f24;
    font-size:24px;
    margin-bottom:20px;
}

.contact-card p{
    color:#333333;
    font-size:16px;
    line-height:1.8;
    margin-bottom:14px;
}

.contact-card i{
    color:#1f5f2e;
    margin-right:10px;
}

.map-section iframe{
    width:100%;
    height:420px;
    border:0;
    display:block;
}

.write-section{
    background:#f3f0ea;
    padding:90px 0;
}

.contact-form{
    max-width:850px;
    margin:auto;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    margin-bottom:25px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    color:#111111;
    font-size:15px;
    margin-bottom:8px;
}

.form-group input,
.form-group select,
.form-group textarea{
    background:#ffffff;
    border:1px solid #cccccc;
    border-radius:14px;
    padding:15px 18px;
    font-family:'Poppins',sans-serif;
    color:#111111;
    outline:none;
}

.form-group textarea{
    height:150px;
    resize:none;
}

.form-group.full{
    margin-bottom:25px;
}

.form-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
}

.form-buttons button{
    border:0;
    background:#6fae2e;
    color:#ffffff;
    padding:13px 38px;
    border-radius:30px;
    font-weight:600;
    cursor:pointer;
}

.form-buttons button:hover{
    background:#9f1f24;
}

@media(max-width:768px){
    .contact-cards,
    .form-row{
        grid-template-columns:1fr;
    }

    .contact-hero h1{
        font-size:34px;
    }
}
/* FLOATING CONTACT BUTTONS */

.floating-contact{
    position:fixed;
    right:35px;
    bottom:90px;
    display:flex;
    flex-direction:column;
    gap:18px;
    z-index:9999;
}

.float-btn{
    width:70px;
    height:70px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffffff;
    font-size:32px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    transition:0.3s ease;
}

.float-btn:hover{
    transform:translateY(-6px) scale(1.08);
}

.whatsapp{
    background:#25D366;
}

.phone{
    background:#062348;
}

.enquiry{
    background:#0060a8;
}

@media(max-width:768px){
    .floating-contact{
        right:18px;
        bottom:70px;
    }

    .float-btn{
        width:58px;
        height:58px;
        font-size:26px;
    }
}
.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:#ffffff;
    font-size:28px;
    cursor:pointer;
}

@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav-container{
        flex-direction:row;
    }

    .navbar{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#000000;
        flex-direction:column;
        align-items:center;
        gap:20px;
        padding:25px 0;
        display:none;
    }

    .navbar.active{
        display:flex;
    }

    .nav-dropdown{
        text-align:center;
    }

    .dropdown-menu{
        position:static;
        opacity:1;
        visibility:visible;
        transform:none;
        display:none;
        margin-top:10px;
    }

    .nav-dropdown:hover .dropdown-menu{
        display:block;
    }
}

/* =========================================================================
   TOAST NOTIFICATION SYSTEM
   ========================================================================= */
.toast-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 380px;
    max-width: 90vw;
    pointer-events: none;
}

.toast {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 24px 18px 20px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
    pointer-events: auto;
    
    /* Entry animation starting state */
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), 
                opacity 0.45s ease, 
                max-height 0.4s ease, 
                margin 0.4s ease, 
                padding 0.4s ease;
    overflow: hidden;
    max-height: 150px;
}

/* Accent side-border matching status */
.toast.success {
    border-left: 5px solid var(--prestige-light-green, #6fae2e);
}
.toast.error {
    border-left: 5px solid var(--prestige-red, #9f1f24);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.hide {
    transform: translateY(-20px);
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: -12px;
}

.toast-icon {
    font-size: 24px;
    margin-top: 2px;
    flex-shrink: 0;
}
.toast.success .toast-icon {
    color: var(--prestige-light-green, #6fae2e);
}
.toast.error .toast-icon {
    color: var(--prestige-red, #9f1f24);
}

.toast-content {
    flex-grow: 1;
}

.toast-title {
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 4px;
}

.toast-message {
    font-size: 14px;
    color: #555555;
    line-height: 1.4;
    margin: 0;
}

.toast-close {
    background: transparent;
    border: none;
    font-size: 22px;
    color: #aaaaaa;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    margin-top: -2px;
    transition: color 0.2s ease;
}

.toast-close:hover {
    color: #333333;
}

/* Hide honeypot field securely */
.hidden-honey {
    display: none !important;
    visibility: hidden !important;
}

/* Mobile responsive toast adjustments */
@media(max-width: 576px) {
    .toast-container {
        top: 20px;
        right: 20px;
        left: 20px;
        width: auto;
        max-width: none;
    }
    
    .toast {
        transform: translateY(-120%);
    }
    
    .toast.show {
        transform: translateY(0);
    }
}