/* css/style.css */
/* Base Styles */
:root {
    --primary-color: #0f5828;
    --secondary-color: #f26321;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --white: #fff;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    padding-top: 80px; /* For fixed header */
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: #13451b;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.btn-secondary:hover {
    background-color: #c6954a;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title p {
    font-size: 18px;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 16px;
    color: var(--dark-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
    padding-bottom: 10px;
}
.top-header {
    background-color:var(--secondary-color);
    color: #ffffff;
    font-size: 14px;
    padding: 8px 0;
}

.top-header .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.top-header .right span {
    margin-left: 10px;
}

.top-header .divider {
    margin: 0 8px;
    color: #aaa;
}

.language-select {
    background: #ffffff;
    border: none;
    padding: 4px 6px;
    font-size: 13px;
    border-radius: 3px;
    cursor: pointer;
}


/* Hero Section Improvements */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 200px 25px 150px;
    margin-top: -120px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 95, 35, 0.85) 0%, 
        rgba(26, 95, 35, 0.7) 50%, 
        rgba(26, 95, 35, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: textReveal 1.2s ease-out;
}

.hero-headline .highlight-text {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.hero-headline .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(212, 165, 94, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.hero-headline .trust-text {
    color: var(--white);
    background: linear-gradient(90deg, 
        var(--secondary-color) 0%, 
        #e8c170 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    opacity: 0.95;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Enhanced Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e8c170 100%);
    color: var(--dark-color);
    border: none;
    padding: 16px 35px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(212, 165, 94, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 165, 94, 0.6);
    color: var(--dark-color);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
    padding: 16px 35px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-icon i {
    transition: transform 0.3s ease;
}

.btn-icon:hover i {
    transform: translateX(5px);
}

/* Hero Stats Section */
.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px auto 60px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    max-width: 800px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 140px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-family: 'Arial', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Indicator */
.scroll-indicator {
    margin-top: 40px;
    animation: bounce 2s infinite;
}

.scroll-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.scroll-link:hover {
    color: var(--secondary-color);
}

.scroll-link i {
    margin-top: 10px;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.floating-item {
    position: absolute;
    border-radius: 50%;
    animation: float 20s infinite linear;
}

.floating-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 10%;
    animation-delay: -5s;
    animation-duration: 25s;
}

.floating-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 80%;
    animation-delay: -10s;
    animation-duration: 30s;
}

/* Animations */
@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(0, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-30px, 50px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        padding: 180px 20px 100px;
        background-attachment: scroll;
        
    }
    
    .hero-headline {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        gap: 20px;
        padding: 20px;
    }
    
    .stat-item {
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        
        padding: 150px 10px 80px;
    }
    
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary, .btn-outline {
        width: 100%;
        max-width: 300px;
        padding: 14px 25px;
    }
    
    .hero-stats {
        gap: 20px;
        padding: 15px;
    }
    
    .stat-item {
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .floating-1, .floating-2, .floating-3 {
        display: none;
    }
    .top-header .right span{
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-item {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* Business Divisions */
.divisions {
    padding: 100px 20px;
    background-color: var(--light-color);
}

.division-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.division-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.division-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.division-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.spices-image {
    background-image: url("public/images/spices.jpg");
}

.garments-image {
    background-image: url("public/images/babydi.jpg");
}

.division-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}



.division-content {
    padding: 30px;
}

.division-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.division-content p {
    color: var(--gray-color);
    margin-bottom: 25px;
}

/* About Section */
.about {
    padding: 100px 20px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 17px;
    color: var(--gray-color);
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 8px;
    text-align: center;
}

.feature i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

/* Product Card with Overlay Details */
.product-card {
    position: relative;
    overflow: hidden;
}

.product-img-container {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.product-img {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.4s ease;
}

/* Product Details Overlay */
.product-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: white;
    padding: 25px 20px 15px;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    z-index: 2;
}

/* Hover Effects */
.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-card:hover .product-details {
    transform: translateY(0);
    opacity: 1;
}

/* Product Details Text Styling */
.product-details p {
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
}

.product-details p:last-child {
    margin-bottom: 0;
}

.product-details strong {
    color: #fff;
    font-weight: 600;
    display: inline-block;
    min-width: 60px;
    font-size: 0.9rem;
}

/* Optional: Add a subtle overlay on image when hovering */
.product-img-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(229, 62, 62, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover .product-img-container::after {
    opacity: 1;
}

/* Alternative Design: Fade-in Overlay */
.product-card.alternative .product-details {
    background: rgba(229, 62, 62, 0.95);
    transform: translateY(0);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card.alternative:hover .product-details {
    opacity: 1;
}

/* Second Alternative: Slide from bottom with icon */
.product-details.slide-up {
    background: rgba(26, 54, 93, 0.95);
    padding: 20px;
    transform: translateY(100%);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.product-details.slide-up::before {
    content: '⏷';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
}

/* Third Alternative: Corner badge style */
.product-details.corner-style {
    background: rgba(255, 255, 255, 0.95);
    color: #1a365d;
    padding: 15px;
    width: 80%;
    left: 10%;
    bottom: 10%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(20px) scale(0.9);
    opacity: 0;
}

.product-card:hover .product-details.corner-style {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.product-details.corner-style strong {
    color: #e53e3e;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-details {
        padding: 20px 15px 10px;
    }
    
    .product-details p {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
}

/* Ensure proper stacking */
.product-card {
    z-index: 1;
}

.product-card:hover {
    z-index: 10;
}

/* Animation delay for list items */
.product-details p {
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
}

.product-details p:nth-child(2) {
    transition-delay: 0.2s;
}

.product-details p:nth-child(3) {
    transition-delay: 0.3s;
}

.product-card:hover .product-details p {
    transform: translateY(0);
    opacity: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h1:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: #e53e3e;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 700px;
    margin: 25px auto 0;
}

/* Product Tabs */
.product-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 15px;
}

.tab-btn {
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn:hover {
    background: #edf2f7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tab-btn.active {
    background: var(--secondary-color);
    color: white;
    border-color: #e53e3e;
    box-shadow: 0 5px 15px rgba(229, 62, 62, 0.2);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.other-detail-section{
    
    text-align: center;
}
.other-detail-section h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}


.other-detail-section p {
    margin-bottom: 15px;
    color: var(--gray-color);
}
.product-grid-other {
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}
.other-product-info {
    position: relative;
    opacity: 1;
    display: block;
    color: #333;
    margin-bottom: 50px;
}

/* Product Grid - 5 cards per row */
.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h4 {
    font-size: 1.4rem;
    color: #1a365d;
    margin-bottom: 10px;
    font-weight: 700;
}

.product-info > p {
    color: #4a5568;
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-info strong {
    color: #2d3748;
}

/* Division Footer */
.division-footer {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
}

.division-footer p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background:var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #e53e3e;
}

.btn:hover {
    background: var(--secondary-color);
    border-color: #c53030;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(229, 62, 62, 0.3);
}

/* Category Badge */
.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgb(242 99 33);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.product-img-container {
    position: relative;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .section-header h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header h1 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .tab-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .product-img {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .products {
        padding: 50px 0;
    }
    
    .section-header h1 {
        font-size: 1.8rem;
    }
    
    .tab-btn {
        width: 100%;
        justify-content: center;
    }
    
    .product-tabs {
        width: 100%;
    }
}

/* Alternative Horizontal Scroll Layout for Medium Screens */
.horizontal-scroll-container {
    display: none;
    overflow-x: auto;
    padding-bottom: 20px;
    margin-bottom: 40px;
    scrollbar-width: thin;
    scrollbar-color: #e53e3e #f1f1f1;
}

.horizontal-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.horizontal-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.horizontal-scroll-container::-webkit-scrollbar-thumb {
    background: #e53e3e;
    border-radius: 10px;
}

.horizontal-scroll-wrapper {
    display: flex;
    gap: 25px;
    padding: 10px 5px;
    width: max-content;
}

.horizontal-card {
    flex: 0 0 280px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.horizontal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.horizontal-card .product-img {
    height: 200px;
}

/* Layout Selector */
.layout-selector {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.layout-btn {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 10px;
    color: #4a5568;
    transition: all 0.3s ease;
}

.layout-btn:hover {
    background: #edf2f7;
}

.layout-btn.active {
    background: ;
    color: var(--secondary-color);
    border-color: #e53e3e;
}

/* Show horizontal layout on medium screens */
@media (max-width: 1200px) {
    .horizontal-scroll-container {
        display: block;
    }
    
    /* Hide the grid on medium screens and show horizontal scroll */
    .product-grid {
        display: none;
    }
}

@media (max-width: 768px) {
    .horizontal-card {
        flex: 0 0 260px;
    }
}
/* Division Details */
.division-details {
    padding: 100px 20px;
}

.detail-section {
    margin-bottom: 60px;
}

.detail-section h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.detail-section p {
    margin-bottom: 15px;
    color: var(--gray-color);
}

.detail-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.detail-feature {
    padding: 25px;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.detail-feature h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Quality Section */
.quality {
    padding: 100px 20px;
}

.quality-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.quality-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.quality-step:hover {
    transform: translateY(-5px);
}

.quality-step i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.quality-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Export Process */
.process {
    padding: 100px 20px;
    background-color: var(--light-color);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    margin-top: 50px;
}

.process-steps:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 100px 20px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-detail i {
    font-size: 22px;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
}

footer {
    background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
    color: #fff;
    padding: 60px 0 20px;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #f39c12, #2ecc71);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    flex-basis: 350px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.footer-logo h2 span {
    color:var(--secondary-color);
    font-weight: 800;
}

.footer-logo h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 3px;
    background-color: #e74c3c;
    border-radius: 2px;
}

.footer-logo p {
    line-height: 1.7;
    color: #bdc3c7;
    margin-top: 20px;
    max-width: 320px;
}

.footer-links h3, .footer-contact h3, .footer-newsletter h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after, .footer-newsletter h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #2ecc71;
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: #f39c12;
    padding-left: 8px;
}

.footer-links a::before {
    content: '→';
    margin-right: 8px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    color: #e74c3c;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 12px;
    margin-top: 3px;
    font-size: 1.1rem;
    min-width: 20px;
}

.footer-newsletter {
    flex-basis: 300px;
}

.newsletter-text {
    color: #bdc3c7;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 14px 18px;
    border: none;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: #95a5a6;
}

.newsletter-form button {
    background: linear-gradient(to right, #e74c3c, #f39c12);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: linear-gradient(to right, #c0392b, #e67e22);
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #e74c3c;
    transform: translateY(-5px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    color: #95a5a6;
    font-size: 0.95rem;
}

.copyright p {
    margin-bottom: 10px;
}

.footer-badge {
    display: inline-block;
    background-color: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 5px;
}

.footer-badge i {
    margin-right: 5px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .footer-content {
        gap: 30px;
    }
    
    .footer-section {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-logo, .footer-newsletter {
        flex-basis: 100%;
    }
    
    .newsletter-form input {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-logo h2 {
        font-size: 1.8rem;
    }
    /* .spices-image img{
        width:270px ;
        height: 250px;
    }
    
    .garments-image img{
        width:270px ;
        height: 250px;
    } */
}
@media (min-width: 320px){
    /* .spices-image img{
        width:270px ;
        height: 250px;
    }
    
    .garments-image img{
        width:270px ;
        height: 250px;
    } */
} 
@media(max-width: 768px){
    /* .spices-image img{
        width:330px ;
        height: 250px;
    }
    
    .garments-image img{
        width:330px ;
        height: 250px;
    } */
}

.code-link {
    display: block;
    text-align: center;
    margin-top: 30px;
    color: #2c3e50;
    font-size: 0.9rem;
}

.code-link a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
}

.code-link a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 40px;
        margin-top: 30px;
    }



    
    
    .nav-links {
        display: none;
        position: absolute;
        top: 110px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .process-steps:before {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 150px 20px 80px;
    }
    
    .hero h1 {
        font-size: 32px;
        margin-top: 30px;

    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .division-card {
        min-width: 100%;
    }

    .spices-image img{
width: 500px;
height: 200px;
    }
    .garments-image img{
        width: 500px;
        height: 250px;
            }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
        margin-top: 30px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
}
