/* General */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* Header/Navbar */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #003366, #0055a5);
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

.logo a {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo a i {
  color: #ffcc00;
  font-size: 24px;
}

/* Nav Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #ffcc00;
  transform: translateY(-2px);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/* Mobile Responsive */
/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: fixed; /* full screen overlay */
    top: 65px;
    left: -100%;      /* hidden by default */
    width: 70%;       /* sidebar width */
    height: 100vh;    /* full height */
    background: #003366;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
    transition: left 0.3s ease-in-out;
    z-index: 999;
  }

  .nav-links.show {
    left: 0; /* slide in from left */
  }

  .nav-links li {
    width: 100%;
    margin: 15px 0;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .menu-toggle {
    display: block;
    font-size: 26px;
  }
}



/* Footer */
.footer {
  background: #002244;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer h3 {
  margin-bottom: 15px;
  color: #ffcc00;
}

.footer p, .footer a {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
  text-decoration: none;
}

.footer a:hover {
  color: #ffcc00;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li i {
  margin-right: 6px;
  color: #ffcc00;
}

/* Social Icons */
.social-icons {
  margin-top: 10px;
}
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #ffcc00;
}

/* Bottom bar */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 13px;
  color: #aaa;
}

/* Floating Icons */
.whatsapp-float, .call-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: 0.3s;
}
.call-float {
  bottom: 80px;
  background: #007bff;
}
.whatsapp-float:hover, .call-float:hover {
  transform: scale(1.1);
}

/* Hero Section */
/* Hero Section */
.hero {
  position: relative;
  height: 400px;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
              url("assets/3.jpeg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  animation: zoomHero 10s infinite alternate ease-in-out;
}


.hero-content h1 {
  font-size: 40px;
  font-weight: 700;
  animation: fadeInDown 1.5s;
}

.hero-content p {
  font-size: 18px;
  margin: 15px 0 25px;
  animation: fadeInUp 2s;
}

.hero-content .btn {
  background: #ffcc00;
  color: #003366;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.hero-content .btn:hover {
  background: #fff;
  color: #003366;
}

/* Hero Animation */
@keyframes zoomHero {
  0% { background-size: 100%; }
  100% { background-size: 110%; }
}
@keyframes fadeInDown {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}
@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

/* About Sections */
.about {
  padding: 60px 20px;
}
.about-container {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
.about-container.reverse {
  flex-direction: row-reverse;
}
.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}
.about-text h2 {
  color: #003366;
  margin-bottom: 15px;
}
.about-text p, .about-text ul {
  font-size: 15px;
  line-height: 1.6;
}
.about-text ul li {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 275px;
  }
  .hero-content h1 {
    font-size: 26px;
  }
  .hero-content p {
    font-size: 14px;
  }
  .about-container, .about-container.reverse {
    flex-direction: column;
    text-align: center;
  }
}
/* About Sections Common */
.about {
  padding: 60px 20px;
  background: #f9f9f9;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.about-container.reverse {
  flex-direction: row-reverse;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.about-text {
  flex: 1;
  padding: 20px;
}

.about-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #003366;
}

.about-text p,
.about-text ul {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.about-text ul {
  list-style: none;
  padding: 0;
}

.about-text ul li {
  margin-bottom: 10px;
}

.about-text ul li::before {
  content: "✔ ";
  color: #ffcc00;
  font-weight: bold;
}

/* Button */
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #003366;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}
.btn:hover {
  background: #ffcc00;
  color: #003366;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-container.reverse {
    flex-direction: column;
  }
  .about-image img {
    border-radius: 8px;
  }
}
/* ===== Top Bar ===== */
.top-bar {
  background: #0077b6;
  color: #fff;
  padding: 8px 20px;
  font-size: 14px;
}

.top-bar-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar .left, 
.top-bar .right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar i {
  margin-right: 6px;
  color: #ffd700;
}

/* ===== Header/Navbar ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff; /* white background */
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

.logo a {
  font-size: 20px;
  font-weight: 600;
  color: #003366;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo a i {
  color: #ffcc00;
  font-size: 24px;
}

/* Nav Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links li a {
  color: #003366;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #0077b6;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: #003366;
  cursor: pointer;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .top-bar-container {
    flex-direction: column;
    text-align: center;
  }

  .top-bar .left, 
  .top-bar .right {
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-links {
    position: fixed;
    top: 65px;
    left: -100%;
    width: 70%;
    height: 100vh;
    background: #003366;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
    transition: left 0.3s ease-in-out;
    z-index: 999;
  }

  .nav-links.show {
    left: 0;
  }

  .nav-links li {
    width: 100%;
    margin: 15px 0;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #fff; /* white text for sidebar */
  }

  .menu-toggle {
    display: block;
  }
}
