:root {
  --brand: #162b51; /* primary teal */
  --brand-2: #0b1a36; /* darker teal */
  --accent: #e61e60; /* pinkish red */
  --warm: #f79c42; /* orange */
  --ink: #1d2b2e; /* dark text */
  --muted: #6b7b80; /* muted text */
  --bg-soft: #f4fbfb; /* soft teal-tinted bg */
  --card: #ffffff;
  --radius: 18px;
  --primary: #29BFB0;
  --shadow: 0 10px 30px rgba(13, 110, 253, 0.08),
    0 4px 14px rgba(2, 153, 163, 0.06);
}

body {
  color: var(--ink);
  font-family: "Inter", sans-serif;
}
.btn-brand {
  --bs-btn-bg: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: #162b51;
  --bs-btn-hover-border-color: #0b1a36;
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  border-radius: 8px;
  padding: 0.7rem 1.1rem;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(10, 160, 168, 0.18);
}
.btn-theme{
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: #162b51;
  --bs-btn-hover-border-color: #29BFB0;
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  border-radius: 8px;
  padding: 0.7rem 1.1rem;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(12, 169, 177, 0.18);
}
.btn-outline-brand {
  --bs-btn-color: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: var(--brand);
  --bs-btn-hover-border-color: var(--brand);
  --bs-btn-hover-color: #fff;
  border-radius: 8px;
  font-weight: 600;
  padding: 0.7rem 1.1rem;
}

/* NAVBAR */
.navbar {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

/* HERO */
.hero {
  position: relative;
  /* background:
        radial-gradient(74.16% 80.54% at 50% 50%,
          rgba(248,129,70,.23) 20%,
          rgba(204,31,91,.23) 40%,
          rgba(43,20,54,.23) 60%,
          rgba(0,0,0,.12) 100%),
        linear-gradient(180deg, #F79C42 0%, #E61E60 81.03%); */
  background: url("./assets/hero_background.png");
  color: #0b1b20;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    180deg,
    #FFFFFF,
    #BDEEE9
  ); */
  mix-blend: screen;
  pointer-events: none;
}
.hero .content {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
  padding-bottom: 4rem;
}
.hero-card {
  background:none;
  /* background: var(--card); */
  border: 0;
  /* border-radius: var(--radius); */
  /* box-shadow: var(--shadow); */
}

/* LOGOS */
.logo-cloud img {
  height: 72px;
  opacity: 0.9;
  /* filter: grayscale(100%); */
  transition: 0.25s;
}
.logo-cloud img:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-2px);
}

/* WHY + FEATURES */
.section-pad {
  padding: 4.5rem 0;
}
.bg-light-theme {
    background-color: #EBFAF9;
}
.bg-dark-theme {
  background-color: #29BFB0;
}
.bg-soft {
  background-color: #FAFAF7;
}

.why-card,
.feature-card {
  background: var(--primary);
  border-radius: var(--radius);
  border: 0;
  box-shadow: var(--shadow);
}

/* BENEFITS GRID */
.benefit {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid rgba(2, 153, 163, 0.08);
  box-shadow: var(--shadow);
  height: 100%;
}
.benefit .icon {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  background: var(--bg-soft);
  color: var(--brand);
  border-radius: 8px;
  font-size: 1.1rem;
}

/* TESTIMONIALS */
.testimonials {
  /* background: linear-gradient(180deg, #06323a 0%, #0a4b54 100%); */
  background: url('./assets/customer_feedback_background.png');
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 600px;
  color: #e8f6f7;
  padding: 4.5rem 0;
}
.test-card {
  background: #fff;
  color: #101010;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  height: 300px;
}

/* BLOGS */
.blog-card {
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* FAQ */
.faq .accordion-button {
  border-radius: 12px !important;
  background: #fff;
}
.faq .accordion-item {
  border: 0;
  box-shadow: var(--shadow);
  border-radius: 14px;
  margin-bottom: 1rem;
}

/* CTA STRIP */
.cta-strip {
  background: var(--primary);
  padding: 1.2rem;
  color: #fff;
  /* border-radius: 14px; */
  box-shadow: var(--shadow);
}

/* FOOTER */
footer {
  background: #0A3047;
  color: #c9d3d5;
}
footer a {
  color: #c9d3d5;
  text-decoration: none;
}
footer a:hover {
  color: #fff;
}

/* UTIL */
.smallcaps {
  letter-spacing: 0.04em;
  text-transform: capitalize;
  font-weight: 700;
  font-size:2rem;
  color: '#101010';
}
