 /* Banner Section */
        .banner {
            background: #0049AF;
            color: white;
            padding: 20px 40px;
            text-align: left;
            font-size: 1rem;
            line-height: 1.6;
            border-left: 5px solid #0049AF;
        }

        /* Main Content */
        .main-content {
            display: flex;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            gap: 30px;
        }
        .main-content h3{
            display: inline-block;
            border: 1px solid #0049AF;
            border-radius: 0% 100% 0% 100% / 70% 41% 59% 30% ;
            padding: 6px 12px;
            font-weight: 600;
            font-size: 1.2rem;
            color: #0049AF;
            background-color: #f0f8ff;
            box-shadow: 0 2px 5px rgba(0, 73, 175, 0.2); /* Subtle shadow for depth */            
        }

        .content-left {
            flex: 3;
            min-width: 300px;
            padding: 20px 0;
        }

        .content-left h2 {
            color: #0049AF;
            font-size: 1.2rem;
            font-weight: normal;
            text-shadow: none;
            line-height: 1.4;
            margin-bottom: 20px;
        }

        .content-left ul {
            list-style: none;
            padding-left: 20px;
        }

        .content-left ul li {
            margin-bottom: 10px;
            position: relative;
            font-size: 1rem;
        }

        .content-left ul li::before {
            content: '•';
            color: #0049AF;
            position: absolute;
            left: -20px;
            font-size: 1.2rem;
        }

        /* Sidebar */
        .sidebar {
            flex: 1;
            min-width: 250px;
            padding: 20px 0;
        }

        .sidebar h3 {
            font-size: 1.1rem;
            font-weight: bold;
            text-transform: uppercase;
            color: white;
            background: #0049AF;
            padding: 10px 15px;
            border-radius: 0;
            margin-bottom: 15px;
        }

        .sidebar ul {
            list-style: none;
        }

        .sidebar ul li {
            margin-bottom: 10px;
            padding: 10px 15px;
            background: #f5f5f5;
            font-size: 0.9rem;
            text-transform: uppercase;
            border-left: 3px solid #ddd;
            cursor: pointer;
        }

        .sidebar ul li:hover,
        .sidebar ul li.active {
            background: #e0e0e0;
            border-left: 3px solid #00387A;
        }


        /* ========== Logo Scroll Container ========== */
        .logo-container {
        overflow: hidden;
        width: 100%;
        position: relative;
        padding: 10px 0;
        }

        /* ========== Scrolling Track ========== */
        .scroll-track {
        display: flex;
        gap: 4vw; /* Responsive spacing between logos */
        width: max-content;
        animation: scroll-left 30s linear infinite;
        align-items: center;
        }

        /* ========== Logos ========== */
        .scroll-track img {
        max-height: 50px;
        height: auto;
        width: auto;
        flex-shrink: 0;
        filter: grayscale(50%);
        transition: filter 0.3s ease, transform 0.3s ease;
        }

        .scroll-track img:hover {
        filter: grayscale(0%);
        transform: scale(1.1);
        }

        /* ========== Keyframes for Infinite Scroll ========== */
        @keyframes scroll-left {
        0% {
            transform: translateX(0%);
        }
        100% {
            transform: translateX(-50%);
        }
        }

        /* ========== Pause on Hover (Optional) ========== */
        .logo-container:hover .scroll-track {
        animation-play-state: paused;
        }

        /* ========== Responsive Breakpoints ========== */
        @media (max-width: 1024px) {
        .scroll-track {
            gap: 6vw;
            animation-duration: 40s;
        }

        .scroll-track img {
            max-height: 45px;
        }
        }

        @media (max-width: 768px) {
        .scroll-track {
            gap: 8vw;
            animation-duration: 50s;
        }

        .scroll-track img {
            max-height: 40px;
        }
        }

        @media (max-width: 480px) {
        .scroll-track {
            gap: 10vw;
            animation-duration: 60s;
        }

        .scroll-track img {
            max-height: 35px;
        }
        }


        /* Technology Partners Section */
        .tech-partners {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            background: linear-gradient(135deg, #f0f4f8, #e0e7f0);
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(186, 185, 185, 0.1);
            margin-bottom: 20px;
        }

        .tech-partners h2 {
            color: #0049AF;
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 30px;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .tech-partners .category {
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            flex-wrap: nowrap; /* Prevent wrapping */
        }

        .tech-partners .category h3 {
            color: #333;
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 0;
            text-transform: uppercase;
            border-bottom: 3px solid #0049AF;
            padding: 10px 10px;
            min-width: 250px;
            background: linear-gradient(to right, #ffffff, #f0f4f8);
            border-radius: 5px 0 0 5px;
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
            text-align: left; /* Align title text to the right */
            margin-right: 20px; /* Space between title and logos */
        }

        .tech-partners .logo-container {
            display: flex;
            gap: 30px;
            overflow: hidden;
            padding: 10px 0;
            position: relative;
            white-space: nowrap; /* Ensure single row */
            flex-grow: 1; /* Allow container to take remaining space */
            align-items: last baseline;
        }


        /* Responsive Design */
        @media (max-width: 768px) {
            .header {
                height: 40vh;
                padding: 0 20px;
            }

            .header-content h1 {
                font-size: 2rem;
            }

            .header-content h1 span {
                font-size: 2.2rem;
            }

            .banner {
                font-size: 0.9rem;
                padding: 15px 20px;
            }

            .main-content {
                flex-direction: column;
                padding: 20px;
            }

            .content-left, .sidebar {
                flex: 1;
                width: 100%;
            }

            .tech-partners .category {
                flex-direction: column;
                align-items: flex-start;
            }

            .tech-partners .category h3 {
                margin-bottom: 15px;
                min-width: 100%;
                border-radius: 5px;
                text-align: left;
            }
        }