
        :root {
            --pure-white: #ffffff;
            --soft-white: #f9f9f9;
            --light-gray: #f0f0f0;
            --medium-gray: #e0e0e0;
            --dark-gray: #333333;
            --accent-blue: #0066cc;
            --accent-teal: #00ccb4;
            --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
            --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
                /* Our Clients Section Styles */
#clients {
    background-color: #f8f9fa;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.client-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.client-logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.client-logo {
    height: 60px;
    margin-right: 15px;
}

.client-name {
    font-size: 1.5rem;
    color: #333;
}

.client-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.features-title {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.features-list {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    padding-left: 20px;
}

.features-list li {
    margin-bottom: 5px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tech-tag {
    background: #f0f0f0;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.client-link {
    display: inline-flex;
    align-items: center;
    color: #0066cc;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.client-link:hover {
    color: #004499;
}

.client-link i {
    margin-left: 8px;
}
.tagline span::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: yellow;
  animation: underlineGlow 3.5s infinite;
}

.tagline span.restart-animation::after {
  animation: none;
}

        body {
            font-family: 'Times New Roman', Times, serif;
            background-color: var(--pure-white);
            color: var(--dark-gray);
            overflow-x: hidden;
            padding-top: 0px; 
            line-height: 1.6;
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4 {
            font-family: 'Times New Roman', Times, serif;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        img {
          max-width: 100%;
          height: auto; /* maintains aspect ratio */
            }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 100px 0;
            position: relative;
            background-color: var(--soft-white);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
            border-radius: 2px;
        }

        .section-title h2 span {
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--dark-gray);
            opacity: 0.8;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* ===== Glassmorphism Navigation ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 5%;
        
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
        }

        .navbar.scrolled {
            padding: 1rem 5%;
            box-shadow: var(--shadow-md);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
            height: 45px;
            transition: var(--transition);
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }

        .logo-text {
            font-family: 'Times New Roman', Times, serif;
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--dark-gray);
            letter-spacing: 1px;
        }

        .logo-text span {
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            position: relative;
            text-decoration: none;
            color: var(--dark-gray);
            font-weight: 600;
            font-size: 1.05rem;
            transition: var(--transition);
            padding: 0.5rem 0;
            letter-spacing: 0.5px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-blue);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--accent-blue);
        }

/* Base Styles */
 .hero {
            position: relative;
            height: 80vh;
            min-height: 500px;
            overflow: hidden;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Video Background - Made clearer */
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }
        
        .video-background video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translateX(-50%) translateY(-50%);
            object-fit: cover;
            /* Enhance video clarity */
            filter: brightness(1.1) contrast(1.1);
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* Lighter overlay for clearer video */
            background: linear-gradient(145deg, rgba(10, 27, 58, 0.7) 0%, rgba(30, 58, 138, 0.7) 100%);
            z-index: 2;
        }

        .container {
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 16px;
        }

        /* Background Effects - Adjusted for better video visibility */
        .background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 3;
        }

        .wave-effect {
            position: absolute;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" fill-opacity="1" d="M0,192L48,176C96,160,192,128,288,149.3C384,171,480,245,576,245.3C672,245,768,171,864,133.3C960,96,1056,96,1152,112C1248,128,1344,160,1392,176L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') repeat-x bottom;
            animation: waveFlow 20s linear infinite;
        }

        .glow-orb {
            position: absolute;
            width: 350px;
            height: 350px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(20, 184, 255, 0.2) 0%, transparent 70%);
            filter: blur(25px);
            top: 30%;
            left: 15%;
            transform: translate(-50%, -50%);
            animation: orbitGlow 12s ease-in-out infinite;
        }

        .glow-orb.secondary {
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(100, 116, 255, 0.15) 0%, transparent 70%);
            top: 60%;
            right: 10%;
            left: auto;
            animation: orbitGlow 10s ease-in-out infinite reverse;
        }

        /* Floating Particles */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 4;
        }

        .particle {
            position: absolute;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(45deg, rgba(20, 184, 255, 0.3), rgba(100, 116, 255, 0.3));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: #14b8ff;
            animation: floatParticle 14s ease-in-out infinite;
            box-shadow: 0 4px 15px rgba(20, 184, 255, 0.4);
            backdrop-filter: blur(6px);
        }

        .particle:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; animation-duration: 16s; }
        .particle:nth-child(2) { top: 50%; left: 80%; animation-delay: 3s; animation-duration: 14s; }
        .particle:nth-child(3) { top: 30%; left: 50%; animation-delay: 6s; animation-duration: 18s; }
        .particle:nth-child(4) { top: 70%; left: 25%; animation-delay: 1s; animation-duration: 15s; }
        .particle:nth-child(5) { top: 20%; left: 70%; animation-delay: 4s; animation-duration: 17s; }

        /* Content Styling */
        .content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            width: 100%;
        }

        .tagline {
            font-size: clamp(1.8rem, 4.5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 20px;
            max-width: 900px;
            opacity: 0;
            transform: translateY(25px);
            animation: fadeInUp 1s forwards 0.6s;
            text-shadow: 0 0 8px rgba(20, 184, 255, 0.5);
        }

        .tagline span {
            color: #14b8ff;
            position: relative;
        }

        .tagline span::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, transparent, #14b8ff, transparent);
            animation: underlineGlow 3.5s infinite;
        }

        .subtag {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            margin-bottom: 30px;
            max-width: 700px;
            opacity: 0;
            transform: translateY(25px);
            animation: fadeInUp 1s forwards 0.9s;
            color: #e0e7ff;
        }

        .promise {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 20px 30px;
            margin-top: 30px;
            max-width: 750px;
            border-left: 4px solid #14b8ff;
            opacity: 0;
            transform: translateY(25px);
            animation: fadeInUp 1s forwards 1.2s;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .promise-title {
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            font-weight: 700;
            margin-bottom: 10px;
            color: #14b8ff;
            text-transform: uppercase;
            letter-spacing: 1.8px;
        }

        .promise-text {
            font-size: clamp(1rem, 2.2vw, 1.2rem);
            line-height: 1.6;
        }

        /* Auto-scrolling Services Section - FIXED */
        .services-scroll-container {
            width: -120px;
            overflow: hidden;
            padding: 12px 0;
            background: rgba(0, 0, 0, 0.35);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin: 20px 0 30px 0;
            border-radius: 8px;
            margin-top: -99px;
        }

        .services-scroll {
            display: flex;
            width: max-content;
            animation: scrollServices 30s linear infinite;
        }

        .service-item {
            display: flex;
            align-items: center;
            padding: 0 25px;
            color: #ffffff;
            white-space: nowrap;
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            text-shadow: 0 0 5px rgba(20, 184, 255, 0.3);
        }

        .service-icon {
            margin-right: 12px;
            color: #14b8ff;
            font-size: clamp(1rem, 2.2vw, 1.3rem);
        }

        .service-divider {
            color: rgba(255, 255, 255, 0.25);
            font-size: 1.4rem;
            padding: 0 10px;
        }

        /* Animation Keyframes */
        @keyframes waveFlow {
            0% { background-position: 0 bottom; }
            100% { background-position: 1440px bottom; }
        }

        @keyframes orbitGlow {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.65; filter: blur(25px); }
            50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; filter: blur(35px); }
        }

        @keyframes fadeInUp {
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes underlineGlow {
            0%, 100% { opacity: 0.55; }
            50% { opacity: 1; }
        }

        @keyframes floatParticle {
            0% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(30px, 40px) rotate(8deg); }
            50% { transform: translate(0, 80px) rotate(0deg); }
            75% { transform: translate(-30px, 40px) rotate(-8deg); }
            100% { transform: translate(0, 0) rotate(0deg); }
        }

        @keyframes scrollServices {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .hero {
                height: 70vh;
                min-height: 450px;
            }
            
            .tagline {
                font-size: clamp(1.6rem, 4vw, 2.8rem);
            }
            
            .subtag {
                font-size: 1rem;
            }
            
            .particle {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }

            .glow-orb {
                width: 250px;
                height: 250px;
            }

            .glow-orb.secondary {
                width: 200px;
                height: 200px;
            }
            
            .services-scroll-container {
                margin: 15px 0 25px 0;
            }
            
            .service-item {
                padding: 0 20px;
            }
        }

        @media (max-width: 768px) {
            .hero {
                height: 65vh;
                min-height: 400px;
            }
            
            .promise {
                padding: 15px 20px;
            }
            
            .glow-orb {
                width: 200px;
                height: 200px;
            }
            
            .glow-orb.secondary {
                width: 150px;
                height: 150px;
            }
            
            .services-scroll-container {
                margin: 15px 0 20px 0;
                padding: 8px 0;
            }
            
            .service-item {
                padding: 0 15px;
                font-size: 0.9rem;
            }
            
            .service-icon {
                font-size: 1.1rem;
                margin-right: 10px;
            }
            
            /* Mobile video optimization */
            .desktop-video {
                display: block;
            }
            
            .mobile-video {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .hero {
                height: 60vh;
                min-height: 350px;
            }
            
            .tagline {
                font-size: 1.6rem;
                margin-bottom: 15px;
            }
            
            .subtag {
                font-size: 0.9rem;
                margin-bottom: 20px;
            }
            
            .promise {
                padding: 12px 15px;
                margin-top: 20px;
            }
            
            .promise-text {
                font-size: 0.95rem;
            }
            
            .services-scroll-container {
                margin: 10px 0 15px 0;
                padding: 6px 0;
                margin-top: -90px;
                
            }
            
            .service-item {
                padding: 0 12px;
                font-size: 0.8rem;
            }
            
            .service-icon {
                font-size: 1rem;
                margin-right: 8px;
            }
            
            .service-divider {
                font-size: 1.2rem;
                padding: 0 5px;
            }
            
            .particle {
                width: 35px;
                height: 35px;
                font-size: 0.9rem;
            }

            .glow-orb, .glow-orb.secondary {
                filter: blur(15px);
            }
            
            /* Show mobile video on small screens */
            .desktop-video {
                display: none;
            }
            
            .mobile-video {
                display: block;
            }
        }

 /* Why Choose Us Styles */
    .why-choose-us {
        position: relative;
        overflow: hidden;
    }
    
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }
    
    .benefit-card {
        background: var(--pure-white);
        border-radius: 15px;
        padding: 40px 30px;
        box-shadow: var(--shadow-sm);
        transition: var(--transition);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    
    .benefit-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(135deg, var(--accent-blue), var(--accent-teal));
        transition: var(--transition);
        z-index: -1;
    }
    
    .benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }
    
    .benefit-card:hover::before {
        width: 100%;
    }
    
    .benefit-card:hover h3,
    .benefit-card:hover p {
        color: var(--pure-white);
    }
    
    .benefit-icon {
        position: relative;
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }
    
    .benefit-icon i {
        font-size: 2.5rem;
        color: var(--accent-blue);
        position: relative;
        z-index: 2;
        transition: var(--transition);
    }
    
    .icon-bg {
        position: absolute;
        width: 60px;
        height: 60px;
        background: rgba(0, 102, 204, 0.1);
        border-radius: 50%;
        top: 10px;
        left: 10px;
        transition: var(--transition);
    }
    
    .benefit-card:hover .benefit-icon i {
        color: var(--pure-white);
        transform: scale(1.2);
    }
    
    .benefit-card:hover .icon-bg {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.2);
    }
    
    .benefit-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: var(--dark-gray);
        transition: var(--transition);
    }
    
    .benefit-card p {
        color: var(--dark-gray);
        opacity: 0.8;
        line-height: 1.8;
        transition: var(--transition);
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .benefits-grid {
            gap: 20px;
        }
        
        .benefit-card {
            padding: 30px 20px;
        }
        
        .benefit-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 20px;
        }
        
        .benefit-icon i {
            font-size: 2rem;
        }
        
        .icon-bg {
            width: 40px;
            height: 40px;
        }
    }
        /* ===== Floating Abstract Shapes Background ===== */
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .shape {
            position: absolute;
            opacity: 0.15;
            border-radius: 50%;
            filter: blur(40px);
            animation: float 15s infinite linear;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background: var(--accent-blue);
            top: 20%;
            right: 10%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            background: var(--accent-teal);
            bottom: 15%;
            left: 15%;
            animation-delay: 2s;
        }

        .shape-3 {
            width: 150px;
            height: 150px;
            background: var(--accent-blue);
            top: 60%;
            right: 25%;
            animation-delay: 4s;
        }

        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-50px) rotate(180deg); }
            100% { transform: translateY(0) rotate(360deg); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== Animated Gradient Buttons ===== */
        .cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: transparent;
            color: var(--accent-blue);
            border: 2px solid var(--accent-blue);
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
            letter-spacing: 0.5px;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
            transition: var(--transition);
            z-index: -1;
        }

        .cta-button:hover::before {
            width: 100%;
        }

        .cta-button:hover {
            color: var(--pure-white);
            border-color: transparent;
            box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
            transform: translateY(-3px);
        }

        .cta-button.fill {
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
            color: var(--pure-white);
            border: none;
            box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
        }

        .cta-button.fill:hover {
            box-shadow: 0 10px 25px rgba(0, 102, 204, 0.4);
            transform: translateY(-5px);
        }

/* ===== Services Section with Alignment Fix Only ===== */
/* CL Digital Services Styles */
.cl-digital-services {
    padding: 80px 0;
    background-color: wheat;
}

.cl-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cl-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.cl-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.cl-section-title span {
    color: #4f46e5;
    position: relative;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cl-section-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00ccb4, #0066cc);
    border-radius: 3px;
}

.cl-section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* ONLY THE ALIGNMENT FIX ADDED BELOW */
.icon-heading-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Original icon styling preserved */
.icon-heading-container i {
    font-size: 2.5rem;
    color: var(--accent-blue);
    transition: var(--transition);
}

.service-card:hover .icon-heading-container i {
    transform: scale(1.2) rotate(15deg);
    color: var(--accent-teal);
}

/* Original heading styling preserved */
.icon-heading-container h3 {
    margin: 0;
    font-size: 1.5rem;
    position: relative;
}

.icon-heading-container h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: var(--transition);
}

.service-card:hover .icon-heading-container h3::after {
    width: 100%;
}

/* Original paragraph styling preserved */
.service-card p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    opacity: 0.8;
    line-height: 1.8;
}

/* Original learn more styling preserved */
.learn-more {
    display: inline-flex;
    align-items: center;
    color: var(--accent-blue);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.learn-more i {
    margin-left: 8px;
    transition: var(--transition);
}

.learn-more:hover {
    color: var(--accent-teal);
}

.learn-more:hover i {
    transform: translateX(5px);
}

        /* ===== About Section ===== */
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-img {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            position: relative;
            transform-style: preserve-3d;
        }

        .about-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(0, 102, 204, 0.1), rgba(0, 204, 180, 0.1));
            z-index: 1;
            opacity: 0;
            transition: var(--transition);
        }

        .about-img:hover::before {
            opacity: 1;
        }

        .about-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
            transform: translateZ(20px);
        }

        .about-img:hover img {
            transform: scale(1.05) translateZ(20px);
        }

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .about-content h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
            border-radius: 2px;
        }

        .about-content p {
            margin-bottom: 1.5rem;
            color: var(--dark-gray);
            opacity: 0.8;
            line-height: 1.8;
            font-size: 1.1rem;
        }
         /* Animation Styles */
     
    /* Image Enhancements */
    /* Animation Styles */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes scaleIn {
            from { transform: scale(0.9); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }
        @keyframes rotateIn {
            from { transform: rotate(-5deg) scale(0.95); opacity: 0; }
            to { transform: rotate(0deg) scale(1); opacity: 1; }
        }
        @keyframes shadowPulse {
            0%, 100% { box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1); }
            50% { box-shadow: 0 15px 40px rgba(0, 204, 180, 0.2); }
        }
        @keyframes borderGlow {
            0%, 100% { border-color: rgba(0, 102, 204, 0.2); }
            50% { border-color: rgba(0, 204, 180, 0.4); }
        }

        /* Image Card Animations */
       /* Add these styles to your existing CSS */
    .hover-zoom {
        transition: transform 0.5s ease, box-shadow 0.3s ease;
        transform-origin: center;
    }
    
    .hover-zoom:hover {
        transform: scale(1.03);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    .floating-img {
        animation: float 6s ease-in-out infinite;
    }
    
    .scale-in {
        animation: scaleIn 1s ease-out forwards;
    }
    
    @keyframes float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-15px);
        }
    }
    
    @keyframes scaleIn {
        0% {
            transform: scale(0.8);
            opacity: 0;
        }
        100% {
            transform: scale(1);
            opacity: 1;
        }
    }
    
    .about-img {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }
    
    .year-badge {
        position: absolute;
        bottom: 20px;
        right: 20px;
        background: linear-gradient(135deg, #3a7bd5, #00d2ff);
        color: white;
        padding: 8px 20px;
        border-radius: 50px;
        font-weight: bold;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
        
        /* Content Animations */
        .fade-in {
            opacity: 0;
            animation: fadeInUp 0.8s forwards;
        }
        
        .delay-1 { animation-delay: 0.3s; }
        .delay-2 { animation-delay: 0.6s; }
        .delay-3 { animation-delay: 0.9s; }
        .delay-4 { animation-delay: 1.2s; }
        
        .gradient-text {
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        /* Read More/Less Styles */
     /* Style the link to look like your button */
.content-toggle {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%); /* Purple gradient */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(110, 72, 170, 0.3);
}

.content-toggle::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: 0.5s;
}

.content-toggle:hover {
    background: linear-gradient(135deg, #9d50bb 0%, #6e48aa 100%); /* Reversed gradient */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(110, 72, 170, 0.4);
}

.content-toggle:hover::before {
    left: 100%;
}

/* Arrow icon styling */
.content-toggle::after {
    content: '→';
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.content-toggle:hover::after {
    transform: translateX(4px);
}
        /* ===== Technology Stack Section ===== */
        .tech-stack {
            background: #0066cc36;
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            justify-items: center;
        }

        .tech-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: var(--transition);
            padding: 1.5rem;
            background: white;
            border-radius: 15px;
            box-shadow: var(--shadow-sm);
            width: 100%;
        }

        .tech-item i {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--accent-blue);
            transition: var(--transition);
        }

        .tech-item span {
            font-weight: 600;
            color: var(--dark-gray);
            text-align: center;
        }

        .tech-item:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: var(--shadow-md);
        }

        .tech-item:hover i {
            color: var(--accent-teal);
            transform: scale(1.2) rotate(15deg);
        }

        /* ===== Process Section ===== */
        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            position: relative;
        }

        .process-step {
            display: grid;
            grid-template-columns: 80px 1fr;
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-teal));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            font-weight: 700;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }

        .process-step:hover .step-number {
            transform: scale(1.1) rotate(15deg);
        }

        .step-content {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .step-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: linear-gradient(to bottom, var(--accent-blue), var(--accent-teal));
            transition: var(--transition);
        }

        .step-content:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .step-content:hover::before {
            height: 100%;
        }

        .step-content h3 {
            margin-bottom: 1rem;
            color: var(--accent-blue);
            position: relative;
        }

        .step-content p {
            line-height: 1.8;
            color: var(--dark-gray);
            opacity: 0.8;
        }

        .process-line {
            position: absolute;
            left: 40px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--medium-gray);
            z-index: 0;
        }

        /* ===== Testimonials Section ===== */
        .testimonials {
            background: #00ccb424;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
            transform-style: preserve-3d;
        }

        .testimonial-card:hover {
            transform: translateY(-10px) rotateY(5deg);
            box-shadow: var(--shadow-lg);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: rgba(0, 102, 204, 0.1);
            font-family: 'Times New Roman', Times, serif;
            line-height: 1;
            z-index: 0;
            opacity: 0;
            transition: var(--transition);
        }

        .testimonial-card:hover::before {
            opacity: 1;
        }

        .testimonial-content {
            position: relative;
            z-index: 1;
            margin-bottom: 1.5rem;
            font-style: italic;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--accent-blue);
            transition: var(--transition);
        }

        .testimonial-card:hover .author-img {
            border-color: var(--accent-teal);
            transform: scale(1.1);
        }

        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            margin-bottom: 0.2rem;
            color: var(--dark-gray);
        }

        .author-info p {
            font-size: 0.9rem;
            color: var(--dark-gray);
            opacity: 0.7;
        }

        /* ===== CTA Section ===== */
        .cta-section {
            text-align: center;
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-teal) 100%);
            color: white;
            position: relative;
            overflow: hidden;
            padding: 120px 0;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 L0,100 Z" /></svg>');
            background-size: cover;
            opacity: 0.1;
        }

        .cta-section .section-title h2,
        .cta-section .section-title p {
            color: white;
            position: relative;
        }

        .cta-section .section-title p {
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 2rem;
            position: relative;
        }

        .cta-section .cta-button {
            background: white;
            color: var(--accent-blue);
        }

        .cta-section .cta-button:hover {
            color: white;
            background: transparent;
            border-color: white;
        }


        /* ===== Floating Elements ===== */
       /* .ai-chatbot {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-teal));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: var(--shadow-lg);
            cursor: pointer;
            z-index: 999;
            transition: var(--transition);
            animation: pulse 2s infinite;
        }

        .ai-chatbot:hover {
            transform: scale(1.1) rotate(15deg);
            animation: none;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
*/
        .back-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 998;
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--accent-blue);
            transform: translateY(-5px) rotate(15deg);
        }

        /* ===== Responsive Design ===== */
        @media (max-width: 992px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                height: 100vh;
                background: var(--pure-white);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: var(--transition);
                z-index: 999;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .mobile-menu-btn {
                display: block;
                z-index: 1000;
                background: none;
                border: none;
                font-size: 1.5rem;
                color: var(--dark-gray);
                cursor: pointer;
            }

            .about-container {
                grid-template-columns: 1fr;
            }

            .about-img {
                order: -1;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 80px 0;
            }

            .section-title h2 {
                font-size: 2.2rem;
            }

            .section-title p {
                font-size: 1rem;
            }

            .process-step {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .step-number {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .process-line {
                left: 30px;
            }

            .logo-text {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding: 0 5%;
                text-align: center;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .service-card, .testimonial-card {
                padding: 1.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-column h3::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .social-links {
                justify-content: center;
            }
        }
        
            /* Clients Section Animation */
            .client-card {
                transform: translateY(30px);
                opacity: 0;
                transition: all 0.6s ease;
            }
            
            .client-card.animated {
                transform: translateY(0);
                opacity: 1;
            }
            
            .client-card:hover {
                transform: translateY(-5px) !important;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }
            
            
        

    