@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #00c853;
  --green-dark: #007a33;
  --green-glow: rgba(0, 200, 83, 0.25);
  --black: #080c0a;
  --black-soft: #111714;
  --white: #f4faf6;
  --muted: rgba(244, 250, 246, 0.55);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --nav-h: 115px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

main {
  padding-top: var(--nav-h);
}

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
  background: #000000b8;
}

#navbar.scrolled {
  background: rgba(8, 12, 10, 0.97);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon img{
  width: 55px;
  height: 55px;
  /* border: 2px solid var(--green); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}


/* 
.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--white);
} */

.logo-text {
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  /* -webkit-text-stroke: 1px #32CD32; */
  /* font-family: Arial, sans-serif; */
  font-family: "Playfair Display", serif;
  text-transform: capitalize;
}

.logo-text:hover {
  font-size: 1.6rem;
}


.logo-text span {
   /* font-family: "Allison", cursive;    */
   color: #32CD32;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin-bottom: 0;
}

.nav-links li a {
  display: block;
  padding: 0.5rem 1.2rem;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f4faf6;
  position: relative;
  transition: color 0.25s;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 1.2rem;
  right: 1.2rem;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-links li a:hover {
  color: var(--green);
}

.nav-links li a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  color: #0e0e0e !important;
  font-weight: 700 !important;
  border-radius: 20px;
  transition: background 0.2s, transform 0.15s !important;
  letter-spacing: 0.1em;
  background: var(--secondary-gradient);
  width: 100%;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  border: 1px solid white;


}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--green);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--green);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(8, 12, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 2rem 2.5rem 2.5rem;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
  pointer-events: none;
  border-bottom: 1px solid rgba(0, 200, 83, 0.15);
  text-align: center;
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-drawer ul {
  list-style: none;
}

.mobile-drawer ul li {
  border-bottom: 1px solid rgba(244, 250, 246, 0.06);
}

.mobile-drawer ul li a {
  display: block;
  padding: 1.1rem 0;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-drawer ul li a:hover {
  color: var(--green);
  padding-left: 0.6rem;
}

.mob-join {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.85rem 2.2rem;
  background: var(--green);
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 2px solid #00e564;

  transition: background 0.2s;
}

.mob-join:hover {
  background: #00e564;
}

/* ─── HERO / SLIDER ─── */
.hero {
  position: relative;
  width: 100%;
  height: 115vh;
  min-height: 600px;
  overflow: hidden;
}

/* Slides */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  will-change: opacity;
}

.slide.active {
  opacity: 1;
}

/* 
.slide:nth-child(1) {
  background-image: url('https://images.unsplash.com/photo-1758274539089-8b2bd10eee92?q=80&w=1331&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

.slide:nth-child(2) {
  background-image: url('https://images.unsplash.com/photo-1608138404239-d2f557515ecb?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

.slide:nth-child(3) {
  background-image: url('https://images.unsplash.com/photo-1549060279-7e168fcee0c2?w=1600&q=80');
}

.slide:nth-child(4) {
  background-image: url('https://images.unsplash.com/photo-1758599879920-ab0caaebdc6e?q=80&w=1332&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

.slide:nth-child(5) {
  background-image: url('https://images.unsplash.com/photo-1583454110551-21f2fa2afe61?w=1600&q=80');
} */


/* Overlays */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(8, 12, 10, 0.92) 0%, rgba(8, 12, 10, 0.35) 50%, rgba(8, 12, 10, 0.2) 100%),
    linear-gradient(to right, rgba(8, 12, 10, 0.4) 0%, transparent 60%);
}

/* Noise grain */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  pointer-events: none;
}

/* Diagonal accent line */
.hero-diagonal {
  position: absolute;
  top: 0;
  right: 22%;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--green), transparent);
  opacity: 0.2;
  z-index: 2;
  transform: skewX(-8deg);
}

/* Hero Content */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  padding-top: var(--nav-h);
}

.hero-content p {
  color: white;
}

/* .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.4rem;
  animation: fadeUp 0.9s 0.2s ease both;
} */

/* .hero-eyebrow {
  display: inline-flex;
  font-weight: 800;
  color: white;
  -webkit-text-stroke: 2px #32CD32;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  font-size: x-large;
  align-items: center;
  gap: 13px;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  animation: fadeUp 0.9s 0.2s ease both;
} */

.hero-eyebrow {
  display: inline-flex;
  font-weight: 800;
  color: white;
  -webkit-text-stroke: 1.5px #32CD32;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  font-size: x-large;
  align-items: center;
  gap: 13px;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  animation: fadeUp 0.9s 0.2s ease both;
}

/* .hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--green);
  opacity: 0.6;
} */

.hero-tagline {
  /* font-family: "Mr Dafoe", cursive; */
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  letter-spacing: 0.5em;
  color: #32CD32;
  margin-bottom: 0.3rem;
  animation: fadeUp 0.9s 0.35s ease both;
  text-shadow: 0 0 40px var(--green-glow);

  display: inline-flex;
  font-weight: 800;
}

.hero-heading {
  font-family: "Playfair Display", serif;
  text-transform: capitalize;
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 1.8rem;
  animation: fadeUp 0.9s 0.5s ease both;
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.5);
}


.hero-heading span {
  color: var(--green);
  text-shadow: 0 0 60px var(--green-glow), 0 4px 60px rgba(0, 0, 0, 0.5);
}

/* .hero-heading {
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 800;
  color: white;
  
  -webkit-text-stroke: 2px black;
  
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  text-shadow:
    0 0 0 #32CD32,
    4px 4px 0 #32CD32,
    -4px 4px 0 #32CD32,
    4px -4px 0 #32CD32,
    -4px -4px 0 #32CD32;
} */

/* .hero-heading span {
  text-transform: capitalize;
  font-family: "Allison", cursive;
  font-size: 90px;
  color: white;
  font-weight: 400;
  transform: skewX(-5deg);

  -webkit-text-stroke: 0.5px black;
  
  text-shadow:
    0 0 0 #32CD32,
    2px 2px 0 #32CD32,
    -2px 2px 0 #32CD32,
    2px -2px 0 #32CD32,
    -2px -2px 0 #32CD32;

  letter-spacing: 2px;
  line-height: 1;
  transform: scaleX(2);
  display: inline-block;
} */

.hero-sub {
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: rgba(244, 250, 246, 0.7);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 2.8rem;
  animation: fadeUp 0.9s 0.65s ease both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.9s 0.8s ease both;
}

.btn-join {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.4rem;
  background: var(--green);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 2px solid var(--green);
  transition: background 0.25s, box-shadow 0.25s, transform 0.15s;
  position: relative;
  overflow: hidden;
}

.btn-join::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-join:hover {
  background: #00e564;
  border-color: #00e564;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--green-glow);
}

.btn-join:hover::before {
  transform: translateX(100%);
}

.btn-programs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.4rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 2px solid #00e564;
  transition: border-color 0.25s, color 0.25s, transform 0.15s, background 0.25s;
}

.btn-programs:hover {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-3px);
  background: var(--green);
}

/* Arrow icon */
.arrow-icon {
  width: 16px;
  height: 16px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  display: inline-block;
  flex-shrink: 0;
}

/* Slide counter */
.slide-counter {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.slide-counter .current {
  color: var(--green);
  font-size: 0.9rem;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
}

.dot {
  width: 28px;
  height: 3px;
  background: rgba(244, 250, 246, 0.25);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}

.dot.active {
  background: var(--green);
  width: 44px;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 3rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: fadeIn 1.5s 1.5s ease both;
}

.scroll-hint span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* Stats bar */
.stats-bar {
  position: absolute;
  bottom: -180px;
  left: 0;
  right: 0;
  z-index: 4;
  background: rgba(8, 12, 10, 0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 200, 83, 0.12);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 3rem 1.5rem;
  border-right: 1px solid rgba(0, 200, 83, 0.08);
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green);
  letter-spacing: 0.02em;
  line-height: 1;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
}


/* ─── BELOW-FOLD PLACEHOLDER (demonstrates page continues) ─── */
.below-fold {
  background: linear-gradient(0deg, #eae8c4, #fff);
  padding: 6rem 2.5rem;
  text-align: center;
  /* border-top: 1px solid rgba(0, 200, 83, 0.08); */
}

.below-fold h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 1rem;
  font-weight: 600;
}

.below-fold h2 span {
  color: var(--green);
}

.below-fold p {
  color: gray;
  font-size: 0.9rem;
  max-width: 460px;
  margin: 0 auto;
  margin-bottom: 1rem;
}


/* Services.html  */


.my-services-main__empty-wrap {
  width: 100%;
  grid-column: 1/-1;

  display: flex;
  justify-content: center;
  align-items: center;

  /* padding:60px 20px; */
}

.my-services-main__empty-box {

  width: 100%;
  max-width: 700px;
  background: linear-gradient(193deg, #127634, #1b1b1b);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 70px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.my-services-main__empty-box::before {

  content: '';

  position: absolute;

  width: 220px;
  height: 220px;

  background: rgba(0, 200, 83, 0.08);

  border-radius: 50%;

  top: -80px;
  right: -80px;
}

.my-services-main__empty-icon {

  width: 90px;
  height: 90px;

  margin: auto auto 25px;

  border-radius: 50%;

  background: linear-gradient(135deg,
      #00c853,
      #0f9d58);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 38px;
  color: #fff;

  box-shadow:
    0 10px 30px rgba(0, 200, 83, 0.3);
}

.my-services-main__empty-box h3 {

  color: #fff;

  font-size: 2rem;

  margin-bottom: 18px;
}

.my-services-main__empty-box p {

  color: #bdbdbd;

  line-height: 1.8;

  max-width: 550px;

  margin: auto auto 25px;
}

.my-services-main__empty-line {

  width: 100px;
  height: 4px;

  margin: 25px auto;

  border-radius: 20px;

  background: linear-gradient(to right,
      #00c853,
      #ff9800);
}

.my-services-main__empty-box span {

  color: #00c853;

  font-weight: 600;

  letter-spacing: 2px;

  font-size: 14px;
}


/* ── DESIGN TOKENS ── */
.my-services-main {
  --navy: #1f2a44;
  --navy-deep: #151e30;
  --navy-mid: #2c3e5e;
  --orange: #00c853;
  --orange-light: #fef0e6;
  --orange-hover: #0fb335;
  --bg: #f8f9fb;
  --bg-card: #ffffff;
  --text-dark: #1f2a44;
  --text-mid: #445272;
  --text-muted: #7a8ba6;
  --text-gray: #9aa5b8;
  --border: rgba(31, 42, 68, 0.07);
  --shadow-neu: 8px 8px 24px rgba(31, 42, 68, 0.10), -4px -4px 12px rgba(255, 255, 255, 0.85);
  --shadow-hover: 12px 16px 40px rgba(31, 42, 68, 0.16), -4px -4px 12px rgba(255, 255, 255, 0.7);
  --shadow-icon: 0 6px 20px rgba(31, 42, 68, 0.30);
  --radius: 20px;
  --radius-img: 20px 20px 0 0;
}

/* ── SECTION WRAPPER ── */
.my-services-main {
  background: var(--bg);
  padding: 96px 0 112px;
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.my-services-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(244, 124, 44, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(31, 42, 68, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

/* ── CONTAINER ── */
.my-services-main__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* ── HEADER ── */
.my-services-main__header {
  text-align: center;
  margin-bottom: 64px;
}

.my-services-main__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.my-services-main__subtitle::before,
.my-services-main__subtitle::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  opacity: 0.5;
}

.my-services-main__title {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.my-services-main__title .navy {
  color: var(--navy);
}

.my-services-main__title .orange {
  color: var(--green);
}

.my-services-main__tagline {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── GRID ── */
.my-services-main__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── CARD ── */
.my-services-main__card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-neu);
  overflow: visible;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.32s ease;
  cursor: pointer;
  border: 1px solid var(--border);
}

.my-services-main__card:hover {
  transform: translateY(-10px) scale(1.008);
  box-shadow: var(--shadow-hover);
}

/* Hover top accent bar */
.my-services-main__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #ffab5e);
  border-radius: var(--radius) var(--radius) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 5;
}

.my-services-main__card:hover::before {
  transform: scaleX(1);
}

/* ── IMAGE BLOCK ── */
.my-services-main__img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: var(--radius-img);
  overflow: hidden;
  flex-shrink: 0;
}

.my-services-main__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) brightness(0.95);
  transition: transform 0.5s ease, filter 0.35s ease;
}

.my-services-main__card:hover .my-services-main__img-wrap img {
  transform: scale(1.06);
  filter: saturate(1) brightness(0.9);
}

/* Gradient overlay */
.my-services-main__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(21, 30, 48, 0.55) 0%,
      rgba(21, 30, 48, 0.1) 50%,
      rgba(21, 30, 48, 0.05) 100%);
  border-radius: var(--radius-img);
}

/* Tag badge on image */
.my-services-main__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(21, 30, 48, 0.72);
  backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ── FLOATING ICON ── */
.my-services-main__icon-wrap {
  position: absolute;
  bottom: 8px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-icon);
  z-index: 4;
  transition: background 0.25s, transform 0.25s;
  border: 3px solid var(--bg-card);
}

.my-services-main__card:hover .my-services-main__icon-wrap {
  background: var(--green);
  transform: scale(1.12) rotate(8deg);
}

.my-services-main__icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── CARD BODY ── */
.my-services-main__body {
  padding: 36px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.my-services-main__card-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
  opacity: 0.8;
}

.my-services-main__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.my-services-main__card:hover .my-services-main__card-title {
  color: var(--navy-deep);
}

.my-services-main__card-desc {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}

/* Divider */
.my-services-main__divider {
  width: 32px;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 18px;
  transition: width 0.3s ease, background 0.3s ease;
}

.my-services-main__card:hover .my-services-main__divider {
  width: 56px;
  background: var(--orange);
}

/* CTA */
.my-services-main__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s, gap 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

.my-services-main__cta:hover {
  color: var(--orange);
  gap: 12px;
}

.my-services-main__cta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: transform 0.2s;
}

.my-services-main__cta:hover svg {
  transform: translateX(3px);
}

/* ── ANIMATIONS ── */
@keyframes myServicesMainFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.my-services-main__header {
  animation: myServicesMainFadeUp 0.8s ease both;
}

.my-services-main__card {
  animation: myServicesMainFadeUp 0.7s ease both;
  animation-play-state: paused;
}


.my-pack-cards-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-wrap: wrap;
  /* Makes it responsive */
  justify-content: center;
  background: linear-gradient(135deg, #edf1f1, #c8f4db);
  font-family: sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
}

.my-pack-div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 4rem;
}

.my-pack-cards {
  background-color: white;
  border-radius: 15px;
  width: 100%;
  max-width: 400px;
  height: 490px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.my-pack-cards-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.my-pack-cards-content {
  padding: 20px;
}

.my-pack-cards-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: white;
  margin-bottom: 10px;
  font-weight: bold;
}

.my-pack-cards-title {
  margin: 10px 0;
  font-size: 1.4rem;
  color: #333;
  font-weight: 700;
}

.my-pack-cards-text {
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
}

.my-pack-cards-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  margin-top: auto;
}

.my-pack-cards-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #ddd;
}

.my-pack-cards-meta {
  font-size: 0.9rem;
  color: black;
  font-family: 'Playfair Display', serif;
}

/* Services.html  */

/* contact.html  */

:root {
  /* Premium Color Palette */
  --primary-gradient: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #2d5a8c 100%);
  --secondary-gradient: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
  --accent-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  --dark-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);

  /* Neutral Colors */
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --border-color: #e2e8f0;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.16);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
}


/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-lg);
}

/* ===== CONTACT INFO SECTION ===== */
.contact-info-section {
  margin-bottom: var(--spacing-2xl);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--spacing-xl);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  position: relative;
  padding-bottom: var(--spacing-lg);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--secondary-gradient);
  border-radius: 2px;
}

.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
  justify-content: center;
}

.contact-info-grid .contact-card {
  flex: 1 1 calc(25% - var(--spacing-lg));
  min-width: 250px;
  max-width: 300px;
}

.contact-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: var(--spacing-lg);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--secondary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-out;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: #0ea5e9;
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--spacing-md);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: all 0.4s ease;
}

.contact-card:nth-child(1) .contact-icon {
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
  color: white;
}

.contact-card:nth-child(2) .contact-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
  color: white;
}

.contact-card:nth-child(3) .contact-icon {
  background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
  color: white;
}

.contact-card:nth-child(4) .contact-icon {
  background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
  color: white;
}

.contact-card:hover .contact-icon {
  transform: scale(1.15) rotate(5deg);
}

.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.contact-card p {
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
  overflow-wrap: anywhere;
}

.contact-card a {
  color: #0ea5e9;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.contact-card a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-gradient);
  transition: width 0.3s ease;
}

.contact-card a:hover::after {
  width: 100%;
}

/* ===== MAP SECTION ===== */
.map-section {
  /* background: var(--bg-secondary); */
  border-radius: 16px;
  padding: 3rem 0;
  margin-bottom: var(--spacing-2xl);
  overflow: hidden;
  /* box-shadow: var(--shadow-md); */
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: var(--spacing-lg);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.map-button-container {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.map-button-container .btn {
  /* flex: 1 1 auto; */
  min-width: 200px;
  text-decoration: none
}

/* ===== FORM SECTION ===== */
.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
  justify-content: center;
  align-items: stretch;
}

.form-wrapper {
  flex: 1 1 calc(50% - var(--spacing-xl));
  min-width: 300px;
  max-width: 500px;
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  animation: slideUpFade 0.8s ease-out 0.2s both;
}

.form-wrapper h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  margin-bottom: var(--spacing-md);
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--text-primary);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-md);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  color: var(--text-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-secondary);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0ea5e9;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-size: 0.95rem;
}

/* ===== BUTTONS ===== */
.btn {
  padding: 12px 32px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
  z-index: 1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--secondary-gradient);
  color: white;
  width: 100%;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(14, 165, 233, 0.4);
}

.btn-secondary {
  background: var(--accent-gradient);
  color: white;
}

.btn-secondary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(251, 191, 36, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--secondary-gradient);
  color: #0ea5e9;
  background-image: linear-gradient(white, white);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.btn-outline:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: white;
  background: var(--secondary-gradient);
  border-color: transparent;
}

/* ===== SOCIAL SECTION ===== */
.social-section {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--bg-secondary);
  border-radius: 16px;
  margin: 3rem 0;
  animation: slideUpFade 0.8s ease-out 0.4s both;
}

.social-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  margin-bottom: var(--spacing-lg);
  color: var(--text-primary);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.social-link {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 1;
}

.social-link:hover::before {
  width: 150%;
  height: 150%;
}

.social-link-icon {
  position: relative;
  z-index: 2;
}

.social-link:nth-child(1) {
  background: linear-gradient(135deg, #3b5998 0%, #1e3a8a 100%);
}

.social-link:nth-child(2) {
  background: linear-gradient(135deg, #e1306c 0%, #feda75 100%);

}

.social-link:nth-child(3) {
  background: linear-gradient(135deg, #ed0755 0%, #e03131 100%);
  ;
}

.social-link:nth-child(4) {
  background: linear-gradient(135deg, #1cec31 0%, #18e942 100%);
}

/* .social-link:nth-child(5) {
  background: linear-gradient(135deg, #25d366 0%, #075e54 100%);
}

.social-link:nth-child(6) {
  background: linear-gradient(135deg, #0077b5 0%, #004182 100%);
} */

.social-link:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* ===== ANIMATIONS ===== */
@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(20px) rotate(5deg);
  }
}

/* ===== FORM SUCCESS MESSAGE ===== */
.success-message {
  display: none;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: var(--spacing-md);
  border-radius: 10px;
  margin-bottom: var(--spacing-md);
  animation: slideDownFade 0.4s ease-out;
}

.success-message.show {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

/* ===== WHATSAPP CHAT SECTION ===== */
.whatsapp-section {
  flex: 1 1 calc(50% - var(--spacing-xl));
  min-width: 300px;
  max-width: 500px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  padding: var(--spacing-lg);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  animation: slideUpFade 0.8s ease-out 0.3s both;
  margin-top: 4rem;
}

.whatsapp-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  text-align: center;
  justify-content: center;
}

.whatsapp-section p {
  margin-bottom: var(--spacing-md);
  opacity: 0.95;
  line-height: 1.8;
  text-align: center;
}

.whatsapp-input-group {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.whatsapp-input-group input {
  flex: 1;
  padding: var(--spacing-md);
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  color: var(--text-primary);
}

.whatsapp-input-group input::placeholder {
  color: var(--text-secondary);
}

.btn-whatsapp {
  background: white;
  color: #18e764;
  font-weight: 700;
  /* padding: var(--spacing-md) var(--spacing-lg); */
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  white-space: nowrap;
  padding: 1rem 2rem;
}

.btn-whatsapp:hover {
  transform: translateY(-4px);
  background: #17de49;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: #f5f3f3;
}


/* ===== LOADING SPINNER ===== */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* contact.html  */

/* service.html  */

/* ===== SECTION ===== */
.fit9-bmi-sec-01 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /* background: linear-gradient(135deg, #000000, #001a0f, #00331f, #000); */
  background: white;
  padding: 20px;
}

/* ===== FORM ===== */
.fit9-form-02 {
  width: 100%;
  max-width: 500px;
  padding: 40px 30px;
  margin-bottom: 3rem;
  border-radius: 20px;
  background: rgb(8, 8, 8);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 255, 136, 0.2);
  text-align: center;
}

/* ===== TITLE ===== */
.fit9-title-03 {
  font-size: 2rem;
  color: #00ff88;
  margin-bottom: 5px;
}

.fit9-sub-04 {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 25px;
}

/* ===== GRID ===== */
.fit9-grid-05 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

/* ===== INPUT WRAP ===== */
.fit9-input-wrap-06 {
  position: relative;
  width: 100%;
}


/* ===== INPUT ===== */
.fit9-input-wrap-06 input,
.fit9-input-wrap-06 select {
  width: 100%;
  padding: 14px 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: rgb(249, 246, 246);
  font-size: 0.9rem;
  outline: none;
  transition: 0.3s;

}

/* Fix dropdown text color */
.fit9-input-wrap-06 select {
  color: #fff;
}

/* Style dropdown options */
.fit9-input-wrap-06 select option {
  color: #000;
  background: #fff;
}

/* When user selects something (not placeholder) */
.fit9-input-wrap-06 select:not([value=""])+label {
  top: -8px;
  left: 10px;
  font-size: 0.7rem;
  color: #00ff88;
  background: #000;
  padding: 0 5px;
}

.fit9-input-wrap-06 select.has-value+label {
  top: -8px;
  left: 10px;
  font-size: 0.7rem;
  color: #00ff88;
  background: #000;
  padding: 0 5px;
}


/* FOCUS EFFECT */
.fit9-input-wrap-06 input:focus,
.fit9-input-wrap-06 select:focus {
  border-color: #00ff88;
  box-shadow: 0 0 10px #00ff88;
}

/* ===== LABEL ===== */
.fit9-input-wrap-06 label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: #aaa;
  pointer-events: none;
  transition: 0.3s;
  background: transparent;
}

/* FLOATING LABEL */
.fit9-input-wrap-06 input:focus+label,
.fit9-input-wrap-06 input:valid+label,
.fit9-input-wrap-06 select:focus+label,
.fit9-input-wrap-06 select:valid+label {
  top: -8px;
  left: 10px;
  font-size: 0.7rem;
  color: #00ff88;
  background: #000;
  padding: 0 5px;
}

/* ===== BUTTON ===== */
.fit9-btn-07 {
  margin-top: 25px;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(45deg, #00ff88, #00cc66);
  color: #000;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* BUTTON HOVER */
.fit9-btn-07:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00ff88;
}

/* BUTTON TEXT */
.fit9-btn-07 span {
  position: relative;
  z-index: 2;
}


:root {
  --fx9-primary: #0a0e27;
  --fx9-secondary: #1a1f3a;
  --fx9-accent-gold: #d4af37;
  --fx9-accent-teal: #06d6a0;
  --fx9-accent-purple: #8b5cf6;
  --fx9-text-primary: #f8f9fa;
  --fx9-text-secondary: #b0b5c0;
  --fx9-border: rgba(255, 255, 255, 0.08);
  --fx9-border-accent: rgba(212, 175, 55, 0.15);
  --fx9-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.12);
  --fx9-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.16);
  --fx9-shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.2);
  --fx9-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --fx9-transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.fx9-packages-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  /* background: linear-gradient(135deg, #187b1d 0%, #032804 100% 100%); */
  padding: 6rem 2rem;
  overflow: hidden;
}

/* Background decorative elements */
.fx9-packages-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: fx9-float-slow 15s ease-in-out infinite;
}

.fx9-packages-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 214, 160, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: fx9-float-slow 20s ease-in-out infinite reverse;
}

/* ============================================
           HEADER SECTION
           ============================================ */
.fx9-section-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.fx9-header-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fx9-accent-teal);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--fx9-border-accent);
  border-radius: 2rem;
  background: rgba(6, 214, 160, 0.05);
  animation: fx9-fade-in-up 0.8s ease-out 0.2s both;
}

.fx9-header-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--fx9-text-primary) 0%, var(--fx9-text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fx9-fade-in-up 0.8s ease-out 0.3s both;
}

.fx9-header-subtitle {
  font-size: 1.1rem;
  color: var(--fx9-text-secondary);
  margin-bottom: 0;
  animation: fx9-fade-in-up 0.8s ease-out 0.4s both;
}

/* ============================================
           PACKAGES CONTAINER
           ============================================ */
.fx9-packages-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================
           INDIVIDUAL PACKAGE ITEMS
           ============================================ */
.fx9-package-item {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 3rem;
  align-items: stretch;
  min-height: 380px;
  opacity: 0;
  animation: fx9-fade-in-up 0.8s ease-out forwards;
}

.fx9-package-item:nth-child(1) {
  animation-delay: 0.5s;
}

.fx9-package-item:nth-child(2) {
  animation-delay: 0.7s;
}

.fx9-package-item:nth-child(3) {
  animation-delay: 0.9s;
}

/* Alternating layout for visual rhythm */
.fx9-package-item:nth-child(odd) .fx9-pkg-image-box {
  order: -1;
}

/* ============================================
           PACKAGE IMAGE BOX
           ============================================ */
.fx9-pkg-image-box {
  position: relative;
  flex: 1;
  min-width: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--fx9-secondary);
  border: 1px solid var(--fx9-border);
  transition: var(--fx9-transition);
  cursor: pointer;
}

.fx9-pkg-image-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(6, 214, 160, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease-out;
  pointer-events: none;
  z-index: 1;
}

.fx9-pkg-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--fx9-secondary);
}

.fx9-pkg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1);
}

.fx9-pkg-image-box:hover .fx9-pkg-image {
  transform: scale(1.08) perspective(1000px) rotateY(-2deg);
}

.fx9-pkg-image-box:hover::before {
  opacity: 1;
}

.fx9-pkg-image-box:hover {
  border-color: var(--fx9-accent-gold);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

/* ============================================
           PACKAGE CONTENT BOX
           ============================================ */
.fx9-pkg-content-box {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  padding: 0;
}

.fx9-pkg-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.fx9-pkg-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--fx9-accent-gold);
  border: 1px solid var(--fx9-border-accent);
  transition: var(--fx9-transition-fast);
}

.fx9-package-item:nth-child(2) .fx9-pkg-badge {
  background: rgba(139, 92, 246, 0.1);
  color: var(--fx9-accent-purple);
  border-color: rgba(139, 92, 246, 0.2);
}

.fx9-package-item:nth-child(3) .fx9-pkg-badge {
  background: rgba(6, 214, 160, 0.1);
  color: var(--fx9-accent-teal);
  border-color: rgba(6, 214, 160, 0.2);
}

.fx9-pkg-name {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.fx9-pkg-description {
  font-size: 1rem;
  color: #535559;
  line-height: 1.6;
  margin-bottom: 2rem;
}


.fx9-btn-contact {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: var(--fx9-transition-fast);
  overflow: hidden;
  width: fit-content;
  background: #06d6a0;
  color: var(--fx9-primary);
  text-decoration: none;
}

.fx9-btn-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease-out;
}

.fx9-btn-contact::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease-out;
}

.fx9-btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(6, 214, 160, 0.25);
  color: white;
}

.fx9-btn-contact:hover::before {
  transform: translateX(100%);
}

.fx9-btn-contact:hover::after {
  opacity: 1;
}

.fx9-btn-contact:active {
  transform: translateY(0);
}

/* .fx9-package-item:nth-child(2) .fx9-btn-contact {
  background: var(--fx9-accent-purple);
}

.fx9-package-item:nth-child(2) .fx9-btn-contact:hover {
  background: var(--fx9-accent-teal);
}

.fx9-package-item:nth-child(3) .fx9-btn-contact {
  background: var(--fx9-accent-teal);
}

.fx9-package-item:nth-child(3) .fx9-btn-contact:hover {
  background: var(--fx9-accent-gold);
} */

/* ============================================
           ANIMATIONS
           ============================================ */
@keyframes fx9-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fx9-float-slow {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, -30px);
  }
}

/* ============================================
           SCROLL ANIMATIONS
           ============================================ */
.fx9-package-item {
  --fx9-scroll-offset: 0;
}



/* ============================================
           SCROLL REVEAL ANIMATION
           ============================================ */
@supports (animation-timeline: view()) {
  .fx9-package-item {
    animation: fx9-fade-in-up 0.8s ease-out;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
    animation-fill-mode: both;
  }

  .fx9-package-item:nth-child(1) {
    animation-delay: 0s;
  }

  .fx9-package-item:nth-child(2) {
    animation-delay: 0s;
  }

  .fx9-package-item:nth-child(3) {
    animation-delay: 0s;
  }
}

.fit9-error {
  color: #ff4d4d;
  font-size: 0.8rem;
  font-weight: 800;
  margin-top: 5px;
  display: block;
}


/* service.html  */

/* result.html  */

.r9-body-01 {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  /* background: linear-gradient(135deg, #000000, #001a0f, #00331f); */
  background: linear-gradient(135deg, #83c581, #495588, #070808);
  color: #fff;
}

/* ===== RESULT BOX ===== */
/* ===== RESULT BOX WRAPPER ===== */
.r9-result-box-02 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

/* ===== CARD STYLE ===== */
.r9-card {
  width: 100%;
  max-width: 600px;
  padding: 35px 25px;
  border-radius: 20px;

  background: rgb(8, 8, 8);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.1);

  box-shadow:
    0 0 25px rgba(0, 255, 136, 0.15),
    inset 0 0 10px rgba(255, 255, 255, 0.05);

  text-align: center;
  transition: 0.4s ease;
}

.r9-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow:
    0 0 40px rgba(0, 255, 136, 0.25),
    inset 0 0 15px rgba(255, 255, 255, 0.08);
}

/* ===== BMI MAIN NUMBER ===== */
.r9-bmi {
  font-size: 3.2rem;
  font-weight: 700;
  color: #00ff88;
  margin-bottom: 10px;
  text-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
}

/* ===== CATEGORY ===== */
.r9-category {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 10px;
}

.r9-category span {
  color: #fff;
  font-weight: 500;
}

/* ===== WHR ===== */
.r9-whr {
  font-size: 0.95rem;
  color: #bbb;
  margin-bottom: 15px;
}

.r9-whr span {
  color: #ffcc00;
  font-weight: 500;
}

/* ===== RECOMMENDATION ===== */
.r9-recommend {
  margin-top: 15px;
  font-size: 1.4rem;
  color: #00ff88;
  font-weight: 600;

  background: rgba(0, 255, 136, 0.08);
  padding: 12px;
  border-radius: 10px;

  box-shadow: 0 0 10px rgba(0, 255, 136, 0.15);
}

/* ===== OPTIONAL ENTRY ANIMATION ===== */
.r9-card {
  animation: r9FadeUp 0.6s ease;
}

@keyframes r9FadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== GRID ===== */
.r9-packages-grid-03 {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 40px 20px;
}

/* ===== CARD ===== */
.r9-card-04 {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(135deg, #05640d 0%, #1e3a5f 50%, #191d1a 100%);
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
  border: 2px solid rgba(255, 255, 255, 0.997);
}

/* HOVER */
.r9-card-04:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

.r-packages-100 {
  background: #f5f5dc4d;
}

.r-packages-100 h2 {
  font-size: 2rem;
  /* margin-top: 3rem; */
  text-align: center;
  padding: 5rem 0 0 0;
}

/* IMAGE */
.r9-img-wrap-05 {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.r9-img-wrap-05 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.r9-card-04:hover img {
  transform: scale(1.1);
}

/* OVERLAY */
.r9-img-wrap-05::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

/* CONTENT */
.r9-content-06 {
  padding: 20px;
}

.r9-title-07 {
  font-size: 1.3rem;
  color: #00ff88;
  margin-bottom: 5px;
}

.r9-meta-08 {
  font-size: 0.85rem;
  color: #faf8f8;
  margin-bottom: 10px;
}

/* FEATURES */
.r9-features-09 {
  padding-left: 15px;
  color: white;
}

.r9-features-09 li {
  font-size: 0.85rem;
  margin-bottom: 5px;
}

/* BUTTON */
.r9-btn-10 {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background: linear-gradient(45deg, #00ff88, #00cc66);
  color: #000;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.3s;
}

.r9-btn-10:hover {
  transform: scale(1.05);
}

/* BADGE */
.r9-badge-11 {
  position: absolute;
  top: 0;
  /* left: 15px; */
  background: #00ff5c;
  color: #080808;
  padding: 5px 12px;
  font-size: 0.7rem;
  border-radius: 20px;
  font-weight: bold;
  z-index: 1;
}

/* FEATURED */
.r9-featured-12 {
  border: 2px solid #00ff88;
}


/* result.html  */

/* privacy.html  */
/* ===== ROOT ===== */
.ppx9-root {
  font-family: 'Inter', sans-serif;
  background: white;
  color: #e5e7eb;
  min-height: 100vh;
  padding: 40px 20px;
}

/* ===== CONTAINER ===== */
.ppx9-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}

/* ===== SIDEBAR ===== */
.ppx9-sidebar {
  width: 260px;
  position: sticky;
  top: 40px;
  height: fit-content;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ppx9-sidebar h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #93c5fd;
}

.ppx9-sidebar a {
  display: block;
  font-size: 14px;
  color: #cbd5f5;
  text-decoration: none;
  margin-bottom: 10px;
  transition: 0.3s;
}

.ppx9-sidebar a:hover {
  color: #60a5fa;
}

/* ===== MAIN CONTENT ===== */
.ppx9-content-box {
  flex: 1;
  background: linear-gradient(135deg, #2c8744, #0c0c0c);
  ;
  border-radius: 18px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

/* ===== TITLE ===== */
.ppx9-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #f9fafb;
  text-align: center;
  margin-bottom: 4rem;
}

/* ===== CKEDITOR CONTENT STYLING ===== */
.ppx9-content-box h1,
.ppx9-content-box h2,
.ppx9-content-box h3 {
  color: white;
  margin-top: 30px;
  margin-bottom: 12px;
}

.ppx9-content-box h2 {
  font-size: 24px;
  border-left: 4px solid #3b82f6;
  padding-left: 10px;
}

.ppx9-content-box p {
  color: #d1d5db;
  line-height: 1.8;
  margin-bottom: 14px;
}

.ppx9-content-box ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.ppx9-content-box li {
  margin-bottom: 8px;
}

/* ===== LINKS ===== */
.ppx9-content-box a {
  color: #60a5fa;
  text-decoration: underline;
}


/* privacy.html  */