/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
}

/* Navbar container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0a2239;
  color: white;
  padding: 1rem 2rem;
  position: relative;
  z-index: 1000;
}

/* Logo */
.logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.logo span {
  color: #00bcd4;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s;
}
.nav-links li a:hover {
  color: #00bcd4;
}
.nav-links li a.active {
  color: #00bcd4;
  border-bottom: 2px solid #00bcd4;
}

/* CTA */
.nav-links .cta {
  padding: 0.3rem 1rem;
  background-color: #00bcd4;
  border-radius: 20px;
  color: #fff;
  font-weight: bold;
}
.nav-links .cta:hover {
  background-color: #089eb2;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: all 0.3s;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #0a2239;
    flex-direction: column;
    width: 200px;
    display: none;
    padding: 1rem;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

.about-hero {
  position: relative;
  height: 100vh;
  background-image: url('images/services3.jpg'); /* Change to your image */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.about-hero .overlay {
  background: linear-gradient(to right, rgba(0, 34, 68, 0.8), rgba(0, 34, 68, 0.3));
  height: 100%;
  width: 100%;
  padding-left: 8%;
  display: flex;
  align-items: center;
}

.about-hero .content {
  color: #fff;
  max-width: 600px;
}

.about-hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.about-hero p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #e0f7fa;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

/* Wave */
.wave-divider svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }

  .about-hero p {
    font-size: 1rem;
  }

  .about-hero .content {
    padding-right: 1rem;
  }
}



.who-we-are {
  padding: 4rem 2rem;
  background-color: #f7f9fc;
}

.who-we-are .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  flex-wrap: wrap;
}

.who-we-are .text-content {
  flex: 1;
  min-width: 280px;
}

.who-we-are h2 {
  font-size: 2.2rem;
  color: #002244;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.who-we-are h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #00bcd4;
  margin-top: 8px;
}

.who-we-are p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1rem;
}

.who-we-are .image-content {
  flex: 1;
  min-width: 280px;
}

.who-we-are img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .who-we-are .container {
    flex-direction: column;
  }

  .who-we-are .text-content,
  .who-we-are .image-content {
    width: 100%;
  }

  .who-we-are h2 {
    font-size: 1.8rem;
  }
}

.vision-mission-section {
  background: linear-gradient(to right, #f1f9fc, #e8f6ff);
  padding: 4rem 2rem;
}

.vision-mission-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.vision-mission-section .card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-mission-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.vision-mission-section h3 {
  font-size: 1.6rem;
  color: #003566;
  margin-bottom: 1rem;
  border-left: 4px solid #00bcd4;
  padding-left: 0.75rem;
}

.vision-mission-section p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
}


.core-values-section {
  padding: 80px 20px;
  background-color: #f4f7f9;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #0a2239;
  margin-bottom: 50px;
  position: relative;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: white;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  width: 300px;
  max-width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card h3 {
  font-size: 1.25rem;
  color: #00bcd4;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 188, 212, 0.15);
}

@media (max-width: 768px) {
  .value-card {
    width: 100%;
  }
}

.value-card .icon {
  font-size: 2rem;
  color: #00bcd4;
  margin-bottom: 1rem;
}

.value-card h3 {
  color: #002244;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}


.cta-section {
  background-color: #0a2239;
  color: #fff;
  padding: 4rem 10%;
  text-align: center;
}

.cta-container h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-container p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #f4f7f9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #00bcd4;
  color: #fff;
}

.btn-primary:hover {
  background-color: #0097a7;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid #00bcd4;
  color: #00bcd4;
}

.btn-secondary:hover {
  background-color: #00bcd4;
  color: #fff;
}


.site-footer {
  background-color: #003566;
  color: #f4f7f9;
  padding: 4rem 10% 2rem;
  font-size: 0.95rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: #00bcd4;
  margin-bottom: 1rem;
}

.footer-section p {
  margin: 0.3rem 0;
  color: #f4f7f9;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links a {
  color: #f4f7f9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00bcd4;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.social-icon {
  background-color: #333;
  color: #f4f7f9;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1rem;
}

.social-icon:hover {
  background-color: #00bcd4;
  color: #0a2239;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  font-size: 0.85rem;
}

.footer-bottom span {
  color: #de0089;
}