/* Global Styles */
        :root {
            --primary-color: #0066cc;
            --secondary-color: #00ccff;
            --glitter-color: rgba(0, 204, 255, 0.7);
            --dark-blue: #003366;
            --cosmic-purple: #6600cc;
            --cosmic-pink: #ff00cc;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', Arial, sans-serif;
        }
        
        body {
            background-color: #000;
            color: #fff;
            overflow-x: hidden;
            position: relative;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, var(--dark-blue) 0%, #000 70%);
            z-index: -2;
        }
        
        /* Glitter Background Effect */
        .glitter {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: transparent;
            z-index: -1;
            overflow: hidden;
        }
        
        .glitter::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle, var(--glitter-color) 0.5px, transparent 0.5px),
                radial-gradient(circle, var(--glitter-color) 0.5px, transparent 0.5px);
            background-size: 20px 20px;
            animation: glitter 6s linear infinite;
            opacity: 0.7;
        }
        
        @keyframes glitter {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Cosmic AI Design Elements */
        .cosmic-element {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0.3;
            z-index: -1;
        }
        
        .cosmic-1 {
            width: 300px;
            height: 300px;
            background: var(--cosmic-purple);
            top: 20%;
            left: 10%;
            animation: float 15s ease-in-out infinite;
        }
        
        .cosmic-2 {
            width: 400px;
            height: 400px;
            background: var(--cosmic-pink);
            bottom: 10%;
            right: 5%;
            animation: float 20s ease-in-out infinite reverse;
        }
        
        .cosmic-3 {
            width: 200px;
            height: 200px;
            background: var(--secondary-color);
            top: 60%;
            left: 30%;
            animation: float 12s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translate(0, 0); }
            50% { transform: translate(30px, 50px); }
            100% { transform: translate(0, 0); }
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 5% !important;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            background: rgba(0, 20, 40, 0.8);
            backdrop-filter: blur(10px);
        }
		
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(to right, var(--secondary-color), white);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
			float: right;
        }
        
        .nav-links a {
            color: white !important;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
		@media (min-width: 576px) {
		 .navbar-expand-sm .navbar-collapse {
		 display: block !important;
		 }
		}
        @media (max-width: 576px) {
		 .nav-links {
            float: left;
        }
		}
        
        .nav-links a:hover {
            color: var(--secondary-color) !important;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color) !important;
            transition: width 0.3s ease !important;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        /* Sections */
        section {
            min-height: 100vh;
            padding: 100px 10% 80px;
            position: relative;
        }
        
        /* Home Section */
        #home {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
			background: url(0.jpg);
			background-size: contain;
        }
        
        .home-content {
            max-width: 600px;
            z-index: 1;
        }
        
        .home-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, white, var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .home-content p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .cta-button {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 102, 204, 0.5);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(0, 204, 255, 0.6);
        }
        
        .home-image {
            position: relative;
            width: 450px;
            height: 450px;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 0 50px var(--secondary-color);
            border: 5px solid var(--secondary-color);
        }
        
        .home-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(1.1) contrast(1.1) saturate(1.2);
        }
        
        .countdown {
            margin-top: 50px;
            background: rgba(0, 20, 40, 0.5);
            padding: 20px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 204, 255, 0.3);
        }
        
        .countdown h3 {
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        .timer {
            display: flex;
            gap: 20px;
        }
        
        .timer-box {
            text-align: center;
            padding: 10px 15px;
            background: rgba(0, 40, 80, 0.5);
            border-radius: 10px;
            min-width: 80px;
        }
        
        .timer-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-color);
        }
        
        .timer-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* About Section */
        #about {
            background: rgba(0, 10, 20, 0.7);
            backdrop-filter: blur(5px);
            border-top: 1px solid rgba(0, 204, 255, 0.2);
            border-bottom: 1px solid rgba(0, 204, 255, 0.2);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            color: var(--secondary-color);
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title::after {
            content: '✦';
            position: absolute;
            top: -15px;
            right: -20px;
            font-size: 1.5rem;
            color: var(--cosmic-pink);
        }
        
        .about-content {
            display: flex;
            gap: 50px;
            align-items: center;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text p {
            margin-bottom: 20px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .about-image {
            flex: 1;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 0 30px rgba(0, 204, 255, 0.4);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            filter: brightness(1.05) contrast(1.05);
        }
        
        /* Gallery Section */
        #gallery {
            background: rgba(0, 20, 40, 0.3);
        }
        
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            aspect-ratio: 1/1;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 204, 255, 0.4);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Registration Section */
        #registration {
            background: rgba(0, 30, 60, 0.6);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(0, 204, 255, 0.3);
        }
        
        .reg-form-container {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(0, 40, 80, 0.5);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(0, 204, 255, 0.2);
        }
        
        .form-title {
            text-align: center;
            margin-bottom: 30px;
            color: var(--secondary-color);
            font-size: 1.8rem;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background: rgba(0, 60, 120, 0.3);
            border: 1px solid rgba(0, 204, 255, 0.3);
            border-radius: 8px;
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
        }
        
        .form-row {
            display: flex;
            gap: 20px;
        }
        
        .form-row .form-group {
            flex: 1;
        }
        
        .submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }
        
        .submit-btn:hover {
            background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(0, 204, 255, 0.6);
        }
        
        /* Footer */
        footer {
            text-align: center;
            padding: 30px;
            background: rgba(0, 10, 20, 0.8);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
		
		
	#experience {
  background: rgba(0, 30, 60, 0.6);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 204, 255, 0.3);
  min-height: 40vh;
  padding: 50px 2% 50px;
}
#values {
  background: rgba(0, 30, 60, 0.6);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 204, 255, 0.3);
  min-height: 40vh;
  padding: 50px 2% 50px;
}		
.text-center {
  text-align: center;
}
.grid {
  grid-template-columns: repeat(3,minmax(0,1fr));
  display: grid;
  gap: 2rem;
}
.grid2 {
  grid-template-columns: repeat(2,minmax(0,1fr));
  display: grid;
  gap: 2rem;
}
.grid3 {
  grid-template-columns: repeat(4,minmax(0,1fr));
  display: grid;
  gap: 2rem;
}
.rounded-bd {
  border: 2px solid #a0a1e669;
  border-radius: 10px;
  padding: 1.5rem;
  }
  .text-xl, .text-slate-300, .text-blue-100, .font-semibold{
  font-family: ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";
}
.text-pink-300 {
  --tw-text-opacity: 1;
  color: rgb(249 168 212 / var(--tw-text-opacity, 1));
}
.drop-shadow-lg {
  --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / .04)) drop-shadow(0 4px 3px rgb(0 0 0 / .1));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.text-cyan-300 {
  --tw-text-opacity: 1;
  color: rgb(103 232 249 / var(--tw-text-opacity, 1));
}
.w-12, .h-12 {
  width: 3rem;
}
.w-10, .h-10 {
  height: 2.5rem;
}
.abt{
background-color: #ffffff1a;
}
.flabel {
				font-size: 15px;
			}
.text-x2 {
				font-size: 18px;
			}			
.c2 {
  text-align: center;
  color: #fff;
  margin-top: -44px;
  font-size: 1.5rem;
			}			
		
        
        /* Responsive */
        @media (max-width: 1024px) {
            .home-content {
                max-width: 500px;
            }
            
            .home-image {
                width: 400px;
                height: 400px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                margin-top: 30px;
            }
			h1 {
				font-size: 2.5rem !important;
			}
        }
        
        @media (max-width: 768px) {
            #home {
                flex-direction: column;
                text-align: center;
                padding-top: 150px;
            }
            
            .home-content {
                max-width: 100%;
                margin-bottom: 50px;
            }
            
            .home-image {
                width: 300px;
                height: 300px;
            }
            
            .timer {
                justify-content: center;
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
			.grid, .grid2 {
				grid-template-columns: repeat(1,minmax(0,1fr));
			}
			.grid3 {
				grid-template-columns: repeat(2,minmax(0,1fr));
			}
			h1 {
				font-size: 2.5rem !important;
			}
        }
        
        @media (max-width: 480px) {
            .nav-links {
                gap: 15px;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
			
			h1 {
				font-size: 2rem !important;
			}
            .undertaking, .flabel {
				font-size: 12px !important;
			}
            .text-x2 {
				font-size: 15px !important;
			}
			.c2 {
  font-size: 1rem;
			}
            
            .timer-box {
                min-width: 60px;
                padding: 8px 10px;
            }
            
            .timer-value {
                font-size: 1.5rem;
            }
            
            .reg-form-container {
                padding: 30px 20px;
            }
			.grid3 {
				grid-template-columns: repeat(1,minmax(0,1fr));
			}
			
        }

.hamburger {
            cursor: pointer;
            display: block;
            background-color: #444;
            color: white;
            padding: 10px;
            border: none;
            outline: none;
        }
        @media (min-width: 600px) {
            .menu {
                display: flex;
                flex-direction: row;
                max-height: none;
            }
            .hamburger {
                display: none;
            }
        }
		
.button {
    background: linear-gradient(45deg, blue, purple);
    border: none;
    color: white;
    padding: 10px 30px !important;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    margin: 30px auto 5px !important;
    display: block !important;
    cursor: pointer;
	font-weight: bold !important;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.button:hover {
    background: linear-gradient(45deg, #f7d94c, #ff6b6b);
}

.headn {
  color: #fff;
  margin: 20px 20px 40px;
  animation: glow 2s infinite alternate, blink 1s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

#glow-blink {
  animation: glow 2s infinite alternate, blink 1s infinite;
}

@keyframes glow {
    0% { text-shadow: 0 0 5px rgba(173, 216, 230, 0.8); }
    50% { text-shadow: 0 0 20px rgba(173, 216, 230, 1); }
    100% { text-shadow: 0 0 5px rgba(173, 216, 230, 0.8); }
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
#swal2-content, .swal2-confirm{
	font-size: 14px !important;
}
.swal2-title {
  font-size: 1.5em !important;
}