.hero-banner{
  background: rgb(153, 130, 119)!important;
    height:270px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}


.hero-overlay{
    width:100%;
    text-align:center;
}

.hero-content{
    color:#ffffff;
    animation:fadeUp 1.2s ease forwards;
    opacity:0;
	margin-top: 50px;
}

.hero-content h1{
    font-size:38px;
    font-weight:800;
    margin-bottom:12px;
    position:relative;
    display:inline-block;
}

.hero-content h1::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    margin:12px auto 0;
    background:linear-gradient(90deg,#FFD700,#f5c518);
    border-radius:5px;
}

.hero-content p{
    font-size:16px;
    margin-bottom:18px;
    letter-spacing:1px;
    opacity:0.9;
}

/* Breadcrumb */
.breadcrumb-box{
    font-size:14px;
}

.breadcrumb-box a{
    color:#ffffff;
    text-decoration:none;
    opacity:0.9;
}

.breadcrumb-box span{
    margin:0 6px;
    opacity:0.8;
}

/* Fade Animation */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
@media(max-width:992px){
    .hero-banner{
        min-height:300px;
    }

    .hero-content h1{
        font-size:32px;
    }

    .hero-content p{
        font-size:15px;
    }
}

@media(max-width:576px){
    .hero-banner{
        min-height:250px;
        padding:30px 15px;
    }

    .hero-content h1{
        font-size:24px;
    }

    .hero-content p{
        font-size:14px;
    }

    .breadcrumb-box{
        font-size:12px;
    }
}
/* Left Side */
.contact-right{
    background:linear-gradient(135deg,#f4f8f5,#e6f0ea);
    color:#174c2e;
    padding:70px 60px !important;
    display:flex;
    justify-content:center;
    align-items:center;
}

.contact-form-box{
    background:rgb(0, 0, 0);
    padding:60px !important;
}

.inquiry-title{
    font-size:40px;
    line-height:1.3;
}

.inquiry-subtext{
    font-size:18px;
    color:rgb(0, 64, 0) !important;
}

.contact-form-box .form-control{
    border-radius:10px;
    padding:12px;
    border:1px solid #e5e7eb;
    transition:0.3s ease;
}

.contact-form-box .form-control:focus{
    box-shadow:none;
    border-color:#2563eb;
}

.contact-form-box .btn-primary{
    background:black ;
    border:none;
    font-weight:600;
    padding:12px;
    border-radius:30px;
    transition:0.3s ease;
}

.contact-form-box .btn-primary:hover{
    background:#222;
    transform:scale(1.03);
}

/* Mobile Responsive */
@media(max-width:768px){

    .contact-right{
        padding:50px 25px !important;
        text-align:center;
    }

    .contact-form-box{
        padding:40px 25px !important;
    }

    .inquiry-title{
        font-size:28px;
    }

}

.export-banner{
    overflow: hidden;   
}

.export-banner img{
    width: 100%;
    height: 450px;         
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.export-banner img:hover{
    transform: scale(1.1);   
}

.export-section{
    background: #f3f3f3;
    text-align: center;
    padding: 70px 20px;
}

.export-section h2{
    font-size: 32px;
    font-weight: 500;
    color: #222;
    margin-bottom: 20px;
}

.export-section p{
    max-width: 800px;
    margin: 0 auto 15px;
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.export-buttons{
    margin-top: 30px;
}

.export-buttons a{
    text-decoration: none;
    padding: 14px 28px;
    margin: 10px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary{
    background: #1f5f2e;
    color: #fff;
}

.btn-secondary{
    background: #2e7d32;
    color: #fff;
}

.export-buttons a:hover{
    transform: translateY(-2px);
    opacity: 0.9;
}

.global-export-marquee{
    padding: 70px 0;
    background: #f7f7f7;
    text-align: center;
}

.global-export-marquee h2{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.marquee-wrapper{
    overflow: hidden;
    position: relative;
}

.marquee-track{
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollMarquee 18s linear infinite;
}

.country-card{
    min-width: 220px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.country-card img{
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 12px;
}

.country-card h4{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.country-card p{
    font-size: 14px;
    color: #666;
}

.country-card:hover{
    transform: translateY(-5px);
}

@keyframes scrollMarquee{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-50%);
    }
}
.product-marquee{
    padding: 70px 0;
    background: #ffffff;
    text-align: center;
}

.product-marquee h2{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.marquee-wrapper{
    overflow: hidden;
}
.section-title{
    font-size:42px;          
    font-weight:800;         
    color:#174c2e;           
    text-align:center;
    margin-bottom:20px;
    position:relative;
    display:inline-block;
}


.section-title::after{
    content:"";
    display:block;
    width:80px;
    height:4px;
    margin:12px auto 0;
    background:linear-gradient(90deg,#FFD700,#f5c518); 
    border-radius:4px;
}
.marquee-track{
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollProducts 20s linear infinite;
}

.product-card{
    min-width: 220px;
    background: #f8f8f8;
    border-radius: 12px;
    padding: 20px;
    transition: 0.3s;
}

.product-card img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.product-card h4{
    font-size: 18px;
    font-weight: 600;
}
.product-card{
    text-decoration:none;
    color:inherit;
}
.product-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

@keyframes scrollProducts{
    from{ transform: translateX(0); }
    to{ transform: translateX(-50%); }
}
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: transform 0.2s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    text-decoration: none;
    color: white;
}

.whatsapp-btn i {
    font-size: 22px;
}

.export-heading {
    font-size: 40px;
    color: #2E8B57;
    font-weight: 900;
    position: relative;
    margin-bottom: 10px;
    text-align: center;
}

.export-heading::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    margin: 16px auto 0;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 5px;
}
