
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #f2f8fb;
  color: #003f5c;
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
a {
  text-decoration: none;
  color: inherit;
}

.navbar {
  position: fixed;
  width: 100%;
  background: #003f5c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  z-index: 100;
  flex-wrap: wrap;
}
.logo {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 700;
}
.logo img {
  width: 40px;
  margin-right: 10px;
}
.menu ul {
  list-style: none;
  display: flex;
  gap: 25px;
}
.menu a {
  color: #fff;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: 0.3s;
}
.menu a:hover {
  background: #005f89;
}
#menu-toggle {
  display: none;
}
.hamburger {
  display: none;
  cursor: pointer;
  color: #fff;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .menu ul {
    display: none;
    position: fixed;
    top: 60px;
    right: 0;
    background: #003f5c;
    flex-direction: column;
    width: 200px;
    padding: 10px;
    border-radius: 0 0 10px 10px;
  }
  #menu-toggle:checked + .hamburger + .menu ul {
    display: flex;
  }
  .hamburger {
    display: block;
  }
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-align: center;
  padding: 0 20px;
}
.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 63, 92, 0.6);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-logo {
  width: 120px;
  margin-bottom: 20px;
}
.hero-content h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 10px;
}
.hero-content p {
  color: #e0f8ff;
  font-size: 1.2rem;
  margin-bottom: 25px;
}
.hero-buttons .btn {
  display: inline-block;
  margin: 0 10px;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s;
}
.btn-primary {
  background: #00aaff;
  color: #fff;
}
.btn-primary:hover {
  background: #008fc1;
}
.btn-secondary {
  background: #fff;
  color: #003f5c;
}
.btn-secondary:hover {
  background: #e0f2f7;
}

.about {
  padding: 80px 0 50px;
  background: #fff;
  text-align: center;
}
.about h2 {
  font-size: 2.5rem;
  color: #003f5c;
  margin-bottom: 20px;
}
.about p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}
.stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  max-width: 180px;
}
.stat-item i {
  color: #00aaff;
  margin-bottom: 10px;
}
.stat-item h3 {
  font-size: 1.8rem;
  margin-bottom: 5px;
}
.stat-item p {
  font-size: 1rem;
  color: #555;
}

.services {
  padding: 80px 0 50px;
  background: #eef6fb;
}
.services h2 {
  font-size: 2.5rem;
  color: #003f5c;
  text-align: center;
  margin-bottom: 40px;
}
.service-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 280px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.service-card i {
  color: #00aaff;
  margin-bottom: 15px;
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 1rem;
  color: #555;
}

.footer {
  background: linear-gradient(135deg, #002b5c, #004c99);
  color: #ffffff;
  padding: 30px 15px 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
}
.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  animation: fadeInUp 1s ease-out;
}
.footer-section {
  flex: 1 1 200px;
  min-width: 180px;
  animation: fadeInUp 1.2s ease-out;
}
.footer-logo {
  width: 80px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}
.footer h4 {
  color: #ffcc00;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.footer-links a,
.footer-contact a {
  display: block;
  color: #e0f0ff;
  margin-bottom: 6px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.footer-links a:hover,
.footer-contact a:hover {
  color: #ffcc00;
  transform: translateX(4px);
}
.social-icons {
  margin-top: 10px;
}
.social-icons a {
  margin-right: 12px;
  font-size: 1.2rem;
  color: #e0f0ff;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  color: #25D366;
  transform: scale(1.1);
}
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  color: #c0dfff;
  animation: fadeIn 2s ease-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.delay-1s {
  animation-delay: 1s !important;
}
.delay-2s {
  animation-delay: 2s !important;
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin: 5px 0;
  }
  .service-card {
    width: 100%;
  }
  .stats {
    gap: 20px;
  }
}
