
.hero {
    min-height: 55vh;
    background:
 url("../img/Web\ Baner-0007\ \(1\).png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    padding: 0 20px;
    margin: auto;
}

.hero h1 {
   font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    color: #fff !important;
    max-width: 700px !important;
}

.hero p {
    margin-top: 18px;
    max-width: 600px;
    color: #e5e7eb!important;
    font-size: 1.1rem!important;
}

.hero .line {
    width: 90px;
    height: 4px;
    background:#ef4444;
    margin: 30px 0;
}




        :root {
            /* --primary: #0066ff; */
            /* --primary-light: #4d94ff; */
            --secondary: #00cc88;
            --accent: #ff3366;
            --tertiary: #ffaa00;
            --light-bg: #f8faff;
            --card-bg: #ffffff;
            --text-primary: #1a1a2e;
            --text-secondary: #555555;
            --border-color: #e6f0ff;
            --shadow: 0 8px 30px rgba(0, 102, 255, 0.08);
            --shadow-hover: 0 20px 50px rgba(0, 102, 255, 0.15);
            --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
            --gradient-secondary: linear-gradient(135deg, var(--accent), var(--tertiary));
            --gradient-accent: linear-gradient(135deg, var(--secondary), var(--primary-light));
        }

      
        body {
            background-color: var(--light-bg);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
        }

        .engineering-section {
            position: relative;
            padding: 100px 20px;
            overflow: hidden;
            min-height: 100vh;
        }

        /* 3D Animated Background */
        .three-d-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
        }

        .cube-3d {
            position: absolute;
            transform-style: preserve-3d;
            animation: float-3d 25s infinite linear;
            width: 80px;
            height: 80px;
        }

        .cube-3d:nth-child(1) {
            top: 10%;
            left: 5%;
            animation-delay: 0s;
            color: var(--primary);
        }

        .cube-3d:nth-child(2) {
            top: 70%;
            left: 85%;
            animation-delay: 5s;
            color: var(--secondary);
        }

        .cube-3d:nth-child(3) {
            top: 30%;
            left: 80%;
            animation-delay: 10s;
            color: var(--accent);
        }

        .cube-3d:nth-child(4) {
            top: 80%;
            left: 15%;
            animation-delay: 15s;
            color: var(--tertiary);
        }

        .cube-3d:nth-child(5) {
            top: 20%;
            left: 90%;
            animation-delay: 20s;
            color: var(--primary-light);
        }

        .cube-face {
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(0, 102, 255, 0.05);
            border: 2px solid rgba(0, 102, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: inherit;
            backface-visibility: visible;
            border-radius: 8px;
        }

        .cube-face.front { transform: translateZ(40px); }
        .cube-face.back { transform: translateZ(-40px) rotateY(180deg); }
        .cube-face.right { transform: rotateY(90deg) translateZ(40px); }
        .cube-face.left { transform: rotateY(-90deg) translateZ(40px); }
        .cube-face.top { transform: rotateX(90deg) translateZ(40px); }
        .cube-face.bottom { transform: rotateX(-90deg) translateZ(40px); }

        /* Animated Circuit Lines */
        .circuit-lines {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .circuit-line {
            position: absolute;
            background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
            height: 2px;
            animation: circuit-pulse 3s infinite ease-in-out;
        }

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

   

        /* Introduction */
        .intro-content {
            background: var(--card-bg);
            border-radius: 25px;
            padding: 60px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            margin-bottom: 80px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }



        .moving {
           font-size: 1.9rem;
            
        
           
            color: #ef4444;
            
        }

        .intro-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: var(--gradient-primary);
            z-index: 2;
        }

        .intro-content p {
            font-size: 18px;
            line-height: 1.7;
            color: var(--text-primary);
            margin-bottom: 25px;
        }

        .intro-content p:last-of-type {
            margin-bottom: 0;
        }

        .intro-highlight {
            color: var(--primary);
            font-weight: 600;
        }

        /* Stats Section */
        .stats-section {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 80px;
        }

        @media (min-width: 768px) {
            .stats-section {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .stat-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .stat-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
            z-index: 2;
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

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

        .stat-value {
            display: block;
            font-size: 42px;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 10px;
            line-height: 1;
        }

        .stat-label {
            display: block;
            font-size: 16px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* Why Choose This Service */
        .why-choose-section {
            margin-bottom: 100px;
        }

        .why-choose-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .why-choose-header h2 {
            font-size: 1.9rem;
            margin-bottom: 20px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .why-choose-header p {
            font-size: 20px;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }

        .why-choose-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        @media (min-width: 768px) {
            .why-choose-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1100px) {
            .why-choose-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .why-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .why-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-light);
        }

        .why-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 8px;
            height: 100%;
            background: var(--gradient-secondary);
            z-index: 2;
        }

        .why-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 22px;
            margin-bottom: 25px;
            transition: all 0.4s ease;
        }

        .why-card:hover .why-number {
            transform: scale(1.1) rotate(15deg);
            background: var(--gradient-secondary);
        }

        .why-card h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--text-primary);
        }

        .why-card p {
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-secondary);
        }

        /* What We Engineer Section */
        
        /* Animations */
        @keyframes float-3d {
            0% {
                transform: rotateX(0) rotateY(0) rotateZ(0) translateY(0);
            }
            25% {
                transform: rotateX(15deg) rotateY(45deg) rotateZ(10deg) translateY(-30px);
            }
            50% {
                transform: rotateX(0) rotateY(90deg) rotateZ(0) translateY(0);
            }
            75% {
                transform: rotateX(-15deg) rotateY(135deg) rotateZ(-10deg) translateY(30px);
            }
            100% {
                transform: rotateX(0) rotateY(180deg) rotateZ(0) translateY(0);
            }
        }

        @keyframes circuit-pulse {
            0%, 100% {
                opacity: 0.1;
                width: 0;
            }
            50% {
                opacity: 0.3;
                width: 100px;
            }
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 5px 20px rgba(0, 102, 255, 0.2);
            }
            100% {
                box-shadow: 0 5px 30px rgba(0, 102, 255, 0.4);
            }
        }

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

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .engineering-section {
                padding: 60px 15px;
            }
            
            .section-header h1 {
                font-size: 36px;
            }
            
            .section-header .lead {
                font-size: 18px;
            }
            
            .intro-content {
                padding: 40px 30px;
            }
            
            .why-choose-header h2,
            .what-we-header h2 {
                font-size: 32px;
            }
            
            .cta-section h2 {
                font-size: 32px;
            }
            
            .cube-3d {
                width: 60px;
                height: 60px;
            }
            
            .cube-face.front { transform: translateZ(30px); }
            .cube-face.back { transform: translateZ(-30px) rotateY(180deg); }
            .cube-face.right { transform: rotateY(90deg) translateZ(30px); }
            .cube-face.left { transform: rotateY(-90deg) translateZ(30px); }
            .cube-face.top { transform: rotateX(90deg) translateZ(30px); }
            .cube-face.bottom { transform: rotateX(-90deg) translateZ(30px); }
        }

        @media (max-width: 768px) {
            .section-header h1 {
                font-size: 28px;
            }
            
            .section-header .tag {
                font-size: 16px;
                padding: 10px 25px;
            }
            
            .intro-content, .cta-section {
                padding: 30px 20px;
            }
            
            .why-card, .engineering-card, .stat-card {
                padding: 30px 20px;
            }
            
            .why-choose-grid {
                grid-template-columns: 1fr;
            }
            
            .engineering-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-section {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .cta-section {
                padding: 50px 20px;
            }
            
            .cta-button {
                padding: 15px 40px;
                font-size: 18px;
            }
            
            .cube-3d {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .engineering-grid {
                grid-template-columns: 1fr;
            }
            
            .why-card, .engineering-card, .stat-card {
                padding: 25px 15px;
            }
        }

  


        /* Future of This Service Section */
.future-service-section {
    margin-bottom: 100px;
    position: relative;
}

.future-service-header {
    text-align: center;
    margin-bottom: 60px;
}

.future-service-header h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}



/* Technologies Grid */
.technologies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 60px;
   margin-left: 17%;
}

@media (min-width: 768px) {
    .technologies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .technologies-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tech-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    text-align: center;
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.tech-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 204, 136, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    transition: all 0.4s ease;
}

.tech-card:hover .tech-icon {
    background: var(--gradient-accent);
    color: white;
    transform: rotate(360deg);
}

.tech-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.tech-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* New Animations */
@keyframes timeline-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 102, 255, 0.6);
    }
}

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

/* Responsive adjustments for Future Section */
@media (max-width: 992px) {
    .future-service-header h2 {
        font-size: 32px;
    }
    
    .future-service-header .lead {
        font-size: 18px;
    }
    
    .vision-card {
        padding: 25px 20px;
    }
    
    .vision-card h3 {
        font-size: 20px;
    }
    
    .tech-card {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .future-vision-container {
        gap: 20px;
    }
    
    .vision-card {
        padding: 20px 15px;
    }
    
    .vision-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .technologies-grid {
        grid-template-columns: 1fr;
    }
}
     