
            /* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: black;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  color: white;
}
#hero{
  background-image: url('https://images.pexels.com/photos/14751274/pexels-photo-14751274.jpeg');
  background-size:cover;
  background-color: rgba(0, 0, 0, 0.7); /* Adjust transparency */
  background-blend-mode: darken; /* Other modes: multiply, overlay, screen */
}

/* Navigation Bar */
#nav {
  background: linear-gradient(to right, #000428, #004e92);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

#Logo img {
  width: 160px;
}

#menu {
  display: flex;
  gap: 30px;
}

#menu a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 15px;
  transition: 0.3s ease-in-out;
  position: relative;
}

#menu a::after {
  content: "";
  width: 0;
  height: 3px;
  background: #ffcc00;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s ease-in-out;
}

#menu a:hover::after {
  width: 100%;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 30px;
  height: 4px;
  background: white;
  border-radius: 5px;
  transition: 0.3s;
}
.container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

}
#content{
  width: 60%;
  text-align: left;
  padding-left: 100;
  font-size: large;
}
#syllabus{
  background-color: #04172e;
  padding-top: 20;
  padding-bottom: 20;
  margin-top: 0; /* Ensure there's no extra margin */
}

/* Mobile Menu */
@media (max-width: 768px) {
  .hamburger {
      display: flex;
  }
  #content{
      width: 100%;
      padding-left: 10;
      padding-top: 10;
      padding-bottom: 10;
  }
  #menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 0;
      background: rgb(2, 19, 144);
      width: 100%;
      text-align: center;
      padding: 10px 0;
  }

  #menu.show {
      display: flex;
  }

  #menu a {
      padding: 12px;
      display: block;
  }
  .container {
      flex-direction: column;
      text-align: center;
  }
  #leadform{
      padding-top: 0;
  }

  .form-container {
      padding-top: 10;
      align-items: center;
      width: 100%; /* Make the form take full width */
      max-width: 450px; /* Optional: Keep it readable */
      margin-bottom: 0;
  }
}

/* Page Sections */
section {
  padding: 80px 20px;
  text-align: center;
}

#hero {
  margin-top: 70px; /* Adjusting for fixed navbar */
}
h1{
  font-size: 50;
}
.register-btn {
background: #ffcc00; /* Deep Yellow */
color: black;
font-size: 18px;
font-weight: bold;
border: none;
padding: 12px 25px;
border-radius: 50px; /* Curved Shape */
cursor: pointer;
transition: all 0.3s ease-in-out;
box-shadow: 0px 4px 10px rgba(255, 204, 0, 0.4);
position: relative;
overflow: hidden;
}

/* Hover Effect */
.register-btn:hover {
background: #e6b800; /* Slightly Darker Yellow */
box-shadow: 0px 6px 15px rgba(255, 204, 0, 0.6);
transform: translateY(-2px); /* Lift Effect */
}

/* Click Effect */
.register-btn:active {
transform: scale(0.95); /* Pressing Effect */
box-shadow: 0px 2px 8px rgba(255, 204, 0, 0.3);
}
#loading {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: black;
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
}

/* Spinner Animation */
.spinner {
width: 50px;
height: 50px;
border: 5px solid rgba(255, 255, 255, 0.3);
border-top: 5px solid #ffcc00; /* Deep Yellow */
border-radius: 50%;
animation: spin 1s linear infinite;
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

#second{
display: flex;
align-items: center;
justify-content: space-between;
padding: 15px 15px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
width: 100%;
z-index: 1000;
}

.form-container{
background: #04172e;
padding: 30px;
border-radius: 15px;
text-align: center;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
max-width: 400px;
width: 100%;
}

.form-container h2 {
color: #ffcc00;
margin-bottom: 0px;
}

.input-box {
width: 100%;
padding: 12px;
margin: 10px 0;
background: #1c1c1c;
border: none;
border-radius: 8px;
color: white;
font-size: 16px;
}

.input-box::placeholder {
color: #b1b1b1;
}

.submit-btn {
width: 100%;
padding: 12px;
margin-top: 15px;
background: #ffcc00;
border: none;
border-radius: 30px;
font-size: 18px;
font-weight: bold;
color: black;
cursor: pointer;
transition: 0.3s ease-in-out;
}

.submit-btn:hover {
background: #e6b800;
box-shadow: 0px 4px 10px rgba(255, 204, 0, 0.5);
transform: scale(1.05);
}

.submit-btn:active {
transform: scale(0.95);
}


.syllabus-wrapper {
width: 100%;
overflow-x: auto;
background: #04172e;
display: flex;
align-items: center;
scrollbar-width: thin;
scrollbar-color: #ffcc00 transparent;
justify-content: flex-start; /* Prevent stretching */
gap: 15px;
padding-top: 10px;
scroll-snap-type: x mandatory;
}

.syllabus-wrapper::-webkit-scrollbar {
height: 8px;
}

.syllabus-wrapper::-webkit-scrollbar-thumb {
background: #ffcc00;
border-radius: 10px;
}

.syllabus-container {
display: flex;
width: max-content;
white-space: nowrap;
max-width: 100%;
align-items: stretch; /* Ensures all cards have equal height */

justify-content: space-between; /* Distributes items evenly */
flex-wrap: wrap; /* Ensures responsiveness on smaller screens */
gap: 10px; /* Adds spacing between items */
}

.syllabus-item {
background: #116bb0;
color: white;
border-radius: 10px;
min-height: 250px; /* Ensures uniform height */
text-align: center;
font-size: 16px;
font-weight: bold;
box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.2);
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
justify-content: space-between; /* Distributes content evenly */
white-space: normal;
word-wrap: break-word;
transition: transform 0.3s ease, box-shadow 0.3s ease;
max-width: 90%; /* Prevent items from being too wide */
scroll-snap-align: start;
transition: transform 0.3s ease, box-shadow 0.3s ease;
flex: 1 1 calc(100% / 6 - 10px); /* Ensures 6 items fit in one row */
min-width: 150px; /* Prevents items from shrinking too much */
text-align: center;
padding: 15px;
}
.syllabus-item:hover{
transform: translateY(-10px); /* Lifts the div up */
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow */
}

/* Ensure uniform icon, title, and description alignment */
.syllabus-item i {
font-size: 35px;
color: #ffffff;
}

.syllabus-item h3 {
font-size: 18px;
margin: 5px 0;
color: #ffcc00;
min-height: 48px; /* Ensures all titles align */
display: flex;
align-items: center;
justify-content: center;
}

.syllabus-item p {
font-size: 14px;
color: #ccc;
flex-grow: 1; /* Makes sure all text areas align */
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 0 10px;
}

@media (max-width: 768px) {
.syllabus-container {
display: flex;
flex-wrap: nowrap; /* Prevents wrapping */
overflow-x: auto; /* Enables horizontal scroll */
scroll-snap-type: x mandatory; /* Smooth scrolling effect */
}

.syllabus-item {
flex: 0 0 auto; /* Prevents items from shrinking */
width: 80vw; /* Adjusts width relative to the viewport */
min-width: 250px; /* Prevents items from getting too small */
scroll-snap-align: center; /* Ensures items snap into place */
}
}




#features {
  text-align: center;
  padding: 60px 20px;
  background: #04172e; /* Darker theme */
}

#features h2 {
  font-size: 32px;
  color: #ffcc00; /* Yellow highlight */
  margin-bottom: 20px;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Always 3 per row */
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.feature-card {
  background: #116bb0; /* Dark blue-gray */
  color: white;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0px 4px 8px rgba(35, 0, 150, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card i {
  font-size: 40px;
  color: #ffffff; /* Yellow icon */
  margin-bottom: 10px;
}

.feature-card h3 {
  font-size: 20px;
  color: #ffcc00; /* Green title */
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #ddd; /* Light gray text */
}

/* Hover effect */
.feature-card:hover {
  transform: translateY(-10px); /* Lift effect */
  box-shadow: 0 10px 20px rgba(0, 32, 243, 0.3); /* Cyan glow */
}

/* Responsive */
@media (max-width: 900px) {
  .features-container {
      grid-template-columns: repeat(2, 1fr); /* 2 per row on medium screens */
  }
}

@media (max-width: 600px) {
  .features-container {
      grid-template-columns: repeat(1, 1fr); /* Stacked on mobile */
  }
}






/* Reviews Section */
.reviews-section {
width: 99%; /* 99% width */
max-width: 1200px; /* Maximum width for larger screens */
margin: 10px auto; /* Center the section */
padding: 20px;
text-align: center;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.reviews-section h2 {
text-align: left;
font-size: 28px;
margin-bottom: 30px;
color: #ffffff; /* White heading */
}

.reviews-container {
display: flex;
flex-wrap: wrap;
gap: 20px;
text-align: left;
justify-content: center;
}

/* Review Card */
.review-card {
background-color: #2c2c2c; /* Dark card background */
border: 1px solid #444; /* Dark border */
border-radius: 8px;
padding: 20px;
width: calc(33.333% - 40px); /* 3 cards per row on desktop */
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
transform: translateY(-5px);
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

/* Review Header */
.review-header {
display: flex;
align-items: center;
margin-bottom: 15px;
}

.user-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
margin-right: 15px;
}

.user-info h3 {
margin: 0;
font-size: 18px;
color: #ffffff; /* White text for names */
}

.user-info p {
margin: 0;
font-size: 14px;
color: #b0b0b0; /* Light gray for secondary text */
}

/* Review Stars */
.review-stars {
color: #ffcc00; /* Gold stars */
font-size: 20px;
margin-bottom: 10px;
}

/* Review Content */
.review-content {
font-size: 12px;
color: #e0e0e0; /* Light text */
line-height: 1.5;
margin-bottom: 10px;
}

/* Review Date */
.review-date {
font-size: 12px;
color: #b0b0b0; /* Light gray for date */
text-align: right;
}
.review-stars {
color: #ffcc00; /* Gold stars */
font-size: 20px;
margin-bottom: 10px;
font-family: Arial, sans-serif; /* Add this line */
}
/* Responsive Design */
@media (max-width: 1024px) {
.review-card {
width: calc(50% - 20px); /* 2 cards per row on tablets */
}
}

@media (max-width: 768px) {
.review-card {
width: 100%; /* 1 card per row on mobile */
}
}

.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #000; /* Dark background */
  color: white;
  padding: 40px 10%;
  flex-wrap: wrap;
}

.contact-title {
  padding-top: 20;
  font-size: 1.8rem;
  font-weight: bold;
  color: ffcc00;
}

.contact-details {
  text-align: right;
  font-size: 1rem;
}

.contact-details a {
  color: #ffcc00; /* Green highlight */
  text-decoration: none;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
      flex-direction: column;
      text-align: center;
      align-items: center;
  }
  .contact-title {
      margin-bottom: 10px;
  }
  .contact-details {
      text-align: center;
  }
}


.team-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #121212;
    color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    max-width: 1000px;
    margin: auto;
}

.team-member {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: scale(1.05);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #ffcc00;
}

.footer {
width: 100%;
background-color: #111; /* Dark background */
color: #ddd; /* Light text */
text-align: center;
padding: 15px 0;
font-size: 14px;
position: relative; /* Stays at the bottom */
}