        :root {
            --primary-color: #0a2540; 
            --secondary-color: #ff3366; 
            --brand-yellow: #ff3366; /* Yellow from reference images */
            --dark-bg: #1a1a1a; /* Dark background for navbar and clients section */
            --text-color: #425466;
            --bg-light: #f7f9fc;
			 --osl-red: #ed1c24; 
        --osl-red-light: rgba(237, 28, 36, 0.1); 
        }
        .text-justify{
    text-align: justify;
    text-justify: inter-word;
}
/******* Map popup******************/
.map-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: zoom-in;
}

.map-image {
    display: block;
    width: 100%;
    height: auto;
}

.magnifier-lens {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,.3);
    pointer-events: none;
    display: none;
    background-repeat: no-repeat;
    background-size: 200%;
    z-index: 10;
}

.overlay-link {
    position: absolute;
    inset: 0;
    z-index: 5;
}



    /* Modern OSL Theme Social Circles */
    .social-circle {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: var(--osl-red-light);
        color: var(--osl-red);
        text-decoration: none;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }

    /* Hover effect: Fills red, text goes white, lifts slightly */
    .social-circle:hover {
        background-color: var(--osl-red);
        color: #ffffff;
        transform: translateY(-4px);
        box-shadow: 0 6px 12px rgba(237, 28, 36, 0.25);
    }
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            color: var(--primary-color);
            font-weight: 700;
        }

        /* -------------------------
           NEW HEADER STYLES 
           ------------------------- */
        
        /* Top Contact Bar */
        .top-header {
            background-color: #ffffff;
            border-bottom: 1px solid #f0f0f0;
        }
        .header-logo-text {
            color: #1a1a1a;
            font-weight: 800;
            line-height: 1.1;
            font-size: 1.1rem;
            margin: 0;
            letter-spacing: 0.5px;
        }
        .header-logo-sub {
            font-style: italic;
            color: #666;
            font-size: 0.8rem;
            font-weight: 400;
        }
        .icon-circle-yellow {
            width: 45px;
            height: 45px;
            border: 2px solid var(--brand-yellow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-yellow);
            font-size: 1.2rem;
        }
        .header-info-text {
            font-size: 0.85rem;
            color: #333;
            line-height: 1.4;
        }
        
        /* Social Icons */
        .social-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: transform 0.2s ease;
        }
        .social-circle:hover {
            color: white;
            transform: scale(1.1);
        }
        .bg-facebook { background-color: #3b5998; }
        .bg-linkedin { background-color: #0077b5; }
        .bg-twitter { background-color: #2caae1; }
        .bg-youtube { background-color: #e21836; }

        /* Dark Navigation Bar */
        .main-navbar-wrapper {
            background-color: #fff; /* White sides */
            padding-bottom: 0;
        }
        .navbar-dark-custom {
            background-color: var(--dark-bg);
            padding: 0;
        }
        .navbar-dark-custom .nav-link {
            color: white !important;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            padding: 15px 20px !important;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }
        .navbar-dark-custom .nav-link:hover, 
        .navbar-dark-custom .nav-link:focus {
            color: var(--brand-yellow) !important;
        }
        
        /* Dropdown Customization */
        .navbar-dark-custom .dropdown-menu {
            background-color: var(--dark-bg);
            border: none;
            border-top: 3px solid var(--brand-yellow);
            border-radius: 0;
            margin-top: 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .navbar-dark-custom .dropdown-item {
            color: white;
            font-weight: 500;
            font-size: 0.85rem;
            padding: 10px 20px;
            text-transform: uppercase;
        }
        .navbar-dark-custom .dropdown-item:hover {
            background-color: #333;
            color: var(--brand-yellow);
        }
        .dropdown:hover > .dropdown-menu {
            display: block; /* Enables hover-to-open on desktop */
        }

        /* -------------------------
           HERO & SECTION STYLES 
           ------------------------- */

        .hero-section {
            position: relative;
            height: calc(100vh - 150px); /* Adjusted height for the new taller header */
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: -2;
            transform: translate(-50%, -50%);
            object-fit: cover;
        }
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 37, 64, 0.9) 0%, rgba(10, 37, 64, 0.4) 100%);
            z-index: -1;
        }
        .hero-content {
            text-align: center;
            color: white;
            z-index: 1;
            max-width: 900px;
            padding: 0 20px;
            animation: fadeIn 1.5s ease-out;
        }
        .hero-content h1 {
            color: white;
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
		.btn:hover{background-color:#000!important; color:#fff!important;}
        .btn-modern {
            background-color: var(--secondary-color);
            color: white;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
            border: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .btn-modern:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(255, 51, 102, 0.3);
            color: white;
        }

        /* Sections common */
        .section-padding { padding: 100px 0; }
        .section-title {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            font-weight: 800;
            text-transform: uppercase;
        }
        .heading-underline-yellow {
            width: 60px;
            height: 4px;
            background-color: var(--brand-yellow);
            margin-bottom: 30px;
        }

        /* Geographic Advantage Section */
        .geo-list-item {
            background-color: var(--brand-yellow);
            color: #fff;
            padding: 18px 25px;
            margin-bottom: 15px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            transition: transform 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
        .geo-list-item:hover { transform: translateX(10px); }
        .geo-list-item i { margin-right: 15px; font-size: 1rem; }
        .btn-yellow-solid {
            background-color: var(--brand-yellow);
            color: #fff;
            font-weight: 700;
            border: none;
            padding: 12px 35px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: opacity 0.3s ease;
        }
        .btn-yellow-solid:hover { opacity: 0.9; color: #000; }
        .map-wrapper {
            position: relative;
            z-index: 1;
        }
        .map-wrapper::after {
            content: '';
            position: absolute;
            top: -15px; left: 15px; right: -15px; bottom: 15px;
            background-color: var(--brand-yellow);
            z-index: -1;
        }
        .map-wrapper img {
            width: 100%;
            height: auto;
            border: 4px solid white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* Clients & Testimonials Section */
        .clients-testimonials-wrap { display: flex; flex-wrap: wrap; width: 100%; }
        .clients-col {
            background-color: var(--dark-bg);
            padding: 100px 5vw;
            color: white; flex: 1; min-width: 50%; position: relative;
        }
        .testimonials-col {
            background-color: var(--brand-yellow);
            padding: 100px 5vw;
            color: white; flex: 1; min-width: 50%; position: relative;
            background-image: radial-gradient(rgba(255,255,255,0.2) 2px, transparent 2px);
            background-size: 20px 20px;
        }
        .clients-col h2, .testimonials-col h2 {
            color: white; font-size: 2.2rem; margin-bottom: 10px; text-transform: uppercase;
        }
        .testimonials-col .heading-underline-yellow { background-color: white; }
        
        /* Carousel Sliders */
        .client-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 10px 0 40px;
        }
        .client-box {
            background: white; height: 130px; display: flex; align-items: center; justify-content: center; padding: 20px; transition: transform 0.3s ease;
        }
        .client-box:hover { transform: translateY(-5px); }
        .client-box h4 { color: #333; margin: 0; font-weight: 800; font-size: 1.2rem; text-align: center; }

        .testimonial-card {
            background: white; color: #333; padding: 50px 40px; text-align: center;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1); margin: 10px 0 50px;
            min-height: 380px; display: flex; flex-direction: column; justify-content: center;
        }
        .testimonial-card h5 { color: var(--primary-color); font-weight: 800; margin-bottom: 5px; text-transform: uppercase; }
        .testimonial-card .author-title { font-size: 0.85rem; color: #888; margin-bottom: 30px; }
        .testimonial-card p { font-style: italic; font-size: 1.05rem; line-height: 1.8; margin-bottom: 0; color: #555; }

        .carousel-indicators { bottom: -15px; }
        .testimonials-col .carousel-indicators [data-bs-target] { background-color: var(--primary-color); opacity: 0.3; height: 4px; width: 30px; }
        .testimonials-col .carousel-indicators .active { opacity: 1; }
        .clients-col .carousel-indicators [data-bs-target] { background-color: var(--brand-yellow); opacity: 0.3; height: 4px; width: 30px; }
        .clients-col .carousel-indicators .active { opacity: 1; }

        /* Footer */
        footer { background-color: var(--primary-color); color: white; padding: 80px 0 30px; }
        footer h5 { color: white; margin-bottom: 25px; font-size: 1.2rem; }
        footer a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; display: inline-block; margin-bottom: 10px; }
        footer a:hover { color: var(--secondary-color); transform: translateX(5px); }

        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .clients-col, .testimonials-col { min-width: 100%; padding: 60px 20px; }
            .hero-content h1 { font-size: 2.5rem; }
            .testimonial-card { min-height: auto; }
            .top-header .d-flex { flex-direction: column; text-align: center; }
            .icon-circle-yellow { margin-bottom: 10px; }
            .navbar-dark-custom .nav-link { padding: 10px 20px !important; }
        }