:root {
    --primary: #2D5A27;
    --secondary: #F4B41A;
    --white: #ffffff;
    --light: #F9F9F9;
    --text: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: var(--text);
}

/* HEADER */
/* HEADER */
.header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
}

/* LINKS */
.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    margin-top:15px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* BUTTON */
.nav-btn {
    background: #ffc107;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    color: #000;
}

/* ================= DROPDOWN ================= */
.dropdown {
    position: relative;
}

.drop-btn {
    cursor: pointer;
    font-weight: 500;
}

/* Dropdown hidden */
.dropdown-menu {
    position: absolute;
    top: 45px;
    left: 0;
    width: 220px;
    background: #fff;
    list-style: none;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
}

.dropdown-menu li {
    padding: 10px 20px;
}

.dropdown-menu li a {
    display: block;
    color: #333;
}

.dropdown-menu li a:hover {
    color: #ffc107;
}

/* ✅ DESKTOP HOVER */
@media(min-width: 901px){
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* ================= MOBILE ================= */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: #000;
    margin: 4px 0;
}

/* MOBILE */
@media(max-width: 900px){

    .menu-toggle {
        display: flex;
    }

    .nav-btn {
        display: none;
    }

    .nav-links {
        position: absolute;
        top: 68px;
        left: -100%;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        transition: 0.3s;
    }

    .nav-links.active {
        left: 0;
    }

    /* Dropdown mobile */
    .dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;

        opacity: 1;
        visibility: visible;
        transform: none;

        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

   .dropdown.active .dropdown-menu {
    max-height: 300px;
    width: 100px;
    left: 106px;
    position: relative;
    top: 10px;
}
}

/* DROPDOWN BASE */
.dropdown {
    position: relative;
    padding: 10px;
}

/* HIDE by default */
.dropdown-menu {
    position: absolute;
    top: 40px;
    left: 0;
    width: 200px;
    background: #fff;
    list-style: none;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

    display: none;   /* 🔥 IMPORTANT */
}

/* ================= DESKTOP ================= */
@media (min-width: 901px){
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 900px){

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
}

/* HERO */
.hero {
    background: linear-gradient(rgba(45,90,39,0.8), rgba(45,90,39,0.8)),
    url('https://images.unsplash.com/photo-1606788075761-46cbd0f0f5b9');
    background-size: cover;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

.btn {
    padding: 12px 22px;
    margin: 5px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
}

.btn-primary {
    background: var(--secondary);
    color: #000;
}

.btn-outline {
    border: 1px solid white;
    color: white;
}

/* slider */
.hero-slide {
    height: 90vh;
    /* background: linear-gradient(rgba(45,90,39,0.8), rgba(45,90,39,0.8)),
    url('./assets/images/grain.jpg') center/cover no-repeat; */
}

/* SLIDE 1 */
.carousel-item:nth-child(1) .hero-slide {
    background: 
    /* linear-gradient(rgba(45,90,39,0.8), rgba(45,90,39,0.8)), */
    url('./assets/images/grain.jpg') center/cover no-repeat;
}

/* SLIDE 2 */
.carousel-item:nth-child(2) .hero-slide {
    background: 
    /* linear-gradient(rgba(45,90,39,0.8), rgba(45,90,39,0.8)), */
    url('./assets/images/Nuts3.webp') center/cover no-repeat;
}

/* SLIDE 3 */
.carousel-item:nth-child(3) .hero-slide {
    background: 
    /* linear-gradient(rgba(45,90,39,0.8), rgba(45,90,39,0.8)), */
    url('./assets/images/Spices4.webp') center/cover no-repeat;
}

.content {
    background: rgba(255, 255, 255, 0.1); /* transparent */
    backdrop-filter: blur(10px); /* glass blur */
    -webkit-backdrop-filter: blur(10px); /* for Safari */

    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 20px;
    color: #fff;
}
.hero-slide h1 {
    font-size: 42px;
    font-weight: 600;
}

.hero-slide p {
    font-size: 18px;
    margin: 15px 0 25px;
}

.btn-warning {
    background: #F4B41A;
    border: none;
    color: #000;
}

/* MOBILE */
@media(max-width:768px){
    .hero-slide {
        height: 70vh;
        padding: 0 15px;
    }

    .hero-slide h1 {
        font-size: 26px;
    }

    .hero-slide p {
        font-size: 14px;
    }
}

/* SECTION */
.section {
    padding: 60px 8%;
    text-align: center;
}

.section h2 {
    margin-bottom: 30px;
    color: var(--primary);
}

/* PRODUCTS */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.card img {
    width: 100%;
    border-radius: 10px;
}

/* WHY US */
.why {
    background: var(--light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 20px;
}

/* PROCESS */
.process {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* CTA */
.cta {
    background: var(--primary);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 3px solid #f4b41a;
}

/* FOOTER */
.footer {
    background: #111;
    color: #ccc;
    text-align: center;
    padding: 20px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .hero h1 {
        font-size: 28px;
    }
}

/* About us */
/* ABOUT SECTION */
.about-section {
    padding: 70px 0;
    background: #F9F9F9;
}

.about-title {
    color: #2D5A27;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-text {
    color: #333;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* IMAGE GRID */
.about-images {
    position: relative;
    height: 400px;
}

.about-images img {
    position: absolute;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.img1 {
    width: 60%;
    height: 220px;
    top: 0;
    left: 0;
}

.img2 {
    width: 50%;
    height: 180px;
    bottom: 0;
    left: 10%;
}

.img3 {
    width: 45%;
    height: 200px;
    top: 80px;
    right: 0;
}

/* STATS */
.about-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.stat-box {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stat-box h3 {
    color: #F4B41A;
    margin-bottom: 5px;
}

/* MOBILE */
@media(max-width:768px){

    .about-images {
        height: auto;
        display: flex;
        gap: 10px;
    }

    .about-images img {
        position: static;
        width: 32%;
        height: 120px;
    }

    .about-stats {
        flex-direction: column;
    }
}

/* Product section */
/* SECTION */
.products-section {
    padding: 70px 0;

    background: 
        linear-gradient(rgba(45,90,39,0.08), rgba(45,90,39,0.08)),
        url('../images/icons-bg.png');
}

.section-header .sub-title {
    color: #F4B41A;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-header h2 {
    color: #2D5A27;
    font-weight: 600;
    margin-top: 10px;
}

/* CARD */
.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s;
}

/* OVERLAY */
.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 12px;
    background: rgba(255,255,255,0.9);
    text-align: center;
    transition: 0.3s;
}

.overlay h5 {
    margin: 0;
    font-weight: 600;
    color: #333;
}

/* HOVER EFFECT */
.product-card:hover img {
    transform: scale(1.1);
}

.product-card:hover .overlay {
    background: #2D5A27;
}

.product-card:hover .overlay h5 {
    color: #fff;
}

/* MOBILE */
@media(max-width:768px){
    .product-card img {
        height: 150px;
    }

    .overlay {
        padding: 8px;
    }

    .overlay h5 {
        font-size: 14px;
    }
}

/* why choose */
/* SECTION */
.why-chose {
    padding: 70px 0;
    background: #F9F9F9;
}

/* HEADER */
.why-chose-header span {
    color: #F4B41A;
    font-weight: 600;
    letter-spacing: 1px;
}

.why-chose-header h2 {
    color: #2D5A27;
    margin: 10px 0;
    font-weight: 600;
}

.why-chose-header p {
    color: #666;
    max-width: 600px;
    margin: auto;
}

/* CARD */
.why-chose-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.why-chose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* ICON */
.why-chose-card .icon {
    width: 60px;
    height: 60px;
    margin: auto;
    margin-bottom: 15px;
    background: rgba(45,90,39,0.1);
    color: #2D5A27;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    transition: 0.3s;
}

.why-chose-card:hover .icon {
    background: #2D5A27;
    color: #fff;
}

/* TEXT */
.why-chose-card h5 {
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.why-chose-card p {
    font-size: 14px;
    color: #666;
}

/* MOBILE */
@media(max-width:768px){
    .why-chose {
        padding: 50px 15px;
    }

    .why-chose-card {
        padding: 20px;
    }
}

/* Export css */
/* SECTION */
.export-process {
    padding: 70px 0;
    background: #fff;
}

/* HEADER */
.process-header span {
    color: #F4B41A;
    font-weight: 600;
}

.process-header h2 {
    color: #2D5A27;
    margin: 10px 0;
}

.process-header p {
    color: #666;
}

/* WRAPPER */
.process-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
}

/* LINE */
.process-wrapper::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #eee;
    z-index: 0;
}

/* STEP */
.process-step {
    width: 23%;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ICON */
.process-step .icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border: 3px solid #2D5A27;
    color: #2D5A27;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 22px;
    transition: 0.3s;
}

/* HOVER */
.process-step:hover .icon {
    background: #2D5A27;
    color: #fff;
}

/* TEXT */
.process-step h5 {
    margin-top: 15px;
    font-weight: 600;
}

.process-step p {
    font-size: 14px;
    color: #666;
}

/* MOBILE */
@media(max-width:768px){

    .process-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .process-wrapper::before {
        display: none;
    }

    .process-step {
        width: 100%;
    }
}

/* Blog Article */
/* SECTION */
.blog-section {
    padding: 70px 0;
    background: #F9F9F9;
}

/* HEADER */
.blog-header span {
    color: #F4B41A;
    font-weight: 600;
}

.blog-header h2 {
    color: #2D5A27;
    margin: 10px 0;
}

.blog-header p {
    color: #666;
}

/* CARD */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* IMAGE */
.blog-img {
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* DATE BADGE */
.blog-date {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #F4B41A;
    color: #000;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 5px;
}

/* CONTENT */
.blog-content {
    padding: 20px;
}

.blog-content h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 14px;
    color: #666;
}

.blog-content a {
    color: #2D5A27;
    font-weight: 500;
    text-decoration: none;
}

/* MOBILE */
@media(max-width:768px){
    .blog-img img {
        height: 180px;
    }
}

/* testmonial */
/* SECTION */
.testimonial-section {
    padding: 70px 0;
    background: #F9F9F9;
}

/* HEADER */
.testimonial-header span {
    color: #F4B41A;
    font-weight: 600;
}

.testimonial-header h2 {
    color: #2D5A27;
    margin: 10px 0;
}

.testimonial-header p {
    color: #666;
}

/* CARD */
.testimonial-card {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

/* TEXT */
.testimonial-card p {
    font-style: italic;
    color: #555;
}

/* CLIENT */
.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.client-info img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin-right: 10px;
}

/* STARS */
.stars {
    color: #F4B41A;
    margin-top: 10px;
}

/* MOBILE */
@media(max-width:768px){
    .testimonial-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
}

/* Footer */
/* FOOTER */
.footer {
    background: linear-gradient(135deg, #2D5A27, #244a20);
    color: #fff;
    padding-top: 60px;
}

/* TITLES */
.footer-title {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

/* TEXT */
.footer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #e5e5e5;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #F4B41A;
    padding-left: 5px;
}

/* CONTACT */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-contact i {
    color: #F4B41A;
    margin-right: 8px;
}

/* SOCIAL */
.social-icons a {
    display: inline-block;
    margin-right: 10px;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #F4B41A;
    color: #000;
    transform: translateY(-3px);
}

/* BOTTOM */
.footer-bottom {
    background: #1f3f1b;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
    text-align: -webkit-left;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
}

/* MOBILE */
@media(max-width:768px){
    .footer {
        text-align: center;
    }

    .social-icons {
        margin-top: 15px;
    }
}

/* EXPORT COUNTRIES */
.export-countries {
    margin-top: 40px;
    text-align: center;
}

/* FLAGS GRID */
.flags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

/* SINGLE FLAG */
.flag-item {
    text-align: center;
    transition: 0.3s;
}

.flag-item img {
    width: 40px;
    height: 28px;
    border-radius: 4px;
    display: block;
    margin: auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.flag-item span {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: #ddd;
}

/* HOVER */
.flag-item:hover {
    transform: translateY(-5px);
}

.flag-item:hover span {
    color: #F4B41A;
}

/* MOBILE */
@media(max-width:768px){
    .flags {
        gap: 15px;
    }
}

/* About page */
.why-choose {
    padding: 60px 20px;
    background: #f8f9fa;
    text-align: center;
}

.why-choose h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.why-choose p {
    color: #666;
    margin-bottom: 40px;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.choose-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.choose-card:hover {
    transform: translateY(-8px);
}

.choose-card img {
    width: 60px;
    margin-bottom: 15px;
}

.choose-card h4 {
    margin-bottom: 10px;
}

.choose-card p {
    font-size: 14px;
    color: #555;
}

/* SECTION */
/* ICON */
.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: rgba(255,255,255,0.1);
    border: 2px solid #F4B41A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #F4B41A;
    transition: 0.3s;
}

/* HOVER EFFECT */
.stat-box:hover .stat-icon {
    background: #F4B41A;
    color: #000;
    transform: translateY(-5px) scale(1.05);
}

/* NUMBER */
.stat-box h2 {
    font-size: 40px;
    font-weight: 700;
    color: #F4B41A;
}

/* TEXT */
.stat-box p {
    color: #000;
    font-size: 14px;
}
/* BREADCRUMB */
.breadcrumb-section {
    height: 250px;

    background: 
        linear-gradient(rgba(45,90,39,0.85), rgba(45,90,39,0.85)),
        url('./assets/images/global-logistics-transportation-network.avif') center/cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-align: center;
}

/* TITLE */
.breadcrumb-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* NAV */
.breadcrumb-nav {
    font-size: 14px;
}

.breadcrumb-nav a {
    color: #F4B41A;
    text-decoration: none;
    margin: 0 5px;
}

.breadcrumb-nav span {
    margin: 0 5px;
    color: #ddd;
}

.breadcrumb-nav .active {
    color: #fff;
}

/* HOVER */
.breadcrumb-nav a:hover {
    text-decoration: underline;
}

/* MOBILE */
@media(max-width:768px){

    .breadcrumb-section {
        height: 180px;
        padding: 20px;
    }

    .breadcrumb-title {
        font-size: 24px;
    }
}

/* Product page */
/* BREADCRUMB */
.breadcrumb-section {
    height: 220px;
    background: linear-gradient(rgba(45,90,39,0.85), rgba(45,90,39,0.85)),
    url('../images/breadcrumb.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.breadcrumb-title {
    font-size: 32px;
}

.breadcrumb-nav a {
    color: #F4B41A;
    text-decoration: none;
}

/* PRODUCT PAGE */
.product-page {
    padding: 70px 0;
    background: #f9f9f9;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.product-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-content {
    padding: 20px;
    text-align: center;
}

.product-content h5 {
    color: #2D5A27;
    margin-bottom: 8px;
}

.product-content p {
    font-size: 14px;
    color: #666;
}

.product-btns {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* ab */
.why-choose {
    padding: 60px 20px;
    background: #f8f9fa;
    text-align: center;
}

.why-choose h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.why-choose p {
    color: #666;
    margin-bottom: 40px;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.choose-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.choose-card:hover {
    transform: translateY(-8px);
}

.choose-card img {
    width: 60px;
    margin-bottom: 15px;
}

.choose-card h4 {
    margin-bottom: 10px;
}

.choose-card p {
    font-size: 14px;
    color: #555;
}

/* SECTION */
/* ICON */
.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: rgba(255,255,255,0.1);
    border: 2px solid #F4B41A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #F4B41A;
    transition: 0.3s;
}

/* HOVER EFFECT */
.stat-box:hover .stat-icon {
    background: #F4B41A;
    color: #000;
    transform: translateY(-5px) scale(1.05);
}

/* NUMBER */
.stat-box h2 {
    font-size: 40px;
    font-weight: 700;
    color: #F4B41A;
}

/* TEXT */
.stat-box p {
    color: #000;
    font-size: 14px;
}
/* BREADCRUMB */
.breadcrumb-section {
    height: 250px;

    background: 
        linear-gradient(rgba(45,90,39,0.85), rgba(45,90,39,0.85)),
        url('./assets/images/global-logistics-transportation-network.avif') center/cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-align: center;
}

/* TITLE */
.breadcrumb-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* NAV */
.breadcrumb-nav {
    font-size: 14px;
}

.breadcrumb-nav a {
    color: #F4B41A;
    text-decoration: none;
    margin: 0 5px;
}

.breadcrumb-nav span {
    margin: 0 5px;
    color: #ddd;
}

.breadcrumb-nav .active {
    color: #fff;
}

/* HOVER */
.breadcrumb-nav a:hover {
    text-decoration: underline;
}

/* MOBILE */
@media(max-width:768px){

    .breadcrumb-section {
        height: 180px;
        padding: 20px;
    }

    .breadcrumb-title {
        font-size: 24px;
    }
}

/* product detail */
.product-detail {
    padding: 70px 0;
}

.product-image img {
    width: 100%;
    border-radius: 10px;
}

.product-desc {
    color: #555;
    margin: 15px 0;
}

.product-highlights {
    list-style: none;
    padding: 0;
}

.product-highlights li {
    margin-bottom: 8px;
}

.product-info p {
    margin: 5px 0;
}

.product-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

/* TABLE */
.product-specs {
    padding: 50px 0;
    background: #f9f9f9;
}

/* BENEFITS */
.product-benefits {
    padding: 60px 0;
}

.benefit-box {
    padding: 20px;
}

.benefit-box i {
    font-size: 30px;
    color: #F4B41A;
}

/* Global precence */
.global-map {
    padding: 70px 0;
    background: #fff;
}

.map-img {
    max-width: 700px;
    margin: 20px 0;
}

.countries span {
    margin: 5px;
    padding: 6px 12px;
    background: #2D5A27;
    color: #fff;
    border-radius: 20px;
    display: inline-block;
}

/* export packing */
/* SECTION */
.packaging {
    padding: 70px 0;
    background: #fff;
}

/* TEXT */
.pack-desc {
    color: #555;
    margin: 15px 0;
    line-height: 1.7;
}

/* LIST */
.pack-list {
    list-style: none;
    padding: 0;
}

.pack-list li {
    margin-bottom: 10px;
    font-size: 15px;
}

/* INFO */
.pack-info p {
    margin: 5px 0;
    font-weight: 500;
}

/* certificate */
/* SECTION */
.certifications {
    padding: 60px 0;
    background: #f9f9f9;
}

/* CARD */
.cert-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.cert-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.cert-card img {
    max-width: 80px;
    margin-bottom: 10px;
}

/* TEXT */
.cert-card p {
    font-size: 14px;
    color: #333;
}

/* Contact us page */
/* CONTACT PAGE */
.contact-page {
    padding: 70px 0;
    background: #F9F9F9;
}

.contact-heading span {
    color: #F4B41A;
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-heading h2 {
    color: #2D5A27;
    font-weight: 700;
    margin: 10px 0;
}

.contact-heading p {
    color: #666;
    max-width: 650px;
    margin: 0 auto 40px;
}

/* INFO BOX */
.contact-info-box {
    height: 100%;
    background: linear-gradient(135deg, #2D5A27, #244a20);
    color: #fff;
    padding: 35px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}

.contact-info-box::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -60px;
    bottom: -60px;
    background: rgba(244,180,26,0.18);
    border-radius: 50%;
}

.contact-info-box h3 {
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-small-text {
    color: #e6e6e6;
    margin-bottom: 25px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.contact-info-item i {
    min-width: 44px;
    height: 44px;
    background: #F4B41A;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-item h6 {
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-info-item p {
    margin: 0;
    color: #e6e6e6;
    font-size: 14px;
}

/* SOCIAL */
.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    position: relative;
    z-index: 1;
}

.contact-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.contact-social a:hover {
    background: #F4B41A;
    color: #000;
    transform: translateY(-4px);
}

/* FORM */
.contact-form-box {
    height: 100%;
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

.contact-form-box h3 {
    color: #2D5A27;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-form-box .form-control {
    border: 1px solid #ddd;
    padding: 13px 15px;
    border-radius: 10px;
    font-size: 14px;
}

.contact-form-box .form-control:focus {
    border-color: #2D5A27;
    box-shadow: 0 0 0 4px rgba(45,90,39,0.08);
}

.contact-submit-btn {
    width: 100%;
    border: none;
    background: #F4B41A;
    color: #111;
    padding: 13px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.contact-submit-btn:hover {
    background: #2D5A27;
    color: #fff;
}

/* MAP */
.contact-map iframe {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
}

/* MOBILE */
@media(max-width:768px) {
    .contact-page {
        padding: 50px 12px;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 25px;
        border-radius: 14px;
    }

    .contact-heading h2 {
        font-size: 25px;
    }

    .contact-info-item {
        align-items: flex-start;
    }

    .contact-social {
        justify-content: center;
    }

    .contact-map iframe {
        height: 280px;
    }
}

/* export page */
/* EXPORT PROCESS PAGE */
.export-process-page {
    padding: 70px 0;
    background: #F9F9F9;
}

.process-page-heading span,
.documents-content span {
    color: #F4B41A;
    font-weight: 700;
    letter-spacing: 1px;
}

.process-page-heading h2,
.documents-content h2 {
    color: #2D5A27;
    font-weight: 700;
    margin: 10px 0;
}

.process-page-heading p {
    max-width: 720px;
    margin: 0 auto 45px;
    color: #666;
}

/* TIMELINE */
.process-timeline {
    position: relative;
    max-width: 950px;
    margin: auto;
}

.process-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: rgba(45,90,39,0.18);
    transform: translateX(-50%);
}

.process-item {
    position: relative;
    width: 50%;
    padding: 0 45px 35px;
}

.process-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.process-item:nth-child(even) {
    left: 50%;
}

.process-number {
    color: #F4B41A;
    font-size: 36px;
    font-weight: 800;
    opacity: 0.35;
    margin-bottom: 8px;
}

.process-icon {
    position: absolute;
    top: 5px;
    width: 55px;
    height: 55px;
    background: #2D5A27;
    color: #fff;
    border: 4px solid #F4B41A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-item:nth-child(odd) .process-icon {
    right: -27px;
}

.process-item:nth-child(even) .process-icon {
    left: -27px;
}

.process-content {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.process-content:hover {
    transform: translateY(-6px);
}

.process-content h4 {
    color: #2D5A27;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-content p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.7;
}

/* DOCUMENTS */
.export-documents {
    padding: 70px 0;
    background: #fff;
}

.documents-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.10);
}

.documents-content p {
    color: #666;
    line-height: 1.7;
}

.document-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.document-box {
    background: #F9F9F9;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    color: #333;
    border-left: 4px solid #F4B41A;
}

.document-box i {
    color: #2D5A27;
    margin-right: 8px;
}

/* CTA */
.export-process-cta {
    padding: 65px 0;
    background: linear-gradient(rgba(45,90,39,0.94), rgba(45,90,39,0.94)),
    url('./assets/images/grain.jpg') center/cover no-repeat;
    color: #fff;
}

.export-process-cta h2 {
    font-weight: 700;
}

.export-process-cta p {
    max-width: 680px;
    margin: 10px auto 25px;
    color: #eee;
}

.process-btn {
    background: #F4B41A;
    color: #111;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    margin: 5px;
}

.process-btn:hover {
    background: #fff;
    color: #2D5A27;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    margin: 5px;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    color: #fff;
}

/* MOBILE */
@media(max-width:768px) {
    .export-process-page,
    .export-documents {
        padding: 50px 12px;
    }

    .process-page-heading h2,
    .documents-content h2 {
        font-size: 25px;
    }

    .process-timeline::before {
        left: 28px;
    }

    .process-item,
    .process-item:nth-child(even),
    .process-item:nth-child(odd) {
        width: 100%;
        left: 0;
        text-align: left;
        padding: 0 0 30px 75px;
    }

    .process-item:nth-child(odd) .process-icon,
    .process-item:nth-child(even) .process-icon {
        left: 0;
        right: auto;
    }

    .process-number {
        font-size: 28px;
    }

    .process-content {
        padding: 20px;
    }

    .document-grid {
        grid-template-columns: 1fr;
    }

    .export-process-cta {
        padding: 50px 15px;
    }
}

/* back to top */
#backToTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: #2D5A27;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

#backToTop:hover {
    background: #F4B41A;
    color: #000;
    transform: translateY(-5px);
}