* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #0056b3;
            --secondary: #ff6600;
            --dark: #333;
            --light: #f8f9fa;
            --gray: #6c757d;
        }

        body {
            line-height: 1.6;
            color: var(--dark);
            background-color: #fff;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--secondary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo h1 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-left: 10px;
        }

        .logo-img {
            height: 100px;
            width: auto;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            transition: color 0.3s;
            position: relative;
        }

        nav ul li a:hover {
            color: var(--primary);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
            z-index: 1001;
        }

        /* Hero Section - Improved Responsiveness */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(assets/image/1image.jpeg);
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 120px;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            width: 100%;
        }

        .hero h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 800px;
        }

        /* Service Icons Carousel - Improved Responsiveness */
        .services-carousel-container {
            position: relative;
            margin-top: 50px;
            width: 100%;
            overflow: hidden;
            padding: 0 50px;
        }

        .services-carousel {
            display: flex;
            transition: transform 0.5s ease;
            gap: 20px;
        }

        .service-icon {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 10px;
            width: 150px;
            flex-shrink: 0;
            transition: transform 0.3s;
            text-align: center;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
        }

        .service-icon:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.2);
        }

        .service-icon-img {
            width: 70px;
            height: 70px;
            margin-bottom: 10px;
            border-radius: 50%;
            object-fit: cover;
            background-color: white;
            padding: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }

        .service-icon p {
            font-size: 0.9rem;
            margin: 0;
            font-weight: 500;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary);
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s;
            z-index: 10;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
        }

        .carousel-btn:hover {
            background: var(--secondary);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn.prev {
            left: 0;
        }

        .carousel-btn.next {
            right: 0;
        }

        /* Stats Section */
        .stats {
            background-color: var(--primary);
            color: white;
            padding: 60px 0;
        }

        .stats-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            text-align: center;
        }

        .stat-item {
            flex: 1;
            min-width: 200px;
            margin: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .stat-text {
            font-size: 1.2rem;
            font-weight: 500;
        }

        /* About Section */
        .about {
            background-color: var(--light);
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .about-text p {
            margin-bottom: 20px;
        }

        .about-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }

        .about-card {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            flex: 1;
            min-width: 250px;
            transition: transform 0.3s;
        }

        .about-card:hover {
            transform: translateY(-5px);
        }

        .about-card h4 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-icon-large {
            background: var(--primary);
            color: white;
            padding: 30px;
            text-align: center;
            font-size: 2.5rem;
        }

        .service-content {
            padding: 25px;
        }

        .service-content h3 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        /* Countries Section */
        .countries {
            background-color: var(--light);
        }

        .countries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
        }

        .country-card {
            background: white;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .country-card:hover {
            transform: scale(1.05);
        }

        .country-flag {
            width: 80px;
            height: 50px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            margin-bottom: 10px;
        }

        /* Partners Section */
        .partners-logos {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 40px;
        }

        .partner-logo {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            width: 150px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            
        }


        /* Customer Segments Section - Updated with Food Items */
        .segments {
            background-color: var(--light);
        }

        .segments-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .segment-card {
            background: white;
            padding: 25px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .segment-card:hover {
            transform: translateY(-5px);
        }

        .segment-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        /* Contact Form Section - Above Footer */
        .contact-form-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/image/image\ 3.avif');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
        }

        .contact-form-container {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            padding: 40px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .contact-form-container h3 {
            color: white;
            margin-bottom: 20px;
            text-align: center;
            font-size: 1.8rem;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: white;
            font-weight: 600;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 4px;
            font-size: 1rem;
            transition: border-color 0.3s;
            background: rgba(255, 255, 255, 0.1);
            color:white;
        }
         .form-control option{
            color: black;
         }
        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .form-control:focus {
            border-color: var(--secondary);
            outline: none;
            background: rgba(255, 255, 255, 0.2);
        }

        .submit-btn {
            width: 100%;
            padding: 12px;
            background: var(--secondary);
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .submit-btn:hover {
            background: #e55c00;
        }

        /* Social Responsibility Section */
        .social-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        .social-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            max-width: 350px;
            transition: transform 0.3s;
        }

        .social-card:hover {
            transform: translateY(-10px);
        }

        .social-image {
            height: 200px;
            overflow: hidden;
        }

        .social-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .social-card:hover .social-image img {
            transform: scale(1.1);
        }

        .social-content {
            padding: 25px;
        }

        .social-content h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
        }

        .footer-column h3 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: var(--secondary);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        /* Responsive Styles - IMPROVED */
        @media (max-width: 1200px) {
            .hero h2 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 992px) {
            .section-title h2 {
                font-size: 2rem;
            }
            
            .hero h2 {
                font-size: 2.5rem;
            }

            .hero-container {
                flex-direction: column;
            }

            .hero-content {
                padding-right: 0;
                margin-bottom: 50px;
                text-align: center;
            }

            .contact-form-container {
                max-width: 100%;
            }

            .stat-item {
                min-width: 150px;
            }

            .stat-number {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 15px 0;
            }

            nav ul {
                display: none;
                flex-direction: column;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: white;
                box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
                padding: 80px 20px 20px;
                z-index: 1000;
                overflow-y: auto;
            }

            nav ul.show {
                display: flex;
            }

            nav ul li {
                margin: 15px 0;
            }

            nav ul li a {
                font-size: 1.2rem;
                padding: 10px 0;
                display: block;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero {
                padding: 150px 0 100px;
            }

            .hero h2 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .services-carousel-container {
                margin-top: 30px;
                padding: 0 40px;
            }

            .service-icon {
                width: 130px;
                padding: 15px;
            }

            .service-icon-img {
                width: 60px;
                height: 60px;
            }

            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .country-flag {
                width: 70px;
                height: 45px;
            }

            section {
                padding: 60px 0;
            }

            .stat-item {
                min-width: 120px;
                margin: 10px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .stat-text {
                font-size: 1rem;
            }

            .contact-form-container {
                padding: 30px 20px;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding: 130px 0 80px;
            }

            .hero h2 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .service-icon {
                width: 120px;
                padding: 15px;
            }
            
            .service-icon-img {
                width: 50px;
                height: 50px;
            }
            
            .services-carousel-container {
                padding: 0 30px;
            }
            
            .country-flag {
                width: 60px;
                height: 40px;
            }
            
            .about-card, .service-card, .country-card, .segment-card {
                min-width: 100%;
            }

            .contact-form-container {
                padding: 20px;
            }

            .logo h1 {
                font-size: 1.5rem;
            }

            .stat-item {
                min-width: 100px;
            }

            .stat-number {
                font-size: 1.8rem;
            }

            .stat-text {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 400px) {
            .hero h2 {
                font-size: 1.6rem;
            }

            .service-icon {
                width: 100px;
                padding: 10px;
            }

            .service-icon p {
                font-size: 0.8rem;
            }

            .services-carousel-container {
                padding: 0 20px;
            }

            .stat-item {
                min-width: 80px;
            }

            .stat-number {
                font-size: 1.5rem;
            }

            .stat-text {
                font-size: 0.8rem;
            }
        }