
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Poppins', sans-serif;
        background-color: #ffffff;
        color: #2b2b2b;
        line-height: 1.6;
    }

    h2 {
        color: #002e5b;
        margin-top: 30px;
        text-align: center;
        font-size: 2rem;
    }

    section {
        padding: 2rem 1rem;
        text-align: center;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    /* Navbar */
    .navbar {
        background-color: rgba(0, 0, 0, 1);
        justify-content: center;
        display: flex;
        padding: 1rem;
        position: relative;
        z-index: 10;
    }

    .logo img {
        height: 80px;
        width: auto;
        max-width: 100%;
    }

    .logo2 {
        display: flex;
        justify-content: center;
        padding: 2rem 0;
    }

    .logo2 img {
        height: 120px;
        width: auto;
        max-width: 90%;
    }

    .hero {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        color: white;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 46, 91, 0.5) 0%, rgba(0, 116, 183, 0.5) 100%);
        z-index: 1;
    }

    .hero > * {
        position: relative;
        z-index: 2;
    }

    @keyframes fadeImage {
        0% { opacity: 1; }
        90% { opacity: 1; }
        100% { opacity: 0; }
    }

    .hero-content {
        text-align: center;
        padding: 2rem 1rem 4rem;
        animation: fadeInUp 1s ease-in-out;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .hero-content p {
        font-size: 1.2rem;
        opacity: 0.9;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .stat-item {
        background-color: #f7f9fc;
        padding: 1.5rem;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        text-align: center;
        transition: all 0.3s ease;
    }

    .stat-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .stat-item h3 {
        color: #002e5b;
        font-size: 1.8rem;
        margin-top: 0.5rem;
        font-weight: 600;
    }

    .stat-item p {
        font-size: 0.9rem;
        color: #444;
        margin-top: 0.5rem;
    }

    ul.services-list {
        max-width: 600px;
        margin: 1rem auto;
        padding: 0 1rem;
        list-style: none;
        font-size: 1.1rem;
        color: #333;
    }

    .services-list li {
        background-color: #f7f9fc;
        margin: 0.5rem 0;
        padding: 1rem;
        border-radius: 5px;
        border-left: 4px solid #002e5b;
        transition: all 0.3s ease;
    }

    .services-list li:hover {
        transform: translateX(5px);
        background-color: #e8f4f8;
    }

    .about {
        background-color: #f7f9fc;
        margin: 2rem 0;
    }

    .about p {
        font-size: 1.1rem;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.8;
    }

    .suppliers {
        background-color: #f7f9fc;
        margin: 2rem 0;
    }

    .suppliers p {
        font-size: 1.1rem;
        max-width: 800px;
        margin: 0 auto 2rem;
        line-height: 1.8;
    }

    .logos {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .logos img {
        height: 50px;
        width: auto;
        max-width: 100%;
        transition: all 0.3s ease;
        filter: grayscale(100%);
    }

    .logos img:hover {
        transform: scale(1.05);
        filter: grayscale(0%);
    }

    /* Contact Form */
    .contact {
        background-color: #f7f9fc;
        margin: 2rem 0;
    }

    form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        max-width: 500px;
        margin: auto;
        padding: 0 1rem;
    }

    input,
    textarea {
        padding: 1rem;
        border-radius: 5px;
        border: 1px solid #ccc;
        font-size: 1rem;
        font-family: 'Poppins', sans-serif;
        transition: border-color 0.3s ease;
    }

    input:focus,
    textarea:focus {
        outline: none;
        border-color: #002e5b;
    }

    textarea {
        min-height: 120px;
        resize: vertical;
    }

    button {
        padding: 1rem;
        border: none;
        background-color: #002e5b;
        color: #fff;
        cursor: pointer;
        font-size: 1rem;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    button:hover {
        background-color: #0074b7;
    }

    button:active {
        transform: translateY(1px);
    }

    #form-status {
        color: green;
        display: none;
        margin-top: 1rem;
        text-align: center;
    }

    footer {
        background: #111;
        font-size: 0.9rem;
        color: #fff;
        text-align: center;
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .scroll-fade {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .scroll-fade.show {
        opacity: 1;
        transform: translateY(0);
    }

    .fade-in {
        opacity: 0;
        animation: fadeInUp 1s ease-in-out forwards;
    }

    .fade-in.delay {
        animation-delay: 0.5s;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Mobile Responsive Styles */
    @media (max-width: 768px) {
        h2 {
            font-size: 1.5rem;
            margin-top: 20px;
        }

        section {
            padding: 1.5rem 0.5rem;
        }

        .hero-content h1 {
            font-size: 1.8rem;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1rem;
        }

        .navbar {
            padding: 0.5rem;
        }

        .logo img {
            height: 60px;
        }

        .stats-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .stat-item {
            padding: 1rem;
        }

        .stat-item h3 {
            font-size: 1.5rem;
        }

        ul.services-list {
            padding: 0 0.5rem;
            font-size: 1rem;
        }

        .services-list li {
            padding: 0.8rem;
            margin: 0.3rem 0;
        }

        .logos {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .logos img {
            height: 40px;
        }

        .logo2 img {
            height: 100px;
        }

        form {
            padding: 0 0.5rem;
        }

        input,
        textarea,
        button {
            padding: 0.8rem;
            font-size: 0.9rem;
        }

        .about p,
        .suppliers p {
            font-size: 1rem;
            padding: 0 0.5rem;
        }
    }

    @media (max-width: 480px) {
        .hero-content h1 {
            font-size: 1.5rem;
        }

        .hero-content p {
            font-size: 0.9rem;
        }

        .logo img {
            height: 50px;
        }

        .stats-grid {
            grid-template-columns: 1fr;
            gap: 0.8rem;
        }

        .stat-item h3 {
            font-size: 1.3rem;
        }

        .stat-item p {
            font-size: 0.8rem;
        }

        .services-list li {
            font-size: 0.9rem;
            padding: 0.7rem;
        }

        .logos {
            grid-template-columns: repeat(2, 1fr);
        }

        .logos img {
            height: 35px;
        }

        .logo2 img {
            height: 80px;
        }

        h2 {
            font-size: 1.3rem;
        }
    }