
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #fdfdfd;
  color: #333;
}

header {
  background: #002244;
  color: #fff;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 26px;
  font-weight: bold;
}

.contact {
  font-size: 14px;
}

nav {
  background: #01488a;
  display: flex;
  justify-content: center;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

nav ul li {
  margin: 0 20px;
}

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

.slider {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.slider img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.services {
  padding: 60px 20px;
  text-align: center;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  width: 300px;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #01488a;
}

.cta {
  background: #01488a;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.cta h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.cta p {
  font-size: 16px;
  margin-bottom: 20px;
}

.cta a {
  padding: 12px 25px;
  background: #fff;
  color: #01488a;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

footer {
  background: #002244;
  color: #ccc;
  padding: 30px 20px;
  text-align: center;
}

.slide {
  position: relative;
}

.slide-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(1, 72, 138, 0.6);
  color: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}

.slide-caption h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.slide-caption p {
  font-size: 18px;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .slider img {
    height: 300px;
  }

  .slide-caption h1 {
    font-size: 24px;
  }

  .slide-caption p {
    font-size: 14px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  .cta h2 {
    font-size: 22px;
  }

  .cta p {
    font-size: 14px;
  }

  .cta a {
    display: inline-block;
    margin-top: 10px;
  }
}


/* Zoom animation for service cards */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.about-enhanced {
  padding: 50px 20px;
  background: #f9f9f9;
}
.about-enhanced .container {
  max-width: 960px;
  margin: auto;
}
.about-section {
  margin-bottom: 50px;
}
.about-section h2 {
  font-size: 28px;
  margin-bottom: 15px;
}
.about-section p {
  font-size: 16px;
  line-height: 1.6;
}

.cta-banner-fk {
  background-color: #003366;
  color: #ffffff;
  padding: 50px 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 40px;
}
.cta-banner-fk h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}
.cta-banner-fk p {
  font-size: 16px;
  margin-bottom: 20px;
}
.cta-btn-fk {
  background-color: #ffcc00;
  color: #003366;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-btn-fk:hover {
  background-color: #e6b800;
}
