/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}



.contact-info span,
.phone-info span {
    margin-right: 20px;
    display: inline-block;
}

.contact-info span i,
.phone-info span i {
    margin-right: 5px;
    color: #4CAF50;
}



.navbar-brand .logo {
    height: 50px;
    width: auto;
}




.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.navbar-nav .dropdown-item {
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.navbar-nav .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #2c5530;
}

/* Banner Slider Section */
.banner-slider {
    margin-top: 100px;
    position: relative;
    height: 80vh;
    min-height: 600px;
}

.banner-slider .carousel {
    height: 100%;
}

.banner-slider .carousel-inner {
    height: 100%;
}

.banner-slider .carousel-item {
    height: 100%;
    position: relative;
}

.slider-content {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.slider-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Carousel Indicators */
.banner-slider .carousel-indicators {
    bottom: 30px;
    z-index: 10;
}

.banner-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    margin: 0 8px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.banner-slider .carousel-indicators button.active {
    background: #fff;
    opacity: 1;
    transform: scale(1.2);
}

/* Carousel Controls */
.banner-slider .carousel-control-prev,
.banner-slider .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44, 85, 48, 0.8);
    border-radius: 50%;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.banner-slider .carousel-control-prev {
    left: 30px;
}

.banner-slider .carousel-control-next {
    right: 30px;
}

.banner-slider .carousel-control-prev:hover,
.banner-slider .carousel-control-next:hover {
    background: rgba(44, 85, 48, 1);
    transform: translateY(-50%) scale(1.1);
}

.banner-slider .carousel-control-prev-icon,
.banner-slider .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}


/* Carousel Transition Effects */
.banner-slider .carousel-item {
    transition: transform 0.8s ease-in-out;
}

.banner-slider .carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: 0.6s;
    transition-property: opacity;
}

.banner-slider .carousel-fade .carousel-item.active,
.banner-slider .carousel-fade .carousel-item-next.carousel-item-start,
.banner-slider .carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.banner-slider .carousel-fade .active.carousel-item-start,
.banner-slider .carousel-fade .active.carousel-item-end {
    opacity: 0;
}

/* Image Loading Animation */
.slider-content img {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.slider-content img.loading {
    opacity: 0.7;
}

/* Logo Carousel Section */
.logo-carousel-section {
    padding: 10px 0;
    background: #fff;
}

.logo-carousel-section .carousel {
    background: transparent;
    padding: 20px 0;
}

.logo-slide {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0;
}

.logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s ease;

}


.logo-item img {
    max-height: 200px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}


/* Logo Carousel Controls */
.logo-carousel-section .carousel-control-prev,
.logo-carousel-section .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(62, 60, 110, 0.8);
    border-radius: 50%;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.logo-carousel-section .carousel-control-prev {
    left: 20px;
}

.logo-carousel-section .carousel-control-next {
    right: 20px;
}

.logo-carousel-section .carousel-control-prev:hover,
.logo-carousel-section .carousel-control-next:hover {
    background: rgba(62, 60, 110, 1);
    transform: translateY(-50%) scale(1.1);
}

.logo-carousel-section .carousel-control-prev-icon,
.logo-carousel-section .carousel-control-next-icon {
    width: 18px;
    height: 18px;
}


/* Company Info & News Section */
.company-info-news-section {
    padding: 80px 0;
    background: #fff;
}



.company-info-content h2 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.company-info-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.company-info-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.read-more-link {
    color: #3e3c6e;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #2c5530;
    text-decoration: none;
}

/* Gulfood Image Container */
.gulfood-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gulfood-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gulfood-image-container:hover .gulfood-image {
    transform: scale(1.05);
}

.contact-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px 20px 20px;
    text-align: center;
}

/* Contact Button */
.contact-export-team-btn {
    background: #dc3545;
    color: #fff;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    line-height: 1.2;
}

.contact-export-team-btn:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.btn-line1 {
    display: block;
    margin-bottom: 2px;
}

.btn-line2 {
    display: block;
    font-size: 1.1rem;
}

/* Section Headers */
.section-header {
    margin-bottom: 60px;
}

.section-header h3 {
    color: #2c5530;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2 {
    color: #333;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Large Product Cards for 2x2 Grid */
.product-card-large {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.product-card-large:hover .product-overlay {
    opacity: 1;
    transform: translateY(0);
}

.product-image-large {
    width: 100%;
    height: 100%;
    position: relative;
}

.product-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-title {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 2;
    width: max-content;
}

.category-title h4 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.product-card-large:hover .product-image-large img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 40px 30px 30px;
    color: #fff;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.product-content-large h4 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.product-content-large p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    margin: 0;
}

/* Legacy product card styles for other sections */
.product-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.product-image {
    margin-bottom: 25px;
}

.product-image img {
    max-height: 120px;
    width: auto;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content h4 {
    color: #2c5530;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.product-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: #fff;
}

.feature-card {
    padding: 0;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    background: #f8f9fa;
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5530, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 2rem;
}

.feature-card h5 {
    color: #2c5530;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-flow {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 200px;
    position: relative;
    padding: 0 20px;
}


.process-content {
    width: 100%;
}

.process-content h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.process-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.process-arrow {
    position: absolute;
    right: -90px;
    top: 50px;
    color: #8B4513;
    font-size: 1.8rem;
    z-index: 2;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-arrow i {
    font-size: 1.2rem;
}

/* Hide arrow on last step */
.process-step:last-child .process-arrow {
    display: none;
}


/* Content Section */
.content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.content-text {
    position: relative;
    z-index: 2;
    padding-right: 30px;
}

.content-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c5530;
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-text .highlight {
    color: #4CAF50;
    position: relative;
}

.content-text .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #2c5530);
    border-radius: 2px;
}

.content-text .lead {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.content-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5530, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*margin-right: 20px;*/
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(44, 85, 48, 0.3);
}

.feature-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.feature-content h5 {
    color: #2c5530;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.content-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.content-cta .btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.content-cta .btn-primary {
    background: linear-gradient(135deg, #2c5530, #4CAF50);
    border: none;
    box-shadow: 0 5px 15px rgba(44, 85, 48, 0.3);
}

.content-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 85, 48, 0.4);
}

.content-cta .btn-outline-primary {
    border: 2px solid #2c5530;
    color: #2c5530;
    background: transparent;
}

.content-cta .btn-outline-primary:hover {
    background: #2c5530;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 85, 48, 0.3);
}

.content-image {
    position: relative;
    z-index: 2;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(44, 85, 48, 0.9);
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.overlay-content h4 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #fff;
}

.overlay-content p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    background: #fff;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2c5530, #4CAF50);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #2c5530;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design for Content Section */
@media (max-width: 768px) {
    .content-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .content-text h2 {
        font-size: 2rem;
    }
    
    .content-cta {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .image-overlay {
        top: 15px;
        right: 15px;
        padding: 15px;
    }
    
    .overlay-content h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .content-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Strengths Section */
.strengths-section {
    padding: 80px 0;
    background: #fff;
}

.strength-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    height: 100%;
}

.strength-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.strength-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2c5530, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #fff;
    font-size: 3rem;
    box-shadow: 0 10px 25px rgba(44, 85, 48, 0.3);
    transition: all 0.3s ease;
}

.strength-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(44, 85, 48, 0.4);
}

.strength-item h5 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

/* Strengths Carousel Styles */
.strengths-section .carousel-control-prev,
.strengths-section .carousel-control-next {
    width: 50px;
    height: 50px;
    background: #2c5530;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.strengths-section .carousel-control-prev {
    left: -25px;
}

.strengths-section .carousel-control-next {
    right: -25px;
}

.strengths-section .carousel-indicators {
    bottom: -50px;
}

.strengths-section .carousel-indicators button {
    background-color: #2c5530;
    border-radius: 50%;
    width: 12px;
    height: 12px;
}

/* Best Products Section */
.best-products-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.product-item {
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Best Products Carousel Styles */
.best-products-section .carousel-control-prev,
.best-products-section .carousel-control-next {
    width: 50px;
    height: 50px;
    background: #2c5530;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.best-products-section .carousel-control-prev {
    left: -25px;
}

.best-products-section .carousel-control-next {
    right: -25px;
}

.best-products-section .carousel-indicators {
    bottom: -50px;
}

.best-products-section .carousel-indicators button {
    background-color: #2c5530;
    border-radius: 50%;
    width: 12px;
    height: 12px;
}

.product-img {
    margin-bottom: 15px;
}

.product-img img {
    border-radius: 20px;
    width: auto;
    transition: transform 0.3s ease;
}

.product-item:hover .product-img img {
    transform: scale(1.1);
}

.product-item h5 {
    color: #2c5530;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}


.footer-section h5 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details p {
    margin-bottom: 10px;
    color: #e0e0e0;
}

.contact-details p i {
    color: #4CAF50;
    margin-right: 10px;
    width: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4CAF50;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #4CAF50;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background: #fff;
    color: #2c5530;
}

.footer-divider {
    border-color: #4CAF50;
    margin: 40px 0 20px;
}

.copyright {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-slider {
        height: 70vh;
        min-height: 500px;
    }
    
    
    .banner-slider .carousel-control-prev,
    .banner-slider .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .banner-slider .carousel-control-prev {
        left: 15px;
    }
    
    .banner-slider .carousel-control-next {
        right: 15px;
    }
    
    /* Large Product Cards Mobile */
    .product-card-large {
        height: 300px;
        margin-bottom: 30px;
    }
    
    .category-title h4 {
        font-size: 1.2rem;
    }
    
    .product-content-large p {
        font-size: 0.9rem;
    }
    
    .product-overlay {
        padding: 30px 20px 20px;
    }
    
    /* Company Info & News Mobile */
    .company-info-news-section {
        padding: 60px 0;
    }
    
    .company-info-content h1 {
        font-size: 2rem;
    }
    
    .company-info-content h2 {
        font-size: 1.5rem;
    }
    
    .company-info-content p {
        font-size: 1rem;
    }
    
    .gulfood-image-container {
        margin-top: 40px;
    }
    
    .contact-overlay {
        padding: 25px 15px 15px;
    }
    
    /* Process Flow Mobile */
    .process-flow {
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
    }
    
    .process-step {
        flex: none;
        width: 100%;
        max-width: 300px;
        padding: 30px 20px;
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        position: relative;
    }
    
    .process-step::after {
        display: none;
    }
    
    .process-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .process-icon i {
        font-size: 2rem;
    }
    
    .process-arrow {
        position: static;
        margin: 20px auto 0;
        order: 3;
        transform: rotate(90deg);
    }
    
    .process-step:last-child .process-arrow {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-info span,
    .phone-info span {
        display: block;
        margin-bottom: 5px;
        margin-right: 0;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .strength-item {
        flex-direction: column;
        text-align: center;
    }
    
    .strength-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .logo-carousel-section {
        padding: 30px 0;
    }
    
    .logo-slide {
        gap: 15px;
    }
    
    .logo-item {
        height: 60px;
        width: 80px;
        padding: 8px;
    }
    
    .logo-item img {
        max-height: 35px;
    }
    
    .logo-carousel-section .carousel {
        padding: 10px 0;
    }
    .banner-slider {
        height: 60vh;
        min-height: 400px;
    }
    
    
    .banner-slider .carousel-indicators {
        bottom: 20px;
    }
    
    .banner-slider .carousel-indicators button {
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    /* Large Product Cards Mobile Small */
    .product-card-large {
        height: 250px;
    }
    
    .category-title h4 {
        font-size: 1.1rem;
    }
    
    .product-content-large p {
        font-size: 0.85rem;
    }
    
    .product-overlay {
        padding: 25px 15px 15px;
    }
    
    /* Company Info & News Mobile Small */
    .company-info-content h1 {
        font-size: 1.8rem;
    }
    
    .company-info-content h2 {
        font-size: 1.3rem;
    }
    
    .gulfood-image-container {
        margin-top: 30px;
    }
    
    .contact-overlay {
        padding: 20px 15px 15px;
    }
    
    .contact-export-team-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .products-section,
    .why-choose-us,
    .process-section,
    .strengths-section,
    .best-products-section {
        padding: 60px 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.loading {
    animation: pulse 2s infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #2c5530;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4CAF50;
}
