        :root {
            --primary-color: #0D2559;
            --secondary-color: #7047EB;
            --accent-color: #339af0;
            --light-color: #f8f9fa;
            --dark-color: #1F2937;
            --gray-color: #64748B;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
            --gradient: linear-gradient(135deg, var(--primary-color) 0%, #163E96 100%);
    
        }


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--dark-color);
            background-color: var(--light-color);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--primary-color);
        }

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

        /* Header Styles */
        header {
            background-color: var(--primary-color);
            color: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
        }

        .header-scrolled {
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            background-color: rgba(26, 54, 93, 0.95);
            backdrop-filter: blur(10px);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(90deg, #38bdf8, #2563eb, #9333ea);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: var(--transition);
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo span {
            color: inherit;
        }

        .logo-icon {
            margin-right: 10px;
            font-size: 24px;
            color: var(--secondary-color);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon-img {
            width: 32px;
            height: 32px;
            display: block;
            object-fit: contain;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
            position: relative;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            padding: 5px 0;
            position: relative;
        }

        nav ul li a:hover,
        nav ul li a.active {
            color: var(--secondary-color);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: var(--transition);
        }

        nav ul li a:hover::after,
        nav ul li a.active::after {
            width: 100%;
        }

        nav ul li a.nav-signin-btn {
            background: linear-gradient(90deg, #38bdf8, #2563eb, #9333ea);
            color: white;
            padding: 10px 18px;
            border-radius: 999px;
            margin-left: 8px;
            border: none;
            box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
        }

        nav ul li a.nav-signin-btn::after {
            display: none;
        }

        nav ul li a.nav-signin-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 22px rgba(37, 99, 235, 0.4);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            z-index: 1001;
        }

        /* Hero Section */
        .hero {
            background: var(--gradient);
            color: white;
            padding: 180px 0 120px;
            position: relative;
            overflow: hidden;
            margin-top: 80px;
        }

        .hero .container {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/images/1.jpg');
           /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="rgba(255,255,255,0.1)"/></svg>');*/
            background-repeat: no-repeat;
            background-size: cover;
            background-position: bottom;
        }

        .hero-content {
            position: relative;
            max-width: 640px;
            width: 100%;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            color: white;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 600px;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 16px 40px;
            background-color: var(--secondary-color);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(77, 171, 247, 0.3);
        }

        .btn:hover {
            background-color: var(--accent-color);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(77, 171, 247, 0.4);
        }

        .btn-secondary {
            background-color: transparent;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .hero-image {
            width: 42%;
            max-width: 520px;
            min-width: 340px;
            opacity: 0;
            transform: translateX(50px);
            animation: fadeInRight 1s ease forwards 0.5s;
        }

        @keyframes fadeInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Stats Section */
        .stats {
            padding: 80px 0;
            background-color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .stat-item {
            text-align: center;
            padding: 30px;
            border-radius: 12px;
            background-color: #f8f9fa;
            transition: var(--transition);
        }

        .stat-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow);
            background-color: white;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 10px;
            font-family: 'Poppins', sans-serif;
        }

        .stat-text {
            color: var(--gray-color);
            font-weight: 500;
        }

        /* Services Overview */
        .services-overview {
            padding: 100px 0;
            background-color: #f5f7fa;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.8rem;
            margin-bottom: 15px;
        }

        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: var(--gray-color);
            font-size: 1.1rem;
        }

        .title-decoration {
            height: 4px;
            width: 80px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            margin: 20px auto;
            border-radius: 2px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background-color: white;
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--gradient);
            transition: var(--transition);
            z-index: -1;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .service-card:hover::before {
            height: 100%;
        }

        .service-card:hover .service-icon,
        .service-card:hover h3,
        .service-card:hover p {
            color: white;
        }

        .service-card:hover .service-link {
            color: white;
            border-color: white;
        }

        .service-icon {
            font-size: 60px;
            color: var(--secondary-color);
            margin-bottom: 25px;
            transition: var(--transition);
        }

        .service-card h3 {
            margin-bottom: 15px;
            font-size: 1.6rem;
            transition: var(--transition);
        }

        .service-card p {
            color: var(--gray-color);
            margin-bottom: 25px;
            transition: var(--transition);
        }

        .service-link {
            display: inline-block;
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            padding: 8px 20px;
            border: 2px solid var(--secondary-color);
            border-radius: 30px;
        }

        .service-link:hover {
            background-color: var(--secondary-color);
            color: white;
        }

        .service-link i {
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .service-link:hover i {
            transform: translateX(5px);
        }

        /* Transforming Section */
        .transforming {
            padding: 120px 0;
            background: var(--gradient);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .transforming::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:     linear-gradient(
      to left,                  /* Right → Left */
      rgba(51, 154, 240, 0.8),  /* Start color on the right */
      rgba(51, 154, 240, 0)     /* End color on the left */
    ), url('/images/ceo.png');
            /*background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="rgba(255,255,255,0.05)"/></svg>');*/
            background-repeat: no-repeat;
            background-size: cover;
            background-position: bottom;
        }

        .transforming-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }

        .transforming h2 {
            color: white;
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .transforming p {
            max-width: 800px;
            margin: 0 auto 40px;
            font-size: 1.2rem;
            opacity: 0.9;
            line-height: 1.8;
        }

        /* Key Services */
        .key-services {
            padding: 100px 0;
            background-color: white;
        }

        .services-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .service-item {
            display: flex;
            align-items: flex-start;
            padding: 30px;
            border-radius: 12px;
            background-color: #f8f9fa;
            transition: var(--transition);
        }

        .service-item:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow);
            background-color: white;
        }

        .service-icon-small {
            font-size: 40px;
            color: var(--secondary-color);
            margin-right: 25px;
            flex-shrink: 0;
            margin-top: 5px;
        }

        .service-content h3 {
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .service-content p {
            color: var(--gray-color);
        }

        /* Why Choose Us */
        .why-choose {
            padding: 100px 0;
            background-color: #f5f7fa;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .feature-card {
            background-color: white;
            padding: 50px 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: var(--gradient);
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .feature-card:hover::before {
            height: 100%;
        }

        .feature-icon {
            font-size: 60px;
            color: var(--secondary-color);
            margin-bottom: 25px;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }

        .feature-card h3 {
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .feature-card p {
            color: var(--gray-color);
        }

        /* Client Testimonials */
        .testimonials {
            padding: 100px 0;
            background-color: white;
        }

        .testimonials-slider {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .testimonials-container {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial {
            min-width: 100%;
            padding: 40px;
            background-color: white;
            border-radius: 12px;
            box-shadow: var(--shadow);
            text-align: center;
        }

        .testimonial-content {
            font-size: 1.1rem;
            font-style: italic;
            color: var(--gray-color);
            margin-bottom: 30px;
            line-height: 1.8;
            position: relative;
        }

        .testimonial-content::before,
        .testimonial-content::after {
            content: '"';
            font-size: 60px;
            color: var(--secondary-color);
            opacity: 0.3;
            position: absolute;
            font-family: Georgia, serif;
        }

        .testimonial-content::before {
            top: -20px;
            left: 10px;
        }

        .testimonial-content::after {
            bottom: -40px;
            right: 10px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 30px;
        }

        .author-image {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 3px solid var(--secondary-color);
        }

        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            margin-bottom: 5px;
            font-size: 1.2rem;
        }

        .author-info p {
            color: var(--gray-color);
            font-size: 0.9rem;
        }

        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            gap: 15px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background-color: var(--secondary-color);
            transform: scale(1.2);
        }

        /* Technology Partners */
        .partners {
            padding: 80px 0;
            background-color: #f5f7fa;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
            align-items: center;
        }

        .partner-logo {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 120px;
        }

        .partner-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        /* CTA Section */
        .cta {
            padding: 120px 0;
            background: var(--gradient);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="rgba(255,255,255,0.05)"/></svg>');
            background-repeat: no-repeat;
            background-size: cover;
            background-position: bottom;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta h2 {
            color: white;
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .cta p {
            max-width: 700px;
            margin: 0 auto 50px;
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* Newsletter */
        .newsletter {
            padding: 80px 0;
            background-color: white;
        }

        .newsletter-container {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
        }

        .newsletter-form {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 16px 20px;
            border: 2px solid #ddd;
            border-radius: 50px;
            font-family: 'Roboto', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--secondary-color);
        }

        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.3rem;
        }

        .footer-logo {
            font-size: 28px;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 20px;
        }

        .footer-logo span {
            color: var(--secondary-color);
        }

        .footer-column p {
            opacity: 0.8;
            margin-bottom: 20px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .social-icon:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }

        .contact-info {
            list-style: none;
        }

        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

        .contact-info i {
            color: var(--secondary-color);
            margin-right: 10px;
            margin-top: 5px;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }

        .copyright a {
            color: var(--secondary-color);
            text-decoration: none;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            z-index: 999;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--accent-color);
            transform: translateY(-5px);
        }

        /* Animation Classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hero-image {
                width: 45%;
                min-width: 300px;
            }
        }

        @media (max-width: 992px) {
            .services-grid, .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stats-grid, .partners-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .services-list {
                grid-template-columns: 1fr;
            }
            
            .hero .container {
                flex-direction: column;
                align-items: flex-start;
                gap: 35px;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero-image {
                width: 100%;
                max-width: 560px;
                min-width: 0;
                display: block;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            
            nav {
                width: 100%;
                display: none;
                margin-top: 20px;
            }
            
            nav.active {
                display: block;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin-left: 0;
                margin-bottom: 15px;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .transforming h2,
            .cta h2 {
                font-size: 2.5rem;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: flex-start;
                gap: 14px;
            }
            
            .btn-secondary {
                margin-top: 0;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            .services-grid, .features-grid, .stats-grid, .partners-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .hero {
                padding: 150px 0 80px;
            }

            .hero .container {
                align-items: center;
                text-align: center;
            }

            .hero-btns {
                width: 100%;
                align-items: stretch;
            }
            
            .hero-btns .btn {
                text-align: center;
            }

            .hero-image {
                max-width: 100%;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section {
                padding: 70px 0;
            }
        }