/* :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;
  }
} */

: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("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;
  }
}

.Home-Page-Wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 80px;
  min-height: 200vh;
}
.home-hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  /* background: url("/images/landing.jpg") center/cover no-repeat; */
  border-radius: 0 0 64px 64px;
}

.home-hero .container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding-top: 180px;
}
.home-hero .container h1 {
  position: relative;
  margin: 0;
  font-size: 28px;
  color: #27314b;
  width: fit-content;
  background-color: #fff;
  line-height: 1;
  letter-spacing: 2;
  font-style: italic;
  padding: 4px 10px;
}

.main-btn {
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  padding: 4px 10px;
  background: #c43b71;
  line-height: 1;
  letter-spacing: 2;
  font-size: 17px;
  color: white;
  font-weight: bold;
  font-style: italic;
}

.operate {
  position: relative;
  width: 100%;

  /* background: url("/images/operate.png") center/cover no-repeat; */
  border-radius: 64px 64px 0 0;
}

.operate .container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
}

.operate .container .contentBox {
  position: relative;
  width: 700px;
  max-width: 100%;
  height: 100%;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.operate .container .contentBox h1 {
  color: #fff;
  font-size: 30px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1px;
}
.operate .container .contentBox button {
  position: relative;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
}
.operate .container .contentBox .line {
  position: relative;
  width: 100px;
  height: 5px;
  background-color: #fff;
  margin-top: 20px;
}
.operate .container .contentBox ul {
  position: relative;
  color: #fff;
  font-size: 15.1px;
}
.operate .container .contentBox p {
  position: relative;
  color: #fff;
  font-size: 15.1px;
  line-height: 1.7;
  margin: 0;
}

.brands {
  position: relative;
}
.brands .brands-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  background-color: #27314b;
}
.brands .brands-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brands .box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.brands .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #27314b;
  opacity: 0.5;
}
.brands .box .container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: fit-content;
}
.brands .box .container h1 {
  color: #fff;
  font-size: 64.1px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  margin: 0;
}
.brands .box .container button {
  border: none;
  margin-left: auto;
  padding: 0;
}

.about-page {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-hero {
  position: relative;
  min-height: 520px;
  /* background: url("/images/aboutus/aboutUsbanner.png") center/cover no-repeat; */
  display: grid;
  place-items: center;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #001c49;
  opacity: 0.8;
}

.about-hero::after {
  content: "";
  position: absolute;
  height: 40px;
  width: 100%;
  background: #fff;
  bottom: 0px;
  border-radius: 32px 32px 0 0;
}

.about-hero__overlay {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  padding: 40px 24px 56px;
}

.about-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 54px);
  letter-spacing: 1px;
}

.about-section {
  padding: 20px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
  padding: 40px 0;
}

.about-grid.image-right .media-stack {
  order: 2;
}

.about-grid.image-right .copy {
  order: 1;
}
.copy {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.copy h2 {
  position: relative;
  line-height: 1;
  margin: 0;
  font-size: clamp(26px, 3vw, 32px);
  color: #001c49;
}

.copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: #3a6067;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  font-weight: 600;
  font-size: 13px;
  color: #3a6067;
}

.media-stack {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 520px;
}

.media-stack::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 330px;
  border-radius: 8px;
  z-index: 0;
}
.media-stack.top::before {
  top: -10%;
  right: -150px;
}

.media-stack img {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0px 0px 40px 0;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.accent-pink::before {
  background: #c04377;
}

.accent-aqua::before {
  background: #00bad5;
}

.accent-teal::before {
  background: #c04377;
}

.cta-panel {
  background: #00bcd4;
  color: white;
  border-radius: 28px;
  padding: 60px 0;
  overflow: hidden;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.cta-content .media-stack {
  max-width: 520px;
}

.cta-content .media-stack::before {
  background: var(--pink);
  inset: 10% auto auto -10%;
}

.cta-content img {
  border-radius: 22px;
}

.cta-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-text h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .about-grid,
  .cta-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-grid.image-right .media-stack,
  .about-grid.image-right .copy {
    order: unset;
  }

  .copy {
    max-width: 680px;
    margin: 0 auto;
  }

  .media-stack::before {
    inset: -10% auto auto 6%;
  }
}

@media (max-width: 640px) {
  .about-section {
    padding: 12px 0;
  }

  .about-grid {
    gap: 28px;
    padding: 20px 0;
  }

  .about-hero {
    min-height: 420px;
    border-radius: 0 0 26px 26px;
  }

  .about-hero h1 {
    font-size: 36px;
  }

  .cta-panel {
    padding: 40px 0;
  }
}
