* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Rubik", sans-serif;
}
.about-section,
.stories-section,
.principles-section,
.cta-banner {
  margin: 20px 0;
}

/*================================================
header - section
=================================================*/
/* Header */
.main-header {
  background: #f7fafe;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.logo img {
  height: 180px;
  margin-top: -60px;
  margin-bottom: -60px;
  display: block;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 0;
  margin: 0;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: #000;
  text-decoration: none;
  padding: 10px 15px;
  font-weight: 500;
  font-size: 15px;
}

.nav-links li a.active,
.nav-links li a:hover {
  color: #0080c6;
}

.simple-dropdown {
  list-style: none;
  position: absolute;
  top: 173%;
  left: 0;
  background: #fff;
  width: 220px;
  border-radius: 6px;
  display: none;
  flex-direction: column;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.dropdown:hover .simple-dropdown {
  display: flex;
}

.simple-dropdown li a {
  padding: 10px 20px;
  display: block;
  color: #111;
}

.simple-dropdown li a:hover {
  background: #f0f0f0;
  color: #0080c6;
}

/* Contact Us Button */
.btn-header {
  background-color: #0080c6;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
}

.btn-header:hover {
  background-color: #005a99;
}

/* Mobile Toggle */
.menu-toggle {
  font-size: 28px;
  color: #000;
  cursor: pointer;
  display: none;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(to right, #e6fbff, #ffffff);
  color: black;
  padding: 20px;
  transition: right 0.3s ease-in-out;
  z-index: 9999;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.logo-text {
  font-size: 20px;
  font-weight: bold;
  color: #0080c6;
}

.close-btn {
  font-size: 28px;
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-links li {
  border-bottom: 1px solid black;
}

.mobile-nav-links a {
  color: black;
  text-decoration: none;
  padding: 14px 0;
  display: block;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
}

.mobile-nav-links a.active {
  color: #0080c6;
}

.dropdown-mobile .arrow {
  float: right;
  transition: transform 0.3s ease;
}

.dropdown-mobile.open .arrow {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: none;
  list-style: none;
  padding-left: 10px;
  background: linear-gradient(to right, #e6fbff, #ffffff);
}

.mobile-submenu.open {
  display: block;
}

.mobile-submenu li a {
  font-size: 14px;
  color: black;
  padding: 12px 0;
  border-bottom: 1px solid #333;
}

/*================================================
hero - section
=================================================*/
.about-banner {
  background: url("images/About/hero-banner.png") center center/cover no-repeat;
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-banner-overlay {
  background-color: rgba(15, 20, 27, 0.3);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content {
  color: #fff;
  text-align: left;
  max-width: 1200px;
  width: 90%;
  font-weight: 600;
}

.banner-content h1 {
  font-size: 48px;
  font-weight: bold;
  margin: 0 0 10px;
}

.banner-content p {
  font-size: 18px;
  color: #ffff;
}

.banner-content p a {
  color: #042c3f;
  text-decoration: none;
  font-weight: 700;
}

.banner-content p span {
  margin: 0 8px;
  color: #fff;
}

/*================================================
Service - section
=================================================*/
.services-section {
  padding: 60px 20px;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
}

.card {
  width: 320px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  background: #fff;
}

.card:hover {
  transform: translateY(-5px);
}

.image-container {
  position: relative;
  width: 100%;
  height: 243px; /* fixed height for all cards */
  overflow: visible;
}
.image-container img.main-image {
  width: 100%;
  display: block;
}
.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures image fills box proportionally */
  display: block;
}

.overlay-icon {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px; /* Optional spacing inside the circle */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: visible;
}

.overlay-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-content {
  padding: 40px 20px 20px 20px;
  text-align: center;
}

.card-content h3 {
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #0080c6;
}

.card-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
  margin-bottom: 20px;
  text-align: center;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #0080c6;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.read-more:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.read-more::after {
  content: "→";
  font-size: 16px;
  transition: transform 0.3s ease;
}

.read-more:hover::after {
  transform: translateX(3px);
}

/* ===============================
   Footer Section
================================== */
.footer {
  background: #eafbfd;
  padding: 80px 40px 30px;
  color: #4b4b4b;
  position: relative;
  overflow: hidden;
  margin-top: 16px;
}

.footer-map {
  position: absolute;
  right: 20%;
  top: 40%;
  transform: translateY(-30%);
  z-index: 0;
  /* opacity: 0.08; */
  animation: slideSideways 7s ease-in-out infinite;
}
@keyframes slideSideways {
  0% {
    transform: translateX(0) translateY(-40%);
  }
  50% {
    transform: translateX(30px) translateY(-40%);
  }
  100% {
    transform: translateX(0) translateY(-40%);
  }
}
.footer-map img {
  width: 600px;
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-container {
  max-width: 1350px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-about {
  flex: 2 1 400px;
  max-width: 500px;
}

.footer-logo {
  max-width: 100%;
  margin-bottom: -84px;
  margin-top: -126px;
}

.footer-column h3 {
  margin-bottom: 16px;
  color: #000;
  font-size: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
  color: #6b6b84;
}

.footer-column a {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  text-decoration: none;
}

.footer .footer-column ul li a:hover {
  color: #0080c6 !important;
}

.footer-column .info-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin: 10px 0;
}

.footer-column .info-line i {
  color: #0080c6;
  font-size: 18px;
  min-width: 20px;
  margin-top: 4px;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #ffffff;
  font-size: 16px;
  background: #6b6b84;
  padding: 8px;
  border-radius: 4px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #0080c6;
  color: white;
}

.footer-bottom {
  font-size: 15px;
  color: #666;
  padding: 0 -12px;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

.footer-bottom a,
.span2 {
  color: #0080c6;
  margin-top: -0px;
  text-decoration: none;
}

.footer p:last-child {
  margin-bottom: 20px;
}
a[href="index.html"]:hover {
  color: #073e57;
}

a[href="index.html"]:hover span {
  color: #073e57;
}

hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 90px 4px 30px;
  position: relative;
  z-index: 1;
}
