
/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

/* Navbar styles */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: #ffffff;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 999;
}
.navbar.scrolled {
  background: #2c3e50;
  padding: 8px 40px;
}
.navbar .logo img {
  height: 55px;
  transition: height 0.3s ease;
}
.navbar.scrolled .logo img {
  height: 40px;
}
.navbar ul {
  list-style: none;
  display: flex;
  /* gap: 25px; */
}
.navbar ul li a {
  text-decoration: none;
  font-weight: 600;
  color: #222;
  transition: color 0.3s;
}
.navbar.scrolled ul li a {
  /* color: #fff; */
}
.navbar ul li a:hover {
  color: #007bff;
}
.navbar ul li a.register-btn {
  background-color: #007bff;
  color: white !important;
  padding: 6px 14px;
  border-radius: 5px;
}



.navbar ul li {
  padding-top: 13px; /* adjust as needed */
}



/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
      padding: 80px 0px;
}
.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0.2); /* Light transparent black */
  padding: 20px 30px;
  border-radius: 10px;
  max-width: 80%;
}

/* Sections */
section {
  padding: 80px 50px;
}
section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.5rem;
}

/* About */
.about {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
.about img {
  max-width: 100%;
  border-radius: 10px;
  width: 500px;
}
.about-text {
  max-width: 500px;
}







.features-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.feature-box {
  background: #f5f5f5;
  padding: 2rem;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.feature-box:hover {
  transform: translateY(-8px);
}
.feature-box i {
  color: #003366;
  margin-bottom: 1rem;
}



.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.feature-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 2rem;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}
.feature-box:hover {
  transform: translateY(-5px);
}









/* Features */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.feature-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 20px;
  flex: 1 1 250px;
  text-align: center;
}

/* Video */
.video-section video {
  width: 100%;
  max-width: 1000px;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

/* Footer */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 30px 50px;
}

.hero-content h1 {
  font-size: 3rem; /* Increase for bigger heading */
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.25rem; /* Increase for larger paragraph text */
}



/* Video Section */
.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}
.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}





#faq {
  background-image: url('../images/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}


#faq::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: -1;
}





#about {
  background-image: url('../images/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}

#about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(255, 255, 255, 0.9); /* light overlay */
  z-index: -1;
}

/* PLATFORM FEATURES SECTION */
#features {
  background-image: url('../images/background2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}

#features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(255, 255, 255, 0.9); /* light overlay */
  z-index: -1;
}




@media only screen and (max-width: 600px) {
  .hero-content{
    padding: 20px 0px;
  }
  .hero-content h1 {
    font-size: 1.5rem;
  }
  section h2 {
        font-size: 1.5rem;
  }
}