/* ============================================
   BRAND NEW MODERN HOMEPAGE DESIGN
   Zeronix Technology - IT Solutions Company
   ============================================ */

:root {
    --primary: #042A2D;
    --accent: #73ED7C;
    --dark-teal: #019297;
    --white: #FFFFFF;
    --text-gray: #6B7280;
    --light-bg: #F9FAFB;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* ============================================
   NEW HERO SECTION
   ============================================ */

.new-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark-teal) 100%);
}

/* Background Video Styling */
.new-hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    opacity: 0.5;
    filter: brightness(1.1) contrast(1.05);
    animation: video-light-pulse 8s ease-in-out infinite;
}

/* Video Light Animation Overlay */
.new-hero-bg-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(115, 237, 124, 0.15) 25%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(115, 237, 124, 0.15) 75%,
        transparent 100%
    );
    animation: video-shimmer 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
}

.new-hero-bg-video::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(115, 237, 124, 0.2) 0%,
        transparent 50%
    ),
    radial-gradient(
        circle at 70% 70%,
        rgba(1, 146, 151, 0.2) 0%,
        transparent 50%
    );
    animation: video-light-rotate 20s linear infinite;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
}

/* Video Light Animations */
@keyframes video-light-pulse {
    0%, 100% {
        filter: brightness(1.1) contrast(1.05);
        opacity: 0.5;
    }
    50% {
        filter: brightness(1.3) contrast(1.15);
        opacity: 0.6;
    }
}

@keyframes video-shimmer {
    0% {
        transform: translateX(-100%) skewX(-15deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(200%) skewX(-15deg);
        opacity: 0;
    }
}

@keyframes video-light-rotate {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }
    25% {
        transform: rotate(90deg) translate(50px, -50px);
    }
    50% {
        transform: rotate(180deg) translate(0, 0);
    }
    75% {
        transform: rotate(270deg) translate(-50px, 50px);
    }
    100% {
        transform: rotate(360deg) translate(0, 0);
    }
}

/* Animated Background Layers Container */
.hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

/* Animated Gradient Layers */
.animated-gradient-layer {
    position: absolute;
    width: 150%;
    height: 150%;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(80px);
    mix-blend-mode: screen;
}

.animated-gradient-layer.layer-1 {
    background: radial-gradient(circle, rgba(115, 237, 124, 0.4) 0%, transparent 70%);
    top: -25%;
    left: -25%;
    animation: float-gradient-1 15s ease-in-out infinite;
}

.animated-gradient-layer.layer-2 {
    background: radial-gradient(circle, rgba(1, 146, 151, 0.4) 0%, transparent 70%);
    bottom: -25%;
    right: -25%;
    animation: float-gradient-2 20s ease-in-out infinite;
}

.animated-gradient-layer.layer-3 {
    background: radial-gradient(circle, rgba(115, 237, 124, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-gradient 12s ease-in-out infinite;
}

/* Animated Particles */
.animated-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(115, 237, 124, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(115, 237, 124, 0.8);
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation: particle-float-1 8s ease-in-out infinite;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 40%;
    left: 80%;
    animation: particle-float-2 10s ease-in-out infinite;
    animation-delay: 1s;
    width: 6px;
    height: 6px;
    background: rgba(1, 146, 151, 0.6);
    box-shadow: 0 0 15px rgba(1, 146, 151, 0.8);
}

.particle:nth-child(3) {
    top: 70%;
    left: 30%;
    animation: particle-float-3 12s ease-in-out infinite;
    animation-delay: 2s;
    width: 5px;
    height: 5px;
}

.particle:nth-child(4) {
    top: 10%;
    left: 60%;
    animation: particle-float-1 9s ease-in-out infinite;
    animation-delay: 3s;
    background: rgba(115, 237, 124, 0.4);
}

.particle:nth-child(5) {
    top: 85%;
    left: 70%;
    animation: particle-float-2 11s ease-in-out infinite;
    animation-delay: 4s;
    width: 7px;
    height: 7px;
    background: rgba(1, 146, 151, 0.5);
}

.particle:nth-child(6) {
    top: 50%;
    left: 15%;
    animation: particle-float-3 13s ease-in-out infinite;
    animation-delay: 5s;
}

/* Gradient Layer Animations */
@keyframes float-gradient-1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.5;
    }
}

@keyframes float-gradient-2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-40px, 40px) scale(1.15);
        opacity: 0.5;
    }
}

@keyframes pulse-gradient {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.4;
    }
}

/* Particle Animations */
@keyframes particle-float-1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(20px, -30px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, -60px) scale(0.8);
        opacity: 0.6;
    }
    75% {
        transform: translate(30px, -40px) scale(1.1);
        opacity: 0.9;
    }
}

@keyframes particle-float-2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    25% {
        transform: translate(-25px, 35px) scale(1.3);
        opacity: 0.9;
    }
    50% {
        transform: translate(25px, 70px) scale(0.9);
        opacity: 0.7;
    }
    75% {
        transform: translate(-35px, 45px) scale(1.15);
        opacity: 0.95;
    }
}

@keyframes particle-float-3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    33% {
        transform: translate(40px, 20px) scale(1.4);
        opacity: 0.8;
    }
    66% {
        transform: translate(-30px, 50px) scale(0.7);
        opacity: 0.6;
    }
}

/* Additional Wave Animation Effect */
.new-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(115, 237, 124, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(1, 146, 151, 0.15) 0%, transparent 50%);
    animation: pulse-wave 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse-wave {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Dark overlay for better text readability over video */
.new-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(4, 42, 45, 0.65) 0%, 
        rgba(4, 42, 45, 0.85) 100%);
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================
   ANIMATED LIGHT & SHADOW EFFECTS
   ============================================ */

/* Light Rays Container */
.light-rays-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

/* Individual Light Rays */
.light-ray {
    position: absolute;
    width: 2px;
    height: 200%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(115, 237, 124, 0.4) 20%,
        rgba(115, 237, 124, 0.6) 50%,
        rgba(115, 237, 124, 0.4) 80%,
        transparent 100%
    );
    box-shadow: 0 0 20px rgba(115, 237, 124, 0.5),
                0 0 40px rgba(115, 237, 124, 0.3);
    transform-origin: center;
    opacity: 0.6;
}

.light-ray.ray-1 {
    left: 20%;
    animation: sweep-light-1 8s ease-in-out infinite;
    transform: rotate(15deg);
}

.light-ray.ray-2 {
    left: 50%;
    animation: sweep-light-2 12s ease-in-out infinite;
    transform: rotate(-10deg);
    animation-delay: 2s;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(1, 146, 151, 0.4) 20%,
        rgba(1, 146, 151, 0.6) 50%,
        rgba(1, 146, 151, 0.4) 80%,
        transparent 100%
    );
    box-shadow: 0 0 20px rgba(1, 146, 151, 0.5),
                0 0 40px rgba(1, 146, 151, 0.3);
}

.light-ray.ray-3 {
    left: 80%;
    animation: sweep-light-3 10s ease-in-out infinite;
    transform: rotate(25deg);
    animation-delay: 4s;
}

/* Moving Shadow Waves */
.moving-shadows {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.shadow-wave {
    position: absolute;
    width: 150%;
    height: 200px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(4, 42, 45, 0.2) 20%,
        rgba(4, 42, 45, 0.4) 50%,
        rgba(4, 42, 45, 0.2) 80%,
        transparent 100%
    );
    filter: blur(60px);
    opacity: 0.6;
}

.shadow-wave.wave-1 {
    top: 20%;
    animation: wave-sweep-1 15s linear infinite;
    transform: rotate(-5deg);
}

.shadow-wave.wave-2 {
    top: 60%;
    animation: wave-sweep-2 18s linear infinite;
    transform: rotate(5deg);
    animation-delay: -5s;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(4, 42, 45, 0.15) 20%,
        rgba(4, 42, 45, 0.35) 50%,
        rgba(4, 42, 45, 0.15) 80%,
        transparent 100%
    );
}

/* Spotlight Effects */
.spotlight-effect {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(115, 237, 124, 0.15) 0%,
        rgba(115, 237, 124, 0.08) 30%,
        transparent 70%
    );
    filter: blur(80px);
    opacity: 0.7;
    z-index: 1;
}

.spotlight-effect.spotlight-1 {
    top: -300px;
    left: -300px;
    animation: spotlight-move-1 20s ease-in-out infinite;
}

.spotlight-effect.spotlight-2 {
    bottom: -300px;
    right: -300px;
    background: radial-gradient(
        circle,
        rgba(1, 146, 151, 0.15) 0%,
        rgba(1, 146, 151, 0.08) 30%,
        transparent 70%
    );
    animation: spotlight-move-2 25s ease-in-out infinite;
    animation-delay: -10s;
}

/* Light Ray Animations */
@keyframes sweep-light-1 {
    0% {
        transform: translateX(-200px) translateY(-50%) rotate(15deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translateX(0px) translateY(-50%) rotate(15deg);
        opacity: 0.8;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateX(200px) translateY(-50%) rotate(15deg);
        opacity: 0;
    }
}

@keyframes sweep-light-2 {
    0% {
        transform: translateX(200px) translateY(-50%) rotate(-10deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translateX(0px) translateY(-50%) rotate(-10deg);
        opacity: 0.8;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateX(-200px) translateY(-50%) rotate(-10deg);
        opacity: 0;
    }
}

@keyframes sweep-light-3 {
    0% {
        transform: translateX(-150px) translateY(-50%) rotate(25deg);
        opacity: 0;
    }
    15% {
        opacity: 0.5;
    }
    50% {
        transform: translateX(100px) translateY(-50%) rotate(25deg);
        opacity: 0.7;
    }
    85% {
        opacity: 0.5;
    }
    100% {
        transform: translateX(350px) translateY(-50%) rotate(25deg);
        opacity: 0;
    }
}

/* Shadow Wave Animations */
@keyframes wave-sweep-1 {
    0% {
        transform: translateX(-100%) rotate(-5deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translateX(0%) rotate(-5deg);
        opacity: 0.8;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateX(100%) rotate(-5deg);
        opacity: 0;
    }
}

@keyframes wave-sweep-2 {
    0% {
        transform: translateX(100%) rotate(5deg);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    50% {
        transform: translateX(0%) rotate(5deg);
        opacity: 0.7;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateX(-100%) rotate(5deg);
        opacity: 0;
    }
}

/* Spotlight Animations */
@keyframes spotlight-move-1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    25% {
        transform: translate(300px, 200px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(600px, 100px) scale(0.9);
        opacity: 0.6;
    }
    75% {
        transform: translate(300px, -100px) scale(1.1);
        opacity: 0.7;
    }
}

@keyframes spotlight-move-2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    25% {
        transform: translate(-400px, -300px) scale(1.3);
        opacity: 0.9;
    }
    50% {
        transform: translate(-600px, -100px) scale(0.8);
        opacity: 0.6;
    }
    75% {
        transform: translate(-200px, -400px) scale(1.15);
        opacity: 0.8;
    }
}

/* Responsive adjustments for animated layers */
@media (max-width: 768px) {
    .animated-gradient-layer {
        filter: blur(60px);
        opacity: 0.2;
    }
    
    .particle {
        width: 3px;
        height: 3px;
    }
    
    .particle:nth-child(2),
    .particle:nth-child(5) {
        width: 4px;
        height: 4px;
    }
    
    .new-hero-bg-video {
        opacity: 0.4;
        animation-duration: 10s;
    }
    
    .new-hero-bg-video::before {
        animation-duration: 6s;
    }
    
    .new-hero-bg-video::after {
        animation-duration: 25s;
    }
    
    .light-ray {
        width: 1px;
        opacity: 0.4;
    }
    
    .shadow-wave {
        filter: blur(40px);
        opacity: 0.4;
    }
    
    .spotlight-effect {
        width: 400px;
        height: 400px;
        filter: blur(60px);
        opacity: 0.5;
    }
}

.new-hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    padding: 100px 0 80px;
}

.new-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.new-hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, #38f9d7 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.new-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
}

.new-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.new-btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--dark-teal) 100%);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(115, 237, 124, 0.3);
    text-decoration: none;
    display: inline-block;
}

.new-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(115, 237, 124, 0.4);
}

.new-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.new-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Floating Tech Elements */
.hero-tech-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.tech-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.tech-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.tech-icon:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
.tech-icon:nth-child(3) { top: 80%; left: 20%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* ============================================
   SERVICES SHOWCASE SECTION
   ============================================ */

.new-services {
    padding: 120px 0;
    background: var(--light-bg);
    position: relative;
}

.new-services-header {
    text-align: center;
    margin-bottom: 80px;
}

.new-services-header .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--dark-teal) 100%);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.new-services-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.new-services-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--dark-teal) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(115, 237, 124, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--dark-teal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-link {
    color: var(--dark-teal);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}

.service-link:hover {
    gap: 12px;
    color: var(--accent);
}

.service-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

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

/* Services CTA Section */
.services-cta {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid rgba(4, 42, 45, 0.1);
}

.services-cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.services-cta-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    line-height: 1.3;
}

.services-cta-content .new-btn-primary {
    margin: 0;
    white-space: nowrap;
}

/* Responsive adjustments for Services CTA */
@media (max-width: 768px) {
    .services-cta {
        margin-top: 60px;
        padding-top: 40px;
    }
    
    .services-cta-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .services-cta-content h2 {
        font-size: 1.5rem;
    }
    
    .services-cta-content .new-btn-primary {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   STATS SECTION
   ============================================ */

.new-stats {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark-teal) 100%);
    position: relative;
    overflow: hidden;
}

.new-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(115, 237, 124, 0.1) 0%, transparent 70%);
    animation: rotate 40s linear infinite;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent) 0%, #38f9d7 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-description {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.new-features {
    padding: 120px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
}

.feature-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    position: relative;
}

.feature-icon {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(115, 237, 124, 0.1) 0%, rgba(1, 146, 151, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--dark-teal);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--accent) 0%, var(--dark-teal) 100%);
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ============================================
   PRODUCT SHOWCASE SECTIONS
   ============================================ */

.new-product-showcase {
    padding: 100px 0;
    background: var(--light-bg);
}

.showcase-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.showcase-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.showcase-image img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.showcase-container:hover .showcase-image img {
    transform: scale(1.05);
}

.showcase-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.showcase-content h2 span {
    background: linear-gradient(135deg, var(--accent) 0%, var(--dark-teal) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.showcase-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 32px;
}

.showcase-reverse {
    direction: rtl;
}

.showcase-reverse > * {
    direction: ltr;
}

/* ============================================
   CTA SECTION
   ============================================ */

.new-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark-teal) 100%);
    position: relative;
    overflow: hidden;
}

.new-cta::before {
    /* content: ''; */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(115, 237, 124, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(1, 146, 151, 0.2) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* ============================================
   CLIENTS LOGO SECTION
   ============================================ */

.new-clients {
    padding: 80px 0;
    background: var(--white);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.clients-grid:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.client-logo {
    padding: 30px;
    background: var(--light-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.client-logo img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 991px) {
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .showcase-reverse {
        direction: ltr;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 767px) {
    .new-hero-content {
        padding: 80px 0 60px;
    }
    
    .new-hero-buttons {
        flex-direction: column;
    }
    
    .new-btn-primary,
    .new-btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Hide old sections - keeping them for reference but hiding visually */
.our-blog:not(.new-services),
.company-growth,
.our-approach {
    display: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.section-padding {
    padding: 120px 0;
}

.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

