
:root{
 --primary:#0B4F8A;
 --secondary:#E8B93B;
 --accent:#A86A2C;
 --bg:#FAF8F5;
 --surface:#ffffff;
 --text:#1F2937;
 --muted:#6B7280;
 --radius:16px;
 --shadow:0 12px 30px rgba(0,0,0,.08);
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;background:var(--bg);color:var(--text);line-height:1.7}
h1,h2,h3,h4{font-family:'Poppins',sans-serif}
.container{width:min(1180px,92%);margin:auto}
a{text-decoration:none;color:inherit}
.site-header{position:sticky;top:0;background:#fff;z-index:1000;box-shadow:0 2px 12px rgba(0,0,0,.05)}
.nav-wrap{display:flex;justify-content:space-between;align-items:center;padding:18px 0}

/* ==========================
   BRAND LOGO
========================== */

.brand{
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand img{
    height: 160px;
    width: auto;
    display: block;
}

.nav{display:flex;gap:26px;align-items:center}
.nav a{font-weight:600}
.nav a:hover{color:var(--primary)}
.menu-toggle{display:none;border:none;background:none;font-size:30px}
.btn{
    display:inline-block;
    padding:14px 24px;
    border-radius:999px;
    background:var(--primary);
    color:#fff;
    font-weight:600;
    transition:all .3s ease;
}

.btn:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 24px rgba(11,79,138,.25);
}
.btn:hover{transform:translateY(-2px)}
.btn-outline{background:transparent;color:var(--primary);border:2px solid var(--primary)}
.hero{padding:90px 0;background:linear-gradient(180deg,#fff,#FAF8F5)}
.hero-grid{display:grid;grid-template-columns:1.4fr .9fr;gap:50px;align-items:center}
.badge{display:inline-block;background:#EAF5FF;color:var(--primary);padding:8px 16px;border-radius:999px;font-weight:600;margin-bottom:20px}
.hero h1{font-size:3.4rem;line-height:1.15;margin-bottom:22px}
.hero-text{font-size:1.08rem;color:var(--muted);max-width:650px}
.hero-buttons{display:flex;gap:16px;margin:32px 0}
.trust-bar{display:flex;flex-wrap:wrap;gap:20px;font-weight:600;color:var(--primary)}
.hero-card{background:var(--surface);padding:40px;border-radius:var(--radius);box-shadow:var(--shadow)}
.hero-card h3{margin-bottom:18px}
.product-item{padding:18px 0;border-bottom:1px solid #ececec}
.product-item:last-of-type{border-bottom:none}
.card-btn{margin-top:24px;width:100%;text-align:center}
.about-preview{padding:80px 0;text-align:center}
.about-preview h2{margin-bottom:18px;font-size:2.2rem}
.about-preview p{max-width:800px;margin:auto;color:var(--muted)}
.site-footer{background:#132235;color:#fff;margin-top:80px}
.footer-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;padding:50px 0}
.copyright{text-align:center;padding:18px;border-top:1px solid rgba(255,255,255,.1)}
.desktop-btn{display:inline-block}
.mobile-btn{display:none}

/* ==========================
   Why Nirvana Section
========================== */

.about-preview{

    padding:100px 0;

    background:#ffffff;

}

.section-title{

    text-align:center;

    max-width:850px;

    margin:auto auto 70px;

}

.section-title span{

    display:inline-block;

    color:var(--primary);

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:15px;

    font-size:.9rem;

}

.section-title h2{

    font-size:2.6rem;

    margin-bottom:20px;

}

.section-title p{

    color:var(--muted);

    font-size:1.05rem;

}

.features-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.feature-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    box-shadow:var(--shadow);

    transition:.3s;

}

.feature-card:hover{

    transform:translateY(-8px);

}

.feature-icon{

    font-size:42px;

    margin-bottom:20px;

}

.feature-card h3{

    margin-bottom:15px;

    color:var(--primary);

}

.feature-card p{

    color:var(--muted);

}
/* ==========================
   Products
========================== */

.products-preview{

    padding:100px 0;

    background:#FAF8F5;

}

.products-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.product-card{
    background:#fff;
    border:1px solid #e8edf4;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(15,23,42,.06);
    transition:.3s ease;

    display:flex;
    flex-direction:column;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(15,23,42,.12);
}

.product-image{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#EAF5FF;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:42px;

    margin-bottom:25px;

}

.product-card h3{

    color:var(--primary);

    margin-bottom:15px;

}

.product-card p{

    color:var(--muted);

    margin-bottom:20px;

}

.product-card a{

    color:var(--primary);

    font-weight:700;

}
/* ==========================
   Why Choose Us
========================== */

.why-us{

    padding:100px 0;

    background:#ffffff;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.why-item{

    background:#fff;

    padding:30px;

    border-radius:18px;

    box-shadow:var(--shadow);

    transition:.3s;

}

.why-item:hover{

    transform:translateY(-8px);
    
}

.why-item h3{

    color:var(--primary);

    margin-bottom:15px;

}

.why-item p{

    color:var(--muted);

}
/* =====================================
   Export Process
===================================== */

.export-process{

    padding:100px 0;

    background:#FAF8F5;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.process-card{

    background:#fff;

    padding:35px;

    border-radius:18px;

    box-shadow:var(--shadow);

    text-align:center;

    transition:.3s;

}

.process-card:hover{

    transform:translateY(-8px);

}

.process-number{

    width:70px;

    height:70px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    font-weight:700;

}

.process-card h3{

    margin-bottom:15px;

    color:var(--primary);

}

.process-card p{

    color:var(--muted);

}

/* =====================================
   Export Markets
===================================== */

.export-markets{

    padding:100px 0;

    background:#ffffff;

}

.markets-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.market-card{

    background:#fff;

    border-radius:18px;

    padding:35px 20px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.3s;

}

.market-card:hover{

    transform:translateY(-8px);

}

.flag{

    font-size:48px;

    margin-bottom:20px;

}

.market-card h3{

    color:var(--primary);

}

/* =====================================
   Quality Assurance
===================================== */

.quality-section{

    padding:100px 0;

    background:#FAF8F5;

}

.quality-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.quality-card{

    background:#fff;

    padding:35px;

    border-radius:18px;

    box-shadow:var(--shadow);

    transition:.3s;

}

.quality-card:hover{

    transform:translateY(-8px);

}

.quality-icon{

    width:60px;

    height:60px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:26px;

    font-weight:bold;

    margin-bottom:20px;

}

.quality-card h3{

    color:var(--primary);

    margin-bottom:15px;

}

.quality-card p{

    color:var(--muted);

}

/* =====================================
   CTA Section
===================================== */

.cta-section{

    padding:100px 0;

    background:#ffffff;

}

.cta-box{

    background:linear-gradient(135deg,#0B4F8A,#1565A8);

    color:white;

    padding:70px;

    border-radius:22px;

    text-align:center;

}

.cta-box span{

    display:block;

    letter-spacing:2px;

    margin-bottom:20px;

    font-weight:600;

}

.cta-box h2{

    font-size:2.8rem;

    margin-bottom:25px;

}

.cta-box p{

    max-width:760px;

    margin:auto;

    margin-bottom:40px;

    font-size:1.1rem;

    opacity:.95;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}

.cta-box .btn{

    background:white;

    color:#0B4F8A;

}

.cta-box .btn-outline{

    background:transparent;

    color:white;

    border:2px solid white;

}

/* =====================================
   Footer
===================================== */

.footer-grid-new{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.2fr;

    gap:45px;

    padding:70px 0;

}

.footer-grid-new h3,
.footer-grid-new h4{

    margin-bottom:18px;

}

.footer-grid-new p{

    color:#d8d8d8;

    margin-bottom:10px;

}

.footer-grid-new ul{

    list-style:none;

}

.footer-grid-new li{

    margin-bottom:12px;

}

.footer-grid-new a{

    color:#d8d8d8;

}

.footer-grid-new a:hover{

    color:white;

}

/*======================================
  ABOUT PAGE
======================================*/

/* Page Hero */

.page-hero{
    padding:80px 0 60px;
    background:#f8fafc;
}

.page-hero .section-tag{
    display:inline-block;
    margin-bottom:18px;
    font-size:0.9rem;
    font-weight:600;
    color:var(--primary);
    letter-spacing:1px;
    text-transform:uppercase;
}

.page-hero h1{
    font-size:2.8rem;
    line-height:1.2;
    margin-bottom:24px;
    color:var(--dark);
    max-width:850px;
}

.page-hero p{
    max-width:820px;
    font-size:1.08rem;
    line-height:1.9;
    color:#5b6472;
}

/* Company Section */

.about-company{
    padding:100px 0;
    background:#ffffff;
}

.about-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:60px;
    align-items:start;
}

.about-content h2{
    margin-bottom:30px;
    font-size:2rem;
    color:var(--dark);
}

.about-content p{
    margin-bottom:26px;
    font-size:1.05rem;
    line-height:2;
    color:#5b6472;
}

.about-highlight{
    display:flex;
    flex-direction:column;
    gap:25px;
}
/*======================================
  ABOUT PAGE - CARDS
======================================*/

.highlight-card{
    min-height:220px;
    background:#ffffff;
    padding:30px;
    border-radius:16px;
    border:1px solid #e8edf4;
    box-shadow:0 10px 30px rgba(15,23,42,0.06);
    transition:all .3s ease;
}

.highlight-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(15,23,42,0.10);
}

.highlight-card h3{
    margin-bottom:15px;
    color:var(--primary);
    font-size:1.35rem;
}

.highlight-card p{
    margin:0;
    color:#5b6472;
    line-height:1.8;
}

/*======================================
  PRODUCTS PAGE
======================================*/

.products-page{
    padding:90px 0;
}

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

.product-card{
    background:#fff;
    border:1px solid #e8edf4;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(15,23,42,.06);
    transition:.3s ease;
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(15,23,42,.10);
}

.product-card img{
    width:100%;
    height:250px;
    object-fit:contain;
    display:block;
    background:#fff;
    padding:20px;
    
}

.block-image{
    transform:scale(1.25);
}

.product-card h3{
    padding:24px 28px 14px;
    color:var(--primary);
}

.product-card p{
    padding:0 28px;
    line-height:1.8;
    color:#5b6472;

    min-height:120px;
}

.product-card h4{
    padding:24px 28px 14px;
    color:var(--dark);
    font-size:1rem;
}

.product-card ul{
    margin:0 28px 24px;
    padding:0;
    list-style:none;
}

.product-card li{
    position:relative;
    padding-left:22px;
    margin-bottom:10px;
    line-height:1.6;
    color:#5b6472;
}

.product-card li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:var(--primary);
    font-weight:700;
}

.product-card .btn{
    display:block;
    width:calc(100% - 48px);

    margin:24px;
    margin-top:auto;

    padding:14px 24px;

    text-align:center;

    color:#ffffff !important;
    background:var(--primary);

    text-decoration:none;
    font-weight:600;
}

/*======================================
  BULK PACKAGING
======================================*/

.bulk-packaging{
    padding:90px 0;
    background:#f8fafc;
}

.packaging-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:50px;
}

.packaging-item{
    background:#fff;
    padding:25px;
    border-radius:14px;
    border:1px solid #e8edf4;
    font-weight:600;
    box-shadow:0 8px 25px rgba(15,23,42,.05);
}


/*======================================
  QUALITY HIGHLIGHTS
======================================*/


.quality-highlights{
    padding:90px 0;
}

.quality-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:50px;
}

.quality-grid div{
    background:#fff;
    padding:24px;
    border-radius:14px;
    border:1px solid #e8edf4;
    text-align:center;
    font-weight:600;
    box-shadow:0 8px 25px rgba(15,23,42,.05);
}

/*======================================
  EXPORT MARKETS PAGE
======================================*/

.markets-page{
    padding:90px 0;
}

.markets-grid-page{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:50px;
}

.market-box{
    background:#fff;
    padding:30px 25px;
    border-radius:16px;
    border:1px solid #e8edf4;
    box-shadow:0 8px 25px rgba(15,23,42,.05);
    transition:.3s ease;
    text-align:center;
}

.market-box:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(15,23,42,.10);
}

.market-box h3{
    color:var(--primary);
    margin-bottom:14px;
    font-size:1.15rem;
}

.market-box p{
    color:#5b6472;
    line-height:1.7;
}

/*======================================
  MARKET BENEFITS
======================================*/

.market-benefits{
    padding:90px 0;
    background:#f8fafc;
}

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

.benefit-card{
    background:#fff;
    padding:35px;
    border-radius:16px;
    border:1px solid #e8edf4;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
    transition:.3s ease;
}

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

.benefit-card h3{
    color:var(--primary);
    margin-bottom:15px;
}

.benefit-card p{
    color:#5b6472;
    line-height:1.8;
}

/*======================================
  EXPORT SUPPORT
======================================*/

.export-support{
    padding:90px 0;
}

.support-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:50px;
}

.support-grid div{
    background:#fff;
    padding:26px;
    border-radius:14px;
    border:1px solid #e8edf4;
    text-align:center;
    font-weight:600;
    box-shadow:0 8px 25px rgba(15,23,42,.05);
    transition:.3s ease;
}

.support-grid div:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(15,23,42,.08);
}

/*======================================
  QUALITY PAGE
======================================*/

.quality-page{
    padding:60px 0 90px;
}

.quality-page-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:50px;
}

.quality-card{
    background:#fff;
    padding:35px;
    border-radius:16px;
    border:1px solid #e8edf4;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
    transition:.3s ease;
}

.quality-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(15,23,42,.10);
}

.quality-card h3{
    color:var(--primary);
    margin-bottom:16px;
}

.quality-card p{
    color:#5b6472;
    line-height:1.8;
}

/*======================================
  QUALITY STANDARDS
======================================*/

.quality-standards{
    padding:90px 0;
    background:#f8fafc;
}

.standards-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:50px;
}

.standards-grid div{
    background:#fff;
    padding:24px;
    border-radius:14px;
    border:1px solid #e8edf4;
    text-align:center;
    font-weight:600;
    box-shadow:0 8px 25px rgba(15,23,42,.05);
    transition:.3s ease;
}

.standards-grid div:hover{
    transform:translateY(-4px);
}

/*======================================
  BUYER TRUST
======================================*/

.buyer-trust{
    padding:60px 0 90px;
}

/*======================================
  CONTACT PAGE
======================================*/

.contact-page{
    padding:90px 0;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

.contact-card,
.contact-form-card{
    background:#fff;
    padding:40px;
    border-radius:16px;
    border:1px solid #e8edf4;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
}

.contact-card h2,
.contact-form-card h2{
    margin-bottom:15px;
    color:var(--primary);
}

.contact-card>p,
.contact-form-card>p{
    margin-bottom:30px;
    color:#5b6472;
}

.contact-item{
    margin-bottom:28px;
}

.contact-item h3{
    color:var(--dark);
    margin-bottom:8px;
}

.contact-item p{
    color:#5b6472;
    line-height:1.7;
}
.contact-form-card form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-form-card input,
.contact-form-card textarea{

    width:100%;
    padding:15px 18px;

    border:1px solid #d8dee8;
    border-radius:10px;

    font-size:1rem;
    font-family:inherit;

    transition:.25s;

}

.contact-form-card input:focus,
.contact-form-card textarea:focus{

    outline:none;
    border-color:var(--primary);

}

.contact-form-card textarea{

    resize:vertical;

}

.contact-form button{
    min-width:160px;
    padding:14px 30px;
    text-align:center;
}

/*======================================
  SIMPLE CTA
======================================*/

.cta{
    padding:40px 0 80px;
    text-align:center;
}

.cta h2{
    color:var(--primary);
    margin-bottom:20px;
}

.cta p{
    max-width:650px;
    margin:0 auto 35px;
    line-height:1.8;
    color:var(--muted);
}

/*======================================
  SECTION INTRO
======================================*/

.section-intro{
    border-left:4px solid var(--primary);
    padding-left:24px;
    max-width:850px;
    margin-bottom:50px;
}

.section-intro h2{
    margin:10px 0 15px;
}

.section-intro p{
    margin-bottom:0;
    line-height:1.8;
    color:var(--muted);
}