:root {
    --primary-gold: #D4AF37;
    --deep-green: #004d40;
    --soft-white: #f8fbf8;
    --glass: rgba(255, 255, 255, 0.9);
}
body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    background-color: var(--soft-white);
    color: #2d3436;
}
/* --- Top Bar --- */
.top-info {
    background: var(--deep-green);
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    padding: 10px 0;
}
/* --- Floating Navigation --- */
.navbar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 0;
    background: var(--glass);
    backdrop-filter: blur(15px);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.nav-link {
    font-weight: 600;
    color: var(--deep-green) !important;
    margin: 0 15px;
    position: relative;
}
.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: 0.3s;
    transform: translateX(-50%);
}
.nav-link:hover::before { width: 80%; }
/* --- Hero Section (Modern Layered) --- */

@media (max-width: 991px) {
    .navbar-collapse {
        /* This makes it behave like a modal overlay */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 50vh;
        background: rgba(255, 255, 255, 0.98); /* Solid glass background */
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1050;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        
        /* Start state for animation */
        opacity: 0;
        transform: translateY(-20px);
        visibility: hidden;
    }

    /* When the menu is actually open */
    .navbar-collapse.show {
        opacity: 1 !important;
        transform: translateY(0) !important;
        visibility: visible !important;
        display: flex !important;
    }

    /* Menu Items Styling in Modal */
    .navbar-nav {
        width: 100%;
        padding: 20px;
    }

    .nav-item {
        margin: 15px 0;
    }

    .nav-link {
        font-size: 1rem !important; /* Larger text for mobile modal */
        color: var(--deep-green) !important;
    }

    /* Close Button Logic */
    .navbar-toggler {
        position: relative;
        z-index: 1100; /* Above the modal */
    }
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #fff;
}

.social-link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #ddd;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.2s ease;
}

/* Smooth hover (minimal, modern) */
.social-link a:hover {
    transform: translateY(-2px);
}

/* Brand colors */
.social-link a[href*="linkedin"]:hover { color: #0A66C2; }
.social-link a[href*="facebook"]:hover { color: #1877F2; }
.social-link a[href*="instagram"]:hover { color: #E4405F; }
.social-link a[href*="wa.me"]:hover { color: #25D366; }
.social-link a[href*="youtube"]:hover { color: #FF0000; }
.social-link a[href*="x.com"]:hover { color: #000000; }

/* .hero {
    position: relative;
    min-height: 85vh;
    background: linear-gradient(45deg, rgba(0,77,64,0.9), rgba(0,0,0,0.3)), url('your-uploaded-image.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-bottom: -50px;
    z-index: 1;
}
.hero-title { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; } */

.hero {
    position: relative;
    height: 80vh;
    background: url('../img/banner.jpg') top/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: -50px;
    z-index: 1;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,40,80,0.7), rgba(0,0,0,0.7));
    top: 0;
    left: 0;
}

/* Content */
.hero-content {
    position: relative;
    max-width: 1000px;
    z-index: 2;
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 26px;
    color: #f4c542;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hero h2 span {
    width: 60px;
    height: 2px;
    background: #f4c542;
}

.hero p {
    margin: 15px 0 25px;
    font-size: 18px;
    color: #ddd;
}

/* Product strip */
.product-strip {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.product-strip img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border: 3px solid #d4a84f;
    border-radius: 6px;
    transition: transform 0.3s;
}

.product-strip img:hover {
    transform: scale(1.05);
}

/* Features row */
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #c8f7c5;
}

.features i {
    color: #4cd964;
    font-size: 18px;
}

/* CTA button */
.cta-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 28px;
    background: #3aa655;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #2e8b45;
}

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
    .hero {
        height: auto;
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero h2 {
        font-size: 22px;
    }

    .hero p {
        font-size: 16px;
    }

    .product-strip img {
        width: 120px;
        height: 80px;
    }

    .features {
        gap: 20px;
    }
}


/* Mobile (≤ 768px) */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero h2 {
        font-size: 18px;
        gap: 10px;
    }

    .hero h2 span {
        width: 40px;
    }

    .product-strip {
        flex-wrap: wrap;
        gap: 10px;
    }

    .product-strip img {
        width: 45%;
        height: 90px;
    }

    .features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .features span {
        font-size: 14px;
    }

    .cta-btn {
        font-size: 16px;
        padding: 10px 22px;
    }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }

    .hero h2 {
        font-size: 16px;
    }

    .hero p {
        font-size: 14px;
    }

    .product-strip img {
        width: 100%;
        height: 100px;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }
}

/* --- 4-Point Float Cards --- */
.stats-grid {
    position: relative;
    z-index: 2;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: 0.4s;
}

.stat-card:hover { transform: translateY(-15px); border-color: var(--primary-gold); }
.stat-icon { font-size: 3rem; color: var(--primary-gold); margin-bottom: 20px; }

/* --- Product Grid --- */
.product-box {
    background: white;
    border-radius: 30px;
    padding: 15px;
    transition: 0.5s;
    border: 1px solid transparent;
}
.product-box img { 
    border-radius: 20px; 
    height: 280px; 
    object-fit: cover; 
    width: 100%;
}
.product-box:hover {
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border-color: var(--primary-gold);
}

/* --- Footer --- */
.main-footer {
    background: #0a0a0a;
    color: #fff;
    border-radius: 50px 50px 0 0;
    padding: 80px 0 30px;
    margin-top: 100px;
    position: relative;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 20px;
}

.footer-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: 0.3s;
    display: block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.social-circle {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    transition: 0.3s;
}

.social-circle:hover {
    background: var(--primary-gold);
    color: #000;
    transform: translateY(-5px);
}

/* --- Floating Credits Button --- */
.floating-credits-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 2000;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    color: var(--deep-green);
}

.floating-credits-btn:hover {
    transform: scale(1.05);
    background: var(--primary-gold);
    color: #fff;
}

/* Modal for Credits */
.credits-modal .modal-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: none;
}

/* About */
/* --- Clean & Modern About Section --- */
.about-section {
    padding: 50px 0;
    background: #fff;
    overflow-x: hidden;
}

.about-img-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    /* This ensures a perfect square or portrait look on all devices */
    aspect-ratio: 1 / 1; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.about-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* A subtle gold overlay for the image */
.img-overlay-gold {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.2));
}

.about-text-content {
    padding-left: 40px;
}

.accent-line {
    width: 50px;
    height: 4px;
    background: var(--primary-gold);
    margin-bottom: 20px;
}

.value-pill {
    background: var(--soft-white);
    border-left: 4px solid var(--primary-gold);
    padding: 15px 20px;
    border-radius: 0 15px 15px 0;
    height: 100%;
    transition: 0.3s;
}

.value-pill:hover {
    background: #f0f4f0;
    transform: translateX(5px);
}

.value-pill2 {
    background: var(--soft-white);
    padding: 15px 20px;
    border-radius: 0 15px 15px 0;
    height: 100%;
    transition: 0.3s;
}

.value-pill2:hover {
    background: #f0f4f0;
    transform: translateX(5px);
}

/* --- MOBILE SPECIFIC FIXES --- */
@media (max-width: 991px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-text-content {
        padding-left: 0;
        margin-top: 40px;
        text-align: center;
    }

    .accent-line {
        margin: 0 auto 20px;
    }

    .about-img-container {
        max-width: 400px;
        margin: 0 auto;
        aspect-ratio: 4 / 3; /* Wider for mobile screens */
    }

    .value-pill {
        text-align: left;
        margin-bottom: 10px;
    }

    .value-pill2 {
        text-align: left;
        margin-bottom: 10px;
    }
    
    .btn-wrap {
        display: flex;
        justify-content: center;
    }
}

/* --- Premium Bento Grid Section --- */
.bento-section {
    padding: 50px 0;
    background: #ffffff;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 20px;
}

.bento-item {
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.bento-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Featured Large Card (Left side) */
.bento-main {
    grid-column: span 2;
    grid-row: span 2;
    background: var(--deep-green);
    color: white;
    justify-content: center;
}

/* Individual Fact Cards */
.bento-gold {
    grid-column: span 1;
    background: var(--primary-gold);
    color: white;
}

.bento-white {
    grid-column: span 1;
    background: #f8fbf8;
    border: 1px solid var(--primary-gold);
}

.bento-teal {
    grid-column: span 2;
    background: #e0f2f1;
    color: var(--deep-green);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.bento-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.bento-label {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 0.85rem;
    opacity: 0.8;
}

@media (max-width: 991px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .bento-main, .bento-gold, .bento-white, .bento-teal {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 200px;
    }
}

/* Why Choose Us */
.why-section {
    padding: 50px 0;
    background-color: #fcfdfc; /* Very light green tint */
}

.why-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 30px;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.why-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 77, 64, 0.1);
    border-color: var(--primary-gold);
}

/* Floating Icon Style */
.why-icon-wrap {
    width: 70px;
    height: 70px;
    background: var(--soft-white);
    color: var(--deep-green);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: 0.3s;
}

.why-card:hover .why-icon-wrap {
    background: var(--primary-gold);
    color: #fff;
    transform: rotate(-10deg);
}

.why-card h4 {
    color: var(--deep-green);
    font-weight: 700;
    margin-bottom: 15px;
    text-align: left;
}

.why-card p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    text-align: left;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 991px) {
    .why-section {
        padding: 60px 0;
    }
    .why-card {
        padding: 30px 20px;
        text-align: center;
    }
    .why-icon-wrap {
        margin: 0 auto 20px;
    }
}

/* --- Premium Glass Breadcrumb --- */
.breadcrumb-wrapper {
    background: linear-gradient(rgba(0, 77, 64, 0.05), rgba(0, 77, 64, 0.02));
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.breadcrumb-container {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    display: inline-flex;
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.breadcrumb {
    margin-bottom: 0;
    align-items: center;
}

/* Customizing the separator icon */
.breadcrumb-item + .breadcrumb-item::before {
    content: "\F285"; /* Bootstrap Icon Chevron Right */
    font-family: "bootstrap-icons";
    font-size: 0.7rem;
    color: var(--primary-gold);
    vertical-align: middle;
    padding-right: 15px;
}

.breadcrumb-item a {
    color: var(--deep-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item a:hover {
    color: var(--primary-gold);
    transform: translateY(-1px);
}

.breadcrumb-item.active {
    color: #6c757d;
    font-weight: 500;
    font-size: 0.9rem;
    padding-left: 10px;
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .breadcrumb-container {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

/* Contact */
/* --- Contact Page Specifics --- */
.contact-section {
    padding: 100px 0;
    background: #f8fbf8;
}

.contact-wrapper {
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.05);
}

/* Left Side: Form */
.form-side {
    padding: 60px;
}

.form-control {
    padding: 15px 20px;
    border-radius: 12px;
    border: 1.5px solid #eee;
    background: #fcfdfc;
    transition: 0.3s;
}

.form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
    background: #fff;
}

/* Right Side: Info Box */
.info-side {
    background: var(--deep-green);
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-item .icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.4rem;
}

.map-container {
    height: 400px;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    margin-top: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* --- MOBILE FIXES --- */
@media (max-width: 991px) {
    .form-side, .info-side {
        padding: 40px 25px;
    }
    .contact-wrapper {
        border-radius: 30px;
    }
}

/* Certification */
/* --- Certification Page Styling --- */
.cert-section {
    padding: 100px 0;
    background-color: #fcfdfc;
}

.cert-card {
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 77, 64, 0.1);
    border-color: var(--primary-gold);
}

.cert-img-wrapper {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.cert-img-wrapper img {
    width: auto;
    height: 100px;
    object-fit: cover;
    transition: 0.5s;
}

.cert-card:hover .cert-img-wrapper img {
    transform: scale(1.1);
}

/* Overlay effect on hover */
.cert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 77, 64, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.cert-card:hover .cert-overlay {
    opacity: 1;
}

.cert-overlay i {
    color: var(--primary-gold);
    font-size: 2rem;
}

/* Modal Customization */
.modal-content {
    border-radius: 25px;
    border: none;
    overflow: hidden;
}

.modal-header {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    background: var(--soft-white);
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 768px) {
    .cert-img-wrapper img {
        height: 100px;
    }
}

/* Export Countries */
#export-regions {
    overflow-x: hidden; /* Prevents horizontal scroll on small devices */
}

/* Card Styling */
.region-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%; /* Ensures all cards in a row are same height */
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hover Interaction */
.region-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 77, 64, 0.08) !important;
    border-bottom-color: var(--primary-gold) !important; /* Glow effect for the border */
}

/* Icon Animation */
.region-card i {
    transition: transform 0.5s ease;
    color: var(--deep-green) !important; /* Overriding text-success for brand consistency */
}

.region-card:hover i {
    transform: rotateY(180deg); /* Smooth 3D flip on hover */
}

.region-card h4 {
    color: var(--deep-green);
    margin-bottom: 15px;
}

/* --- Responsive Adjustments --- */

/* For Tablets (Portrait) */
@media (max-width: 991px) {
    .display-5 {
        font-size: 2.2rem; /* Scales down the large heading */
    }
    .region-card {
        padding: 30px 20px !important;
    }
}

/* For Mobile Phones */
@media (max-width: 767px) {
    #export-regions {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
    
    .display-5 {
        font-size: 1.8rem;
        margin-bottom: 30px !important;
    }

    .region-card {
        margin-bottom: 10px;
        border-radius: 20px !important; /* Slightly softer corners for mobile */
    }
    
    .region-card i {
        font-size: 3rem !important; /* Smaller icons for smaller screens */
    }
}

/* Float WhatsApp */
/* --- WhatsApp Floating Button --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Pulsing Effect */
.whatsapp-float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    color: #fff;
    background-color: #128c7e;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
        font-size: 25px;
    }
}