:root {
  --primary-color: #e91e63;
  --primary-dark: #c2185b;
  --primary-light: #f06292;
  --secondary-color: #ff9800;
  --accent-color: #17a2b8;
  --text-dark: #1a1a1a;
  --text-gray: #6c757d;
  --text-light: #ffffff;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #212529;
  --border-color: #e9ecef;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --gradient-primary: linear-gradient(135deg, #ff9800 0%, #e91e63 100%);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-image {
  height: 60px;
  width: auto;
  display: block;
  transition: var(--transition);
}

.logo a:hover .logo-image {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.logo-content {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  margin-top: -2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: var(--transition);
  font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
  background: rgba(23, 162, 184, 0.1);
}

/* Dropdown menu styles */
.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown > .nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-item-dropdown > .nav-link::after {
  content: '▼';
  font-size: 0.7rem;
  transition: transform 0.3s ease;
	position: absolute;
    right: 0;
    top: 13px;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-white);
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  padding-top: 0.75rem;
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

/* Add invisible padding to prevent hover gap */
.nav-item-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0.75rem;
  background: transparent;
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown.active .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li {
  margin: 0;
}

.nav-dropdown .nav-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-dropdown .nav-link:hover {
  background: rgba(23, 162, 184, 0.1);
  color: var(--primary-color);
}


.btn-primary-nav {
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 0.625rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.header-auth-btn {
  margin-left: 1.5rem;
  padding: 0.4rem 1.25rem;
  border-radius: 999px;
  border: 2px solid var(--primary-color);
  background: #ffffff;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}

.header-auth-btn:hover {
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.btn-primary-nav:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
  transition: var(--transition);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../public/banner-crop.PNG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-50px) rotate(180deg);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0a0a0a30;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 0;
}

.hero-location {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
}

.hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #fff;
}

.text-gradient {
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #fff;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-block;
  border: 2px solid transparent;
}

.btn-large {
  padding: 1.125rem 2.75rem;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-3px);
}

.hero-features {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
}

.feature-number {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.feature-text {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 500;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-arrow {
  width: 30px;
  height: 50px;
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  position: relative;
}

.scroll-arrow::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
  animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
  animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin:0 auto 2rem;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.welcome-section {
  background: var(--bg-white);
  padding: 5rem 0;
}

.welcome-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
  text-align: center;
}

.welcome-title-top {
  color: #f59e0b;
  display: block;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.welcome-title-bottom {
  background: linear-gradient(135deg, #db2777 0%, #e11d48 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  font-weight: 700;
}

.welcome-description {
  max-width: 1200px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-gray);
  text-align: center;
  padding: 0 2rem;
}

.welcome-video-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
}

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

.home-about-img {
  display: flex;
  gap: 2rem;
  margin: 3rem 0;
  align-items: flex-start;
}

.services {
  background: var(--bg-light);
}

/* .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-color);
    z-index: 1;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: #0000007b;
    z-index: -1;
}
.service-card:nth-child(1) {
 background: url('../public/s1.webp') no-repeat center center/cover;
}

.service-card:nth-child(2) {
 background: url('../public/stayaliive0824-5.PNG') no-repeat center center/cover;
}

.service-card:nth-child(3) {
 background: url('../public/stayaliive0824-63.jpg') no-repeat center center/cover;
}

.service-card:nth-child(4) {
  background: url('../public/premium_photo-1718674393856-760140722005.avif') no-repeat center center/cover;
}

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

.service-card.featured {
    border: 2px solid var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.service-description {
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-gray);
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 0.75rem;
} */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* Image */
.service-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Content */
.service-content {
  padding: 25px;
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.service-description {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

/* Link */
.service-link {
  font-size: 15px;
  font-weight: 600;
  color: #c2185b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #000;
}

/* Featured */
.service-card.featured {
  border: 2px solid #c2185b;
}

.featured-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #c2185b;
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 20px;
  z-index: 2;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.pricing-tab {
  padding: 0.875rem 2rem;
  border: 2px solid var(--border-color);
  background: var(--bg-white);
  border-radius: 50px;
  font-weight: 600;
  color: var(--text-gray);
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.pricing-tab:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.pricing-tab.active {
  background: var(--gradient-primary);
  color: var(--text-light);
  border-color: transparent;
}

.pricing-content {
  display: none;
}

.pricing-content.active {
  display: block;
}

.membership-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(23, 162, 184, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-top: 1.5rem;
  color: var(--primary-dark);
  font-size: 0.95rem;
}

.membership-note svg {
  flex-shrink: 0;
  color: var(--primary-color);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.pricing-card.featured,
.pricing-card.highlight {
  border-color: var(--primary-color);
  background: linear-gradient(
    to bottom,
    rgba(233, 30, 99, 0.05),
    var(--bg-white)
  );
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 0.375rem 1.25rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.pricing-price {
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  line-height: 1;
}

.price-period {
  font-size: 0.95rem;
  color: var(--text-gray);
  font-weight: 500;
}

.price-special {
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.price-per-hour {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 1rem;
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.75rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-gray);
  border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.2rem;
}

.protocols {
  background: var(--bg-light);
}

.protocols-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.protocol-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.protocol-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-color);
}

.protocol-header svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

.protocol-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.protocol-list {
  list-style: none;
}

.protocol-list li {
  padding: 0.875rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-gray);
  line-height: 1.6;
}

.protocol-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.5rem;
}

.about {
  /* Softer, light background for a smoother feel */
  background: #fbfafa;
  padding: 5rem 0 1rem;
}

.about-hero {
  background: transparent;
  padding: 0 0 0 0;
  text-align: center;
}

.about-hero .section-title {
  color: #000;
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.about-hero.about-hero-alt .section-title {
  color: #000 !important;
}

.about-intro {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}
.about-hero.about-hero-alt .about-intro {
  color: #333 !important;
}

.about-media-grid {
  display: flex;
  gap: 3rem;
  margin: 3rem 0;
  align-items: flex-start;
}

.about-media-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: 0.3s ease;
}

/* Image card */
.about-media-item:first-child {
  max-width: 320px;
  flex-shrink: 0;
}

/* ❌ REMOVE THIS (it was hiding video) */
/*
.about-media-item:nth-child(2) {
    display: none;
}
*/

.about-media-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

/* 🎥 Video responsive fix */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about-media-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.about-mission-cards {
  display: block;
  margin: 4rem 0;
}

.mission-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  border: none;
  transition: var(--transition);
	    min-height: 439px;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.about-hero.about-hero-alt .section-header {
    text-align: left;
}
.mission-card-icon {
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e91e63;
  margin-bottom: 1.25rem;
	display:none;
}

.mission-card-icon svg {
  width: 40px;
  height: 40px;
}

.mission-card h3 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
  line-height: 1.4;
}

.mission-card p {
  color: #4a5568;
  line-height: 1.7;
  font-size: 0.95rem;
}

.about-featured-image {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.featured-image {
  width: 100%;
  height: auto;
  display: block;
  max-height: 437px;
  object-fit: cover;
}
.img-2 .featured-image {
  max-height: 464px;
}

.featured-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  padding: 3rem;
  color: white;
}

.featured-image-overlay h3 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.about-feature {
  text-align: center;
  padding: 1.5rem;
  transition: var(--transition);
}

.about-feature:hover {
  transform: translateY(-3px);
}

.feature-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff9a56 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: white;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.feature-icon-large svg {
  width: 36px;
  height: 36px;
}

.about-feature h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.about-feature p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.9rem;
}

.testimonials {
  background: var(--bg-light);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.testimonial-stars {
  color: #ffc107;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.author-name {
  font-weight: 700;
  color: var(--text-dark);
}

.author-title {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.testimonial-prev,
.testimonial-next {
  background: var(--bg-white);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--primary-color);
  color: var(--text-light);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  background: var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary-color);
  width: 30px;
  border-radius: 6px;
}

.video-testimonials {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.video-testimonials-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../public/Untitled-2-2.jpg") no-repeat center center/cover;
  z-index: 0;
}

.video-testimonials-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.video-testimonials .container {
  position: relative;
  z-index: 1;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.video-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid #fff;
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.video-item:hover .video-play-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid white;
  transition: var(--transition);
}

.video-item:hover .play-button {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.3);
}

.video-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
  font-weight: 600;
  font-size: 1rem;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.video-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  aspect-ratio: 16 / 9;
}

.video-item iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-cta {
  text-align: center;
  padding-top: 2rem;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: var(--bg-white);
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-icon {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
overflow-y: auto;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.blog {
  background: var(--bg-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

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

.blog-image {
  height: 200px;
  background: linear-gradient(
    135deg,
    rgba(23, 162, 184, 0.2) 0%,
    rgba(32, 201, 151, 0.2) 100%
  );
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--bg-white);
  color: var(--primary-color);
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-content {
  padding: 2rem;
}

.blog-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-date {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.blog-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.blog-link:hover {
  color: var(--primary-dark);
}

.blog-cta {
  text-align: center;
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
}

.blog-cta a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.blog-cta a:hover {
  text-decoration: underline;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.event-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  gap: 1.5rem;
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.event-date {
  text-align: center;
  background: var(--gradient-primary);
  color: var(--text-light);
  border-radius: 15px;
  padding: 1rem;
  min-width: 80px;
  height: fit-content;
}

.event-month {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-day {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-content {
  flex: 1;
}

.event-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.event-description {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.event-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.event-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.event-time svg {
  color: var(--primary-color);
}

.event-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.event-link:hover {
  color: var(--primary-dark);
}

.book {
  background: var(--bg-light);
}

.book-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.book-info h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.book-info p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.book-steps {
  margin-bottom: 2rem;
}

.book-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.step-content p {
  color: var(--text-gray);
  margin: 0;
}

.book-contact-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-white);
  border-radius: 15px;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--border-color);
}

.contact-option:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.contact-option svg {
  color: var(--primary-color);
}

.contact-option strong {
  color: var(--text-dark);
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.contact-option span {
  color: var(--primary-color);
  font-weight: 600;
}

.book-form-container {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.book-form h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-description {
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  cursor: pointer;
}

.btn-full {
  width: 100%;
}

.form-note {
  text-align: center;
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.contact-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 1px solid var(--border-color);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(23, 162, 184, 0.1) 0%,
    rgba(32, 201, 151, 0.1) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.contact-card p {
  color: var(--text-gray);
  line-height: 1.7;
}

.contact-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: 0.85rem;
  font-style: italic;
}

.contact-map {
  grid-column: 1 / -1;
}

.map-placeholder {
  background: linear-gradient(
    135deg,
    rgba(23, 162, 184, 0.1) 0%,
    rgba(32, 201, 151, 0.1) 100%
  );
  border-radius: 20px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.map-placeholder p {
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 1rem;
}

.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.footer-logo-image {
  height: 80px;
  width: auto;
  display: block;
  transition: var(--transition);
}

.footer-logo-image:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.footer-logo .logo-text {
  color: var(--text-light);
  background: none;
  -webkit-text-fill-color: var(--text-light);
  font-size: 1.5rem;
}

.footer-logo .logo-tagline {
  color: rgba(255, 255, 255, 0.7);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-contact a {
  color: var(--primary-light);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-col h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.footer-hours {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-hours h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-hours p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.25rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.footer-disclaimer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--text-light);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 999;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-white);
    flex-direction: column;
    align-items: stretch;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: left 0.3s ease-out;
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .nav-link,
  .btn-primary-nav {
    text-align: center;
    padding: 1rem;
  }

  .about-media-grid,
  .about-mission-cards,
  .book-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-media-image {
    min-height: 300px;
  }

  .featured-image-overlay h3 {
    font-size: 1.5rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
	  .nav-link
  {
    text-align: left;
   
  }
	/* Mobile dropdown styles */
  .nav-item-dropdown {
    flex-direction: column;
    width: 100%;
  }

  .nav-item-dropdown > .nav-link {
    justify-content: space-between;
    width: 100%;
  }

  .nav-item-dropdown > .nav-link::after {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
  }

  .nav-item-dropdown.active > .nav-link::after {
    transform: rotate(180deg);
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(23, 162, 184, 0.05);
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    border-radius: 0;
  }

  .nav-item-dropdown.active .nav-dropdown {
    max-height: 500px;
    padding: 0.5rem 0;
  }

  .nav-dropdown .nav-link {
    padding: 0.75rem 2rem;
  }
  .logo-image {
    height: 45px;
  }

  .footer-logo-image {
    height: 60px;
  }

  .logo-text {
    font-size: 1.4rem;
  }

  .logo-tagline {
    font-size: 0.65rem;
  }

  section {
    padding: 3rem 0;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-features {
    gap: 2rem;
  }

  .services-grid,
  .pricing-grid,
  .protocols-grid,
  .blog-grid,
  .events-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-slider {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .event-card {
    flex-direction: column;
  }

  .book-form-container {
    padding: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-hero .section-title {
    color: #000;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .mission-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    line-height: 1.4;
  }

  .btn-large {
    padding: 1rem;
    font-size: 1.05rem;
  }

  .hero-background-service {
    height: 300px;
  }
  .hero-service {
    min-height: 300px;
  }
  .logo-text {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary,
  .btn-large {
    width: 100%;
  }

  .pricing-tabs {
    flex-direction: column;
  }

  .pricing-tab {
    width: 100%;
  }
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 100px;
  overflow: hidden;
}

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