/* ============================================================
       CSS VARIABLES
    ============================================================ */
:root {
  --navy: #17324d;
  --teal: #0d8b8b;
  --blue-border: #0c4279;
  --text-dark: #333333;
  --white: #ffffff;
  --font-plus: "Plus Jakarta Sans", sans-serif;
  --font-brico: "Bricolage Grotesque", sans-serif;
}

/* ============================================================
       RESET / BASE
    ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-plus);
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
  padding: 0 38px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============================================================
       UTILITY
    ============================================================ */
.font-brico {
  font-family: var(--font-brico);
}
.font-plus {
  font-family: var(--font-plus);
}

.text-navy {
  color: var(--navy) !important;
}
.text-teal {
  color: var(--teal) !important;
}
.bg-navy {
  background-color: var(--navy) !important;
}
.bg-teal {
  background-color: var(--teal) !important;
}

/* pill badge used in section headers */
.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 50px;
  border-radius: 40px;
  border: 1px solid currentColor;
  padding: 0 26px;
  font-family: var(--font-plus);
  font-weight: 700;
  font-size: 20px;
  white-space: nowrap;
}
.section-pill .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.section-pill-white {
  color: #fff;
  border-color: #fff;
}
.section-pill-navy {
  color: var(--navy);
  border-color: var(--navy);
}
.section-pill-blue {
  color: var(--text-dark);
  border-color: var(--blue-border);
}
.section-pill-teal {
  color: var(--teal);
  border-color: var(--teal);
}

/* teal CTA button */
.btn-teal {
  display: inline-flex;
  align-items: center;
  background: var(--teal);
  border: none;
  border-radius: 29px;
  color: #fff;
  font-family: var(--font-brico);
  font-weight: 500;
  font-size: 16px;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-teal:hover {
  background: #0b7a7a;
}
.btn-teal span {
  padding: 0 25px;
  white-space: nowrap;
}
.btn-teal img {
  width: 51px;
  height: 50px;
  flex-shrink: 0;
}

/* blur decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.blob-blue {
  background: rgba(1, 87, 215, 0.28);
  filter: blur(146px);
}
.blob-teal {
  background: rgba(13, 139, 139, 1);
  filter: blur(108px);
}

/* ============================================================
       STELLARNAV OVERRIDES
    ============================================================ */

/* ── Base container ─── */
#main-nav {
  background: transparent !important;
  box-shadow: none !important;
  position: static !important;
}

/* ── Desktop horizontal nav (always visible >= 769px) ─── */
@media (min-width: 769px) {
  /* force the list to always be horizontal at desktop */
  #main-nav > ul,
  .stellarnav > ul,
  .stellarnav.desktop > ul,
  .stellarnav.mobile > ul {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    gap: 30px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
  }
  /* hide the mobile hamburger on desktop */
  #main-nav .menu-toggle,
  .stellarnav .menu-toggle,
  .stellarnav.mobile .menu-toggle {
    display: none !important;
  }
  /* top-level nav items */
  #main-nav > ul > li,
  .stellarnav > ul > li,
  .stellarnav.desktop > ul > li,
  .stellarnav.mobile > ul > li {
    display: inline-flex !important;
    list-style: none !important;
    padding: 0 !important;
    background: transparent !important;
    position: relative !important;
  }
  /* nav links */
  #main-nav > ul > li > a,
  .stellarnav > ul > li > a,
  .stellarnav.desktop > ul > li > a,
  .stellarnav.mobile > ul > li > a {
    font-family: var(--font-brico) !important;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  #main-nav > ul > li > a:hover,
  .stellarnav > ul > li > a:hover {
    color: var(--teal) !important;
  }
  /* Sub-menus */
  .stellarnav ul ul,
  .stellarnav.mobile ul ul {
    background: var(--navy) !important;
    border-radius: 6px !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    z-index: 9999 !important;
  }
  .stellarnav ul ul li,
  .stellarnav.mobile ul ul li {
    display: block !important;
  }
  .stellarnav ul ul li a,
  .stellarnav.mobile ul ul li a {
    color: #fff !important;
    padding: 10px 20px !important;
    font-size: 15px !important;
  }
  .stellarnav ul ul li a:hover {
    color: var(--teal) !important;
    background: rgba(255, 255, 255, 0.05) !important;
  }
}

/* ── Mobile hamburger (< 769px) ─── */
@media (max-width: 768px) {
  /* hide nav items, show hamburger */
  #main-nav > ul,
  .stellarnav > ul {
    display: none !important;
  }
  /* show hamburger toggle */
  .stellarnav .menu-toggle {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #fff !important;
    background: none !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    font-family: var(--font-brico) !important;
    font-size: 15px !important;
  }
  .stellarnav .menu-toggle span.bars span {
    background: #fff !important;
  }
  /* when open, show the list */
  .stellarnav.open > ul,
  #main-nav.open > ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    background: var(--navy) !important;
    position: absolute !important;
    top: 80px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important;
  }
  .stellarnav.open > ul > li {
    display: block !important;
    width: 100% !important;
  }
  .stellarnav.open > ul > li > a {
    color: #fff !important;
    padding: 13px 22px !important;
    font-size: 16px !important;
    display: block !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }
}

/* ============================================================
       SECTION 1 – HERO
    ============================================================ */
#hero {
  position: relative;
  overflow: hidden;
  /* background-color: var(--navy); */
}
#hero .hero-bg-rect {
  position: absolute;
  inset: 0;
  margin: 0 auto;
  top: 30px;
  pointer-events: none;
  z-index: 0;
}
#hero .hero-bg-rect img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/* header bar */
#hero .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1660px;
  margin: 0 auto;
  padding: 30px 60px 0;
}
#hero .site-logo {
  width: 193px;
  height: 64px;
  aspect-ratio: 193/64;
  object-fit: cover;
}

/* site-header flex row */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-header__logo {
  flex-shrink: 0;
}
#main-nav {
  /* flex: 1; */
  width: auto;
}

/* CTA wrap on right of nav */
.header-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}
#hero .nav-line {
  width: 45px;
  height: 1px;
  background: #fff;
  margin-bottom: 8px;
  align-self: flex-end;
}
/* Hide CTA on mobile (StellarNav shows hamburger) */
@media (max-width: 991px) {
  .header-cta-wrap {
    display: none;
  }
}

/* hero content */
.hero-content-wrap {
  display: grid;
  grid-template-columns: 1fr 706px;
  align-items: end;
  gap: 40px;
  margin-top: 55px;
  position: relative;
}
.hero-left {
  max-width: 760px;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
  left: 110px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  height: 50px;
  border-radius: 40px;
  border: 1px solid var(--teal);
  padding: 0 21px;
  color: var(--teal);
  font-family: var(--font-plus);
  font-weight: 500;
  font-size: 16px;
}
.hero-pill .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.hero-title {
  font-family: var(--font-plus);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 61px);
  line-height: 1.08;
  color: #fff;
  margin: 30px 0;
}
.hero-desc {
  font-family: var(--font-plus);
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  max-width: 642px;
  margin-bottom: 30px;
}
.hero-highlight {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 20px;
}
.hero-highlight img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-top: 4px;
}
.hero-highlight p {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

/* avatars */
.avatars-wrap {
  display: flex;
  align-items: center;
  margin-top: 74px;
  position: relative;
  left: -90px;
  top: 24px;
}
.avatars-group {
  position: relative;
  height: 59px;
  width: 206px;
}
.avatars-group img {
  position: absolute;
  top: 0;
  width: 59px;
  height: 59px;
  border-radius: 50%;
  object-fit: cover;
}

/* hero right image area */
.hero-right {
  position: relative;
  min-height: 700px;
}
.hero-right-shape {
  position: absolute;
  right: 0;
  top: 0;
  width: 706px;
  height: 700px;
  border-radius: 481px 0 30px 0;
  background: rgba(40, 144, 247, 0.15);
}
.hero-right-photo {
  position: absolute;
  right: 0px;
  top: 11px;
  width: 695px;
  height: 687px;
  border-radius: 481px 0 30px 0;
  object-fit: cover;
}
.hero-right-small {
  position: absolute;
  left: 89px;
  top: -36px;
  width: 221px;
  height: 221px;
  object-fit: cover;
  border-radius: 4px;
  z-index: -1;
}
.p-v-100 {
  padding: 100px 0;
}
.hero-right-chat {
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 922px;
  height: 571px;
  pointer-events: none;
}
.hero-right-chat img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0 0 37px 0;
  -webkit-border-radius: 0 0 37px 0;
  -moz-border-radius: 0 0 37px 0;
  -ms-border-radius: 0 0 37px 0;
  -o-border-radius: 0 0 37px 0;
}
.hero-left-deco {
  position: absolute;
  left: 0;
  top: 141px;
  width: 285px;
  height: 285px;
  object-fit: cover;
  opacity: 0.71;
  pointer-events: none;
}
.hero-teal-glow {
  position: absolute;
  left: 490px;
  top: 512px;
  width: 128px;
  height: 128px;
  border-radius: 64px;
  background: var(--teal);
  filter: blur(108px);
  pointer-events: none;
}

/* ============================================================
       SECTION 2 – ABOUT / TRUST
    ============================================================ */
#about {
  position: relative;
}
#about .about-inner {
  max-width: 1660px;
  margin: 0 auto;
  padding: 60px 60px 80px;
}
#about .about-grid {
  display: grid;
  grid-template-columns: 420px 1fr 195px;
  gap: 27px;
  align-items: start;
}
.about-main-photo {
  width: 100%;
  height: 605px;
  object-fit: cover;
  border-radius: 10px;
}
.about-content {
  padding-top: 55px;
  max-width: 538px;
}
.about-content h2 {
  font-family: var(--font-plus);
  font-weight: 700;
  font-size: 42px;
  color: var(--navy);
  line-height: 1.2;
  margin: 20px 0 24px;
}
.about-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 16px;
  max-width: 532px;
}
.about-side {
  position: absolute;
  top: 0;
  right: 0;
  .about-deco-left {
    position: absolute;
    left: auto;
    right: -140px;
    bottom: -40px;
    width: 287px !important;
    height: 287px !important;
    object-fit: cover;
    opacity: 0.91;
    pointer-events: none;
    max-width: fit-content;
    z-index: -1;
  }
}
.about-side-photo {
  width: 195px;
  height: 295px;
  object-fit: cover;
  border-radius: 7px;
}

/* spinning trust badge */
.trust-badge-wrap {
  display: flex;
  justify-content: center;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}
.trust-badge {
  width: 211px;
  height: 211px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 74%;
  top: 64%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
/* .trust-badge img {
  width: 157px;
  height: 157px;
} */
/* .trust-badge-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
} */
.trust-badge-icon {
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 45px;
}

/* ============================================================
       SECTION 3 – SERVICES
    ============================================================ */
#services {
  position: relative;
}
#services .services-inner {
  max-width: 1660px;
  margin: 0 auto;
  padding: 0px 0 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#services h2 {
  font-family: var(--font-plus);
  font-weight: 700;
  font-size: 42px;
  color: var(--navy);
  margin: 30px 0 24px;
}
#services > .services-inner > p {
  text-align: center;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.6;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 60px;
}

/* service card */
.service-card {
  position: relative;
  border-radius: 23px;
  max-width: 420px;
  width: 100%;
  background: #f6fafb;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}
.service-card:hover {
  background-color: var(--navy);
}
.service-card:hover h3,
.service-card:hover p {
  color: #fff;
}
.service-card .card-bg {
  width: 100%;
  display: block;
}
.service-card .card-overlay {
  /* position: absolute; */
  inset: 0;
  display: flex;
  flex-direction: column;
}
.service-card .card-text {
  padding: 45px 26px 20px;
  min-height: 301px;
}
.service-card h3 {
  font-family: var(--font-plus);
  font-weight: 700;
  font-size: 30px;
  color: var(--text-dark);
  margin-bottom: 20px;
  max-width: 288px;
}
.service-card h3.white {
  color: #fff;
}
.service-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  max-width: 357px;
}
.service-card p.white {
  color: #fff;
}
.service-card .card-image-wrap {
  margin-top: auto;
  position: relative;
}
.service-card .card-image-wrap img.card-photo {
  width: 100%;
  border-radius: 23px;
  object-fit: cover;
  display: block;
}
.service-card .card-arrow-btn {
  position: absolute;
  bottom: 6px;
  right: 4px;
  width: 83px;
  height: 83px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card .card-arrow-btn img {
  width: 100%;
  object-fit: contain;
}
.shapes {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 120px;
}

/* ============================================================
       SECTION 4 – CONTACT FORM
    ============================================================ */
#contact {
  position: relative;
}
#contact .contact-inner {
  max-width: 1660px;
  margin: 0 auto;
  padding: 60px 60px;
}
.contact-banner {
  position: relative;
  width: 100%;
}
.contact-banner-img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.contact-banner-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 57px;
  /* justify-content: center; */
  gap: 24px;
  text-align: center;
  z-index: 2;
  color: #fff;
  p {
    color: #fff;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
  }
}
.contact-banner-text h2 {
  font-family: var(--font-plus);
  font-weight: 700;
  font-size: 42px;
  color: #fff;
  max-width: 900px;
}
.contact-form-card {
  position: relative;
  margin-top: -159px;
  max-width: 1095px;
  margin-left: auto;
  margin-right: auto;
  background: #fff6f6;
  border-radius: 20px;
  box-shadow: 0 0 130px rgba(0, 0, 0, 0.18);
  padding: 11px;
  z-index: 1;
  .about-deco-left {
    position: absolute;
    left: auto;
    right: -140px;
    bottom: 0;
    width: 285px;
    height: 285px;
    object-fit: cover;
    opacity: 0.91;
    pointer-events: none;
    z-index: -1;
  }
}
.contact-form-inner {
  display: grid;
  grid-template-columns: 444px 1fr;
  gap: 30px;
  border-radius: 20px;
}
.contact-form-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transform: scaleX(-1);
}
.contact-form-right {
  padding: 25px 30px 10px 0;
  display: flex;
  flex-direction: column;
}
.contact-form-right h3 {
  font-family: var(--font-plus);
  font-weight: 800;
  font-size: 30px;
  color: #000;
  margin-bottom: 27px;
}
.contact-form-right .form-label {
  font-family: var(--font-brico);
  font-weight: 400;
  font-size: 16px;
  color: #000;
  margin-bottom: 8px;
}
.contact-form-right .form-control,
.contact-form-right .form-select {
  border: 1px solid rgba(119, 119, 119, 0.72);
  border-radius: 17px;
  background: transparent;
  height: 50px;
  color: rgba(0, 0, 0, 0.56);
  font-family: "Bricolage Grotesque";
  font-size: 12px;
  padding: 0 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 183.333% */
}
.contact-form-right .form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%230D8B8B' stroke-width='1' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  padding-right: 44px;
}
.f-iocn {
  position: absolute;
  top: 49px;
  right: 18px;
}
.msg {
  color: #000;
  font-family: "Bricolage Grotesque";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 137.5% */
  margin: 10px 0 0 0;
}
.contact-form-right .form-control:focus,
.contact-form-right .form-select:focus {
  box-shadow: none;
  border-color: var(--teal);
}
.contact-form-right textarea.form-control {
  height: 128px;
  resize: none;
}
.contact-form-group {
  margin-bottom: 20px;
  position: relative;
}

/* ============================================================
       SECTION 5 – CASE STUDY
    ============================================================ */
#case-study {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
#case-study .case-inner {
  max-width: 1660px;
  margin: 0 auto;
  padding: 58px 0 89px;
  position: relative;
  z-index: 2;
}
#case-study .case-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
#case-study h2 {
  font-family: var(--font-plus);
  font-weight: 700;
  font-size: 42px;
  color: #fff;
  margin: 24px 0 50px;
}
/* .case-grid {
  display: grid;
  grid-template-columns: 154px 154px 1fr 154px 154px;
  gap: 30px;
  min-height: 739px;
}
 
.case-side-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid rgba(13, 139, 139, 0.85);
  border-right: 1px solid rgba(13, 139, 139, 0.85);
  padding: 0 10px;
}
.topArrow {width: 100%;}
.case-side-col img {
  width: 53px;
  height: 53px;
  margin-top: 10px;
}
.case-side-label {
    color: #fff;
    font-family: var(--font-plus);
    font-weight: 700;
    font-size: 28px;
    white-space: nowrap;
    transform: rotate(-90deg);
    margin-bottom: 55px;
}
.case-center {
  position: relative;
  height: 739px;
  overflow: hidden;
  border-radius: 10px;
}
.case-center-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.case-center-overlay {
  position: absolute;
  bottom: 23px;
  left: 18px;
  width: calc(100% - 36px);
  border-radius: 10px;
  background: rgba(23, 50, 77, 0.7);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  padding: 21px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 1px 0 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 1px rgba(0, 0, 0, 0.13),
    inset -1px 0 1px rgba(0, 0, 0, 0.11);
}
.case-center-overlay h3 {
  font-family: var(--font-plus);
  font-weight: 700;
  font-size: 30px;
  color: #fff;
  margin-bottom: 16px;
}
.case-center-overlay p {
  font-family: var(--font-brico);
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 16px;
}
.case-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-family: var(--font-brico);
  font-size: 16px;
  background: none;
  border: none;
  cursor: pointer;
}
.case-learn-more img {
  width: 46px;
  height: 46px;
} */

/* ============================================================
   MODERN INTERACTIVE CASE ACCORDION
============================================================ */
/* =========================================================
   CASE GRID
========================================================= */

.case-grid {
  display: flex;
  gap: 18px;

  width: 100%;
  min-height: 739px;
}

/* =========================================================
   PANEL
========================================================= */

.case-side-col {
  position: relative;

  flex: 1;

  overflow: hidden;

  min-height: 739px;

  cursor: pointer;

  transition:
    flex 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s ease,
    opacity 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
  border-right: 1px solid rgba(13, 139, 139, 0.84);
  border-left: 1px solid rgba(13, 139, 139, 0.84);
}

/* =========================================================
   ACTIVE PANEL
========================================================= */

.case-side-col.active {
  flex: 0 0 582px;
  border-color: transparent;
}
/* =========================================================
   INACTIVE
========================================================= */

.case-side-col:not(.active) {
  opacity: 0.92;
}

/* =========================================================
   HOVER
========================================================= */

.case-side-col:hover {
  /* transform:translateY(-4px); */
}

/* =========================================================
   DEFAULT CONTENT
========================================================= */

.defaultText {
  position: relative;
  z-index: 5;

  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 0px 14px;

  transition:
    opacity 0.45s ease,
    visibility 0.45s ease,
    transform 0.45s ease;
}

/* =========================================================
   HIDE DEFAULT ON ACTIVE
========================================================= */

.case-side-col.active .defaultText {
  opacity: 0;
  visibility: hidden;

  transform: translateY(20px);
}

/* =========================================================
   ICON
========================================================= */

.topArrow {
  width: 53px;
  height: 53px;
  flex-shrink: 0;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
  position: relative;
  margin: 0 auto;
}

.case-side-col:hover .topArrow {
  transform: scale(1.08);
}

/* =========================================================
   LABEL
========================================================= */

.case-side-label {
  color: #fff;
  font-family: var(--font-plus);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(-90deg);
  transform-origin: center;
  margin-bottom: 55px;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
  -webkit-transition:;
  -moz-transition:;
  -ms-transition:;
  -o-transition:;
}

/* =========================================================
   EXPANDED CONTENT
========================================================= */

.afterExpand {
  position: absolute;
  inset: 0;

  overflow: hidden;

  opacity: 0;
  visibility: hidden;

  transform: translateY(30px);

  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    visibility 0.6s ease;
}

/* =========================================================
   SHOW ACTIVE CONTENT
========================================================= */

.case-side-col.active .afterExpand {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

/* =========================================================
   IMAGE
========================================================= */

.case-center-img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;

  transition:
    transform 1s ease,
    filter 0.5s ease;
}

.case-side-col:hover .case-center-img {
}
#case-study {
  margin: 0 -40px;
}
/* =========================================================
   OVERLAY
========================================================= */

.case-center-overlay {
  position: absolute;

  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 422px;
  z-index: 10;

  padding: 30px 21px 20px;

  border-radius: 10px;
  background: rgba(23, 50, 77, 0.7);
  backdrop-filter: blur(1px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}

/* =========================================================
   CONTENT ANIMATION
========================================================= */

.case-center-overlay h3,
.case-center-overlay p,
.case-learn-more {
  opacity: 0;

  transform: translateY(20px);

  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.case-side-col.active .case-center-overlay h3,
.case-side-col.active .case-center-overlay p,
.case-side-col.active .case-learn-more {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   TITLE
========================================================= */

.case-center-overlay h3 {
  color: #fff;

  font-size: clamp(25px, 2.5vw, 30px);

  margin-bottom: 10px;
}

/* =========================================================
   TEXT
========================================================= */

.case-center-overlay p {
  color: rgba(255, 255, 255, 0.84);

  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 700px;
}

/* =========================================================
   BUTTON
========================================================= */

.case-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  margin-top: 24px;

  color: #fff;
  text-decoration: none;

  transition:
    transform 0.3s ease,
    opacity 0.4s ease;
}

.case-learn-more:hover {
  transform: translateX(4px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media screen and (max-width: 1024px) {
  .case-grid {
    min-height: 620px;
  }

  .case-side-col.active {
    flex: 4;
  }

  .case-side-label {
    font-size: 20px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 768px) {
  .case-grid {
    flex-direction: column;
    min-height: auto;
  }

  .case-side-col {
    flex: none !important;

    min-height: 100px;
  }

  .case-side-col.active {
    min-height: 520px;
  }

  .defaultText {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;

    gap: 20px;
  }

  .case-side-label {
    transform: none;

    margin: 0;

    white-space: normal;

    font-size: 18px;
  }

  .case-center-overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;

    padding: 20px;
  }

  .case-center-overlay h3 {
    font-size: 24px;
  }

  .case-center-overlay p {
    font-size: 14px;
  }
}

/* ============================================================
       SECTION 6 – HOSTING PLANS
    ============================================================ */
#hosting {
  position: relative;
  margin: 0 -40px;
}
#hosting .hosting-inner {
  max-width: 1660px;
  margin: 0 auto;
  padding: 90px 30px 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#hosting h2 {
  font-family: var(--font-plus);
  font-weight: 700;
  font-size: 42px;
  color: var(--navy);
  text-align: center;
  margin: 24px 0;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  width: 100%;
  margin-top: 119px;
}

/* plan card */
.plan-card {
  position: relative;
  padding-top: 64px;
  max-width: 422px;
  width: 100%;
  z-index: 1;
}
.plan-price-badge {
  position: absolute;
  top: -6px;
  right: -31px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 10;
}
.plan-price-badge .price {
  font-family: var(--font-plus);
  font-size: 45px;
  font-weight: 500;
  line-height: 1;
}
.plan-price-badge .per {
  font-family: var(--font-plus);
  font-size: 11px;
  font-weight: 500;
}
.plan-card-inner {
  width: 100%;
  max-width: 386px;
  border-radius: 7px 20px 7px 70px;
  overflow: hidden;
  box-shadow: 0 4px 33px rgba(0, 0, 0, 0.25);
  min-height: 590px;
  position: relative;
  z-index: 1;
}
.plan-card-header-strip {
  position: absolute;
  top: 0;
  left: 0;
  width: 260px;
  height: 79px;
  border-radius: 0 0 31px 0;
  z-index: -1;
}
.plan-gradient-dark {
  background: linear-gradient(90deg, var(--navy) 0%, #3574b3 100%);
}
.plan-gradient-blue {
  background: linear-gradient(180deg, #3574b3 0%, var(--navy) 100%);
}
.plan-gradient-light {
  background: linear-gradient(
    180deg,
    rgba(225, 232, 240, 0) 0%,
    rgba(225, 232, 240, 1) 100%
  );
}
.plan-gradient-dark-header {
  background: linear-gradient(90deg, var(--navy) 0%, #3574b3 100%);
}

.plan-card-body {
  padding: 25px 18px 16px;
  min-height: 590px;
  display: flex;
  flex-direction: column;
}
article.plan-card.plan-card-2 {
  position: relative;
  margin-top: -112px;
}
.plan-title {
  font-family: var(--font-plus);
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  padding-top: 0;
  margin-bottom: 28px;
}
.plan-sub {
  color: #17324d;
  font-family: "Plus Jakarta Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 15px;
}
.plan-desc {
  font-family: var(--font-brico);
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 137.5% */
}
.plan-includes-label {
  font-family: var(--font-plus);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  color: #17324d;
}
.plan-includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  padding-left: 0;
}
.plan-includes-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-brico);
  font-size: 16px;
  color: #000;
}
.plan-includes-list li img {
  width: 22px;
  height: 12px;
  object-fit: contain;
  flex-shrink: 0;
}
.plan-includes-list.white li {
  color: #fff;
  font-family: "Bricolage Grotesque";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 137.5% */
}
.plan-btn-wrap {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  padding-top: 24px;
}

/* ============================================================
       SECTION 7 – TESTIMONIALS
    ============================================================ */
#testimonials {
  position: relative;
}
#testimonials .testi-inner {
  max-width: 1660px;
  margin: 0 auto;
  padding: 0 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.triangle {
  position: absolute;
  bottom: -2px;
  right: -3px;
  width: 284px;
  z-index: 0;
  img {
    height: auto !important;
    width: 100% !important;
  }
}
#testimonials h2 {
  font-family: var(--font-plus);
  font-weight: 700;
  font-size: 42px;
  color: var(--navy);
  margin: 24px 0;
}
.testi-slider {
  max-width: 1320px;
  width: 100%;
  margin-top: 40px;
}
/* Slick wrappers must allow the grid slide to take full slide width */
.testi-slider .slick-list,
.testi-slider .slick-track {
  width: 100%;
}
.testi-slider .slick-slide {
  height: auto;
}
.testi-slider .slick-slide > div {
  height: 100%;
}
.testi-bottom {
  display: grid;
  grid-template-columns: 645px minmax(0, 1fr);
  gap: 32px;
  align-items: end;
  width: 100%;
  padding-bottom: 40px;
}
.testi-slider .slick-dots {
  position: absolute;
  bottom: 62px;
  display: block;
  width: 117px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  right: 16px;
  background: #fff;
}
.testi-slider .slick-dots li {
  position: relative;
  display: inline-block;
  width: 29px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  width: 100%;
  height: 3px;
  border-radius: 10px;
  background: #d9d9d9;
  padding: 0;
}
.slick-dots li.slick-active button {
  background: #0d8b8b;
}
.testi-slider .slick-dots li button:before {
  content: "";
}
.testi-left {
  position: relative;
}
.testi-left-photo {
  width: 100%;
  max-width: 100%;
  height: 530px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.testi-rating-box {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  height: 169px;
  border-radius: 20px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 24px;
  z-index: 1;
  /* border:#fff 10px solid;border-right: none; border-bottom: none; */
}
.testi-rating-score {
  font-family: var(--font-plus);
  font-size: 34px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}
.testi-stars {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.testi-stars img {
  width: 20px;
  height: 20px;
}
.testi-rating-label {
  font-family: var(--font-plus);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

/* Slick testimonial slider */
.testi-slider-wrap {
  width: 100%;
}
.testi-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.13);
  padding: 40px 17px 20px;
  margin: 0;
}
.testi-quote-img {
  width: 106px;
  height: auto;
  margin-bottom: 20px;
}
.testi-quote-text {
  font-family: var(--font-brico);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.testi-divider {
  height: 1px;
  background: rgba(13, 139, 139, 0.51);
  margin: 16px 0 20px;
  opacity: 0.5;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testi-author img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
}
.testi-author-name {
  font-family: var(--font-plus);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0;
}
.testi-author-role {
  font-family: var(--font-plus);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0;
}

/* slick dots custom */
.testi-slider .slick-dots li button:before {
  color: #d9d9d9;
  font-size: 10px;
}
.testi-slider .slick-dots li.slick-active button:before {
  color: var(--teal);
}

/* ─── FOOTER / CTA ────────────────────────────────────────── */
.footer-section {
  position: relative;
  max-width: 1660px;
  margin: 0 auto;
  padding: 32px 0 30px;
}

.footer-inner {
  position: relative;
  border-radius: 20px;
  background-image: url("../assets/images/group-2482.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  &::before {
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(
      180deg,
      rgba(23, 50, 77, 0.96) 0%,
      rgba(12, 67, 121, 0.96) 100%
    );
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 20px;
  }
  .triangle {
    position: absolute;
    bottom: -15px;
    right: -6px;
    width: 380px;
    height: 114px;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }

  /* =========================================================
   SOCIAL MEDIA
========================================================= */

  .social-media-list {
    position: absolute;

    bottom: 20px;
    right: 48px;

    z-index: 2;

    display: flex;
    gap: 20px;

    margin: 0;
    padding: 0;

    list-style: none;
  }
}

.footer-deco-img {
  pointer-events: none;
  position: absolute;
  top: 32px;
  right: 15px;
  width: 285px;
  height: 285px;
  object-fit: cover;
  z-index: 0;
}

.footer-circle-deco {
  pointer-events: none;
  position: absolute;
  left: -38.3px;
  top: 2.2px;
}

.footer-body {
  position: relative;
  z-index: 1;
  padding: 46px 0 20px;
}

.footer-cta-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-cta-row h2 {
  font-family: var(--font-jakarta);
  font-size: 2.625rem;
  font-weight: 700;
  color: #fff;
  max-width: 828px;
  margin: 0;
  margin-top: 10px;
  line-height: 1.2;
}

.btn-started {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 29px;
  background: var(--teal);
  color: #fff;
  border: none;
  overflow: hidden;
  font-family: var(--font-brig);
  font-size: 1rem;
  font-weight: 500;
  min-width: 220px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  flex-shrink: 0;
}

.btn-started:hover {
  background: #0b7b7b;
  color: #fff;
}

.btn-started .label {
  flex: 1;
  text-align: center;
  padding: 16px 24px;
  white-space: nowrap;
}

.btn-started img {
  height: 50px;
  width: 51px;
  flex-shrink: 0;
}

.footer-divider {
  margin: 40px 0;
  width: 100%;
  max-width: 1316px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
}

.footer-cols {
  display: grid;
  grid-template-columns: 33.15% 24.18% 42.67%;
  gap: 36px;
  margin-top: 42px;
}

.footer-logo {
  height: 61px;
  width: 170px;
  margin-bottom: 14px;
}

.footer-tagline {
  font-family: var(--font-brig);
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  max-width: 414px;
}

.footer-col-title {
  font-family: var(--font-jakarta);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}

.footer-links-grid a {
  font-family: var(--font-brig);
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.footer-links-grid a:hover {
  opacity: 0.8;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 17px;
}

.contact-list li img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.contact-list li address {
  font-style: normal;
  font-family: var(--font-jakarta);
  font-size: 1rem;
  color: #fff;
  padding-top: 0;
}

.newsletter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(23, 50, 77, 0.87);
  border-radius: 17px;
  padding: 16px 21px;
  max-width: 100%;
  margin-top: 34px;
}

.newsletter-bar span {
  font-family: var(--font-jakarta);
  font-size: 1rem;
  color: #fff;
}

.newsletter-bar img {
  width: 31px;
  height: 30px;
  flex-shrink: 0;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.newsletter-input {
  flex: 0 0 91%;
  min-width: 0;
  font-family: var(--font-jakarta);
  font-size: 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0);
  border: 1px solid rgba(255, 255, 255, 0) !important;
  padding: 0px;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
  border-color: rgba(255, 255, 255, 0.7);
}

.newsletter-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.newsletter-submit svg {
  width: 31px;
  height: 30px;
  flex-shrink: 0;
}

.footer-bottom-bar {
  margin-top: 46px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(23, 50, 77, 0.87);
  border-radius: 40px;
  padding: 25px 36px;
  max-width: 1079px;
}

.footer-bottom-inner p,
.footer-bottom-inner a {
  font-family: var(--font-brig);
  font-size: 1rem;
  color: #fff;
  margin: 0;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-bottom-inner a:hover {
  opacity: 0.8;
}

/* ============================================================
       RESPONSIVE MEDIA QUERIES
    ============================================================ */

@media screen and (max-width: 2560px) {
  /* large 4k screens – keep contained max-widths */
}

@media screen and (max-width: 1920px) {
  /* full HD+, keep as designed */
}

@media screen and (max-width: 1660px) {
  #hero .hero-inner {
    padding: 30px 0 0;
    overflow: hidden;
    border-radius: 0 0 20px 0;
    -webkit-border-radius: 0 0 20px 0;
    -moz-border-radius: 0 0 20px 0;
    -ms-border-radius: 0 0 20px 0;
    -o-border-radius: 0 0 20px 0;
  }
  /* #about .about-inner,
  #services .services-inner,
  #contact .contact-inner,
  #case-study .case-inner,
  #hosting .hosting-inner,
  #testimonials .testi-inner {
    padding-left: 40px;
    padding-right: 40px;
  } */
}
@media screen and (max-width: 1530px) {
  .avatars-group img {
    width: 39px;
    height: 39px;
  }
  .footer-bottom-inner {
    max-width: 999px;
}
}
@media screen and (max-width: 1440px) {
  .hero-content-wrap {
    grid-template-columns: 1fr 580px;
  }
  .hero-right-photo {
    width: 570px;
    height: 570px;
  }
  .avatars-wrap {
    left: -106px;
    margin-top: 52px;
    top: -2px;
  }
  .hero-left {
    max-width: 760px;
    padding-bottom: 0;
  }

  .hero-right-shape {
    width: 570px;
    height: 570px;
  }
  .footer-bottom-inner {
    max-width: 819px;
  }
  .case-grid {
    grid-template-columns: 120px 120px 1fr 120px 120px;
    gap: 18px;
  }
  .case-side-label {
    font-size: 22px;
  }
  .testi-bottom {
    grid-template-columns: 500px 1fr;
  }
  .hero-title {
    font-size: clamp(36px, 3.5vw, 61px);
  }
  #hero .site-logo {
    width: 180px;
    height: 64px;
    aspect-ratio: 180/64;
    object-fit: contain;
  }
  .btn-teal span {
    padding: 0 15px;
    white-space: nowrap;
  }
  .hero-right-chat {
    width: 772px;
  }
  .newsletter-bar {
    max-width: 90%;
  }
  .hero-right {
    position: relative;
    min-height: 580px;
  }
  .hero-right-chat {
    position: absolute;
    right: 0;
    bottom: -51px;
  }
}

@media screen and (max-width: 1366px) {
  .hero-content-wrap {
    grid-template-columns: 1fr 520px;
    gap: 24px;
  }
  .hero-right {
    min-height: 510px;
  }
  .hero-right-photo {
    width: 510px;
    height: 510px;
  }
  .hero-right-shape {
    width: 510px;
    height: 510px;
  }
  .hero-right-small {
    width: 180px;
    height: 180px;
  }
  #main-nav > ul,
  .stellarnav > ul,
  .stellarnav.desktop > ul,
  .stellarnav.mobile > ul {
    gap: 25px !important;
  }
  #hero .site-logo {
    width: 171px;
    height: 64px;
    aspect-ratio: 171px/64;
    object-fit: contain;
  }
  .btn-teal {
    font-size: 14px;
  }
  .hero-right-chat {
    width: 694px;
  }
}

@media screen and (max-width: 1280px) {
  .hero-content-wrap {
    grid-template-columns: 1fr 460px;
  }
  #about .about-grid {
    grid-template-columns: 360px 1fr 160px;
    gap: 20px;
  }
  .about-main-photo {
    height: 500px;
  }
  .testi-bottom {
    grid-template-columns: 440px 1fr;
  }
  .testi-left-photo {
    width: 440px;
  }
}

@media screen and (max-width: 1156px) {
  .hero-content-wrap {
    grid-template-columns: 1fr 400px;
  }
  .hero-right-photo {
    width: 390px;
    height: 390px;
    left: 50px;
  }
  .hero-right-shape {
    width: 390px;
    height: 390px;
    left: 50px;
  }
  .hero-right-small {
    display: none;
  }
  .hero-right-chat {
    display: none;
  }
  #about .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-side-photo {
    display: none;
  }
  .case-grid {
    grid-template-columns: 100px 100px 1fr 100px 100px;
    gap: 12px;
  }
  .case-side-label {
    font-size: 18px;
  }
  .testi-bottom {
    grid-template-columns: 1fr;
  }
  .testi-left {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  #hero .hero-inner {
    padding: 24px 28px 0;
  }
  .hero-content-wrap {
    grid-template-columns: 1fr;
  }
  .hero-right {
    display: none;
  }
  .hero-left-deco {
    display: none;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-form-inner {
    grid-template-columns: 1fr;
  }
  .contact-form-photo {
    height: 300px;
  }
  .contact-form-right {
    padding: 24px 16px;
  }
  .case-grid {
    grid-template-columns: 1fr;
  }
  .case-side-col {
    display: none;
  }
  .case-center {
    height: 500px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 991px) {
  .hero-title {
    font-size: 42px;
  }
  #about .about-grid {
    grid-template-columns: 1fr;
  }
  .about-main-photo {
    height: 350px;
  }
  .about-content {
    padding-top: 20px;
  }
  .about-content h2 {
    font-size: 32px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid > div:first-child {
    padding-top: 0;
  }
}

@media screen and (max-width: 800px) {
  #hero .hero-inner {
    padding: 20px 20px 0;
  }
  #about .about-inner,
  #services .services-inner,
  #contact .contact-inner,
  #case-study .case-inner,
  #hosting .hosting-inner,
  #testimonials .testi-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  #footer {
    padding: 80px 0 0;
  }
  .section-pill {
    font-size: 16px;
    height: 44px;
    padding: 0 18px;
  }
}

@media screen and (max-width: 767px) {
  .hero-title {
    font-size: 36px;
  }
  .section-pill {
    font-size: 14px;
    height: 40px;
    padding: 0 16px;
    gap: 8px;
  }
  #about h2,
  #services h2,
  #hosting h2,
  #testimonials h2 {
    font-size: 30px !important;
  }
  #case-study h2 {
    font-size: 28px;
  }
  .contact-banner-text h2 {
    font-size: 28px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px;
  }
  #footer {
    padding-top: 60px;
  }
}

@media screen and (max-width: 667px) {
  .hero-title {
    font-size: 30px;
  }
  .hero-desc {
    font-size: 16px;
  }
  .contact-form-inner {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 575px) {
  .hero-title {
    font-size: 28px;
  }
  .hero-pill {
    font-size: 13px;
    height: 40px;
  }
  .btn-teal span {
    padding: 0 18px;
    font-size: 14px;
  }
  .trust-badge {
    width: 160px;
    height: 160px;
  }
  .trust-badge img {
    width: 120px;
    height: 120px;
  }
  .trust-badge-center {
    width: 75px;
    height: 75px;
  }
  #about .about-inner {
    padding: 40px 16px 60px;
  }
  #services .services-inner {
    padding: 60px 16px 40px;
  }
  .contact-banner-text h2 {
    font-size: 24px;
  }
}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 26px;
  }
  .hero-desc {
    font-size: 15px;
  }
  .section-pill {
    font-size: 13px;
    height: 38px;
    padding: 0 14px;
    gap: 6px;
  }
  .contact-form-card {
    margin: -80px 0 0;
  }
}

@media screen and (max-width: 414px) {
  .hero-title {
    font-size: 24px;
  }
  #hero .hero-inner {
    padding: 16px 16px 0;
  }
  .btn-teal img {
    width: 44px;
    height: 44px;
  }
  .about-content h2 {
    font-size: 26px;
  }
}

@media screen and (max-width: 380px) {
  .hero-title {
    font-size: 22px;
  }
  .hero-pill {
    font-size: 12px;
    padding: 0 12px;
    gap: 6px;
  }
}

@media screen and (max-width: 375px) {
  .hero-title {
    font-size: 21px;
  }
  .section-pill {
    font-size: 12px;
    height: 36px;
    padding: 0 12px;
    gap: 6px;
  }
}

@media screen and (max-width: 320px) {
  .hero-title {
    font-size: 20px;
  }
  .hero-desc {
    font-size: 14px;
  }
  .btn-teal span {
    font-size: 13px;
    padding: 0 14px;
  }
  #hero .hero-inner {
    padding: 14px 12px 0;
  }
}

/* ============================================================
       MOBILE MENU BUTTON (StellarNav toggle)
    ============================================================ */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .mobile-menu-btn {
    display: block;
  }
  .stellarnav.desktop {
    display: none !important;
  }
}

/* StellarNav mobile overlay */
.stellarnav.mobile.active {
  display: block !important;
}
.stellarnav.mobile {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 0;
}
.stellarnav.mobile > ul {
  flex-direction: column;
  gap: 0;
}
.stellarnav.mobile > ul > li > a {
  color: #fff !important;
}

/* plan card color variations */
.plan-card-1 .plan-card-inner {
  background: linear-gradient(
    180deg,
    rgba(225, 232, 240, 0) 0%,
    rgba(225, 232, 240, 1) 100%
  );
}
.plan-card-2 .plan-card-inner {
  background: linear-gradient(180deg, #3574b3 0%, var(--navy) 100%);
}
.plan-card-2 .plan-title {
  color: #fff;
}
.plan-card-2 .plan-sub,
.plan-card-2 .plan-includes-label {
  color: #fff;
}
.plan-card-2 .plan-desc {
  color: #fff;
}
.plan-card-2 .plan-includes-list li {
  color: #fff;
}
.plan-card-3 .plan-card-inner {
  background: linear-gradient(
    180deg,
    rgba(225, 232, 240, 0) 0%,
    rgba(225, 232, 240, 1) 100%
  );
}

.plans-note {
  margin-top: 27px;
  text-align: center;
  font-family: var(--font-brico);
  font-size: 16px;
  color: #000;
  line-height: 1.6;
}

/* About decorative blobs */
.about-blob-right {
  position: absolute;
  right: -110px;
  bottom: 20px;
  width: 395px;
  height: 398px;
  border-radius: 50%;
  background: rgba(1, 87, 215, 0.28);
  filter: blur(146px);
  pointer-events: none;
}
.about-deco-left {
  position: absolute;
  left: -20px;
  bottom: 66px;
  width: 285px;
  height: 285px;
  object-fit: cover;
  opacity: 0.91;
  pointer-events: none;
}

/* Contact blob */
.contact-blob-left {
  position: absolute;
  left: -146px;
  bottom: 220px;
  width: 395px;
  height: 398px;
  border-radius: 50%;
  background: rgba(1, 87, 215, 0.28);
  filter: blur(146px);
  pointer-events: none;
}

/* Hosting blob */
.hosting-blob-right {
  position: absolute;
  right: -124px;
  top: 170px;
  width: 395px;
  height: 398px;
  border-radius: 50%;
  background: rgba(1, 87, 215, 0.28);
  filter: blur(146px);
  pointer-events: none;
}
