:root {
            --primary-color: #0198d9;
            --primary-color-dark: #0177b3;
            --primary-color-light: #02a8f0;
            --accent-color: #33b3e6;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-600: #4b5563;
            --gray-900: #111827;
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
            --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
            --radius-lg: 0.5rem;
            --radius-xl: 0.75rem;
            --radius-2xl: 1rem;
            --radius-3xl: 1.5rem;


        }

        * {
            box-sizing: border-box;
        }



        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            /* color: var(--gray-900); */
            /* color: var(--paragraph-color); */

        }

        /* UPDATED Hero Section Styles - Mobile Video with Aspect Ratio */
        .hero-section {
            position: relative;
        }

        /* Desktop/Laptop Layout (Normal Overlay) */
        .hero-desktop {
            display: block;
        }

        .hero-mobile {
            display: none;
        }

        .video-container {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 500px;
        }

        .video-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
            z-index: 10;
            pointer-events: none;
        }

        .video-container iframe {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100vw;
            height: 56.25vw;
            min-height: 100vh;
            min-width: 177.77vh;
            transform: translate(-50%, -50%);
            object-fit: cover;
        }

        /* UPDATED Mobile Layout - Proper Aspect Ratio Video */
        @media (max-width: 768px) {
            .hero-desktop {
                display: none;
            }

            .hero-mobile {
                display: flex;
                flex-direction: column;
                min-height: 100vh;
            }

            .mobile-video-container {
                position: relative;
                width: 100%;
                /* UPDATED: Using aspect-video for proper 16:9 ratio */
                aspect-ratio: 16 / 9;
                min-height: 300px;
                max-height: 60vh;
            }

            .mobile-video-container iframe {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .mobile-content-container {
                flex: 1;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 2rem 1rem;
                background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
                min-height: 40vh;
            }

            .mobile-hero-content {
                text-align: center;
                max-width: 500px;
                width: 100%;
            }

            .mobile-hero-content h1 {
                font-size: clamp(1.75rem, 6vw, 2.5rem);
                font-weight: 800;
                line-height: 1.2;
                color: var(--gray-900);
                margin-bottom: 1rem;
            }

            .mobile-hero-content p {
                font-size: 1rem;
                line-height: 1.6;
                color: var(--gray-600);
                margin-bottom: 2rem;
            }
        }

        /* Modern Button Styles */
        .btn-modern {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 1.8rem;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }

        .btn-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .btn-modern:hover::before {
            left: 100%;
        }

        .btn-modern:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-2xl);
        }

        /* Mobile button adjustments */
        @media (max-width: 768px) {
            .btn-modern {
                padding: 0.75rem 1.5rem;
                font-size: 0.9rem;
                min-width: 200px;
                justify-content: center;
                overflow: visible;
            }
        }



        /* Card Styles */
        .modern-card {
            background: white;
            padding: 2rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .modern-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .modern-card:hover::before {
            transform: scaleX(1);
        }

        .modern-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-2xl);
            border-color: rgba(1, 152, 217, 0.2);
        }

        /* UPDATED Service Card Styles - Mobile Icon Centering */
        .service-card {
            background: white;
            padding: 2rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-2xl);
            border-color: rgba(1, 152, 217, 0.3);
        }

        .service-icon {
            width: 90px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
        }

        .service-icon img {
            width: 60px;
            height: 60px;
            object-fit: contain;
            position: relative;
            z-index: 2;
            transition: filter 0.4s ease;
            mix-blend-mode: multiply;
        }

        .service-content {
            flex: 1;
        }

        /* UPDATED: Mobile Service Card Layout - Centered Icons */
        @media (max-width: 768px) {
            .service-card {
                padding: 1.5rem;
                flex-direction: column;
                text-align: center;
                gap: 1rem;
                align-items: center;
            }

            .service-icon {
                width: 80px;
                height: 80px;
                margin: 0 auto;
                align-self: center;
            }

            .service-icon img {
                width: 60px;
                height: 60px;
            }

            .service-content {
                width: 100%;
                text-align: center;
            }
        }

        /* Clean Project Card Styles with Centered Logo */
        .project-card-clean {
            position: relative;
            overflow: hidden;
            background: #000;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            height: 500px;
            /* isolation: isolate;  */
        }

        .project-card-clean:hover {
            transform: scale(1.02);
        }

        .project-bg-clean {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .project-card-clean:hover .project-bg-clean {
            transform: scale(1.1);
        }

        .project-overlay-clean {
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, rgba(1, 152, 217, 0.0) 0%, rgba(51, 179, 230, 0.0) 100%);
            z-index: 2;
            transition: all 0.6s ease;
        }

        .project-card-clean:hover .project-overlay-clean {
            background: linear-gradient(45deg, rgba(1, 152, 217, 0.85) 0%, rgba(51, 179, 230, 0.75) 100%);
        }

        .project-logo-clean {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            padding: 1rem;
            z-index: 3;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 1;
            /* mix-blend-mode: soft-light; */
            background:white;

        }

        .project-card-clean:hover .project-logo-clean {
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.8);
        }

        .project-logo-clean img {
            width: 120px;
            height: 60px;
            object-fit: contain;

        }

        .project-content-clean {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            z-index: 3;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .project-card-clean:hover .project-content-clean {
            opacity: 1;
            transform: translateY(0);
        }

        /* Enhanced News & Insights Section Styles */
        .news-insights-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 1rem;
            margin-top: 3rem;
        }

        .featured-article {
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .featured-article:hover {
            transform: translateY(-8px);
        }

        .featured-image {
            width: 100%;
            aspect-ratio: 17/9;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .featured-article:hover .featured-image {
            transform: scale(1.05);
        }

        .featured-content {
            padding: 1.8rem 0;
            position: relative;
        }

        .featured-category {
            position: absolute;
            top: -20px;
            left: 2rem;
            background: var(--primary-color);
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .featured-title {
            font-size: 1.8rem;
            color: var(--gray-900);
            margin: 0 0 1rem 0;
            line-height: 1.3;
        }

        .featured-excerpt {
            color: var(--gray-600);
            font-size: 1.125rem;
            line-height: 1.6;
            /* margin-bottom: 1.5rem; */
        }

        /* .featured-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 1rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        } */

        .read-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .read-more-btn:hover {
            color: var(--primary-color-dark);
            transform: translateX(4px);
        }

        .sidebar-articles {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .sidebar-article {
            background: white;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .sidebar-article:hover {
            transform: translateY(-4px);
        }

        .sidebar-image {
            width: 100%;
            aspect-ratio:4/3;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .sidebar-article:hover .sidebar-image {
            transform: scale(1.08);
        }

        .sidebar-content {
            padding: 1.5rem 0;
        }

        .sidebar-category {
            display: inline-block;
            background: rgba(1, 152, 217, 1);
            color: #fff;
            padding: 0.25rem 0.75rem;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.75rem;
        }

        .sidebar-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--gray-900);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .sidebar-title:hover{
            color:#02a8f0;
        }

        .sidebar-excerpt {
            color: var(--gray-600);
            font-size: 0.875rem;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Alternative Layout for 4 Articles */
        .news-grid-four {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .news-grid-four .featured-article:first-child {
            grid-column: span 2;
        }

        .news-grid-four .featured-article:first-child .featured-image {
            height: 280px;
        }

        .news-grid-four .featured-article:first-child .featured-title {
            font-size: 2rem;
        }

        /* Client Marquee Styles */
        .client-marquee-container {
            overflow: hidden;
            position: relative;
            width: 100%;
            height: 140px;
        }

        .client-marquee-content {
            display: flex;
            width: max-content;
            align-items: center;
            height: 100%;
            will-change: transform;
            animation: clientMarqueeScroll 40s linear infinite;
        }

        @keyframes clientMarqueeScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .client-marquee-container:hover .client-marquee-content {
            animation-play-state: paused;
        }

        .client-marquee-item {
            margin: 0 3rem;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            filter: grayscale(100%) opacity(1);
        }

        .client-marquee-item:hover {
            transform: scale(1.3);
            filter: grayscale(0%) opacity(1);
        }

        .client-marquee-container:hover .client-marquee-item:not(:hover) {
            transform: scale(0.9);
            filter: grayscale(100%) opacity(0.4);
        }

        .client-marquee-item img {
            max-height: 90px;
            width: auto;
            max-width: 240px;
            object-fit: contain;
        }

        /* Play Button */
        .play-button {
            width: 70px;
            height: 70px;
            background: rgba(1, 152, 217, 0.2);
            border: 3px solid rgba(1, 152, 217, 0.4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
        }

        .play-button::before {
            content: '';
            position: absolute;
            inset: -10px;
            border: 2px solid rgba(1, 152, 217, 0.2);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .play-button:hover {
            background: rgba(1, 152, 217, 0.3);
            border-color: rgba(1, 152, 217, 0.6);
            transform: scale(1.15);
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(1.2); opacity: 0; }
        }

        /* Badge Styles */
        .modern-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(1, 152, 217, 0.1);
            color: var(--primary-color-dark);
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1.5rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .animate-fade-in-up {
            opacity: 0;
            animation: fadeInUp 1s ease-out forwards;
        }

        .animate-slide-left {
            opacity: 0;
            animation: slideInLeft 1s ease-out forwards;
        }

        .animate-slide-right {
            opacity: 0;
            animation: slideInRight 1s ease-out forwards;
        }

        .section-animate {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .section-animate.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* UPDATED Typography - Consistent Heading Sizes */
        .heading-xl {
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .heading-lg {
            font-size: clamp(2rem, 6vw, 3.5rem);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.015em;
        }

        .heading-md {
            font-size: clamp(1.25rem, 4vw, 2rem);
            font-weight: 600;
            line-height: 1.3;
        }

        .text-lg {
            font-size: 1.25rem;
            line-height: 1.6;
        }

        /* UPDATED: Consistent Section Headers */
        .section-header {
            font-size: clamp(2.5rem, 5vw, 3rem);
            font-weight: 500;
            line-height: 1.2;
            color: var(--gray-900);
            margin-bottom: 1.5rem;
        }

        /* Color Classes */
        .text-primary {
            color: var(--primary-color);
        }

        .text-primary-dark {
            color: var(--primary-color-dark);
        }

        .bg-primary {
            background-color: var(--primary-color);
        }

        .bg-primary-light {
            background-color: rgba(1, 152, 217, 0.1);
        }

        .border-primary {
            border-color: var(--primary-color);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .news-insights-container {
                grid-template-columns: 1fr;
                gap: 0rem;
            }

            .news-grid-four {
                grid-template-columns: 1fr;
            }

            .news-grid-four .featured-article:first-child {
                grid-column: span 1;
            }
        }

        @media (max-width: 768px) {
            .modern-card {
                padding: 1.5rem;
            }

            .project-card-clean {
                height: 300px;
            }

            .project-content-clean {
                padding: 1.5rem;
            }

            .project-logo-clean {
                padding: 1rem;
            }

            .project-logo-clean img {
                width: 80px;
                height: 45px;
            }

            .client-marquee-item {
                margin: 0 2rem;
            }

            .featured-content {
                padding: 1.5rem 0;
            }

            .featured-category {
                left: 1.5rem;
            }

            .featured-title {
                font-size: 1.5rem;
            }

            .sidebar-content {
                padding: 1rem;
            }

            /* UPDATED: Mobile heading consistency */
            .section-header {
                font-size: clamp(1.75rem, 5vw, 2.5rem);
                line-height: 1.3;
            }
        }


         /* :root {
            --primary-color: #0198d9;
            --primary-color-dark: #0177b3;
            --primary-color-light: #02a8f0;
            --accent-color: #33b3e6;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-600: #4b5563;
            --gray-900: #111827;
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
            --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
            --radius-lg: 0.5rem;
            --radius-xl: 0.75rem;
            --radius-2xl: 1rem;
            --radius-3xl: 1.5rem;
        }

        * {
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--gray-900);
        } */

        /* UPDATED Hero Section Styles - Mobile Video with Aspect Ratio */
        .hero-section {
            position: relative;
        }

        /* Desktop/Laptop Layout (Normal Overlay) */
        .hero-desktop {
            display: block;
        }

        .hero-mobile {
            display: none;
        }

        .video-container {
            position: relative;
            width: 100%;
            height: 90vh;
            min-height: 500px;
            overflow: hidden;
        }

        .video-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
            z-index: 10;
            pointer-events: none;
        }

        .video-container iframe {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100vw;
            height: 100vh;
            min-width: 100vw;
            min-height: 100vh;
            transform: translate(-50%, -50%);
            object-fit: cover;
            aspect-
        }


        /* UPDATED Mobile Layout - Proper Aspect Ratio Video */
        @media (max-width: 768px) {
            .hero-desktop {
                display: none;
            }

            .hero-mobile {
                display: flex;
                flex-direction: column;
                min-height: 100vh;
            }

            .mobile-video-container {
                position: relative;
                width: 100%;
                /* UPDATED: Using aspect-video for proper 16:9 ratio */
                aspect-ratio: 16 / 9;
                min-height: 300px;
                max-height: 60vh;
            }

            .mobile-video-container iframe {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .mobile-content-container {
                flex: 1;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 2rem 1rem;
                background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
                min-height: 40vh;
            }

            .mobile-hero-content {
                text-align: center;
                max-width: 500px;
                width: 100%;
            }

            .mobile-hero-content h1 {
                font-size: clamp(1.75rem, 6vw, 2.5rem);
                font-weight: 800;
                line-height: 1.2;
                color: var(--gray-900);
                margin-bottom: 1rem;
            }

            .mobile-hero-content p {
                font-size: 1rem;
                line-height: 1.6;
                color: var(--gray-600);
                margin-bottom: 2rem;
            }
        }

        /* Modern Button Styles */
        /* .btn-modern {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 1.8rem;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;

        }

        .btn-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .btn-modern:hover::before {
            left: 100%;
        }

        .btn-modern:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-2xl);
        }


        @media (max-width: 768px) {
            .btn-modern {
                padding: 0.75rem 1.5rem;
                font-size: 0.9rem;
                min-width: 200px;
                justify-content: center;
            }
        } */

        /* Card Styles */
        /* .modern-card {
            background: white;
            padding: 2rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .modern-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .modern-card:hover::before {
            transform: scaleX(1);
        }

        .modern-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-2xl);
            border-color: rgba(1, 152, 217, 0.2);
        } */

        /* UPDATED Service Card Styles - Mobile Icon Centering */
        .service-card {
            background: white;
            padding: 2rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-2xl);
            border-color: rgba(1, 152, 217, 0.3);
        }

        .service-icon {
            width: 90px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
        }

        .service-icon img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            position: relative;
            z-index: 2;
            transition: filter 0.4s ease;
            mix-blend-mode: multiply;
        }

        .service-content {
            flex: 1;
        }

        /* UPDATED: Mobile Service Card Layout - Centered Icons */
        @media (max-width: 768px) {
            .service-card {
                padding: 1.5rem;
                flex-direction: column;
                text-align: center;
                gap: 1rem;
                align-items: center;
            }

            .service-icon {
                width: 80px;
                height: 80px;
                margin: 0 auto;
                align-self: center;
            }

            .service-icon img {
                width: 60px;
                height: 60px;
            }

            .service-content {
                width: 100%;
                text-align: center;
            }
        }

        /* Clean Project Card Styles with Centered Logo */
        .project-card-clean {
            position: relative;
            overflow: hidden;
            background: #000;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            height: 500px;
            /* isolation: isolate;  */
        }

        .project-card-clean:hover {
            transform: scale(1.02);
        }

        .project-bg-clean {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .project-card-clean:hover .project-bg-clean {
            transform: scale(1.1);
        }

        .project-overlay-clean {
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, rgba(1, 152, 217, 0.0) 0%, rgba(51, 179, 230, 0.0) 100%);
            z-index: 2;
            transition: all 0.6s ease;
        }

        .project-card-clean:hover .project-overlay-clean {
            background: linear-gradient(45deg, rgba(1, 152, 217, 0.85) 0%, rgba(51, 179, 230, 0.75) 100%);
        }

        .project-logo-clean {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            padding: 1rem;
            z-index: 3;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 1;
            /* mix-blend-mode: soft-light; */
            background:white;

        }

        .project-card-clean:hover .project-logo-clean {
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.8);
        }

        .project-logo-clean img {
            width: 120px;
            height: 60px;
            object-fit: contain;

        }

        .project-content-clean {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            z-index: 3;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .project-card-clean:hover .project-content-clean {
            opacity: 1;
            transform: translateY(0);
        }

        /* Enhanced News & Insights Section Styles */
        .news-insights-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .featured-article {
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .featured-article:hover {
            transform: translateY(-8px);
        }

        .featured-image {
            width: 100%;
            aspect-ratio: 17/9;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .featured-article:hover .featured-image {
            transform: scale(1.05);
        }

        .featured-content {
            padding: 1.8rem 0;
            position: relative;
        }

        .featured-category {
            position: absolute;
            top: -20px;
            left: 2rem;
            background: var(--primary-color);
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .featured-title {
            font-size: 1.8rem;
            color: var(--gray-900);
            margin: 0 0 1rem 0;
            line-height: 1.3;
        }

        .featured-excerpt {
            color: var(--gray-600);
            font-size: 1.125rem;
            line-height: 1.6;
            /* margin-bottom: 1.5rem; */
        }

        /* .featured-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 1rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        } */

        .read-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .read-more-btn:hover {
            color: var(--primary-color-dark);
            transform: translateX(4px);
        }

        .sidebar-articles {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .sidebar-article {
            background: white;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .sidebar-article:hover {
            transform: translateY(-4px);
        }

        .sidebar-image {
            width: 100%;
            aspect-ratio:4/3;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .sidebar-article:hover .sidebar-image {
            transform: scale(1.08);
        }

        .sidebar-content {
            padding: 1.5rem 0;
        }

        .sidebar-category {
            display: inline-block;
            background: rgba(1, 152, 217, 1);
            color: #fff;
            padding: 0.25rem 0.75rem;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.75rem;
        }

        .sidebar-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--gray-900);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .sidebar-title:hover{
            color:#02a8f0;
        }

        .sidebar-excerpt {
            color: var(--gray-600);
            font-size: 0.875rem;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Alternative Layout for 4 Articles */
        .news-grid-four {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .news-grid-four .featured-article:first-child {
            grid-column: span 2;
        }

        .news-grid-four .featured-article:first-child .featured-image {
            height: 280px;
        }

        .news-grid-four .featured-article:first-child .featured-title {
            font-size: 2rem;
        }

        /* Client Marquee Styles */
        .client-marquee-container {
            overflow: hidden;
            position: relative;
            width: 100%;
            height: 140px;
        }

        .client-marquee-content {
            display: flex;
            width: max-content;
            align-items: center;
            height: 100%;
            will-change: transform;
            animation: clientMarqueeScroll 80s linear infinite;
        }

        @keyframes clientMarqueeScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .client-marquee-container:hover .client-marquee-content {
            animation-play-state: paused;
        }

        .client-marquee-item {
            margin: 0 3rem;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            filter: grayscale(0%) opacity(1);
        }

        .client-marquee-item:hover {
            transform: scale(1.3);
            filter: grayscale(0%) opacity(1);
        }

        .client-marquee-container:hover .client-marquee-item:not(:hover) {
            transform: scale(0.9);
            filter: grayscale(100%) opacity(0.4);
        }

        .client-marquee-item img {
            max-height: 80px;
            width: auto;
            max-width: 220px;
            object-fit: contain;
        }

        /* Play Button */
        .play-button {
            width: 70px;
            height: 70px;
            background: rgba(1, 152, 217, 0.2);
            border: 3px solid rgba(1, 152, 217, 0.4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
        }

        .play-button::before {
            content: '';
            position: absolute;
            inset: -10px;
            border: 2px solid rgba(1, 152, 217, 0.2);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .play-button:hover {
            background: rgba(1, 152, 217, 0.3);
            border-color: rgba(1, 152, 217, 0.6);
            transform: scale(1.15);
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(1.2); opacity: 0; }
        }

        /* Badge Styles */
        .modern-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(1, 152, 217, 0.1);
            color: var(--primary-color-dark);
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1.5rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .animate-fade-in-up {
            opacity: 0;
            animation: fadeInUp 1s ease-out forwards;
        }

        .animate-slide-left {
            opacity: 0;
            animation: slideInLeft 1s ease-out forwards;
        }

        .animate-slide-right {
            opacity: 0;
            animation: slideInRight 1s ease-out forwards;
        }

        .section-animate {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .section-animate.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* UPDATED Typography - Consistent Heading Sizes */
        .heading-xl {
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .heading-lg {
            font-size: clamp(2rem, 6vw, 3.5rem);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.015em;
        }

        .heading-md {
            font-size: clamp(1.25rem, 4vw, 2rem);
            font-weight: 600;
            line-height: 1.3;
        }

        .text-lg {
            font-size: 1.25rem;
            line-height: 1.6;
        }

        /* UPDATED: Consistent Section Headers */
        /* .section-header {
            font-size: clamp(2.5rem, 5vw, 3rem);
            font-weight: 500;
            line-height: 1.2;
            color: var(--gray-900);
            margin-bottom: 1.5rem;
        } */

        /* Color Classes */
        .text-primary {
            color: var(--primary-color);
        }

        .text-primary-dark {
            color: var(--primary-color-dark);
        }

        .bg-primary {
            background-color: var(--primary-color);
        }

        .bg-primary-light {
            background-color: rgba(1, 152, 217, 0.1);
        }

        .border-primary {
            border-color: var(--primary-color);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .news-insights-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .news-grid-four {
                grid-template-columns: 1fr;
            }

            .news-grid-four .featured-article:first-child {
                grid-column: span 1;
            }
        }

        @media (max-width: 768px) {
            .modern-card {
                padding: 1.5rem;
            }

            .project-card-clean {
                height: 300px;
            }

            .project-content-clean {
                padding: 1.5rem;
            }

            .project-logo-clean {
                padding: 1rem;
            }

            .project-logo-clean img {
                width: 80px;
                height: 45px;
            }

            .client-marquee-item {
                margin: 0 2rem;
            }

            .featured-content {
                padding: 1.5rem 0;
            }

            .featured-category {
                left: 1.5rem;
            }

            .featured-title {
                font-size: 1.5rem;
            }

            .sidebar-content {
                padding: 1rem;
            }

            /* UPDATED: Mobile heading consistency */
            .section-header {
                font-size: clamp(1.75rem, 5vw, 2.5rem);
                line-height: 1.3;
            }
        }



