	@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        body {
		  font-family: "Nunito Sans", sans-serif;
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d1b69 100%);
            color: #fff;
            overflow-x: hidden;
        }
		section{
			/*border: 1px solid red;*/
		}
		a {
			color: #8b5cf6;
		}
		a:hover{
			color: #e3474b;
		}
		
		#contactMessage, #failMessage{
			display:none;
		}
       
        @keyframes twinkle {
            0%, 100% { 
                opacity: 0;
                transform: scale(0.5);
            }
            20% { 
                opacity: 0.3;
                transform: scale(0.8);
            }
            50% { 
                opacity: 1;
                transform: scale(1.2);
                box-shadow: 0 0 15px currentColor;
            }
            80% { 
                opacity: 0.4;
                transform: scale(0.9);
            }
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1rem 2rem;
            background: rgba(15, 15, 35, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-menu {
            display: flex;
            list-style: none;
			align-items: center;
            gap: 2rem;
            margin: 0;
            padding: 0;
			text-align:center;
        }
        .nav-menu li a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }


        .nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #8b5cf6, #e3474b);
            transition: width 0.3s ease;
        }

        .nav-menu li a:hover::after {
            width: 100%;
        }


        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
			padding-top: 10px;
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: rgba(15, 15, 35, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                transform: translateY(-100vh);
                transition: transform 0.3s ease;
            }

            .nav-menu.active {
                transform: translateY(0);
            }

            .mobile-menu-toggle {
                display: block;
            }
        }

        .logo {
            height: 40px;
            width: auto;
            transition: all 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
            filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
        }

        /* Sections */
        section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
        }

        h1, h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #ffffff, #d8e8e6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
            animation: glow 3s ease-in-out infinite alternate;
        }
		
        h3 {
            font-size: clamp(1.5rem, 2vw, 2rem);
            margin-bottom: 1rem;
            color: white;
        }

        @keyframes glow {
            from { text-shadow: 0 0 30px rgba(255, 255, 255, 0.3); }
            to { text-shadow: 0 0 40px rgba(139, 92, 246, 0.6), 0 0 60px rgba(139, 92, 246, 0.4); }
        }

        .subheading {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
			text-align: center;
        }

        /* Buttons */
        .magic-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(90deg, #8b5cf6, #e3474b, #8b5cf6);
            background-size: 200% 100%;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 300;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
            animation: gradientShift 3s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .magic-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
            animation-duration: 1s;
        }

        .magic-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .magic-button:hover::before {
            left: 100%;
        }

		.services {
			padding-right: 0px;
			padding-left: 0px;
		}

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 1rem;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #8b5cf6, #e3474b, #f59e0b);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
            border-color: rgba(139, 92, 246, 0.3);
        }

        .service-icon {
			font-size: 3rem;
            margin-bottom: 1.5rem;
            color: #fff;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #d8e8e6;
        }

        .service-list {
            list-style: none;
            text-align: center;
            margin-top: 1rem;
        }

        .service-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.8;
        }

        .service-list li:last-child {
            border-bottom: none;
        }

        /* Why Us Section */
        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 1rem;
        }

        .feature-card {
            text-align: center;
            padding: 2rem;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(45deg, #8b5cf6, #e3474b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
            70% { box-shadow: 0 0 0 20px rgba(139, 92, 246, 0); }
            100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); }
        }

        /* Process Steps */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 1rem;
        }

        .step {
            text-align: center;
            position: relative;
        }


        /* Contact Form */
        .contact-form {
            max-width: 600px;
            margin: 3rem auto 0;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 3rem;
        }
		.cta {
            margin-top: 2rem;
            margin-bottom: 2rem;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 3rem;
			text-align: center;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #d8e8e6;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #8b5cf6;
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        /* Footer */
        footer {
            background: rgba(15, 15, 35, 0.9);
            padding: 3rem 2rem 1rem;
            margin-top: 6rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
		
		.footer-content {
			margin: 0 auto;
			align-items: center;
			justify-content: center; 
            max-width: 1300px;
			display: grid;
			grid-template-areas:
				"one two three four";
			grid-template-columns: 2fr 4fr 3fr 2fr;
			gap: 1rem;
		}

		.footer-content > div:nth-child(1) { grid-area: one; }
		.footer-content > div:nth-child(2) { grid-area: two; }
		.footer-content > div:nth-child(3) { grid-area: three; }
		.footer-content > div:nth-child(4) { grid-area: four; }

		
        .footer-section h4 {
            color: #fff;
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            color: #fff;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: #e3474b;
        }


        /* FAQ */
        .faq {
            width: 100%;
			max-width: 1000px;
            padding: 3rem 0 3rem 0;
            color: white;
            font-size: 1rem;
			text-align: center;
        }

        .faq-container {
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }

        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-question {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px 30px 20px 30px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.95em;
            transition: background 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 60px;
        }

        .faq-question:hover {
            background: rgba(255, 255, 255, 0.2);
        }
		

        .faq-answer {
			text-align: left;
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            font-size: 0.9em;
            line-height: 1.6;
        }

        .faq-answer.active {
            padding: 30px;
            max-height: 150px;
        }

        .faq-toggle {
            font-size: 1.2em;
            transition: transform 0.3s ease;
            color: #e3474b;
            font-weight: bold;
        }

        .faq-toggle.active {
            transform: rotate(45deg);
        }

        /* Responsive */
        @media (max-width: 768px) {
            section {
                padding: 4rem 1rem;
            }
            .services{
				margin: 2rem;
			}
            .services-grid {
                grid-template-columns: 1fr;	
            }
            
            .contact-form {
                margin: 2rem 1rem 0;
                padding: 2rem;
            }
			
			.cta {
				margin: 3rem auto 0;
				background: none;
				backdrop-filter: blur(0px);
				border: 0px;
				padding: 3rem;
				text-align: center;
			}
			
			.magic-button {
				padding: 0.5rem 1rem;
				background-size: 200% 100%;
				text-decoration: none;
				font-weight: 300;
				font-size: 1rem;
			}
			 .footer-content {
				grid-template-areas:
				  "one"
				  "two"
				  "three"
				  "four";
				grid-template-columns: 1fr;
				text-align: center;
			  }

			  .footer-content > div {
				margin-bottom: 1rem;
				display: flex;
				flex-direction: column;
				align-items: center;
				justify-content: center;
				text-align: center;
			  }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
		#bgVideo {
		  position: fixed;
		  top: 0;
		  left: 0;
		  width: 100%;
		  height: auto;
		  min-height: 100%;
		  object-fit: cover;
		  object-position: top;
		  z-index: -1
		}
		
		        .carousel-container {
            width: 100%;
            position: relative;
        }
        
        .carousel-header {
            text-align: center;
            animation: fadeInUp 0.8s ease-out;
        }
        
        .carousel-header h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
            background: linear-gradient(45deg, #fff, #e0e7ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .carousel-wrapper {
            position: relative;
            width: 100%; /* Added for explicit width */
            overflow: hidden;
        }
        
        .carousel-track {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            height: 100%;
            width: 300%;
        }
        
        .carousel-slide {
            flex: 0 0 33.333%;
            height: 100%;
            padding: 0 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .stat-card {
			display: flex;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            width: 100%;
            max-width: 1200px;
			align-items: center;
			justify-content: center;
			background-image: url('../images/carouselbg.jpg');
			background-size: cover;
			background-position: center;
			background-repeat: no-repeat;
        }
        .stat-card div{
            padding: 3rem 2rem;
			text-align: center;
		}
		
        .stat-card img{
			max-height: 300px;
            border-radius: 24px;
		}
		
        .stat-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s;
            opacity: 0;
        }
        
        
        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            color: #e3474b;
            margin-bottom: 1rem;
            display: block;
        }
        
        .stat-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }
        
        .stat-subtitle {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            font-weight: 400;
        }
        
        .carousel-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .control-btn {
            width: 60px;
            height: 60px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        
        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .indicator.active {
            background: #8b5cf6;
            transform: scale(1.2);
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        
        @keyframes shine {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
                opacity: 0;
            }
        }
        
        .slide1 .stat-card { animation-delay: 0.3s; }
        .slide2 .stat-card { animation-delay: 0.6s; }
        .slide3 .stat-card { animation-delay: 0.9s; }
        
        @media (max-width: 768px) {
            .carousel-header h1 {
                font-size: 2.5rem;
            }
            
            .stat-number {
                font-size: 3rem;
            }
            
            .stat-title {
                font-size: 1.2rem;
            }
            
            .carousel-wrapper {
                height: 400px;
            }
            
            .stat-card {
                padding: 2rem 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .carousel-header h1 {
                font-size: 2rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .carousel-container {
                padding: 1rem;
            }
        }
