        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
            background: #ffffff;
        }

        /* Hero Section */
        .hero {
            display: grid;
            position: relative;
            align-items: center;
            min-height: 100vh;
            padding: 4rem 3rem;
            
            gap: 4rem;
            background-image: url('logistics.jpg');
            background-size: cover;
            background-position: center;
        } 
        .hero::before {
            content: '';
            position: absolute;
            z-index: 0;
            pointer-events: none;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0); 
        }   


        .hero-content {
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 3rem;
            
        }
        .hero-logo {
                display: flex;
                justify-content: flex-end;
                align-items: center;
        }

            .hero-logo img {
                width: 100%;
                max-width: 100%;
                height: auto;
                filter: drop-shadow(0 8px 20px rgba(0,0,0,0.25));
        }
        .hero-left{
                max-width: 520px;
                color: #fff
            }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .btn {
            padding: 0.85rem 2rem;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: #e67e22;
            color: white;
        }

        .btn-primary:hover {
            background: #16a085;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: #2c3e50;
            color: white;
        }

        .btn-secondary:hover {
            background: #1a252f;
            transform: translateY(-2px);
        }




        /* Clients Section */
        .clients {
            padding: 3rem;
            background: white;
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            border-bottom: 1px solid #eee;
        }

        .client-logo {
            font-weight: bold;
            color: #666;
            font-size: 1.1rem;
            padding: 1rem 2rem;
            background: #f9f9f9;
            border-radius: 8px;
        }

        /* About Section */
        .about {
            padding: 5rem 3rem;
            background: #f8f9fa;
        }

        .about h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #000;
            text-align: center;
        }

        .about > div {
            max-width: 800px;
            margin: 0 auto;
        }

        .about p {
            font-size: 1.1rem;
            color: #333;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        /* Services Section */
        .services {
            padding: 5rem 3rem;
            background: white;
        }

        #services { scroll-margin-top: 5rem; }
        #contact { scroll-margin-top: 5rem; }

        .services h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #000;
            text-align: center;
            line-height: 1.35;
            font-weight: 600;
        }

        .services > p {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            line-height: 1.7;
            opacity: 0.85;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .service-card {
            background: linear-gradient(180deg, #fff, #f9f9f9);
            border-radius: 8px;
            text-align: left;
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
            overflow: hidden; 
            padding: 0;
            height: 100%;
            
        }
        .service-img{
            width: 100%;
            height: 170px;     
            object-fit: cover;
            display: block;
        }


        .service-card:hover {
            background: #f0f0f0;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: #000;
            padding-left: 1.4rem;
            padding-right: 1.4rem;
            margin-bottom: 0.6rem;
        }

        .service-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            padding-left: 1.4rem;
            padding-right: 1.4rem;
            margin-top: 0;
        }

        /* Team Section */
        .team {
            padding: 5rem 3rem;
            background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
            color: white;
        }

        .team h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #e67e22;
            text-align: center;
        }

        .team-intro {
            color: #bbb;
            font-size: 1.1rem;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            line-height: 1.8;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            justify-content: center;
        }

        .team-member {
            text-align: center;
        }

        .team-member-image {
            width: 120px;
            height: 120px;
            background: #333;
            border-radius: 50%;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #666;
            border: 3px solid #e67e22;
        }

        .team-member h3 {
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
        }

        .team-member .role {
            color: #e67e22;
            font-size: 0.9rem;
        }

        /* Contact Section */
        .contact {
            padding: 5rem 3rem;
            background: white;
        }

        .contact h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #000;
            text-align: center;
        }

        .contact > p {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 3rem;
            text-align: center;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .contact-item {
            padding: 2rem;
            background: #f9f9f9;
            border-radius: 8px;
            border-left: 3px solid #e67e22;
            text-align: center;
        }

        .contact-item h3 {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
            color: #000;
        }

        .contact-item a {
            color: #e67e22;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .contact-item a:hover {
            text-decoration: underline;
        }

        .contact-item p {
            color: #666;
            margin-top: 0.5rem;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: #999;
            text-align: center;
            padding: 2rem;
            font-size: 0.9rem;
        }

        footer a {
            color: #e67e22;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

/* Mobile */
@media (max-width: 900px) {

    .hero {
        padding: 2.5rem 1.25rem;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr; 
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-logo {
        display: none;
    }

    .cta-buttons {
        gap: 0.75rem;
    }

    .btn {
        width: 100%;                
        text-align: center;
        padding: 0.9rem 1.2rem;
    }

    .clients {
        padding: 2rem 1rem;
    }

    .clients .client-logo {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    .services {
        padding: 3rem 1.5rem;
    }

    .service-img {
        height: 150px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}