/* ===== GENERAL STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', sans-serif;
  background: #f5f6fa;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0; 
display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

  }
  .container {
    background: white;
    padding: 10px;
/*    max-width: 1200px;*/
    width: 90%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
  }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #002244;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.navbar .logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
  padding: 5px 10px;
}

.nav-links a:hover {
  background: #004b8d;
  border-radius: 4px;
  color: #fff;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
  padding-top: 70px;
}

.video-frame {
  position: relative;
  max-width: 900px;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  text-align: center;
  color: #fff;
  margin-top: 2rem;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn-welcome {
  background: #004b8d;
  color: #fff;
  padding: 0.9rem 2rem;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-welcome:hover {
  background: #003366;
}

/* ===== SECTIONS ===== */
.section {
  padding: 4rem 1rem;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #004080;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.8rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  color: #003366;
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
}

.service-card p {
  color: #555;
  font-size: 1rem;
}

/* ===== FOOTER ===== */
footer {
  background: #002244;
  color: #ccc;
  text-align: center;
  padding: 2rem 1rem;
}

footer a {
  color: #66aaff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer .contact-info {
  margin-top: 1rem;
  font-size: 0.95rem;
}

footer .contact-info strong {
  color: #fff;
}

/* ===== MOBILE NAVBAR ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #002244;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 10px;
    z-index: 999;
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}



.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #002244;
  padding: 0.8rem 1rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: #002244;
    width: 80%;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 10px 0;
    box-sizing: border-box;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links a {
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    text-align: center;
  }
}
