/* ========================================
   SERVICES PAGE SPECIFIC STYLES
   ======================================== */

/* Services Hero */
.services-hero {
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--primary-navy) 50%, var(--secondary-navy) 100%);
    padding: 180px 40px 100px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.services-hero .hero-content {
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.services-hero .hero-badge {
    display: inline-block;
    padding: 10px 30px;
    background: rgba(201, 152, 46, 0.15);
    border: 1px solid rgba(201, 152, 46, 0.3);
    border-radius: 50px;
    color: var(--accent-gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.services-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.services-hero p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Service Navigation */
.service-nav {
    background: #fff;
    padding: 25px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 180px;
    z-index: 999;
    border-bottom: 2px solid var(--accent-gold);
}

.service-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-nav-btn {
    padding: 15px 35px;
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-navy);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.service-nav-btn:hover {
    background: var(--primary-navy);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 58, 95, 0.25);
}

.service-nav-btn.active {
    background: var(--primary-navy);
    color: #fff;
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 58, 95, 0.25);
}

.service-nav-btn i {
    font-size: 20px;
    color: var(--accent-gold);
}

/* Service Major Sections */
.service-major-section {
    padding: 120px 40px;
    scroll-margin-top: 200px;
    position: relative;
}

.service-major-section.alt-bg {
    background: var(--light-gray);
}

/* Category Hero Image */
.category-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    margin: 60px 0 80px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.category-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.8s ease;
}

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 41, 66, 0.95) 30%, transparent);
    padding: 40px 50px;
}

.category-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.category-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
}

.category-stat i {
    font-size: 42px;
    color: var(--accent-gold);
}

.category-stat div {
    display: flex;
    flex-direction: column;
}

.category-stat strong {
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    line-height: 1;
}

.category-stat span {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
}

/* Services Showcase Grid */
.services-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.showcase-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-color);
}

.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
    border-color: var(--accent-gold);
}

.showcase-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.showcase-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--deep-blue);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showcase-content {
    padding: 40px;
}

.showcase-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(27, 58, 95, 0.25);
}

.showcase-icon i {
    font-size: 32px;
    color: #fff;
}

.showcase-content h3 {
    font-size: 26px;
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.showcase-content > p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
}

.showcase-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.showcase-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
}

.showcase-features li:last-child {
    border-bottom: none;
}

.showcase-features li i {
    color: var(--accent-gold);
    font-size: 14px;
    flex-shrink: 0;
}

/* Manpower Grid */
.manpower-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.manpower-category {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    /* min-height: 3; */
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-color);
}

.manpower-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
    border-color: var(--accent-gold);
}

.manpower-header {
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    padding: 30px 40px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 20px;
}

.manpower-header i {
    font-size: 36px;
    color: var(--accent-gold);
}

.manpower-header h3 {
    font-size: 24px;
    margin: 0;
    font-weight: 700;
}

.manpower-image {
    height: 250px;
    overflow: hidden;
}

.manpower-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.manpower-category:hover .manpower-image img {
    transform: scale(1.1);
}

.manpower-content {
    padding: 35px 40px;
}

.manpower-content > p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
}

.manpower-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.role-tag {
    background: var(--light-gray);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.role-tag:hover {
    background: var(--primary-navy);
    color: #fff;
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.role-tag i {
    color: var(--accent-gold);
    font-size: 12px;
}

/* Benefits Section */
.benefits-section {
    margin-top: 80px;
    text-align: center;
}

.benefits-section h3 {
    font-size: 36px;
    color: var(--primary-navy);
    margin-bottom: 50px;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 2px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--accent-gold);
}

.benefit-card i {
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 20px;
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-weight: 700;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Final CTA Section */
.services-cta {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--deep-blue), var(--primary-navy));
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(201, 152, 46, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(201, 152, 46, 0.1) 0%, transparent 50%);
}

.services-cta h2 {
    font-size: 48px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.services-cta p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Responsive Design for Services Page */
@media (max-width: 1024px) {
    .services-showcase-grid,
    .manpower-grid {
        grid-template-columns: 1fr;
    }
    

    .category-hero-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 150px 25px 80px;
    }
    
    .services-hero h1 {
        font-size: 42px;
    }
    
    .service-major-section {
        padding: 80px 25px;
    }
    
    .service-nav {
        padding: 20px 25px;
        top: 180px;
    }
    
    .service-nav-container {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .service-nav-btn {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .showcase-image,
    .manpower-image {
        height: 220px;
    }
    
    .showcase-content,
    .manpower-content {
        padding: 30px;
    }

    .category-hero-image {
        height: 280px;
        margin: 40px 0 60px;
    }
    
    .category-overlay {
        padding: 30px;
    }
    
    .category-stats {
        gap: 30px;
    }
    
    .category-stat {
        gap: 15px;
    }
    
    .category-stat i {
        font-size: 32px;
    }
    
    .category-stat strong {
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    .services-hero h1 {
        font-size: 36px;
    }
    
    .services-hero p {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .showcase-card,
    .manpower-category {
        border-radius: 15px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .services-cta h2 {
        font-size: 36px;
    }
}


.category-header-box {
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.category-header-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 152, 46, 0.15), transparent);
    border-radius: 50%;
}

.category-header-box h3 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.category-header-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    position: relative;
    z-index: 1;
    margin: 0;
}

.products-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-showcase-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.product-showcase-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.product-img-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--light-gray);
}

.product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-label {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-gold);
    color: var(--deep-blue);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.product-info-box {
    padding: 25px;
}

.product-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.product-icon-box i {
    font-size: 22px;
    color: var(--accent-gold);
}

.product-info-box h4 {
    font-size: 19px;
    color: var(--primary-navy);
    margin-bottom: 10px;
    font-weight: 700;
}

.product-info-box p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-item {
    background: var(--light-gray);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    color: var(--text-primary);
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: var(--primary-navy);
    color: #fff;
    border-color: var(--accent-gold);
}

@media (max-width: 768px) {
    .products-showcase-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .category-header-box h3 {
        font-size: 26px;
    }
    
    .product-img-container {
        height: 180px;
    }
}

/* 
================================================= */

/* Trading Overview Section */
        .trading-overview {
            padding: 100px 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-label {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(201, 152, 46, 0.1);
            border: 1px solid var(--accent-gold);
            border-radius: 50px;
            color: var(--accent-gold);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .section-header h2 {
            font-size: 48px;
            color: var(--primary-navy);
            margin-bottom: 20px;
            font-weight: 800;
        }

        .section-header p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Categories Grid */
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .category-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            border: 2px solid var(--border-color);
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(201, 152, 46, 0.1), transparent);
            transition: left 0.5s;
        }

        .category-card:hover::before {
            left: 100%;
        }

        .category-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-gold);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .category-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: transform 0.4s ease;
        }

        .category-card:hover .category-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .category-icon i {
            font-size: 36px;
            color: var(--accent-gold);
        }

        .category-card h3 {
            font-size: 22px;
            color: var(--primary-navy);
            margin-bottom: 12px;
            font-weight: 700;
        }

        .category-card p {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .product-count {
            display: inline-block;
            padding: 6px 16px;
            background: var(--light-gray);
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: var(--primary-navy);
        }

        .explore-btn {
            margin-top: 60px;
            text-align: center;
        }

        .explore-btn button {
            padding: 20px 50px;
            background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(27, 58, 95, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 15px;
        }

        .explore-btn button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(27, 58, 95, 0.4);
            background: linear-gradient(135deg, var(--secondary-navy), var(--deep-blue));
        }

        .explore-btn button i {
            font-size: 24px;
            color: var(--accent-gold);
        }

        /* Parallax Universe */
        .parallax-universe {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, #87CEEB 0%, #E0F6FF 50%, #B0E0E6 100%);
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s, visibility 0.5s;
            overflow: hidden;
        }

        .parallax-universe.active {
            opacity: 1;
            visibility: visible;
        }

        /* Animated Clouds */
        .cloud {
            position: absolute;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 100px;
            animation: float 20s infinite ease-in-out;
        }

        .cloud::before,
        .cloud::after {
            content: '';
            position: absolute;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 100px;
        }

        .cloud1 {
            width: 200px;
            height: 60px;
            top: 10%;
            left: -200px;
            animation: drift1 25s infinite linear;
        }

        .cloud1::before {
            width: 100px;
            height: 80px;
            top: -40px;
            left: 30px;
        }

        .cloud1::after {
            width: 120px;
            height: 70px;
            top: -30px;
            right: 30px;
        }

        .cloud2 {
            width: 180px;
            height: 50px;
            top: 30%;
            right: -180px;
            animation: drift2 30s infinite linear;
        }

        .cloud2::before {
            width: 90px;
            height: 70px;
            top: -35px;
            left: 25px;
        }

        .cloud2::after {
            width: 110px;
            height: 60px;
            top: -25px;
            right: 25px;
        }

        .cloud3 {
            width: 220px;
            height: 70px;
            bottom: 20%;
            left: -220px;
            animation: drift3 35s infinite linear;
        }

        .cloud3::before {
            width: 110px;
            height: 90px;
            top: -45px;
            left: 35px;
        }

        .cloud3::after {
            width: 130px;
            height: 80px;
            top: -35px;
            right: 35px;
        }

        @keyframes drift1 {
            0% { left: -200px; }
            100% { left: 110%; }
        }

        @keyframes drift2 {
            0% { right: -180px; }
            100% { right: 110%; }
        }

        @keyframes drift3 {
            0% { left: -220px; }
            100% { left: 110%; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* Close Button */
        .close-universe {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10001;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        .close-universe:hover {
            background: white;
            transform: rotate(90deg) scale(1.1);
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
        }

        .close-universe i {
            font-size: 28px;
            color: var(--primary-navy);
        }

        /* Section Container */
        .section-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 1200px;
            text-align: center;
            transition: opacity 0.5s, transform 0.5s;
        }

        .section-title {
            font-size: 56px;
            color: var(--primary-navy);
            margin-bottom: 20px;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .section-subtitle {
            font-size: 20px;
            color: var(--text-secondary);
            margin-bottom: 40px;
        }

        /* Product Cards Container */
        .cards-container {
            position: relative;
            min-height: 400px;
            margin-top: 50px;
        }

        .product-card {
            position: absolute;
            width: 320px;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
        }

        .product-card.show-left {
            animation: slideInLeft 0.8s forwards;
        }

        .product-card.show-right {
            animation: slideInRight 0.8s forwards;
        }

        .product-card.hide-left {
            animation: slideOutLeft 0.6s forwards;
        }

        .product-card.hide-right {
            animation: slideOutRight 0.6s forwards;
        }

        @keyframes slideInLeft {
            from {
                left: -400px;
                opacity: 0;
            }
            to {
                left: 50px;
                opacity: 1;
            }
        }

        @keyframes slideInRight {
            from {
                right: -400px;
                opacity: 0;
            }
            to {
                right: 50px;
                opacity: 1;
            }
        }

        @keyframes slideOutLeft {
            from {
                left: 50px;
                opacity: 1;
            }
            to {
                left: -400px;
                opacity: 0;
            }
        }

        @keyframes slideOutRight {
            from {
                right: 50px;
                opacity: 1;
            }
            to {
                right: -400px;
                opacity: 0;
            }
        }

        .product-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .product-info {
            padding: 25px;
        }

        .product-label {
            display: inline-block;
            padding: 5px 12px;
            background: var(--accent-gold);
            color: white;
            border-radius: 15px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .product-info h4 {
            font-size: 20px;
            color: var(--primary-navy);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .product-info p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .product-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .tag {
            padding: 5px 12px;
            background: var(--light-gray);
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            color: var(--primary-navy);
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            animation: bounce 2s infinite;
        }

        .scroll-indicator i {
            font-size: 32px;
            color: var(--primary-navy);
            opacity: 0.7;
        }

        .scroll-indicator p {
            margin-top: 10px;
            color: var(--primary-navy);
            font-weight: 600;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-10px); }
        }

        /* Progress Bar */
        .progress-bar {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 300px;
            height: 6px;
            background: rgba(255,255,255,0.3);
            border-radius: 10px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: var(--accent-gold);
            border-radius: 10px;
            transition: width 0.3s ease;
        }

        .section-counter {
            position: absolute;
            top: 100px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 18px;
            color: var(--primary-navy);
            font-weight: 600;
            background: rgba(255,255,255,0.8);
            padding: 10px 25px;
            border-radius: 30px;
        }

        /* Image Focus Modal */
.product-img-container {
    cursor: pointer;
    position: relative;
}

.product-img-container::after {
    content: '\f00e'; /* Font Awesome search-plus icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-img-container:hover::after {
    opacity: 0.9;
}

.product-img-container:hover img {
    filter: brightness(0.7);
}

/* Modal Overlay */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.modal-close:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

.modal-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 40px;
    border-radius: 50px;
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { 
        transform: scale(0.5);
        opacity: 0;
    }
    to { 
        transform: scale(1);
        opacity: 1;
    }
}

/* Spacing for trading category blocks */
.trading-category-block {
    margin-bottom: 80px;
}

.trading-category-block:last-of-type {
    margin-bottom: 0;
}




/* ========================================
   CONTRACTING SECTION - PROFESSIONAL MINIMAL DESIGN
   ======================================== */

/* Stats Banner */
.stats-banner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    padding: 50px 40px;
    border-radius: 20px;
    margin: 60px 0 80px;
    box-shadow: 0 15px 50px rgba(27, 58, 95, 0.2);
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 152, 46, 0.1), transparent);
    border-radius: 50%;
}

.stat-item {
    text-align: center;
    color: #fff;
    z-index: 1;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.95;
    font-weight: 600;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

/* Contracting Services Grid */
.contracting-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

/* Service Minimal Card */
.service-minimal-card {
    background: #fff;
    border-radius: 16px;
    padding: 45px;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-minimal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-gold), var(--primary-navy));
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: top;
}

.service-minimal-card:hover::before {
    transform: scaleY(1);
}

.service-minimal-card:hover {
    transform: translateX(8px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

/* Service Number */
.service-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(27, 58, 95, 0.05);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    pointer-events: none;
}

/* Service Icon Minimal */
.service-icon-minimal {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-minimal-card:hover .service-icon-minimal {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(27, 58, 95, 0.3);
}

.service-icon-minimal i {
    font-size: 36px;
    color: var(--accent-gold);
}

/* Service Content */
.service-content-minimal h3 {
    font-size: 26px;
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-brief {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Service Features List */
.service-features-minimal {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-minimal li {
    padding: 10px 0 10px 30px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-features-minimal li:last-child {
    border-bottom: none;
}

.service-features-minimal li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 12px;
}

/* Service Badge */
.service-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    padding: 8px 20px;
    background: var(--accent-gold);
    color: var(--deep-blue);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(201, 152, 46, 0.3);
}

.service-badge.specialized {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
}

.service-badge.advanced {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: #fff;
}

.service-badge.high-tech {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: #fff;
}

.service-badge.support {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: #fff;
}

.service-badge.flexible {
    background: linear-gradient(135deg, #fa709a, #fee140);
    color: #fff;
}

/* Why Choose Section */
.why-choose-section {
    margin-top: 100px;
    text-align: center;
}

.why-choose-section h3 {
    font-size: 36px;
    color: var(--primary-navy);
    margin-bottom: 60px;
    font-weight: 700;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.why-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.why-item:hover {
    transform: translateY(-10px);
}

.why-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(201, 152, 46, 0.1), rgba(201, 152, 46, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    border: 3px solid var(--border-color);
}

.why-item:hover .why-icon {
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    border-color: var(--accent-gold);
    transform: scale(1.1);
}

.why-icon i {
    font-size: 40px;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.why-item:hover .why-icon i {
    color: #fff;
}

.why-item h4 {
    font-size: 20px;
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-weight: 700;
}

.why-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contracting-services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-banner {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .stat-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-minimal-card {
        padding: 35px 25px;
    }
    
    .service-number {
        font-size: 60px;
        top: 20px;
        right: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .service-badge {
        position: static;
        display: inline-block;
        margin-bottom: 20px;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .stats-banner {
        padding: 40px 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .service-content-minimal h3 {
        font-size: 22px;
    }
    
    .why-choose-section h3 {
        font-size: 28px;
    }
}



/* ========================================
   SERVICES HERO WITH ANIMATED BACKGROUND
   ======================================== */

/* Services Hero */
.services-hero {
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 180px 40px 100px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    /* Default background - will be updated by JS */
    background-image: 
        linear-gradient(135deg, rgba(27, 58, 95, 0.85) 0%, rgba(27, 58, 95, 0.75) 50%, rgba(49, 79, 110, 0.85) 100%),
        url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1920&h=1080&fit=crop&q=80');
}

/* Animated overlay pattern */
.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(201, 152, 46, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 152, 46, 0.1) 0%, transparent 50%);
    animation: overlayPulse 8s ease-in-out infinite;
    pointer-events: none;
}

/* Floating particles effect */
.services-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 33% 80%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 15% 85%, rgba(255, 255, 255, 0.4), transparent);
    background-size: 200% 200%;
    animation: particlesFloat 20s linear infinite;
    pointer-events: none;
}

@keyframes overlayPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes particlesFloat {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

.services-hero .hero-content {
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 1;
}

.services-hero .hero-badge {
    display: inline-block;
    padding: 10px 30px;
    background: rgba(201, 152, 46, 0.2);
    border: 1px solid rgba(201, 152, 46, 0.4);
    border-radius: 50px;
    color: var(--accent-gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(201, 152, 46, 0.4);
    }
    50% {
        box-shadow: 0 0 20px 10px rgba(201, 152, 46, 0);
    }
}

.services-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
    animation: titleFadeIn 1.2s ease-out 0.3s both;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-hero p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto 40px;
    animation: textFadeIn 1.4s ease-out 0.5s both;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

@keyframes textFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add subtle zoom animation to background */
@keyframes backgroundZoom {
    0%, 100% {
        background-size: 100% 100%;
    }
    50% {
        background-size: 105% 105%;
    }
}

.services-hero {
    animation: backgroundZoom 30s ease-in-out infinite;
}

/* Service Navigation */
.service-nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 25px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 180px;
    z-index: 999;
    border-bottom: 2px solid var(--accent-gold);
}

.service-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-nav-btn {
    padding: 15px 35px;
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-navy);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.service-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 152, 46, 0.2), transparent);
    transition: left 0.5s;
}

.service-nav-btn:hover::before {
    left: 100%;
}

.service-nav-btn:hover {
    background: var(--primary-navy);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 58, 95, 0.25);
}

.service-nav-btn.active {
    background: var(--primary-navy);
    color: #fff;
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 58, 95, 0.25);
}

.service-nav-btn i {
    font-size: 20px;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.service-nav-btn:hover i,
.service-nav-btn.active i {
    transform: scale(1.1) rotate(5deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero {
        padding: 150px 25px 80px;
        background-attachment: scroll;
    }
    
    .services-hero h1 {
        font-size: 42px;
    }
    
    .service-nav {
        padding: 20px 25px;
    }
    
    .service-nav-container {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .service-nav-btn {
        padding: 12px 25px;
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .services-hero h1 {
        font-size: 36px;
    }
    
    .services-hero p {
        font-size: 16px;
    }
    
    .services-hero .hero-badge {
        font-size: 12px;
        padding: 8px 20px;
    }
}