:root {
  --light-color: #0B7A8F;
  --dark-color: #1a3a5a;
  --heading-color: #04353b;
  --text-color: #4b5563;
  --white: #ffffff;
  --light-bg: #f4fbfc;
}

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

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text-color);
  background: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--heading-color);
}

/* =========================
   STICKY NAVBAR
========================== */
.main-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(4, 53, 59, 0.08);
  backdrop-filter: blur(12px);
}

.navbar {
  min-height: 82px;
}

.navbar-brand {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--heading-color);
}

.navbar-brand span {
  color: var(--light-color);
}

.navbar-nav .nav-link {
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 16px !important;
  transition: 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light-color);
}

.btn-primary-custom {
  background: var(--light-color);
  color: var(--white);
  border: 1px solid var(--light-color);
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary-custom:hover {
  background: var(--dark-color);
  border-color: var(--dark-color);
  color: var(--white);
}

/* =========================
   HERO SECTION
========================== */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 82px);
  background: linear-gradient(110deg, #f4fbfc 0%, #ffffff 58%, #e9f7f8 100%);
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(11, 122, 143, 0.07);
  top: -200px;
  right: -120px;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(26, 58, 90, 0.04);
  bottom: -170px;
  left: -100px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 122, 143, 0.1);
  color: var(--light-color);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--light-color);
}

.hero-title {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.hero-title span {
  color: var(--light-color);
}

.hero-description {
  max-width: 540px;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-dark-custom {
  background: var(--dark-color);
  color: var(--white);
  border: 1px solid var(--dark-color);
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-dark-custom:hover {
  background: var(--light-color);
  border-color: var(--light-color);
  color: var(--white);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--heading-color);
  font-weight: 700;
  text-decoration: none;
  padding: 13px 10px;
}

.btn-outline-custom:hover {
  color: var(--light-color);
}

/* =========================
   HERO IMAGE
========================== */
.hero-image-wrapper {
  position: relative;
  z-index: 2;
  padding: 30px;
}

.hero-image-box {
  position: relative;
  max-width: 500px;
  margin: auto;
}

.hero-image-box::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  background: var(--light-color);
  opacity: 0.12;
  border-radius: 50%;
  top: 5%;
  left: 5%;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: 250px 250px 24px 24px;
  z-index: 2;
  box-shadow: 0 25px 60px rgba(26, 58, 90, 0.16);
}

/* Floating Card */
.hero-floating-card {
  position: absolute;
  z-index: 3;
  left: -25px;
  bottom: 50px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(26, 58, 90, 0.14);
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(11, 122, 143, 0.12);
  color: var(--light-color);
  font-size: 20px;
}

.hero-floating-card strong {
  display: block;
  color: var(--heading-color);
  font-size: 14px;
}

.hero-floating-card small {
  color: var(--text-color);
  font-size: 12px;
}

/* =========================
   RESPONSIVE
========================== */
@media (max-width: 991px) {
  .navbar {
    min-height: 72px;
  }
  .navbar-collapse {
    padding: 15px 0;
  }
  .navbar-nav .nav-link {
    padding: 10px 0 !important;
  }
  .hero-section {
    min-height: auto;
  }
  .hero-content {
    padding: 70px 0 40px;
  }
  .hero-image-wrapper {
    padding: 40px 15px 70px;
  }
  .hero-image {
    height: 500px;
  }
  .hero-floating-card {
    left: 10px;
  }
}
@media (max-width: 575px) {
  .hero-title {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-image {
    height: 420px;
  }
  .hero-floating-card {
    left: 0;
    bottom: 30px;
  }
}
/* =========================
SERVICES SECTION
========================= */
.services-section {
  background: var(--dark-color);
  padding: 100px 0;
  overflow: hidden;
}

.services-header {
  max-width: 650px;
  margin-bottom: 45px;
}

.services-subtitle {
  display: inline-block;
  color: #7ed5df;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.services-title {
  color: var(--white);
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.services-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* Slider */
.services-slider-wrapper {
  overflow: hidden;
}

.services-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
}

.service-card {
  flex: 0 0 calc(33.333% - 16px);
  min-height: 280px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  transition: 0.3s ease;
}

.service-card:hover {
  background: var(--light-color);
  transform: translateY(-8px);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(126, 213, 223, 0.14);
  color: #7ed5df;
  border-radius: 14px;
  font-size: 26px;
  margin-bottom: 25px;
}

.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.service-card h3 {
  color: var(--white);
  font-size: 21px;
  margin-bottom: 12px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Slider Controls */
.services-controls {
  display: flex;
  gap: 12px;
  margin-top: 35px;
}

.service-slider-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--white);
  border-radius: 50%;
  font-size: 20px;
  transition: 0.3s ease;
}

.service-slider-btn:hover {
  background: var(--light-color);
  border-color: var(--light-color);
}

/* Responsive */
@media (max-width: 991px) {
  .service-card {
    flex: 0 0 calc(50% - 12px);
  }
  .services-title {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .services-section {
    padding: 70px 0;
  }
  .service-card {
    flex: 0 0 100%;
  }
  .services-title {
    font-size: 32px;
  }
}
/* =========================
   FOOTER
========================= */
.site-footer {
  background: #f4fbfc;
  padding: 75px 0 0;
}

.footer-column h4 {
  color: var(--heading-color);
  font-size: 18px;
  margin-bottom: 22px;
}

.footer-brand {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--heading-color);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 18px;
}

.footer-brand span {
  color: var(--light-color);
}

.footer-description {
  max-width: 280px;
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: var(--light-color);
  padding-left: 4px;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.footer-contact-icon {
  color: var(--light-color);
  font-size: 17px;
  min-width: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--dark-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(26, 58, 90, 0.08);
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: var(--light-color);
  color: #ffffff;
  transform: translateY(-3px);
}

/* =========================
   COPYRIGHT
========================= */
.copyright-bar {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid rgba(4, 53, 59, 0.1);
}

.copyright-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.copyright-text {
  margin: 0;
  color: var(--text-color);
  font-size: 13px;
}

.copyright-links {
  display: flex;
  gap: 20px;
}

.copyright-links a {
  color: var(--text-color);
  font-size: 13px;
  text-decoration: none;
}

.copyright-links a:hover {
  color: var(--light-color);
}

/* =========================
   FOOTER RESPONSIVE
========================= */
@media (max-width: 767px) {
  .site-footer {
    padding-top: 55px;
  }
  .footer-column {
    margin-bottom: 35px;
  }
  .copyright-content {
    flex-direction: column;
    text-align: center;
  }
  .copyright-links {
    justify-content: center;
  }
}

/*# sourceMappingURL=style.css.map */
