/* login.css */

/* Reset + Base */
/* Reset + Base Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}


/* img {
  max-width: 100%;
  display: block;
} */

/* Navbar Styles */
.navbar {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo Container */
.logo {
  display: flex;
  align-items: center;
   /* Small gap between text & icon */
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0066cc;
}

.logo-img {
  width: 22px;
  height: auto;
}

/* Nav Links */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #0066cc;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  margin-left: auto; /* Pushes it to extreme right */
}

/* Mobile Styles */
@media (max-width: 768px) {
  .navbar ul {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .navbar ul.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}


/* General Section Container */
section {
  min-height: 100vh;
  padding: 6rem 2rem 4rem;
  
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  background: #eaf6ff;
  text-align: center;
  padding-top: 2rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 750;
  color: #003366;
  margin-bottom: 1rem;
  padding-top: 0%;
}

.hero h2 {
  font-size: 2rem;
  font-weight: 750;
  color: #003366;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 0.9rem;
  max-width: 100%;
  margin: 0 auto;
  color: #555;
  text-align: justify;
}


/* Vision and Mission Sections */
.vision-section {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  align-items: center;
}


.mission-section {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  background-color: #e1f6f6fb;
}

.vision-content,
.mission-content {
  flex: 1;
  min-width: 300px;
}

.vision-content h2,
.mission-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #00487c;
}

.vision-content p,
.mission-content p {
  font-size: 1.125rem;
  color: #444;
  text-align: justify;
}

.vision-section img,
.mission-section img {
  flex: 1;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

/* Values Section */
.values {
  background: #f0f8ff;
  text-align: center;
}

.values h2 {
  font-size: 2.5rem;
  color: #00487c;
  margin-bottom: 2rem;
}

.values-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  flex: 1;
  min-width: 250px;
  max-width: 300px;
}

.value-card h3 {
  font-size: 1.5rem;
  color: #0056a6;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 1rem;
  color: #555;
}

/* Team Section */
.team {
  background: #ffffff;
  text-align: center;
}

.team h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #00487c;
}

.team-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.team-member {
  background: #f8f8f8;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 250px;
}

.team-member img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.team-member h4 {
  margin-bottom: 0.5rem;
  color: #00487c;
  font-size: 1.2rem;
}

.team-member p {
  font-size: 0.95rem;
  color: #444;
}

/* Footer */
.footer {
  background: #00487c;
  color: white;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.9rem;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  section {
    padding: 3rem 1.5rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 0.5rem;
  }

  .vision-content p,
  .mission-content p {
    font-size: 0.6rem;
  }

  .values-grid,
  .team-grid {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {

  .hero h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 1rem;
  }

  .hero p {
    font-size: 0.5rem;
  }


  .vision-content p,
  .mission-content p {
    font-size: 0.6rem;
  }

  .vision-section,
  .mission-section {
    flex-direction: column;
    text-align: center;
  }

  .vision-section img,
  .mission-section img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 0.8rem;
  }

  .vision-content p,
  .mission-content p {
    font-size: 0.8rem;
  }

  .value-card {
    padding: 1.2rem;
  }

  .team-member {
    padding: 1rem;
  }
}


/* Keyframes */
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}

/* Initial state */
.hero, .vision-section, .mission-section, .values, .value-card, .team{
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.5s ease-in-out;
}

/* Triggered animations */
.hero.zoom-in, .vision-section.zoom-in, .mission-section.zoom-in, .values.zoom-in, .value-card.zoom-in, .team.zoom-in{
  animation: zoomIn 0.7s forwards;
}

.hero.zoom-out, .vision-section.zoom-out, .mission-section.zoom-out,.values.zoom-out, .value-card.zoom-out, .team.zoom-out {
  animation: zoomOut 0.7s forwards;
}



.footer {
  background-color: #05011c;
  color: #ccc;
  padding: 30px 20px 10px;
  font-size: 14px;
  text-align: center; /* Ensures text aligns center by default */
}

.footer a {
  text-decoration: none;
  color: #ccc;
}

.footer a:hover {
  color: #fff;
}

/* .footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
} */

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Changed from space-between */
  gap: 40px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto; /* Centering the content */
}


.footer-logo {
  max-width: 220px;
}

.footer-logo img {
  width: 100px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 13px;
  line-height: 1.4;
  color: #aaa;
}

.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-section h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 6px;
}

.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 20px;
}

.footer-social a span {
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-social a:hover span {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #888;
  border-top: 1px solid #333;
  padding-top: 15px;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    margin-bottom: 20px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .footer-logo p {
  font-size: 12px;
}

  .footer-social {
    justify-content: center;
    margin-top: 20px;
  }

  .footer-social a {
    font-size: 18px;
  }

  .footer-bottom {
    font-size: 12px;
    padding-top: 10px;
  }
}


.section-about-video {
  background: linear-gradient(to right, #e0f7fa, #ffffff);
  padding: 40px 0;
}

.video-container {
  position: relative;
  width: 80%; /* not full viewport width to leave space */
  max-width: 1000px;
  margin: 80px auto 40px; /* push it below navbar */
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* optional shadow */
  background: #0056a6;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  display: block;
}


/* Optional: media query for small devices */
@media (max-width: 600px) {
  .video-container {
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
  }

  .video-container video {
    object-fit: contain;
  }
}
