/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #c850c0, #4158d0);
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Sticky Header */
.sticky-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0;
    z-index: 1000;
}

.sticky-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.sticky-header h1 {
    margin: 0;
    font-size: 1.5em;
}

.sticky-header nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.sticky-header nav ul li {
    margin-left: 20px;
}

.sticky-header nav ul li a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: background 0.3s;
}

.sticky-header nav ul li a:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h2 {
    font-size: 1.5em;
} 

/* Student Registration Form */
.student-registration {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    margin: 0 auto;
}

.glassmorphism-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    max-width: 600px; /* Increased width to accommodate the form */
    width: 100%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* Video Container Styles */
.video-container {
    margin-bottom: 20px;
    text-align: center;
}

.video-container iframe {
    max-width: 100%;
    border-radius: 16px;
}

/* Form Styles */
.glassmorphism-box h2 {
    text-align: center;
    margin-bottom: 20px;
}

.glassmorphism-box label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.glassmorphism-box input[type="text"],
.glassmorphism-box input[type="tel"],
.glassmorphism-box input[type="email"],
.glassmorphism-box input[type="file"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1em;
    outline: none;
}

.glassmorphism-box button {
    width: 100%;
    padding: 12px;
    background: #4158d0;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.3s;
}

.glassmorphism-box button:hover {
    background: #c850c0;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    margin-top: auto;
    background: rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}
/* Existing styles */

/* Styles for mobile responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
     /* Hide the navigation element */
   nav {
    display: none;
}


    iframe {
        width: 100%;
        height: auto;
    }

}
/* Students List */
.student-list {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}
/* Student Profile */
.student-profile {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}
