/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #85A3FF, #ADC2FF);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Header */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 6px;
  background: #142966;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.logo-title-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover {
  transform: scale(1.15);
  box-shadow: 0 0 15px 4px rgba(179, 136, 235, 0.5);
  cursor: pointer;
}

.title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

/* Hero Section */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 60px 20px;
  text-align: center;
}

.tagline {
  font-size: 1.1rem;
  color: #ffffffcc;
  margin-top: -20px;
}

/* Button Container */
.button-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Button Styling */
.glow-button {
  flex: 1 1 220px;
  max-width: 220px;
  background-color: white;
  color: #003366;
  border: 2px solid #ccc;
  padding: 0.6rem 1.6rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.glow-button:hover {
  background-color: #f2eaff;
  color: #5a2ca0;
  border-color: #b388eb;
  box-shadow: 0 0 18px 6px rgba(179, 136, 235, 0.5);
  transform: scale(1.05);
}

/* Background Video Styling */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100vw;
  min-height: 100vh;
  object-fit: cover;
  z-index: -2;
  opacity: 0.4;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(208, 232, 255, 0.5);
  z-index: -1;
}

/* Footer */
.footer {
  background: linear-gradient(to right, #003366, #002244);
  color: #ffffff;
  padding: 10px 5px 5px 5px;
  font-size: 0.8rem;
  margin: 0 auto;
  width: 85%;
  max-width: 1400px;
  border-radius: 12px 12px 0 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  margin-bottom: 15px;
  color: #b3d4ff;
}

.footer-section p {
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-section i {
  color: #aad4ff;
  margin-right: 10px;
  width: 20px;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-width: 150px;
}

.footer-logo img {
  width: 80px;
  height: auto;
}

.footer-bottom {
  text-align: center;
  margin-top: 1px;
  padding-top: 2px;
  border-top: 1px solid #ffffff33;
  color: #cccccc;
  font-size: 0.85rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .button-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    padding: 0 10px;
  }

  .glow-button {
    max-width: 100%;
    width: 100%;
    flex: none;
    font-size: 1rem;
    padding: 1rem;
  }

  .title {
    font-size: 1.4rem;
    text-align: center;
  }

  .main-content {
    padding: 40px 10px;
    gap: 20px;
    flex-direction: column;
  }

  .logo-title-wrapper {
    flex-direction: column;
    gap: 10px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .button-group {
    grid-template-columns: 1fr;
  }

  .glow-button {
    font-size: 1rem;
    padding: 0.9rem;
  }

  .title {
    font-size: 1.2rem;
  }
}