/* Global Styles */
body {
  margin: 0;
  background: #0b0f2b;
  color: #fff;
}

/* HERO VIDEO */
.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b0f2b;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

/* Mobile video adjustments */
@media (max-width: 768px) {
  .hero-video {
    height: 70vh;
  }
  
  .hero-video video {
    object-fit: contain;
  }
}

@media (max-width: 480px) {
  .hero-video {
    height: 60vh;
  }
  
  .hero-video video::-webkit-media-controls {
    display: flex;
  }
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 25px;
  border-radius: 12px;
}

.hero-overlay img {
  height: 60px;
  margin-bottom: 15px;
}

/* NAVBAR */
.navbar {
  background: #000 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  transition: top 0.3s ease;
}

.navbar.hidden {
  top: -70px;
}

/* SECTION STYLES */
.section {
  padding: 15px 0;
}

.box {
  background: rgba(0, 0, 0, 0.75);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
}

h4 {
  margin-bottom: 15px;
}

/* VISION & MISSION SECTION */
.vision-mission-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 15px;
}

.vision-mission-box {
  background: rgba(0, 0, 0, 0.75);
  border-radius: 10px;
  padding: 20px;
}

.vision-mission-box h4 {
  margin-bottom: 15px;
  color: #fff;
}

.vision-mission-box p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.vision-mission-box ul {
  padding-left: 20px;
  margin: 12px 0;
}

.vision-mission-box ul li {
  margin-bottom: 8px;
}

/* CONTACT SECTION */
.contact-section {
  display: flex;
  align-items: center;
  gap: 25px;
}

.contact-content {
  flex: 1;
}

.contact-image {
  flex: 0 0 300px;
}

.contact-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* FOOTER */
footer {
  background: #000;
  padding: 15px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }

  .contact-image {
    flex: 0 0 auto;
    max-width: 100%;
  }

  .vision-mission-container {
    grid-template-columns: 1fr;
  }
}
