:root {
  --aqua: #0ac7d1;
  --aqua-dark: #0b9eb6;
  --pink: #f76aa5;
  --orange: #f7a640;
  --teal: #4bd0c0;
  --purple: #8a75c8;
  --navy: #0b7484;
  --deep: #018a9f;
  --bg: #e7f6fb;
  --text: #212529;
  --muted: #212529;
  --card-radius: 14px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--text);
  background: white;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.topbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  z-index: 20;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  padding: 10px 24px 14px;
}

.topbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 15;
}

.brand {
  display: inline-flex;
  align-items: center;
  height: 60px;
}

.brand img {
  height: 100%;
  width: auto;
  display: block;
}

.actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  border: 1px solid #0fb9d9;
  background: white;
  border-radius: 8px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  position: relative;
  z-index: 25;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #0fb9d9;
  display: block;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.btn {
  padding: 10px 12px;
  border: 0;
  background: #e5f4f7;
  color: #0fb9d9;
  font-weight: 600;
  text-decoration: none;
  transition: all ease-in-out 0.7s;
}

.btn.ghost:hover {
  background: #0fb9d9;
  color: white;
}

.actions .icon {
  width: 25px;
  height: 25px;
  place-items: center;
  font-weight: 700;
}
.actions .icon img {
  width: 100%;
  height: 100%;
}
.navsection {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
}
.nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  font-size: 14px;
  color: #0fb9d9;
  z-index: 18;
}

.nav a {
  font-weight: 500;
}

.hero {
  position: relative;
  min-height: 850px;
  background: var(--bg);
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 850px;
  /* background: url('{{asset("images/banner.webp")}}') center/cover no-repeat; */
}

.values {
  padding: 50px 0;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.values h3 {
  margin: 0 0 36px;
  font-size: 24px;
  color: var(--text);
}

.value-list {
  display: grid;
  gap: 24px;
}

.value {
  display: flex;
  gap: 8px;
  align-items: start;
  background: white;
}
@media (max-width: 550px) {
  .value {
    flex-direction: column;
  }
}

.value .thumb {
  min-width: 200px;
  max-width: 100%;
  height: 200px;
}
.value .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.value .text {
  position: relative;
  width: 100%;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.value h4 {
  margin: 0;
  line-height: 1;
  font-size: 24px;
  color: var(--text);
}

.value p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.footer {
  background: #0fb9d9;
  color: white;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 776px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.footer-brand img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-brand .powered {
  font-size: 14px;
  color: #baf0fa;
}
.footer-top .footer-liks-container {
  display: flex;
  gap: 60px;
  width: 100%;
  max-width: 600px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 18px;
  font-weight: 400;
}

.footer-links a {
  color: #baf0fa;
  font-size: 15px;
}

.footer-links a:hover {
  text-decoration: underline;
  color: white;
}

.footer-meta {
  text-align: center;
  font-size: 12px;
  color: #baf0fa;
}

@media (max-width: 960px) {
  .hero {
    min-height: 480px;
  }

  .hero-banner {
    min-height: 480px;
  }

  .menu-toggle {
    display: flex;
  }

  .actions {
    gap: 12px;
    flex-wrap: wrap;
  }

  .navsection {
    width: 100%;
    align-items: flex-end;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 80vw;
    height: 100vh;
    padding: 96px 28px 32px;
    background: white;
    box-shadow: -10px 0 36px rgba(0, 0, 0, 0.16);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 30;
  }
  .brand {
    height: 40px;
  }
  .topbar-inner {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .nav a {
    font-size: 18px;
    color: #0fb9d9;
    padding: 6px 0;
  }

  .nav a:hover {
    background: rgba(15, 185, 217, 0.08);
    padding-left: 6px;
  }

  body.nav-open .nav {
    transform: translateX(0);
  }

  body.nav-open .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  body.nav-open {
    overflow: hidden;
  }
}
@media (max-width: 550px) {
  .topbar-inner {
    flex-wrap: wrap;
  }
}
