/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  user-select: none;
}

body {
  background-color: #fdfdfd;
  color: #222;
}

/* Container for navbar */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  position: fixed;
  width: 100%;
  background: transparent;
  padding: 20px 0;
  top: 0;
  z-index: 9999;
  transition: background-color 0.3s ease;
}

.navbar.scrolled {
  background-color: #2a3d66;
  box-shadow: 0 2px 15px rgba(0,0,0,0.15);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 1.8rem;
  color: white;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
  transition: max-height 0.3s ease;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #f9ca24;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 25px;
  height: 20px;
}

.hamburger span {
  display: block;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-split {
  height: 100vh;
  padding-top: 80px;
  display: flex;
  gap: 40px;
  background: #1a2a6c; /* fallback */
  background: linear-gradient(45deg, #1a2a6c, #b21f1f, #fdbb2d);
  color: white;
  align-items: center;
  overflow: hidden;
  flex-wrap: wrap;
  padding-left: 20px;
  padding-right: 20px;
}

.slider-container {
  display: flex;
  width: 55%;
  max-width: 700px;
  height: 450px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  background: black;
}

.image-slider,
.video-slider {
  width: 50%;
  position: relative;
}

.image-slider img,
.video-slider video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  border-radius: 15px 0 0 15px;
  background: black;
}

.video-slider video {
  border-radius: 0 15px 15px 0;
}

.slide.active {
  opacity: 1;
  position: relative;
}

/* Hero text */
.hero-text {
  width: 40%;
  max-width: 450px;
  user-select: none;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.hero-text p {
  font-size: 1.15rem;
  margin-bottom: 30px;
  line-height: 1.5;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
}

.btn-primary {
  background: #f9ca24;
  color: #1a2a6c;
  border: none;
  padding: 15px 40px;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 35px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(249, 202, 36, 0.6);
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #f2b705;
}

/* Login Section */
.login-section {
  background: #fff;
  padding: 80px 20px 100px;
  text-align: center;
  color: #1a2a6c;
}

.login-section h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.login-options {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.login-card {
  background: #f9f9f9;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-radius: 18px;
  padding: 40px 30px;
  width: 250px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  user-select: none;
}

.login-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.login-card .icon {
  font-size: 70px;
  margin-bottom: 25px;
}

.login-card h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #1a2a6c;
}

.login-card button {
  background: #1a2a6c;
  border: none;
  color: white;
  padding: 14px 35px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-card button:hover {
  background: #f9ca24;
  color: #1a2a6c;
}

/* About Section */
.section {
  max-width: 900px;
  margin: 0 auto 80px auto;
  padding: 0 20px;
  color: #1a2a6c;
  text-align: center;
}

.section h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  font-weight: 700;
}

/* Footer */
footer {
  background: #1a2a6c;
  color: white;
  padding: 20px 10px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  user-select: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-split {
    flex-wrap: wrap;
    height: auto;
    padding-bottom: 60px;
  }
  .slider-container {
    width: 100%;
    height: 300px;
    margin-bottom: 25px;
    border-radius: 15px;
  }
  .image-slider img,
  .video-slider video {
    border-radius: 15px;
    position: relative !important;
    opacity: 1 !important;
  }
  .video-slider {
    display: none;
  }
  .hero-text {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #2a3d66;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease;
    z-index: 9998;
  }

  .nav-links.open {
    max-height: 320px;
  }

  .nav-links li {
    margin: 20px 0;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

  .logo {
    font-size: 1.5rem;
  }

  .btn-primary {
    padding: 12px 28px;
    font-size: 1rem;
  }

  .login-card {
    width: 90%;
  }
}


/* Login Section Styling */
.login-section {
  padding: 60px 20px;
  background-color: #f7f7f7;
  text-align: center;
}

.login-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

.login-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.login-card {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  width: 250px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.login-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.login-card .icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.login-card h3 {
  margin-bottom: 20px;
  color: #555;
}

.login-card button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.login-card button:hover {
  background-color: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
  .login-options {
    flex-direction: column;
    align-items: center;
  }
}
