      /* Custom styles to enhance Bootstrap */
      :root {
        --primary-color: #0078d4;
        --secondary-color: #00538b;
        --text-dark: #333;
        --text-light: #555;
        --bg-light: #f8f9fa;
        --transition: all 0.3s ease;
    }

    body {
        font-family: 'Segoe UI', Arial, sans-serif;
        overflow-x: hidden;
    }

    /* Header styling */
    
    .header {
        position: sticky;
        top: 0;
        background-color: white;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        z-index: 1000;
    }

    .bi-headset{
        color: white;
    }

    .nav-container {
        padding: 0.5rem 1rem;
    }
    
    .mega-link  {
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 600;
        color: #00529b;
    }

    /* Logo styling */
    .navbar-brand {
        font-weight: 600;
        font-size: 1.5rem;
        color: var(--text-dark);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Main navigation */
    .navbar-nav .nav-item {
        position: relative;
        margin: 0 0.25rem;
    }

    .navbar-nav .nav-link {
        color: var(--text-dark);
        font-weight: 500;
        padding: 1rem 1.25rem;
        position: relative;
        transition: var(--transition);
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        color: var(--primary-color);
    }

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 3px;
        background-color: var(--primary-color);
        transition: var(--transition);
        transform: translateX(-50%);
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link:focus::after {
        width: 70%;
    }

    /* Mega menu styling */
    .mega-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-30%);
        width: 80vw;
        max-width: 1100px;
        background-color: rgb(255, 255, 255);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 12px 12px;
        padding: 2rem;
        display: none;
        z-index: 1001;
        border-top: 3px solid var(--primary-color);
        transition: var(--transition);

    }

    .nav-item:hover .mega-menu,
    .nav-item:focus-within .mega-menu {
        display: grid;
    }

    .solutions-menu {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .industries-menu {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .why-menu,
    .resources-menu {
        grid-template-columns: 1fr;
        width: 200px;
    }

    .mega-menu-column h3 {
        color: var(--primary-color);
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid #e9ecef;
        position: relative;
    }

    .mega-menu-column h3::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 50px;
        height: 3px;
        background-color: var(--primary-color);
    }

    .mega-menu-links {
        list-style: none;
        padding-left: 0;
    }

    .mega-menu-links li {
        margin-bottom: 0.5rem;
    }

    .mega-menu-links a {
        color: var(--text-light);
        text-decoration: none;
        font-size: 0.95rem;
        transition: var(--transition);
        display: block;
        padding: 0.5rem 0;
        position: relative;
        padding-left: 1.25rem;
    }

    .mega-menu-links a::before {
        content: '\F26D';
        font-family: 'bootstrap-icons';
        position: absolute;
        left: 0;
        font-size: 0.8rem;
        color: var(--primary-color);
    }

    .mega-menu-links a:hover {
        color: var(--primary-color);
        transform: translateX(5px);
    }

    /* Right side icons */
    .nav-icons .btn {
        margin-left: 0.75rem;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-dark);
        transition: var(--transition);
        background-color: var(--bg-light);
    }

    .nav-icons .btn:hover {
        background-color: var(--primary-color);
        color: white;
    }

    .nav-icons .btn-primary {
        background-color: var(--primary-color);
        color: white;
        border-radius: 30px;
        padding: 0.5rem 1.25rem;
        display: flex;
        align-items: center;
        width: auto;
        height: auto;
        font-weight: 500;
    }

    .nav-icons .btn-primary:hover {
        background-color: var(--secondary-color);
    }

    /* Mobile styles */
    @media (max-width: 992px) {
        .mega-menu {
            position: static;
            transform: none;
            width: 100%;
            box-shadow: none;
            border-radius: 0;
            padding: 1rem;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: all 0.3s ease;
            display: block;
            border-top: none;
        }

        .solutions-menu,
        .industries-menu,
        .why-menu,
        .resources-menu {
            grid-template-columns: 1fr;
            gap: 0.5rem;
        }

        .mega-menu-column {
            margin-bottom: 1rem;
        }

        .dropdown-toggle {
            width: 100%;
            text-align: center;
            display: inline-block;
            margin-top: -50px;
            background: none;
            border: none;
            font-size: 1.2rem;
            color: var(--text-light);
            position: relative;
            top: -12px;
            left: 40%;
        }

        .nav-item.active .mega-menu {
            max-height: 2000px;
            opacity: 1;
            border-left: 3px solid var(--primary-color);
            padding-left: 1.5rem;
        }

        .nav-link {
            width: 50px;
            height: 5px;
        }

        .navbar-nav .nav-link::after {
            display: none;
        }

        .mega-menu-links a::before {
            content: '\F282';
        }

        .navbar-collapse {
            max-height: 80vh;
            overflow-y: auto;
        }

        .nav-icons {
            flex-direction: row;
            justify-content: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #e9ecef;
        }
    }
    

    /* Slider CSS - Base Styles */
    .slider-container {
        position: relative;
        width: 100%;
        height: 560px;
        overflow: hidden;
        cursor: grab;
    }

    .slider {
        display: flex;
        width: 300%;
        height: 100%;
        transition: transform 0.5s ease-in-out;
    }

    .slide {
        width: 33.33%;
        height: 100%;
        display: flex;
    }

    .slide-1 {
        background: linear-gradient(90deg, #003399 0%, #6600cc 50%, #ff0000 100%);
    }

    .slide-2 {
        background: linear-gradient(90deg, #009933 0%, #00ccff 50%, #ff6600 100%);
    }

    .slide-3 {
        background: linear-gradient(90deg, #660066 0%, #cc3300 50%, #006699 100%);
    }

    .slide-content {
        width: 60%;
        padding: 80px;
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .slide-content h1 {
        font-size: 48px;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .slide-content p {
        font-size: 18px;
        margin-bottom: 40px;
        line-height: 1.6;
    }

    .slider-cta-1 {
        display: inline-block;
        background-color: #ff0000;
        border: 1px solid #ff0000;
        color: white;
        padding: 15px 30px;
        text-decoration: none;
        font-weight: bold;
        border-radius: 3px;
        font-size: 16px;
        margin-bottom: 15px;
    }

    .slider-cta-1:hover {
        display: inline-block;
        border: 1px solid white;
        background-color: #ffffff00;
        color: white;
        padding: 15px 30px;
        text-decoration: none;
        font-weight: bold;
        border-radius: 3px;
        font-size: 16px;
    }

    .slider-cta-2 {
        display: inline-block;
        border: 1px solid white;
        color: white;
        padding: 15px 30px;
        text-decoration: none;
        font-weight: bold;
        border-radius: 3px;
        font-size: 16px;
    }

    .slider-cta-2:hover {
        display: inline-block;
        background-color: #ff0000;
        color: white;
        border: 1px solid #ff0000;
        padding: 15px 30px;
        text-decoration: none;
        font-weight: bold;
        border-radius: 3px;
        font-size: 16px;
    }

    .slide-image {
        width: 40%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .slide-image img {
        max-width: 90%;
        max-height: 80%;
        object-fit: contain;
    }

    .arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 24px;
        color: #333;
        z-index: 100;
    }

    .prev {
        left: 20px;
    }

    .next {
        right: 20px;
    }

    .dots-container {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
    }

    .dot {
        width: 12px;
        height: 12px;
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        margin: 0 5px;
        cursor: pointer;
    }

    .dot.active {
        background-color: white;
    }

    /* Large Desktop Screens (1200px and above) */
    @media screen and (min-width: 1200px) {
        .slider-container {
            height: 600px;
        }

        .slide-content {
            padding: 80px;
        }

        .slide-content h1 {
            font-size: 52px;
        }

        .slide-content p {
            font-size: 20px;
        }
    }

    /* Desktop Screens (992px to 1199px) */
    @media screen and (max-width: 1199px) {
        .slide-content {
            padding: 60px;
        }

        .slide-content h1 {
            font-size: 42px;
        }

        .slide-content p {
            font-size: 17px;
            margin-bottom: 30px;
        }
    }

    /* Tablets and iPad (768px to 991px) */
    @media screen and (max-width: 991px) {
        .slider-container {
            height: 500px;
        }

        .slide {
            flex-direction: column;
        }

        .slide-content {
            width: 100%;
            height: 60%;
            padding: 40px;
            text-align: center;
        }

        .slide-content h1 {
            font-size: 36px;
            margin-bottom: 15px;
        }

        .slide-content p {
            font-size: 16px;
            margin-bottom: 25px;
        }

        .slide-image {
            width: 100%;
            height: 40%;
        }

        .arrow {
            width: 40px;
            height: 40px;
            font-size: 20px;
        }
    }

    /* Medium-sized Tablets (Portrait iPads, 600px to 767px) */
    @media screen and (max-width: 767px) {
        .slider-container {
            height: 450px;
        }

        .slide-content {
            padding: 30px;
        }

        .slide-content h1 {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .slide-content p {
            font-size: 15px;
            margin-bottom: 20px;
        }

        .slider-cta-1,
        .slider-cta-2,
        .slider-cta-1:hover,
        .slider-cta-2:hover {
            padding: 12px 25px;
            font-size: 15px;
        }

        .arrow {
            width: 35px;
            height: 35px;
        }

        .prev {
            left: 10px;
        }

        .next {
            right: 10px;
        }
    }

    /* Mobile Phones and Small Tablets (Up to 599px) */
    @media screen and (max-width: 599px) {
        .slider-container {
            height: 400px;
        }

        .slide-content {
            height: 65%;
            padding: 20px;
        }

        .slide-image {
            height: 35%;
        }

        .slide-content h1 {
            font-size: 26px;
            margin-bottom: 8px;
        }

        .slide-content p {
            font-size: 14px;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .slider-cta-1,
        .slider-cta-2,
        .slider-cta-1:hover,
        .slider-cta-2:hover {
            padding: 10px 20px;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .arrow {
            width: 30px;
            height: 30px;
            font-size: 16px;
        }

        .dot {
            width: 8px;
            height: 8px;
            margin: 0 3px;
        }
    }

    /* Small Mobile Phones (Up to 400px) */
    @media screen and (max-width: 400px) {
        .slider-container {
            height: 350px;
        }

        .slide-content {
            padding: 15px;
        }

        .slide-content h1 {
            font-size: 22px;
        }

        .slide-content p {
            font-size: 13px;
            margin-bottom: 12px;
        }

        .slider-cta-1,
        .slider-cta-2,
        .slider-cta-1:hover,
        .slider-cta-2:hover {
            padding: 8px 15px;
            font-size: 13px;
            display: block;
            width: 80%;
            margin: 0 auto 10px auto;
            text-align: center;
        }

        .arrow {
            width: 25px;
            height: 25px;
            font-size: 14px;
        }
    }

    /* Client Section CSS */
    .clients-section {
        padding: 60px 0;
        background: #f8f9fa;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .section-header p {
        font-size: 1.1rem;
        color: #666;
    }

    .clients-logo-carousel {
        overflow: hidden;
        position: relative;
    }

    .carousel-track {
        display: flex;
        animation: scroll 20s linear infinite;
        width: calc(200px * 8);
        /* Adjust based on number of logos × width */
    }

    .client-logo {
        flex: 0 0 auto;
        width: 200px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px;
    }

    .client-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .clients-logo-carousel:hover .carousel-track {
        animation-play-state: paused;
    }