   :root {
            --primary: #00f7ff;
            --secondary: #7d2ae8;
            --accent: #ff00aa;
            --dark: #0a0a1a;
            --light: #f8f9fa;
            --tech-blue: #0033ff;
            --tech-purple: #7700ff;
            --tech-pink: #ff00aa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--dark);
            color: white;
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--dark);
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(var(--primary), var(--tech-purple));
            border-radius: 10px;
        }
        
        /* Grid System */
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            background: rgba(10, 10, 26, 0.8);
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
        }
        
        .header.scrolled {
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            font-size: 28px;
            background: linear-gradient(45deg, var(--primary), var(--tech-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-right: 10px;
        }
        
        .logo-text {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 24px;
            background: linear-gradient(45deg, var(--primary), var(--tech-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .logo-text span {
            color: var(--accent);
        }
        nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
        }
        nav ul li {
            margin-left: 30px;
            position: relative;
        }
        nav ul li a {
            text-decoration: none;
            color: white;
        }
        .has-submenu > a::after {
            content: ' ▼';
            font-size: 12px;
        }
        .submenu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(10, 10, 26, 0.95);
            border-radius: 8px;
            list-style: none;
            padding: 10px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .submenu li {
            padding: 0;
			margin:0px;
        }
        .submenu li a {
            display: block;
            padding: 12px 20px;
            color: white;
        }
        .submenu li a:hover {
            background: rgba(0, 247, 255, 0.1);
            color: var(--primary);
        }
        .has-submenu:hover .submenu {
            display: block;
        }
        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }
            nav {
                position: fixed;
                top: 70px;
                left: -100%;
                background: rgba(10, 10, 26, 0.95);
                width: 70%;
                height: calc(100vh - 70px);
                flex-direction: column;
                transition: 0.4s;
            }
            nav.active {
                left: 0;
            }
            nav ul {
                flex-direction: column;
            }
            nav ul li {
                margin: 15px 0;
            }
            .has-submenu .submenu {
                display: none;
                position: static;
                background: rgba(10, 10, 26, 0.95);
                box-shadow: none;
            }
            .has-submenu.submenu-open .submenu {
                display: block;
            }
        }
        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 100%);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.1;
            background: linear-gradient(45deg, var(--primary), var(--tech-purple), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: title-glow 3s ease-in-out infinite alternate;
        }
        
        @keyframes title-glow {
            0% {
                text-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
            }
            100% {
                text-shadow: 0 0 20px rgba(0, 247, 255, 0.7), 0 0 30px rgba(125, 42, 232, 0.5);
            }
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 40px;
            color: #a0a0c0;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn-primary {
            background: linear-gradient(45deg, var(--tech-blue), var(--tech-purple));
            color: white;
            border: none;
            box-shadow: 0 10px 20px rgba(125, 42, 232, 0.3);
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--tech-purple), var(--accent));
            transition: all 0.4s ease;
            z-index: -1;
        }
        
        .btn-primary:hover::before {
            left: 0;
        }
        
        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid var(--primary);
        }
        
        .btn-secondary:hover {
            background: rgba(0, 247, 255, 0.1);
            box-shadow: 0 0 15px rgba(0, 247, 255, 0.3);
        }
        
        .btn i {
            margin-right: 10px;
        }
        
        /* Grid Background */
        .grid-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 247, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 247, 255, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 1;
        }
        
        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
        }
        
        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 247, 255, 0.2) 0%, rgba(125, 42, 232, 0.1) 70%, transparent 100%);
            animation: float 20s infinite linear;
        }
        
        .floating-element:nth-child(1) {
            width: 300px;
            height: 300px;
            top: -150px;
            left: -100px;
            animation-duration: 30s;
        }
        
        .floating-element:nth-child(2) {
            width: 200px;
            height: 200px;
            bottom: -100px;
            right: -50px;
            animation-duration: 25s;
            animation-delay: 5s;
        }
        
        .floating-element:nth-child(3) {
            width: 150px;
            height: 150px;
            top: 30%;
            right: 20%;
            animation-duration: 20s;
            animation-delay: 10s;
        }
        
        @keyframes float {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(50px, 30px) rotate(90deg);
            }
            50% {
                transform: translate(20px, 80px) rotate(180deg);
            }
            75% {
                transform: translate(-30px, 40px) rotate(270deg);
            }
            100% {
                transform: translate(0, 0) rotate(360deg);
            }
        }
        
        /* Services Section */
        .services {
            padding: 100px 0;
            position: relative;
            background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 100%);
            overflow: hidden;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
            background: linear-gradient(45deg, var(--primary), var(--tech-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            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(--primary), var(--tech-purple));
            border-radius: 2px;
        }
        
        .section-title p {
            color: #a0a0c0;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        
        .service-card {
            background: rgba(20, 20, 40, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            transition: all 0.4s ease;
            border: 1px solid rgba(125, 42, 232, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(125, 42, 232, 0.2);
            border-color: var(--primary);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(0, 247, 255, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
            z-index: -1;
        }
        
        .service-card:hover::before {
            left: 100%;
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--tech-blue), var(--tech-purple));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 2rem;
            color: white;
            box-shadow: 0 10px 20px rgba(125, 42, 232, 0.3);
        }
        
        .service-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: white;
        }
        
        .service-description {
            color: #a0a0c0;
            margin-bottom: 25px;
            flex-grow: 1;
        }
        
        .service-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .service-link i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .service-link:hover {
            color: var(--tech-purple);
        }
        
        .service-link:hover i {
            transform: translateX(5px);
        }
        
        /* Industries Section */
        .industries {
            padding: 100px 0;
            background: linear-gradient(135deg, #1a1a3a 0%, #0a0a1a 100%);
            position: relative;
            overflow: hidden;
        }
        
        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            position: relative;
            z-index: 2;
        }
        
        .industry-card {
            background: rgba(20, 20, 40, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            transition: all 0.4s ease;
            border: 1px solid rgba(125, 42, 232, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .industry-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(125, 42, 232, 0.2);
            border-color: var(--primary);
        }
        
        .industry-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--tech-purple), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.8rem;
            color: white;
            box-shadow: 0 10px 20px rgba(255, 0, 170, 0.3);
        }
        
        .industry-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: white;
        }
        
        .industry-description {
            color: #a0a0c0;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .industry-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .industry-link i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .industry-link:hover {
            color: var(--tech-purple);
        }
        
        .industry-link:hover i {
            transform: translateX(5px);
        }
        
        /* Tech Circles */
        .tech-circles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
        }
        
        .tech-circle {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(125, 42, 232, 0.1);
        }
        
        .tech-circle:nth-child(1) {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -100px;
            border-color: rgba(0, 247, 255, 0.2);
        }
        
        .tech-circle:nth-child(2) {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: 10%;
            border-color: rgba(125, 42, 232, 0.2);
        }
        
        .tech-circle:nth-child(3) {
            width: 150px;
            height: 150px;
            top: 30%;
            right: 15%;
            border-color: rgba(255, 0, 170, 0.2);
        }
        
        /* CTA Section */
        .cta {
            padding: 100px 0;
            background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(45deg, var(--primary), var(--tech-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .cta-description {
            color: #a0a0c0;
            margin-bottom: 40px;
            font-size: 1.2rem;
        }
        
        .cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            letter-spacing: 1px;
            background: linear-gradient(45deg, var(--accent), var(--tech-purple));
            color: white;
            box-shadow: 0 10px 30px rgba(255, 0, 170, 0.3);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--tech-purple), var(--accent));
            transition: all 0.4s ease;
            z-index: -1;
        }
        
        .cta-btn:hover::before {
            left: 0;
        }
        
        .cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 0, 170, 0.4);
        }
        
        .cta-btn i {
            margin-right: 10px;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            padding: 80px 0 30px;
            position: relative;
            overflow: hidden;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 2;
        }
        
        .footer-col h4 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
            color: white;
        }
        
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--tech-purple));
            border-radius: 2px;
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 12px;
        }
        
        .footer-col ul li a {
            color: #a0a0c0;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 15px;
        }
        
        .footer-col ul li a::before {
            content: '>';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-size: 10px;
            opacity: 0.5;
            transition: all 0.3s ease;
        }
        
        .footer-col ul li a:hover {
            color: var(--primary);
            padding-left: 20px;
        }
        
        .footer-col ul li a:hover::before {
            opacity: 1;
            left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(20, 20, 40, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            transition: all 0.3s ease;
            border: 1px solid rgba(125, 42, 232, 0.2);
        }
        
        .social-link:hover {
            background: linear-gradient(135deg, var(--tech-blue), var(--tech-purple));
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(125, 42, 232, 0.3);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid rgba(125, 42, 232, 0.1);
            color: #a0a0c0;
            font-size: 0.9rem;
        }
        
        .footer-bottom a {
            color: var(--primary);
            text-decoration: none;
        }
        
        /* Tech Particles */
        .tech-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
        }
        
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(0, 247, 255, 0.3);
            border-radius: 50%;
            animation: particle-float 15s infinite linear;
        }
        
        .particle:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-duration: 20s;
        }
        
        .particle:nth-child(2) {
            top: 60%;
            left: 20%;
            animation-duration: 25s;
            animation-delay: 2s;
        }
        
        .particle:nth-child(3) {
            top: 30%;
            left: 30%;
            animation-duration: 18s;
            animation-delay: 5s;
        }
        
        .particle:nth-child(4) {
            top: 70%;
            left: 40%;
            animation-duration: 22s;
            animation-delay: 7s;
        }
        
        .particle:nth-child(5) {
            top: 40%;
            left: 50%;
            animation-duration: 19s;
            animation-delay: 10s;
        }
        
        .particle:nth-child(6) {
            top: 20%;
            left: 60%;
            animation-duration: 24s;
            animation-delay: 12s;
        }
        
        .particle:nth-child(7) {
            top: 60%;
            left: 70%;
            animation-duration: 21s;
            animation-delay: 15s;
        }
        
        .particle:nth-child(8) {
            top: 30%;
            left: 80%;
            animation-duration: 17s;
            animation-delay: 18s;
        }
        
        .particle:nth-child(9) {
            top: 70%;
            left: 90%;
            animation-duration: 23s;
            animation-delay: 20s;
        }
        
        @keyframes particle-float {
            0% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            25% {
                opacity: 1;
            }
            50% {
                transform: translateY(-100px) translateX(50px);
                opacity: 0.8;
            }
            75% {
                opacity: 1;
            }
            100% {
                transform: translateY(-200px) translateX(0);
                opacity: 0;
            }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
            
            .cta-title {
                font-size: 2.3rem;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background: rgba(10, 10, 26, 0.95);
                backdrop-filter: blur(10px);
                transition: all 0.4s ease;
                z-index: 1000;
            }
            
            nav.active {
                left: 0;
            }
            
            nav ul {
                flex-direction: column;
                padding: 40px 20px;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .section {
                padding: 70px 0;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2.3rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .cta-title {
                font-size: 1.7rem;
            }
            
            .btn {
                padding: 12px 25px;
                font-size: 14px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }

        }
		
		.inner-sec{
			    margin-top: 70px;
		}
		 .inner-sec {
        max-width: 1000px;
        margin: 80px auto;
        padding: 30px;
        background: linear-gradient(135deg, #0a0a1a 60%, #111433 100%);
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
        color: #fff;
        font-family: 'Poppins', sans-serif;
        animation: fadeIn 1s ease-in;
    }

    .inner-sec h2 {
        font-size: 32px;
        margin-bottom: 20px;
        background: linear-gradient(45deg, #00f7ff, #7d2ae8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .inner-sec p {
        font-size: 18px;
        line-height: 1.6;
        color: #dcdcdc;
    }

    .offerings-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        margin: 30px 0;
    }

    .offering-card {
        background: #1a1a2e;
        padding: 20px;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-left: 4px solid #00f7ff;
    }

    .offering-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    }

    .offering-card i {
        font-size: 28px;
        margin-bottom: 15px;
        color: #00f7ff;
    }

    .offering-card span {
        font-size: 18px;
        color: #e0e0e0;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }
	
	
	
        header1 {
            background: var(--light-bg);
            padding: 40px 20px;
            text-align: center;
        }

        header1 h1 {
            font-size: 40px;
            margin-bottom: 10px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            color: transparent;
        }

        header1 p {
            font-size: 18px;
            color: #ccc;
        }

        .section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: auto;
        }

        .section-title {
           
            margin-bottom: 20px;
            text-align: center;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            color: transparent;
        }

        .flex-row {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
        }

        .card {
            background: var(--light-bg);
            border-radius: 12px;
            padding: 30px;
            flex: 1 1 300px;
            max-width: 350px;
            transition: transform 0.3s;
        }

        .card:hover {
            transform: translateY(-10px);
        }

        .card h3 {
            color: var(--primary);
            margin-bottom: 10px;
        }

        .highlight {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            color: transparent;
            font-weight: bold;
        }

        .mission-section, .values-section, .team-section {
            text-align: center;
        }

        .mission-section p, .values-section p {
            max-width: 800px;
            margin: 0 auto 20px;
            font-size: 18px;
        }

        .team-card {
            background: var(--light-bg);
            border-radius: 12px;
            padding: 20px;
            max-width: 250px;
        }

        .team-card img {
            width: 100%;
            border-radius: 50%;
            margin-bottom: 15px;
        }

        .team-card h4 {
            margin: 10px 0 5px;
            color: var(--primary);
        }

        footer {
            background: #0b0b20;
            color: #aaa;
            padding: 30px 20px;
            text-align: center;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .flex-row {
                flex-direction: column;
                align-items: center;
            }
        }
		
	.hero {
    position: relative;
    overflow: hidden;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000;
}

.hero-slider {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeSlider 18s infinite;
}

.slide1 {
    background-image: url('images/slide1.png');
    animation-delay: 0s;
}
.slide2 {
    background-image: url('images/slide2.png');
    animation-delay: 6s;
}
.slide3 {
    background-image: url('images/slide3.png');
    animation-delay: 12s;
}

@keyframes fadeSlider {
    0%   { opacity: 0; }
    5%   { opacity: 1; }
    30%  { opacity: 1; }
    35%  { opacity: 0; }
    100% { opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.contact-section {
  padding: 80px 0;
  background: #0e0e0e;
  color: #fff;
}

.contact-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form .form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #444;
  border-radius: 6px;
  background-color: #1a1a1a;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #bbb;
}

.contact-form .form-group input[type="text"],
.contact-form .form-group input[type="email"] {
  flex: 1;
  min-width: 200px;
}

.contact-form button {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
}
