        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

        /* --- Custom CSS Variables (Brand Colors) --- */
        :root {
            --brand-dark: #00235a;
            --brand-gold: #c99c5e;
            --brand-light: #f7f9fc;
            --text-gray: #4b5563;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--brand-light);
            line-height: 1.5;
        }

        /* ------------------------------------------------ */
        /* --- 1. FIXED NAVBAR STYLES (110px height) --- */
        /* ------------------------------------------------ */
        .fixed-navbar-placeholder {
            /* height: 110px;
            width: 100%;
            position: fixed;
            top: 0;
            left: 0;
            background-color: var(--brand-dark);
            color: #fff;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
            border-bottom: 3px solid var(--brand-gold); */
        }

        /* ------------------------------------------------ */
        /* --- 2. MAIN CONTENT OFFSET --- */
        /* The padding-top clears the space for the 110px fixed navbar */
        /* ------------------------------------------------ */
        .section-container {
            /* padding-top must be >= 110px to clear the fixed nav bar */
            padding-top: calc(60px);
            padding-bottom: 3rem;
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .max-width-7xl {
            max-width: 80rem;
            margin-left: auto;
            margin-right: auto;
        }

        /* --- Header Styles --- */
        .header-section {
            text-align: center;
            margin-bottom: 3rem;
        }

        .header-section h1 {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--brand-dark);
            margin-bottom: 0.75rem;
            letter-spacing: -0.025em;
        }

        .header-section p {
            font-size: 1.25rem;
            color: var(--text-gray);
            max-width: 42rem;
            margin: 0 auto;
        }

        .badge {
            display: inline-block;
            margin-top: 1rem;
            padding: 0.25rem 1rem;
            background-color: var(--brand-gold);
            color: var(--brand-dark);
            font-size: 0.875rem;
            font-weight: 600;
            border-radius: 9999px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
        }

        /* --- Awards Card Style (The dark blue block) --- */
        .awards-card {
            background-color: var(--brand-dark);
            color: #fff;
            padding: 1.5rem;
            border-radius: 0.75rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            margin-bottom: 3rem;
            transition: transform 0.3s ease;
        }

        .awards-card:hover {
            transform: scale(1.005);
        }

        .awards-card h2 {
            font-size: 1.875rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--brand-gold);
        }

        .award-item {
            display: flex;
            align-items: flex-start;
            font-size: 1.125rem;
            margin-top: 0.5rem;
        }

        .award-item strong {
            font-weight: 600;
        }

        /* --- NEW: Image Icon Styling --- */
        .award-img {
            width: 1.5rem;
            height: 1.5rem;
            margin-right: 0.75rem;
            /* Vertically align the image */
            margin-top: 0.25rem;
            flex-shrink: 0;
            border-radius: 0.25rem;
            /* Little round corners for aesthetics */
        }

        /* --- Warehouse Grid and Card Styles --- */
        .grid-heading {
            font-size: 1.875rem;
            font-weight: 700;
            text-align: center;
            color: var(--brand-gold);
            margin-bottom: 2rem;
        }

        .warehouse-grid {
            display: grid;
            gap: 2rem;
            grid-template-columns: 1fr;
            /* Default: Single column */
        }

        @media (min-width: 640px) {

            /* sm breakpoint */
            .warehouse-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {

            /* lg breakpoint */
            .warehouse-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .warehouse-card {
            background-color: #fff;
            padding: 1.5rem;
            border-radius: 0.75rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
            border-top: 4px solid var(--brand-gold);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }

        .warehouse-card:hover {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            transform: scale(1.01);
        }

        .warehouse-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--brand-dark);
            margin-bottom: 0.5rem;
        }

        .warehouse-card .location {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--brand-gold);
            margin-bottom: 1rem;
        }

        /* Image Placeholder Styling */
        .image-placeholder {
            width: 100%;
            height: 10rem;
            object-fit: cover;
            border-radius: 0.5rem;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
            margin-bottom: 1rem;
        }

        .warehouse-card ul {
            list-style: none;
            padding: 0;
            color: var(--text-gray);
            font-size: 0.875rem;
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .warehouse-card ul li {
            display: flex;
            align-items: center;
        }

        .warehouse-card ul li span {
            color: var(--brand-gold);
            font-size: 1.125rem;
            margin-right: 0.5rem;
        }

        /* --- Other Clients Card Style --- */
        .other-clients-card {
            grid-column: 1 / -1;
            padding: 1.5rem;
            background-color: #fff;
            border-radius: 0.75rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
            border-top: 4px solid var(--brand-gold);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }

        .other-clients-card:hover {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            transform: scale(1.005);
        }

        .other-clients-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--brand-dark);
            margin-bottom: 0.5rem;
        }

        .client-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-top: 1rem;
            text-align: center;
        }

        @media (min-width: 768px) {

            /* md breakpoint */
            .client-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .client-item {
            padding: 0.75rem;
            background-color: var(--brand-light);
            border-radius: 0.5rem;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
        }

        .client-item p:first-child {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--brand-dark);
        }

        .client-item p:last-child {
            font-size: 0.75rem;
            color: var(--brand-gold);
        }


        /* --- Animation Styles (Fade-In on Scroll) --- */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
        }

        .fade-in.animated {
            animation: fadeIn 0.6s ease-out forwards;
        }

        /* --- AWARDS CARD SECTION (Dark Blue Background) --- */

/* Renamed container from .awards-card to .awards-card-container for clarity */
.awards-card-container {
    /* background-color: var(--brand-dark); */
    border-top: 4px solid #c99c5e;
    color: #fff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    transition: transform 0.3s ease;
}

.awards-card-container:hover {
    transform: scale(1.005);
}

.awards-card-container h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem; /* Increased margin for grid separation */
    color: var(--brand-gold);
    text-align: center; /* Center the main heading */
}

/* New Grid for the Awards */
.awards-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    /* md breakpoint: 2 awards per row */
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    /* lg breakpoint: 4 awards per row */
    .awards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* Individual Award Card Styling */
.award-card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    /* Optional: give each award a subtle background and border */
    background-color: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(201, 156, 94, 0.5); /* Gold border */
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.award-card-item:hover {
    background-color: rgba(201, 156, 94, 0.1); /* Gold hover effect */
}

/* Image Styling */
.award-card-img {
    width: 10rem; /* Larger icon size */
    height: 10rem;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}

/* Caption Styling */
.award-card-caption strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-gold); /* Highlight the title in gold */
    margin-bottom: 0.25rem;
}

.award-card-caption p {
    font-size: 0.875rem;
    color: #ccc;
    margin: 0;
}