
        :root {
            --primary-blue: #004aad;
            --text-dark: #1e293b;
            --text-muted: #475569;
            --bg-light: #f8fafc;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            scroll-behavior: smooth;
            padding-top: 80px;
            background-color: #ffffff;
            color: var(--text-dark);
            line-height: 1.6;
        }

        /* --- NAVBAR --- */
        .navbar {
            background: #fff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            padding: 15px 0;
        }
        .navbar-brand img { height: 45px; }
        
        .nav-link { 
            font-weight: 600; 
            color: var(--text-dark) !important;
            font-size: 0.9rem;
            margin: 0 12px;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary-blue) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary-blue);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* --- HERO SECTION --- */
        .modern-carousel-frame {
            position: relative;
            padding: 12px;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(0, 74, 173, 0.1);
            border-radius: 30px;
            box-shadow: 0 30px 60px rgba(0, 74, 173, 0.1);
        }
        #homeCarousel { border-radius: 20px; overflow: hidden; background: #000; }
        .carousel-item { height: 500px; }
        .carousel-item img {
            height: 100%; width: 100%; object-fit: cover; opacity: 0.85;
            transition: transform 10s ease-out;
        }
        .carousel-item.active img { animation: kenburnsEffect 15s ease-out forwards; }
        @keyframes kenburnsEffect {
            0% { transform: scale(1); }
            100% { transform: scale(1.15) translate(10px, -5px); }
        }
        .carousel-caption-glass {
            position: absolute; left: 30px; bottom: 30px;
            background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.3); padding: 20px 25px;
            border-radius: 20px; color: white; max-width: 350px; text-align: left;
        }

        /* --- SEAMLESS CLIENTS SCROLL --- */
        .clients-wrapper {
            background-color: var(--primary-blue);
            overflow: hidden;
            height: 60px;
            display: flex;
            align-items: center;
            border-radius: 50px;
            position: relative;
        }
        .clients-text {
            display: flex;
            white-space: nowrap;
            font-weight: 600;
            font-size: 0.9rem;
            color: #fff;
            animation: scrollClients 30s linear infinite;
        }
        @keyframes scrollClients {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .clients-wrapper::before, .clients-wrapper::after {
            content: ""; position: absolute; top: 0; width: 100px; height: 100%; z-index: 2;
        }
        .clients-wrapper::before { left: 0; background: linear-gradient(to right, var(--primary-blue), transparent); }
        .clients-wrapper::after { right: 0; background: linear-gradient(to left, var(--primary-blue), transparent); }

        /* --- IMPROVED SERVICE CARDS --- */
        .service-card {
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            background: #fff;
            height: 100%;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .service-card:hover { 
            transform: translateY(-10px); 
            box-shadow: 0 20px 40px rgba(0, 74, 173, 0.1);
            border-color: var(--primary-blue);
        }
        .service-img-container {
            width: 100%;
            height: 250px;
            overflow: hidden;
        }
        .service-card img { 
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
            transition: 0.5s;
        }
        .service-card:hover img { transform: scale(1.05); }
        .service-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
        }

        /* --- FEATURE BOX --- */
        .feature-box {
            padding: 40px;
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            text-align: center;
            height: 100%;
            transition: 0.3s;
            position: relative;
        }
        .feature-box:hover { border-color: var(--primary-blue); transform: translateY(-5px); }
        .feature-icon {
            width: 70px; height: 70px; background: var(--bg-light); color: var(--primary-blue);
            display: flex; align-items: center; justify-content: center;
            font-size: 2rem; border-radius: 50%; margin: 0 auto 20px;
        }
        .step-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-blue);
            color: white;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        /* Counter Styles */
       .counter {
           font-size: 2.5rem;
           display: inline-block;
           font-weight: 800;
        }
       .feature-box .bi-clock-history {
           color: var(--primary-blue);
         }

        /* --- FAQ SECTION --- */
        .accordion-item {
            border: 1px solid #e2e8f0;
            border-radius: 15px !important;
            margin-bottom: 15px;
            overflow: hidden;
        }
        .accordion-button:not(.collapsed) {
            background-color: var(--bg-light);
            color: var(--primary-blue);
            box-shadow: none;
        }
        .accordion-button {
            font-weight: 600;
            padding: 20px;
        }

        /* --- ENHANCED CONTACT SECTION --- */
        .contact-card {
            background: #fff;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.05);
            border: 1px solid rgba(0, 74, 173, 0.1);
        }
        .contact-info-panel {
            background: var(--primary-blue);
            color: white;
            padding: 50px;
            height: 100%;
        }
        .contact-method-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }
        .contact-icon-circle {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            flex-shrink: 0;
        }
        .contact-form-panel {
            padding: 50px;
        }
        .contact-link-card {
            display: flex;
            align-items: center;
            padding: 20px;
            background: var(--bg-light);
            border-radius: 15px;
            text-decoration: none;
            color: var(--text-dark);
            margin-bottom: 15px;
            transition: 0.3s;
            border: 1px solid transparent;
        }
        .contact-link-card:hover {
            border-color: var(--primary-blue);
            transform: translateX(10px);
            background: #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
       /* This makes the button easier to trigger on mobile */
#mainToggler {
    cursor: pointer;
    z-index: 2000 !important;
    border: 1px solid rgba(0,0,0,0.1); /* Adds a slight border so you can see the hit area */
    padding: 8px;
}

/* Prevents the 3 lines icon from interfering with the click event */
#mainToggler span {
    pointer-events: none;
}
        /* --- FOOTER --- */
        .footer { background: #0f172a; color: #94a3b8; padding: 80px 0 30px; }
        .footer h5 { color: #fff; font-weight: 700; margin-bottom: 25px; }
        .footer-logo { height: 45px; filter: brightness(0) invert(1); margin-bottom: 20px; }
        .footer-link { color: #94a3b8; text-decoration: none; display: block; margin-bottom: 10px; transition: 0.3s; }
        .footer-link:hover { color: #fff; transform: translateX(5px); }
        .social-btn { width: 40px; height: 40px; background: rgba(255,255,255,0.05); display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; color: #fff; transition: 0.3s; margin-right: 10px; text-decoration: none; }
        .social-btn:hover { background: var(--primary-blue); transform: translateY(-3px); color: #fff; }

        @media(max-width:991px){
            .carousel-item { height: 350px; }
            .service-img-container { height: 200px; }
            .contact-info-panel, .contact-form-panel { padding: 30px; }
        }

        /* --- SOLUTIONS CATALOG STYLES --- */
.product-list-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.product-list-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 74, 173, 0.08);
}

.product-list-card h5 {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.product-items li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
}

.product-items li::before {
    content: "→";
    color: var(--primary-blue);
    margin-right: 10px;
    font-weight: bold;
}

.product-items li:last-child {
    border-bottom: none;
}
.delivery-scene {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('https://img.freepik.com/free-vector/world-map-dots-connecting-lines-background_1017-31688.jpg') center/contain no-repeat;
    opacity: 0.1;
}

.element {
    position: absolute;
    color: var(--primary-blue);
    font-size: 3rem;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

