:root {
  --dark: #1a2535;
  --dark2: #243347;
  --teal: #2d8fa8;
  --teal-light: #52D5F6;
  --teal2: #3aabca;
  --teal3: #1f6e84;
  --white: #fff;
  --off: #f2f7fa;
  --off2: #e8f4f8;
  --slate: #4a5f72;
  --lts: #8aa2b5;
  --border: rgba(45, 143, 168, .16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}
/* ===== PAGE LOADER ===== */
#page-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}

#page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  width: 80px;
  height: 80px;
  position: absolute;
  z-index: 2;
  object-fit: contain;
  animation: pulse 1.5s infinite ease-in-out;
}

.loader-spinner {
  width: 190px;
  height: 190px;
  border: 3px solid transparent;
  border-top-color:#192434;
  border-radius: 50%;
  position: relative;
  animation: spin 1.2s linear infinite;
}

.loader-spinner::after {
  content: '';
  position: absolute;
  inset:10px;
  border: 2px solid transparent;
  border-top-color: #3AABCA;
  border-radius: 50%;
  animation: spin 2s linear infinite reverse;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}
/* ══ TOPBAR ══ */
.topbar {
  background: var(--dark);
  padding: 10px 0;
  font-size: 14px;
}

.tb-in {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.tb-right {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.tb-right a {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: color .2s;
}

.tb-right a:hover {
  color: var(--teal2);
}

.tb-icon {
  width: 30px;
  height: 30px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tb-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

.tb-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, .15);
  margin: 0 -8px;
}

/* ══ NAVBAR ══ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: 0 2px 18px rgba(0, 0, 0, .08);
}

.nav-in {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  height: 140px;
  gap: 20px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-wrap img {
  max-height: 113px;
  width: auto;
  object-fit: contain;
}

.scrolled .logo-wrap img {
	  max-height:93px;
}
	
.scrolled .nav-in{height:100px}

.navlinks {
  display: flex;
  list-style: none;
  gap: 20px;
  margin-left: auto;
  align-items: center;
}

.navlinks li {
  position: relative;
}

.navlinks a {
  display: block;
  padding: 12px 25px;
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  text-decoration: none;
  border-radius: 5px;
  transition: all .2s;
}

.navlinks a:hover,
.navlinks a.active {
  color: var(--teal);
  background-color: rgba(45, 143, 168, 0.0706);
}

.has-drop:hover .drop {
  display: grid;
}

.drop {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, .12);
  padding: 18px;
  grid-template-columns: repeat(3, 200px);
  gap: 2px;
  min-width: 620px;
  z-index: 999;
}

.drop-item {
  display: block;
  padding: 8px 12px;
  font-size: 12.5px;
  color: var(--slate);
  text-decoration: none;
  border-radius: 6px;
  border-left: 2px solid transparent;
  transition: all .17s;
}

.drop-item:hover {
  background: var(--off);
  color: var(--dark);
  border-left-color: var(--teal);
  padding-left: 16px;
}

.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  font-weight: 400 !important;
  border-radius: 7px !important;
  padding: 12px 20px !important;
  margin-left: 8px;
  box-shadow: 0 4px 14px rgba(45, 143, 168, .35);
  transition: all .22s !important;

}

.nav-cta:hover {
  background: var(--dark) !important;
  color: var(--teal2) !important;
  transform: translateY(-1px);
}

/* ══ HERO ══ */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.swiper {
  width: 100%;
  height: 86vh;
}

.swiper-slide {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 10s ease;
}

.swiper-slide-active .hero-bg-img {
  transform: scale(1.07);
}

.hero-ov {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(110deg, rgba(15, 24, 38, .84) 0%, rgba(15, 24, 38, .65) 55%, rgba(15, 24, 38, .28) 100%); */
}

.hero-ov2 {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(0deg, rgba(15, 24, 38, .55) 0%, transparent 55%);*/
}

.hero-in {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(-30px);
}

.hero-eye {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal2);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(-26px);
  transition: all .7s ease .2s;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  max-width: 660px;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(-26px);
  transition: all .8s ease .4s;
}

.hero-title span {
  color: var(--teal2);
  font-style: italic;
}

.hero-desc {
  font-size: 18px;
  color: #fff;
  line-height: 1.76;
  max-width: 500px;
  margin-bottom: 34px;
  font-weight: 300;
  opacity: 0;
  transform: translateY(26px);
  transition: all .8s ease .6s;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(26px);
  transition: all .8s ease .8s;
}

.swiper-slide-active .hero-eye,
.swiper-slide-active .hero-title,
.swiper-slide-active .hero-desc,
.swiper-slide-active .hero-btns {
  opacity: 1;
  transform: translateY(0);
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 5px;
  background: var(--teal2);
}
.swiper-pagination-bullet-active {
    
    background:#fff !important;
}
.hero-pagination {
  position: absolute;
  bottom: 60px !important;
  z-index: 10;
}

.btn-prim {
  background: var(--teal);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 7px;
  font-weight: 400;
  font-size: 18px;
  text-decoration: none;
  transition: all .22s;
  box-shadow: 0 6px 20px rgba(45, 143, 168, .4);
  border: none;
  cursor: pointer;
}

.btn-prim:hover {
  background: var(--teal2);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(45, 143, 168, .5);
}

.btn-sec {
  color: var(--white);
  padding: 14px 28px;
  border-radius: 7px;
  font-weight: 400;
  font-size: 18px;
  text-decoration: none;
  transition: all .22s;
  background: #123842;
  cursor: pointer;
}

.btn-sec:hover {
  background: #000;
  transform: translateY(-2px);
}

/* ══ TRUST BAR ══ */
.trust {
  position: relative;
  margin-top: -50px;
  z-index: 100;
  padding: 0;
}

.trust-in {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.ti {
  background: #1A2535;
  flex: 1;
  min-width: 250px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 20px;
  color: var(--white);
  transition: all .3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ti:hover {
  transform: translateY(-5px);
  background: #243347;
  border-color: rgba(45, 143, 168, 0.3);
}

.ti-ico {
  width: 52px;
  height: 52px;
  background: rgba(45, 143, 168, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ti-ico svg {
  width: 30px;
  height: 30px;
  stroke: #4fd1ed;
  fill: none;
  stroke-width: 1.2;
}

.ti-txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
}

/* ══ COMMONS ══ */
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 28px;
}

.slabel {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.stitle {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.stitle em {
  font-style: italic;
  color: var(--teal);
}

.why-sec .stitle em {
  color: var(--teal-light);
}

.sdesc {
  font-size: 18px;
  color: #4A5F72;
  line-height: 1.5;
  font-weight: 400;
}

.sh {
  margin-bottom: 48px;
}

.sh.c {
  text-align: center;
}

.sh.c .sdesc {
  margin: 0 auto;
}

section {
  padding: 100px 0;
}

.fi {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.fi.vis {
  opacity: 1;
  transform: translateY(0);
}

/* ══ SERVICES (Grid) ══ */
.svc-sec {
  background: #fff url(../images/bg-service.jpg) center bottom no-repeat;
  background-size: cover;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.text-center{text-align:center}
.scard {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(26, 37, 53, 0.2);
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.scard:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, .06);
  transform: translateY(-5px);
  border-color: rgba(45, 143, 168, .2);
}

.sico {
  width: 48px;
  height: 48px;
  background: #1e293b;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
}

.sico svg {
  width: 24px;
  height: 24px;
  stroke: #4fd1ed;
  fill: none;
  stroke-width: 1.5;
}

.sname {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.3;
}

.sdsc {
  font-size: 16px;
  color: #4A5F72;
  line-height: 1.6;
  font-weight: 400;
}

/* Special card for 'Explore All' */
.scard.explore {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.scard.explore .sico {
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
}

.scard.explore .sname {
  margin-bottom: 0;
}

.svc-more {
  text-align: center;
  margin-top: 32px;
}

.svc-more a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  border: 1.5px solid var(--teal);
  border-radius: 7px;
  padding: 10px 24px;
  transition: all .2s;
}

.svc-more a:hover {
  background: var(--teal);
  color: var(--white);
}

.svc-more a svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

/* ══ ABOUT / BACK OFFICE ══ */
.about-sec {
  background: #f4f9fb;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.about-badge {
  position: absolute;
  bottom: 60px;
  left: -50px;
  background: #2d8fa8;
  border-radius: 10px;
  padding: 30px 25px;
  box-shadow: 0 25px 50px rgba(45, 143, 168, 0.35);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 180px;
  z-index: 5;
}

.ab-ico {
  display: none;
}

.ab-num {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.ab-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-pts {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.apoint {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.apdot {
  width: 22px;
  height: 22px;
  background: var(--teal);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
  box-shadow: 0 4px 10px rgba(45, 143, 168, 0.2);
}

.apdot svg {
  width: 12px;
  height: 12px;
  stroke: var(--white);
  fill: none;
  stroke-width: 4;
}

.aptxt {
  font-size: 18px;
  color: #4A5F72;
  line-height: 1.6;
  font-weight: 400;
}

.know-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  background: #3a97ad;
  border-radius: 6px;
  padding: 14px 32px;
  transition: all .3s ease;
  box-shadow: 0 15px 35px rgba(58, 151, 173, 0.3);
}

.know-more:hover {
  background: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.know-more svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ══ WHY/ADVANTAGE ══ */
.why-sec {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.why-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 85% 50%, rgba(45, 143, 168, .08) 0%, transparent 65%), linear-gradient(135deg, #111e2f, #1c2e40);
}

.why-in {
  position: relative;
  z-index: 1;
}

.why-sec .stitle {
  color: var(--white);
}

.why-sec .sdesc {
  color: rgba(255, 255, 255, .5);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.wcard {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 13px;
  padding: 28px 24px;
  transition: all .3s;
}

.wcard:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--teal2);
  transform: translateY(-5px);
}

/* ══ SERVICE SLIDER REMOVED ══ */

.wnum {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  color: #1D6F84;
  line-height: 1;
  margin-bottom: 20px;
}

.wtitle {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.wtxt {
  font-size: 16px;
  color: #C1C9D0;
  line-height: 1.7;
  font-weight: 300;
}

/* ══ PROCESS ══ */
.process-sec {
  background: url(../images/bg-how-it-works.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.psteps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.psteps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--teal) 0, var(--teal) 6px, transparent 6px, transparent 14px);
  opacity: .38;
}

.pstep {
  text-align: center;
}

.pnum {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--teal);
  background: var(--off);
  position: relative;
  z-index: 1;
  transition: all .3s;
}

.pstep:hover .pnum {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 8px 26px rgba(45, 143, 168, .4);
}

.ptitle {

  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}

.ptxt {
  font-size: 16px;
  color: #4A5F72;
  line-height: 1.65;

}

/* ══ CONTACT ══ */
.contact-sec {
  background: #F3F8FA;
  padding: 50px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 50px;
}

.contact-left {
  background: var(--off);
  padding: 0;
  display: flex;
  flex-direction: column;

}

.contact-right {
  padding: 40px 40px;
  background: #FFFFFF;
  box-shadow: 0px 10px 44px rgba(26, 37, 53, 0.07);
  border-radius: 20px;
}

.cdet {
  display: flex;
  gap: 14px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.cico {
  width: 40px;
  height: 40px;
  background: var(--dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cico svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal-light);
  fill: none;
  stroke-width: 1.8;
}

.clbl {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #727272;
  margin-bottom: 3px;
}

.cval {
  font-size: 18px;
  color: #4A5F72;

  line-height: 1.5;
}

.cval a {
  color: #4A5F72;
  text-decoration: none;
}

.cval a:hover {
  color: var(--teal);
}

.cform-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 22px;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fg {
  margin-bottom: 14px;
}

.fg label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 5px;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid rgba(26, 37, 53, .11);
  border-radius: 7px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: all .2s;
  resize: none;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(45, 143, 168, .1);
}

.fg textarea {
  height: 94px;
}

.fsub {
  width: 100%;
  padding: 13px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 7px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s;
}

.fsub:hover {
  background: var(--dark);
  box-shadow: 0 6px 20px rgba(45, 143, 168, .35);
  transform: translateY(-1px);
}

/* ══ FOOTER ══ */
footer {
  background: #0b1420;
  color: rgba(255, 255, 255, .48);
  padding: 56px 0 0;
}

.fgrid {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 28px 40px;
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.8fr;
  gap: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.fbrand {
  text-align: center;
  max-width: 400px;
}

.fbrand img {
  margin-bottom: 20px;
}

.fdesc {
  font-size: 16px;
  line-height: 1.76;
  color: #919191;
  margin-bottom: 16px;
}

.faddr {
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
  line-height: 1.7;
}

.fctit {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 30px;
}

.flinks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.fquicklinks .flinks {
  gap: 15px;
}

.flinks a {
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
  transition: color .2s;
}

.flinks a:hover {
  color: var(--teal2);
}

.flinks li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 16px;
  color: var(--white);
  line-height: 1.6;
}

.flinks li svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal-light);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}

.f-social {
  display: flex;
  gap: 10px;
  margin-top: 25px;
  justify-content: center;
}

.fsoc {
  width: 40px;
  height: 40px;
  background: #2D8FA8;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .2s;
}

.fsoc:hover {
  background: var(--teal);
}

.fsoc svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  transition: fill .2s;
}

.fsoc:hover svg {
  fill: var(--white);
}

.fbot {
  max-width: 1600px;
  margin: 0 auto;
  padding: 28px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #fff;
}



.fbot-links a {
  color: var(--teal-light);
  text-decoration: none;
}

.fbot-links a:hover {

  text-decoration: underline;
}

/* ══ WHATSAPP ══ */
.wa-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
}

.wa-btn {
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .45);
  transition: transform .25s;
}

.wa-btn:hover {
  transform: scale(1.1);
}

.wa-btn svg {
  width: 27px;
  height: 27px;
  fill: #fff;
  position: relative;
  z-index: 1;
}

.ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: rw 2.2s infinite;
}

.ripple:nth-child(2) {
  animation-delay: .75s;
}

@keyframes rw {
  0% {
    transform: scale(1);
    opacity: .6
  }

  100% {
    transform: scale(2.2);
    opacity: 0
  }
}

/* ══ BACK TOP ══ */
.backtop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 42px;
  height: 42px;
  background: var(--dark);
  border: 1.5px solid rgba(45, 143, 168, .4);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s;
  opacity: 0;
  pointer-events: none;
}

.backtop.vis {
  opacity: 1;
  pointer-events: all;
}

.backtop:hover {
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-3px);
}

.backtop svg {
  width: 17px;
  height: 17px;
  stroke: var(--teal2);
  fill: none;
  stroke-width: 2.3;
  transition: stroke .2s;
}

.backtop:hover svg {
  stroke: var(--white);
}

/* ══ PAGE BANNER ══ */
.page-banner {
  background: linear-gradient(135deg, #1a2535 0%, #243347 50%, #1f3a4d 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(45, 143, 168, .15) 0%, transparent 70%);
  pointer-events: none;
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.page-banner-title em {
  font-style: italic;
  color: var(--teal2);
}

.page-banner-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, .6);
  font-weight: 300;
  margin-bottom: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb {
  font-size: 14px;
  color: rgba(255, 255, 255, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.breadcrumb a {
  color: var(--teal2);
  text-decoration: none;
  transition: color .2s;
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  color: rgba(255, 255, 255, .4);
}

/* ══ ABOUT INTRO ══ */
.about-intro-sec {
  background: #f4f9fb;
}

/* ══ MISSION VISION ══ */
.mv-sec {
  background: var(--white);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mv-card {
  background: var(--off);
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid var(--border);
  transition: all .35s ease;
  text-align: center;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(45, 143, 168, .12);
  border-color: rgba(45, 143, 168, .25);
}

.mv-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--dark) 0%, #243347 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(26, 37, 53, .18);
}

.mv-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--teal-light);
  fill: none;
}

.mv-title {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.mv-text {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
  font-weight: 400;
}

/* ══ STATS ══ */
.stats-sec {
  background: linear-gradient(135deg, var(--dark) 0%, #243347 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.stats-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 80% 50%, rgba(45, 143, 168, .1) 0%, transparent 60%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: all .3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(45, 143, 168, .3);
  transform: translateY(-4px);
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--teal2);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  color: rgba(255, 255, 255, .6);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ══ CTA SECTION ══ */
.cta-sec {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal3) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 20% 50%, rgba(255, 255, 255, .08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-sec .stitle {
  color: var(--white);
}

.cta-sec .stitle em {
  color: #d4f5ff;
}

/* ══ SERVICE DETAIL PAGE ══ */
.svc-detail-sec {
  background: var(--white);
  padding: 80px 0;
}

.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.svc-row.reverse {
  direction: rtl;
}

.svc-row.reverse>* {
  direction: ltr;
}

.svc-row-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.svc-row-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.svc-row:hover .svc-row-img img {
  transform: scale(1.04);
}

.svc-row-content {
  padding: 10px 0;
}

.svc-row-icon {
  width: 52px;
  height: 52px;
  background: var(--dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(26, 37, 53, .15);
}

.svc-row-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.svc-row-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.svc-row-text {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 16px;
}

.svc-row-text:last-of-type {
  margin-bottom: 24px;
}

.wa-inquiry-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all .25s ease;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .3);
}

.wa-inquiry-btn:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, .4);
}

.wa-inquiry-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.svc-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), rgba(45, 143, 168, .2), var(--border), transparent);
  margin: 60px 0;
}

/* ══ HAMBURGER TOGGLE ══ */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  z-index: 1001;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 3px;
  transition: all 0.35s cubic-bezier(0.77, 0, 0.18, 1);
  transform-origin: center;
}

.menu-toggle span:nth-child(1) {
  margin-bottom: 6px;
}

.menu-toggle span:nth-child(3) {
  margin-top: 6px;
}

/* Hamburger → X animation */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* ══ MOBILE OVERLAY ══ */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 899;
  opacity: 0;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.mobile-overlay.active {
  opacity: 1; display:block;
}

/* Hide mobile-only elements on desktop */
.mobile-menu-close {
  display: none;
}

/* ══ MOBILE ══ */
@media(max-width:1023px) {
  .menu-toggle {
    display: flex;
  }

  .navlinks {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 90px 24px 40px;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.18, 1);
  }

  .navlinks.open {
    right: 0;
  }

  

  .navlinks li {
    border-bottom: 1px solid rgba(26, 37, 53, 0.07);
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .navlinks.open li {
    opacity: 1;
    transform: translateX(0);
  }

  .navlinks.open li:nth-child(1) {
    transition-delay: 0.08s;
  }

  .navlinks.open li:nth-child(2) {
    transition-delay: 0.14s;
  }

  .navlinks.open li:nth-child(3) {
    transition-delay: 0.20s;
  }

  .navlinks.open li:nth-child(4) {
    transition-delay: 0.26s;
  }

  .navlinks.open li:nth-child(5) {
    transition-delay: 0.32s;
  }

  .navlinks.open li:nth-child(6) {
    transition-delay: 0.38s;
  }

  .navlinks a {
    padding: 16px 8px;
    font-size: 17px;
    border-radius: 0;
  }

  .navlinks a:hover,
  .navlinks a.active {
    background: transparent;
    color: var(--teal);
  }

  .nav-cta {
    margin-left: 0 !important;
    margin-top: 12px;
    text-align: center;
    border-radius: 7px !important;
  }

  .navlinks li:last-child {
    border-bottom: none;
  }

  /* Mobile close btn inside drawer */
  .mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: var(--off);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }

  .mobile-menu-close:hover {
    background: var(--teal);
  }

  .mobile-menu-close svg {
    width: 18px;
    height: 18px;
    stroke: var(--dark);
    fill: none;
    stroke-width: 2.5;
  }

  .mobile-menu-close:hover svg {
    stroke: var(--white);
  }

  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-grid,
  .fgrid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-img-wrap {
    order: -1;
    /* Image on top on mobile */
  }

  .about-badge {
    left: 20px;
    bottom: -30px;
    padding: 20px;
    min-width: 150px;
  }

  .ab-num {
    font-size: 36px;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .psteps {
    grid-template-columns: 1fr 1fr;
  }

  .psteps::before {
    display: none;
  }

  .ti {
    padding: 16px;
    min-width: calc(50% - 12px);
  }

  .trust-in {
    gap: 12px;
  }

  .fgrid {
    padding: 0 24px 36px;
    gap: 32px;
  }

  .hero-in {
    padding: 0 24px;
  }

  /* About Us & Services page responsive */
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mv-card {
    padding: 32px 24px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .svc-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .svc-row.reverse {
    direction: ltr;
  }

  .svc-row-img img {
    height: 280px;
  }

  .svc-divider {
    margin: 40px 0;
  }

  /* Prevent body scroll when menu open */
  body.menu-open {
    overflow: hidden;
  }
}

@media(max-width:600px) {
	
	.hero-pagination {bottom: 10px !important;}
  .contact-right {
    padding: 20px;
  }

  .contact-grid {
    gap: 0
  }

  .container {
    padding: 0 20px;
  }

  section {
    padding: 50px 0;
  }

  .topbar {
    padding: 0
  }

  .nav-in {
    height: 100px;
  }

  .logo-wrap img {
    max-height: 83px;
  }
.scrolled .logo-wrap img {
    max-height: 83px;
}
  .tb-right a {
    width: 30px;
    overflow: hidden;
  }

  .tb-in {
    justify-content: center;
  }

  .svc-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .ti {
    min-width: 100%;
    margin-top: 0;
  }

  .trust {
    margin-top: 30px;
  }

  .fbot {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .fbrand {
    max-width: 100%;
  }

  /* About Us & Services page responsive (small) */
  .page-banner {
    padding: 50px 0 40px;
  }

  .page-banner-desc {
    font-size: 15px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-num {
    font-size: 32px;
  }

  .stat-label {
    font-size: 12px;
  }

  .stats-sec {
    padding: 50px 0;
  }

  .cta-sec {
    padding: 50px 0;
  }

  .svc-detail-sec {
    padding: 50px 0;
  }

  .svc-row-img img {
    height: 220px;
  }

  .svc-divider {
    margin: 32px 0;
  }

  .wa-inquiry-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* ══════════════════════════════════════════════
       CONTACT US PAGE
    ══════════════════════════════════════════════ */

/* ── Contact Info Cards ── */
.ct-info-sec {
  background: var(--white);
  padding: 80px 0 40px;
}

.ct-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ct-card {
  background: var(--off);
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all .35s ease;
}

.ct-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(45, 143, 168, .12);
  border-color: rgba(45, 143, 168, .25);
}

.ct-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--dark) 0%, #243347 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(26, 37, 53, .18);
}

.ct-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--teal-light);
}

.ct-card-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.ct-card-text {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 4px;
}

.ct-card-text a {
  color: var(--slate);
  text-decoration: none;
  transition: color .2s;
}

.ct-card-text a:hover {
  color: var(--teal);
}

.ct-card-sub {
  font-size: 13px;
  color: var(--lts);
  margin-top: 4px;
}

/* ── Contact Main (Form + Map) ── */
.ct-main-sec {
  background: #f4f9fb;
  padding: 80px 0;
}

.ct-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.ct-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: 0 10px 44px rgba(26, 37, 53, .07);
}

.ct-map-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ct-map-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
  border: 1px solid var(--border);
}

.ct-map-frame iframe {
  display: block;
  width: 100%;
}

.ct-extra-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-extra-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all .3s ease;
}

.ct-extra-card:hover {
  border-color: rgba(45, 143, 168, .25);
  box-shadow: 0 8px 24px rgba(45, 143, 168, .08);
  transform: translateX(4px);
}

.ct-extra-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--dark), #243347);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ct-extra-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal-light);
}

.ct-extra-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.ct-extra-text {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.5;
}


/* ══════════════════════════════════════════════
       FREE ASSESSMENT PAGE
    ══════════════════════════════════════════════ */

/* ── Assessment Intro ── */
.fa-intro-sec {
  background: var(--white);
  padding: 80px 0;
}

.fa-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.fa-benefits {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fa-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fa-benefit-icon {
  width: 28px;
  height: 28px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(45, 143, 168, .25);
}

.fa-benefit-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--white);
  stroke-width: 3;
}

.fa-benefit-text {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.5;
}

/* ── Process Cards ── */
.fa-process-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fa-pcard {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--off);
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: all .35s ease;
}

.fa-pcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(45, 143, 168, .1);
  border-color: rgba(45, 143, 168, .25);
}

.fa-pcard-num {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  flex-shrink: 0;
  min-width: 44px;
  opacity: .35;
}

.fa-pcard-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.fa-pcard-text {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

/* ── Assessment Form Section ── */
.fa-form-sec {
  background: #f4f9fb;
  padding: 80px 0 100px;
}

.fa-form-header {
  text-align: center;
  margin-bottom: 48px;
}

.fa-form-header .sdesc {
  max-width: 500px;
  margin: 0 auto;
}

.fa-form-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 48px 48px;
  box-shadow: 0 10px 50px rgba(26, 37, 53, .08);
}

/* ── Step Indicator ── */
.fa-steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 44px;
}

.fa-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.fa-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  background: var(--off);
  color: var(--lts);
  border: 2px solid rgba(45, 143, 168, .15);
  transition: all .4s ease;
}

.fa-step-dot.active .fa-step-num {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 6px 20px rgba(45, 143, 168, .35);
}

.fa-step-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--lts);
  transition: color .3s;
}

.fa-step-dot.active .fa-step-label {
  color: var(--teal);
}

.fa-step-line {
  width: 80px;
  height: 2px;
  background: rgba(45, 143, 168, .15);
  margin: 0 16px;
  margin-bottom: 24px;
  transition: background .4s ease;
  border-radius: 2px;
}

.fa-step-line.active {
  background: var(--teal);
}

/* ── Step Content ── */
.fa-step-title {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.fa-step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 16px;
}

.fa-next-btn,
.fa-prev-btn,
.fa-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.fa-next-btn svg,
.fa-prev-btn svg,
.fa-submit-btn svg {
  width: 18px;
  height: 18px;
}

/* ── Checkbox Grid ── */
.fa-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.fa-check-item {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1.5px solid rgba(26, 37, 53, .1);
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s;
  font-size: 14px;
}

.fa-check-item:hover {
  border-color: rgba(45, 143, 168, .3);
  background: rgba(45, 143, 168, .03);
}

.fa-check-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
  cursor: pointer;
  flex-shrink: 0;
}

.fa-check-label {
  color: var(--slate);
  font-weight: 400;
  line-height: 1.3;
}

.fa-check-item:has(input:checked) {
  border-color: var(--teal);
  background: rgba(45, 143, 168, .06);
}

.fa-check-item:has(input:checked) .fa-check-label {
  color: var(--dark);
  font-weight: 500;
}


/* ══════════════════════════════════════════════
       CONTACT & ASSESSMENT RESPONSIVE
    ══════════════════════════════════════════════ */
@media(max-width:1023px) {
  .ct-cards {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .ct-main-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ct-form-wrap {
    padding: 32px 28px;
  }

  .fa-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fa-form-wrap {
    padding: 36px 28px;
  }

  .fa-checkbox-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fa-step-line {
    width: 50px;
    margin: 0 10px;
    margin-bottom: 24px;
  }
}

@media(max-width:600px) {
  .ct-cards {
    grid-template-columns: 1fr;
  }

  .ct-card {
    padding: 28px 20px;
  }

  .ct-info-sec {
    padding: 50px 0 20px;
  }

  .ct-main-sec {
    padding: 40px 0;
  }

  .ct-form-wrap {
    padding: 24px 20px;
  }

  .fa-intro-sec {
    padding: 50px 0;
  }

  .fa-form-sec {
    padding: 50px 0 60px;
  }

  .fa-form-wrap {
    padding: 28px 20px;
  }

  .fa-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .fa-steps-indicator {
    margin-bottom: 32px;
  }

  .fa-step-line {
    width: 30px;
    margin: 0 6px;
    margin-bottom: 24px;
  }

  .fa-step-label {
    font-size: 10px;
  }

  .fa-step-num {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .fa-step-title {
    font-size: 20px;
  }

  .fa-step-nav {
    flex-direction: column;
    gap: 12px;
  }

  .fa-step-nav .btn-prim,
  .fa-step-nav .btn-sec {
    width: 100%;
    justify-content: center;
  }

  .fa-pcard {
    padding: 20px 18px;
  }

  .fa-pcard-num {
    font-size: 26px;
    min-width: 36px;
  }
}

/* ══════════════════════════════════════════════
       FORM VALIDATION & SPAM PROTECTION
    ══════════════════════════════════════════════ */
.form-errors {
  background: #fff4f4;
  border-left: 4px solid #e74c3c;
  padding: 15px 20px;
  margin-bottom: 24px;
  border-radius: 4px;
}
.form-error-item {
  color: #c0392b;
  font-size: 14px;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
}
.form-error-item:last-child {
  margin-bottom: 0;
}
.field-error {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
}
.field-error-msg {
  color: #e74c3c;
  font-size: 13px;
  margin-top: 5px;
  font-weight: 500;
}
span.freq {
  color: #e74c3c;
}
.captcha-wrap {
  margin-top: 15px;
  margin-bottom: 20px;
}
.math-captcha label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 8px;
}
.math-captcha input {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid rgba(26, 37, 53, .11);
  border-radius: 7px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: all .2s;
}
.math-captcha input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(45, 143, 168, .1);
}
.captcha-error {
  color: #e74c3c;
  font-size: 13px;
  margin-top: 5px;
  font-weight: 500;
}
.hp-field {
  display: none !important;
}
.fsub-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.8;
}
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  vertical-align: middle;
  margin-right: 8px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ══════════════════════════════════════════════
       THANK YOU PAGE
    ══════════════════════════════════════════════ */
.thankyou-sec {
  padding: 80px 0 100px;
  background: #f4f9fb;
}
.thankyou-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(26, 37, 53, 0.05);
  border: 1px solid rgba(26, 37, 53, 0.05);
}
.thankyou-icon {
  width: 80px;
  height: 80px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}
.thankyou-icon svg {
  width: 40px;
  height: 40px;
  stroke: #25D366;
  stroke-width: 2;
}
.thankyou-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--dark);
  margin-bottom: 16px;
  font-weight: 700;
}
.thankyou-desc {
  font-size: 18px;
  color: var(--slate);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 40px;
}
.thankyou-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  text-align: left;
}
.thankyou-detail-item {
  background: var(--off);
  padding: 24px 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.thankyou-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.thankyou-detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
}
.thankyou-detail-item h4 {
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 4px;
}
.thankyou-detail-item p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.4;
}
.thankyou-detail-item a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
}
.thankyou-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}
@media(max-width: 768px) {
  .thankyou-details {
    grid-template-columns: 1fr;
  }
  .thankyou-wrap {
    padding: 40px 24px;
  }
  .thankyou-actions {
    flex-direction: column;
  }
  .thankyou-actions a {
    width: 100%;
    justify-content: center;
  }
  .thankyou-sec{padding:40px 0}
}