:root {
            --primary-color: #3b82f6;
            --primary-light: #93c5fd;
            --primary-dark: #1d4ed8;
            --accent-color: #06b6d4;
            --secondary-color: #8b5cf6;
            --dark: #0f172a;
            --light: #f8fafc;
            --white: #ffffff;
            --gray: #64748b;
            --success: #10b981;
            
            --shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.05);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
        }

        



               /* ELEGANT BLACK STATS SECTION - TWO ROWS LAYOUT */
        .stats-section {
            background: #000;
            padding: 6rem 1.5rem;
            position: relative;
            overflow: hidden;
        }

        /* Subtle pattern overlay */
        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .stats-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .stats-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1rem;
            font-family: 'Archivo Black', sans-serif;
            position: relative;
            display: inline-block;
        }

        .stats-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, 
                var(--primary-color), 
                var(--secondary-color));
            border-radius: 2px;
        }

        .stats-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Two rows grid layout */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 2.5rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        /* Big stat cards */
        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 3rem 2rem;
            text-align: center;
            transition: var(--transition);
            border: 1px solid var(--ita-accent);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(59, 130, 246, 0.1) 0%, 
                rgba(139, 92, 246, 0.1) 100%);
            opacity: 0;
            transition: var(--transition);
            z-index: -1;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            border-color: rgba(59, 130, 246, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .stat-card:hover::before {
            opacity: 1;
        }

        /* Big numbers - no underlines */
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            font-family: 'Archivo Black', sans-serif;
            color: var(--white);
            line-height: 1;
            margin-bottom: 0.8rem;
            display: block;
        }

        /* Removed underline - no ::after pseudo-element */

        .stat-label {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        /* Special styling for the 24/7 stat */
        .stat-card:nth-child(3) .stat-number {
            font-size: 3rem;
        }

        /* Responsive adjustments for stats */
        @media (max-width: 992px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(3, 1fr);
                gap: 2rem;
            }
        }

        @media (max-width: 640px) {
            .stats-grid {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(6, auto);
                gap: 1.5rem;
            }
            
            .stat-card {
                padding: 2.5rem 1.5rem;
            }
            
            .stat-number {
                font-size: 3rem;
            }
            
            .stats-title {
                font-size: 2.3rem;
            }
        }

        @media (max-width: 480px) {
            .stats-section {
                padding: 4rem 1rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .stats-title {
                font-size: 2rem;
            }
        }

        /* Decorative floating elements */
        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
            animation: float 20s infinite ease-in-out;
            z-index: 1;
            pointer-events: none;
        }

        .floating-1 {
            width: 200px;
            height: 200px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .floating-2 {
            width: 150px;
            height: 150px;
            bottom: 20%;
            right: 8%;
            animation-delay: -5s;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
        }

        /* Responsive adjustments for hero */
        @media (max-width: 768px) {
            .hero-section {
                padding: 3rem 1rem;
            }
            
            .orbit-container {
                width: 450px;
                height: 450px;
            }
            
            .hero-image-wrapper {
                width: 250px;
                height: 250px;
            }
        }

        @media (max-width: 480px) {
            .hero-header {
                font-size: 2rem;
            }
            
            .hero-subtext {
                font-size: 1.1rem;
            }
            
            .orbit-container {
                width: 380px;
                height: 380px;
            }
            
            .orbit-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }

         /* ELEGANT SERVICES SECTION - CLEANED AND POLISHED */
.ita-service-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(248, 250, 252, 0.95) 100%);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--ita-shadow);
    margin: 0 auto;
    max-width: 1400px;
}

/* Container */
.ita-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Section Header */
.ita-service-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ita-service-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--ita-dark);
    margin-bottom: 1.5rem;
    font-family: 'Archivo Black', sans-serif;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--ita-dark) 30%, var(--ita-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ita-service-subtitle {
    font-size: 1.2rem;
    color: var(--ita-gray);
    line-height: 1.7;
    font-weight: 400;
}

/* Service Grid */
.ita-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

/* Tablet: 2 columns */
@media (max-width: 992px) {
    .ita-service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile: 1 column */
@media (max-width: 640px) {
    .ita-service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Service Cards - Polished */
.ita-service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(59, 130, 246, 0.15);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

/* Card border gradient effect */
.ita-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.ita-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.15);
    border-color: transparent;
}

.ita-service-card:hover::before {
    opacity: 1;
}

/* Card Icon - Clean Normal State */
.ita-service-card .ita-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 15px 25px rgba(59, 130, 246, 0.2);
}

/* Hide any SVG images - using Font Awesome */
.ita-service-card .ita-service-icon img {
    display: none;
}

/* Font Awesome Icons - Normal State */
.ita-service-card .ita-service-icon i {
    display: flex;
    font-size: 2.2rem;
    color: var(--white);
    transition: all 0.4s ease;
}

/* Icon Hover State - Elegant Enhancement */
.ita-service-card:hover .ita-service-icon {
    background: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 20px 40px rgba(59, 130, 246, 0.3),
        0 0 0 3px rgba(59, 130, 246, 0.1);
}

.ita-service-card:hover .ita-service-icon i {
    color: var(--primary-color);
    animation: iconGlow 1s ease infinite;
}

/* New Icon Hover Animation */
@keyframes iconGlow {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(59, 130, 246, 0);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
    }
}

/* Optional floating particles effect */
.ita-service-card .ita-service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.8), 
        transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.ita-service-card:hover .ita-service-icon::after {
    opacity: 0.4;
    animation: particleFloat 2s ease infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.4;
    }
    33% {
        transform: scale(1.2) translate(-3px, -3px);
        opacity: 0.6;
    }
    66% {
        transform: scale(0.9) translate(3px, 3px);
        opacity: 0.3;
    }
}

/* Card Title */
.ita-service-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
    transition: color 0.3s ease;
    line-height: 1.3;
}

.ita-service-card:hover .ita-service-card-title {
    color: var(--primary-color);
}

.ita-service-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ita-service-card-title a:hover {
    color: var(--secondary-color);
}

/* Card Description */
.ita-service-card-desc {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.ita-service-card:hover .ita-service-card-desc {
    color: var(--dark);
}

/* CTA Link */
.ita-service-cta {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: auto;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(59, 130, 246, 0.15);
}

.ita-service-cta i {
    transition: transform 0.3s ease;
}

.ita-service-card:hover .ita-service-cta {
    color: var(--secondary-color);
    gap: 0.8rem;
    border-top-color: rgba(59, 130, 246, 0.3);
}

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

/* Bottom CTA Section */
.ita-service-cta-section {
    text-align: center;
    padding: 3.5rem;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.05) 0%, 
        rgba(139, 92, 246, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    margin-top: 3rem;
}

.ita-service-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ita-dark);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.ita-service-cta-text {
    font-size: 1.1rem;
    color: var(--ita-gray);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.ita-service-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .ita-service-cta-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .ita-service-section {
        padding: 3rem 1rem;
        border-radius: 16px;
    }
    
    .ita-service-title {
        font-size: 2rem;
    }
    
    .ita-service-subtitle {
        font-size: 1.1rem;
    }
    
    .ita-service-card {
        padding: 2rem 1.5rem;
    }
    
    .ita-service-card .ita-service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .ita-service-card .ita-service-icon i {
        font-size: 2rem;
    }
    
    .ita-service-card-title {
        font-size: 1.25rem;
    }
    
    .ita-service-card-desc {
        font-size: 0.95rem;
    }
    
    .ita-service-cta-section {
        padding: 2.5rem 1.5rem;
    }
    
    .ita-service-cta-title {
        font-size: 1.6rem;
    }
    
    .ita-service-cta-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .ita-service-title {
        font-size: 1.7rem;
    }
    
    .ita-service-subtitle {
        font-size: 1rem;
    }
    
    .ita-service-grid {
        gap: 1.5rem;
    }
}

/* Decorative Background Elements */
.ita-service-bg {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.ita-bg-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    top: -150px;
    right: -150px;
}

.ita-bg-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ita-service-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.ita-service-card:nth-child(1) { animation-delay: 0.1s; }
.ita-service-card:nth-child(2) { animation-delay: 0.2s; }
.ita-service-card:nth-child(3) { animation-delay: 0.3s; }
.ita-service-card:nth-child(4) { animation-delay: 0.4s; }
.ita-service-card:nth-child(5) { animation-delay: 0.5s; }
.ita-service-card:nth-child(6) { animation-delay: 0.6s; }
.ita-service-card:nth-child(7) { animation-delay: 0.7s; }
.ita-service-card:nth-child(8) { animation-delay: 0.8s; }
.ita-service-card:nth-child(9) { animation-delay: 0.9s; }



    .process-header, .oia-header {
    font-family: 'Archivo Black', sans-serif;
    text-align: center;
    
    font-weight: 500;
   
  }

  .process-text, .oia-text{
    text-align: center;
    padding: 0 1rem 1rem;
  }
        
  .process-section { 
    background:  rgb(214, 255, 255);;
  }

  .process-container {
    margin: 3rem 1rem;
  }

  .process {
    display: flex;
    justify-content: center;
    align-items:flex-start;
    gap: 10px;
    flex-wrap: wrap;
  }

  .op {
    padding: 1rem;
    display: flex;
    max-width: 250px;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .op-image {
    position: relative;
    background-color: #fff;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px dotted #ff00ae;
  }

  .op-image:hover {
    width:160px;
    height: 160px;
    transition: ease 0.5s;
  }

  .op-image img {
    width: 50%;
    height: auto;
    object-fit: cover;
  }

  .op-number {
    position: absolute; /* Position relative to the .circle-container */
    top: 10px; /* Distance from the top edge */
    right: 0; /* Distance from the right edge */
    background-color: var(--ita-primary);
    color: black;
    font-size: 1rem;
    font-weight: bold;
    padding: 5px 7px;
    border-radius: 50%;
  }

  .op-subtopic {
    font-size: 1.3rem;
    font-weight: bolder;
    padding: 1rem 0;
  }

        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }

         :root {
            --ita-primary: #3b82f6;
            --ita-primary-light: #93c5fd;
            --ita-primary-dark: #1d4ed8;
            --ita-accent: #06b6d4;
            --ita-secondary: #8b5cf6;
            --ita-dark: #0f172a;
            --ita-light: #f8fafc;
            --ita-white: #ffffff;
            --ita-gray: #64748b;
            --ita-success: #10b981;
            
            --ita-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            --ita-shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.2);
            --ita-glass: rgba(255, 255, 255, 0.08);
            --ita-glass-border: rgba(255, 255, 255, 0.12);
            --ita-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

 :root {
            --primary: #00d4ff;
            --secondary: #6a11cb;
            --dark-bg: #0f172a;
            --light-bg: #1e293b;
            --text-light: #e2e8f0;
            --text-muted: #b0b8d0;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        
        /* Testimonial Section Header */

        .testimonial-body {
            
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--light-bg) 100%);
            color: var(--text-light);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 40px 20px;
             
        }
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 1200px;
            width: 100%;
        }

        .section-subtitle {
            color: var(--primary);
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            display: block;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 2.8rem);
            font-weight: 800;
            background: linear-gradient(90deg, #fff, var(--text-muted));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .section-description {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Carousel Container */
        .testimonial-carousel {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            position: relative;
            padding: 40px 0;
        }

        /* Carousel Track */
        .carousel-container {
            position: relative;
            overflow: hidden;
            padding: 20px 0 80px;
        }

        .carousel-track {
    display: flex;
    gap: 30px;
    will-change: transform;
}


        /* Testimonial Card */
        .testimonial-card {
            flex: 0 0 calc(33.333% - 20px);
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 40px 35px;
            border: 1px solid var(--glass-border);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            min-height: 420px;
            display: flex;
            flex-direction: column;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 24px 24px 0 0;
        }

        .testimonial-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0, 212, 255, 0.15);
            border-color: rgba(0, 212, 255, 0.3);
        }

        .quote-icon {
            font-size: 2.5rem;
            color: var(--primary);
            opacity: 0.3;
            margin-bottom: 25px;
        }

        .testimonial-text {
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 30px;
            flex-grow: 1;
        }

        /* Client Info */
        .client-info {
            display: flex;
            align-items: center;
            margin-top: auto;
        }

        .client-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 3px solid var(--primary);
            flex-shrink: 0;
        }

        .client-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .client-details {
            display: flex;
            flex-direction: column;
        }

        .client-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 5px;
        }

        .client-role {
            color: var(--primary);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .client-company {
            color: var(--text-muted);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .rating {
            margin-top: 8px;
            color: #ffc107;
            font-size: 1.1rem;
        }

        /* Carousel Controls */
        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 40px;
            gap: 30px;
        }

        .carousel-nav {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .carousel-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid var(--glass-border);
            color: #fff;
            font-size: 1.4rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            outline: none;
        }

        .carousel-btn:hover {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
        }

        .carousel-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            transform: none;
            background: rgba(255, 255, 255, 0.08);
        }

        .carousel-btn:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        /* Dots Navigation */
        .carousel-dots {
            display: flex;
            gap: 15px;
        }

        .dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: var(--transition);
            border: none;
            padding: 0;
        }

        .dot.active {
            background: var(--primary);
            transform: scale(1.2);
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
        }

        .dot:hover:not(.active) {
            background: rgba(255, 255, 255, 0.4);
        }

        /* Stats Section */
        .testimonial-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
            max-width: 1200px;
            width: 100%;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
            margin-bottom: 10px;
        }

        .stat-label {
            color: var(--text-muted);
            font-size: 1.1rem;
            font-weight: 600;
        }

        /* Background Elements */
        .bg-blur-circle {
            position: absolute;
            width: min(300px, 50vw);
            height: min(300px, 50vw);
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0) 70%);
            z-index: -1;
            pointer-events: none;
        }

        .bg-blur-circle:nth-child(1) {
            top: 10%;
            left: 5%;
        }

        .bg-blur-circle:nth-child(2) {
            bottom: 10%;
            right: 5%;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
        }

        .testimonial-card {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .dot.active {
            animation: pulse 2s infinite;
        }

        /* Animation for testimonial cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse animation for active dot */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 212, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
    }
}

/* Loading state */
.testimonial-body.loading .testimonial-card {
    opacity: 0.5;
    animation: none;
}


/* Focus states for accessibility */
.carousel-btn:focus-visible,
.dot:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Disabled button styles */
.carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}



.carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.testimonial-card {
    flex: 0 0 calc((100% - 60px) / 3);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* OPTIONAL PREMIUM EFFECT */
.testimonial-card {
    opacity: 0.6;
    transform: scale(0.9);
}

/* ===== TESTIMONIAL MOBILE FIXES ===== */
@media (max-width: 768px) {
    /* Reset container padding – let the cards touch the edges */
    .testimonial-body .ita-container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Remove gap between cards */
    .testimonial-body .carousel-track {
        gap: 0 !important;
    }

    /* Each card takes full width, height auto */
    .testimonial-body .testimonial-card {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 30px 20px !important;
        box-sizing: border-box !important;
        min-height: auto !important; /* content defines height */
    }

    /* Ensure the carousel container doesn't add extra padding */
    .testimonial-body .carousel-container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: hidden !important;
    }

    /* Controls: stack below the cards */
    .testimonial-body .carousel-controls {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin-top: 20px !important;
        gap: 15px !important;
        width: 100% !important;
    }

    .testimonial-body .carousel-nav {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .testimonial-body .carousel-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
    }

    /* Center the stats grid */
    .testimonial-body .testimonial-stats {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 30px !important;
        padding: 0 !important;
    }

    .testimonial-body .stat-item {
        text-align: center !important;
        padding: 15px !important;
    }

    .testimonial-body .stat-number {
        font-size: 2.5rem !important;
    }

    .testimonial-body .stat-label {
        font-size: 1rem !important;
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .testimonial-body .testimonial-card {
        padding: 25px 15px !important;
    }

    .testimonial-body .testimonial-text {
        font-size: 1rem !important;
    }

    .testimonial-body .client-avatar {
        width: 50px !important;
        height: 50px !important;
    }

    .testimonial-body .client-name {
        font-size: 1.1rem !important;
    }

    .testimonial-body .carousel-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
}





        /* ===== OIA SECTION - RESPONSIVE & STANDARDIZED ===== */

/* Base/Mobile Styles (0px - 767px) */
.oia-section {
  margin: 2rem 0;
  width: 100%;
}

.oia-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.oia-left,
.oia-center,
.oia-right {
  width: 100%;
  max-width: 350px;
  text-align: center;
  flex-shrink: 0;
}

.oia-center img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.oia-subtopic {
  padding: 0.75rem 0;
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 500;
  line-height: 1.4;
  color: #333;
}

.oia-content {
  padding: 0.75rem 0;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.6;
  color: #444;
}

/* Tablet Styles (768px - 1023px) */
@media screen and (min-width: 768px) {
  .oia-section {
    margin: 2.5rem 0;
  }
  
  .oia-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding: 2rem 1.5rem;
  }
  
  .oia-left,
  .oia-right {
    flex: 0 1 calc(50% - 1.25rem);
    max-width: 200px;
    min-width: 180px;
    text-align: center;
  }
  
  .oia-center {
    flex: 0 1 100%;
    order: -1;
    margin-bottom: 1rem;
  }
  
  .oia-center img {
    max-width: 250px;
    max-height: 250px;
    object-fit: contain;
  }
  
  .oia-subtopic {
    padding: 0.875rem 0;
    font-size: 1.1rem;
  }
  
  .oia-content {
    padding: 0.875rem 0;
    font-size: 1.15rem;
  }
}

/* Small Desktop/Laptop (1024px - 1199px) */
@media screen and (min-width: 1024px) {
  .oia-section {
    margin: 3rem 0;
  }
  
  .oia-container {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1.5rem;
    padding: 2.5rem 2rem;
  }
  
  .oia-left,
  .oia-right {
    flex: 0 0 310px;
    max-width: 310px;
    text-align: center;
  }
  
  .oia-center {
    flex: 1 1 auto;
    order: 0;
    margin-bottom: 0;
  }
  
  .oia-center img {
    max-width: 350px;
    max-height: 350px;
  }
  
  .oia-subtopic {
    font-size: 1.125rem;
    padding: 1rem 0;
  }
  
  .oia-content {
    font-size: 1.2rem;
    padding: 1rem 0;
  }
}

/* Large Desktop (1200px and up) */
@media screen and (min-width: 1200px) {
  .oia-container {
    gap: 2rem;
    padding: 3rem 2.5rem;
  }
  
  .oia-left,
  .oia-right {
    flex: 0 0 350px;
    max-width: 350px;
  }
  
  .oia-center img {
    max-width: 400px;
    max-height: 400px;
  }
  
  .oia-subtopic {
    font-size: 1.2rem;
  }
  
  .oia-content {
    font-size: 1.3rem;
  }
}

/* Accessibility & Print Styles */
@media screen and (prefers-reduced-motion: reduce) {
  .oia-section,
  .oia-container,
  .oia-left,
  .oia-center,
  .oia-right {
    transition: none;
  }
}

@media print {
  .oia-section {
    margin: 1.5rem 0;
    page-break-inside: avoid;
  }
  
  .oia-container {
    display: block;
    padding: 0;
    gap: 0;
  }
  
  .oia-left,
  .oia-center,
  .oia-right {
    width: 100%;
    max-width: none;
    margin-bottom: 1.5rem;
    page-break-inside: avoid;
  }
  
  .oia-center img {
    max-width: 250px;
  }
  
  .oia-subtopic,
  .oia-content {
    color: #000;
    font-size: 12pt;
  }
}

/* High Contrast Mode Support */
@media screen and (prefers-contrast: high) {
  .oia-subtopic {
    font-weight: 700;
  }
  
  .oia-content {
    font-weight: 600;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .oia-left,
  .oia-center,
  .oia-right {
    min-height: 44px; /* Minimum touch target size */
  }
  
  .oia-container {
    gap: 1.75rem;
  }
}

/* Landscape Mobile Optimization */
@media screen and (max-width: 767px) and (orientation: landscape) {
  .oia-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .oia-left,
  .oia-center,
  .oia-right {
    flex: 1 1 30%;
    max-width: none;
  }
  
  .oia-center {
    order: -1;
    flex-basis: 100%;
  }
  
  .oia-center img {
    max-width: 200px;
    max-height: 200px;
  }
}

/* Retina/High-DPI Screens */
@media screen and (-webkit-min-device-pixel-ratio: 2),
       screen and (min-resolution: 192dpi) {
  .oia-center img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
} 

          /* Remove outer padding on mobile, center content */
        @media (max-width: 768px) {
            /* Sections: remove side padding, rely on inner containers */
            .hero-section,
            .stats-section,
            .ita-service-section,
            .process-section,
            .oia-section {
                padding-left: 20px !important;
                padding-right: 20px !important;
            }
            
            /* Inner containers get consistent side padding */
            .hero-container,
            .stats-container,
            .ita-container,
            .oia-container,
        .testimonial-carousel {
                padding-left: 0 !important;
                padding-right: 0 !important;
            }
            
            /* Center text and flex items */
            .hero-content,
            .stats-header,
            .ita-service-header,
            .process,
            .oia-container,
            .testimonial-header,
            .section-header {
                text-align: center;
            }
            
            .hero-content .hero-button {
                margin-left: auto;
                margin-right: auto;
            }
            
            /* Stack and center process steps */
            .process {
                flex-direction: column;
                align-items: center;
            }
            
            .op {
                text-align: center;
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }
            
            /* Center OIA section */
            .oia-container {
                flex-direction: column;
                align-items: center;
            }
            
            .oia-left,
            .oia-right {
                align-items: center;
            }
            
            .oia-content {
                text-align: center;
            }
            
            /* Center testimonial carousel */
            .carousel-container {
                margin: 0 auto;
            }
            
            .testimonial-stats {
                justify-content: center;
            }
            
            /* Hero image centering */
            .hero-image-wrapper {
                margin: 0 auto;
            }
            
            .hero-image {
                margin: 0 auto;
            }
            
            /* Stats grid centering */
            .stats-grid {
                justify-content: center;
            }
            
            .stat-card {
                text-align: center;
            }
            
            /* Service cards centering */
            .ita-service-grid {
                justify-content: center;
            }
            
            .ita-service-card {
                text-align: center;
                margin-left: auto;
                margin-right: auto;
            }
            
            .ita-service-card .ita-service-icon {
                margin-left: auto;
                margin-right: auto;
            }
        }