* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #000000;
}

/* ================= NAVBAR ================= */
/* NAVBAR BASE */
.navbar {
    width: 100%;
    padding: 12px 16px;
    background: #000;
    backdrop-filter: blur(6px);
    position: fixed;
    top: 0;
    z-index: 999;
}

/* TOP ROW */
.nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

/* HAMBURGER ICON */
.hamburger {
    width: 26px;
    cursor: pointer;
    display: none;
}

.hamburger span {
    display: block;
    height: 2px;
    background: #ffb300;
    margin: 6px 0;
    transition: 0.3s ease;
}

/* NAV MENU */
#nav-menu {
    display: flex;
    gap: 28px;
    color: #ff7700;
    
}

/* NAV LINKS */
#nav-menu a {
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    color: #ff7700;
}

/* 🔥 MOBILE VIEW */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    #nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        margin-top: 10px;
    }

    #nav-menu.open {
        max-height: 300px;
    }
}


/* OFFSET FOR FIXED NAVBAR */
.hero,
.section,
.about-phizeeo,
#booking {
  scroll-margin-top: 100px;
}

/* ================= HERO ================= */
/* NAVBAR LOGO - CIRCLE */
.navbar {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}


 .hero {
    min-height: calc(100vh - 70px); /* navbar height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}



/* HERO LOGO CENTER */
.holo-logo {
        display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}


.holo-logo img {
    width: 160px;
    height: 160px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid #ffb300;
    box-shadow: 0 0 30px rgba(255,179,0,0.6);

    /* FLOAT EFFECT */
    animation: floatLogo 4s ease-in-out infinite;
    will-change: transform;
}




@media (max-width: 768px) {
    .holo-logo img {
        width: 130px;
        height: 130px;   /* ✅ REQUIRED */
    }
}

@media (max-width: 480px) {
    .holo-logo img {
        width: 110px;
        height: 110px;   /* ✅ REQUIRED */
    }
}


    .hero {
        padding-top: 40px;
    }




.typing {
  margin-top: 30px;
  font-size: 2rem;
  letter-spacing: 3px;
  color: orange;
}

.hero-sub {
  margin-top: 10px;
  opacity: 0.6;
  letter-spacing: 4px;
}

/* HERO MOBILE */
@media (max-width: 600px) {
  .typing {
    font-size: 1.4rem;
    letter-spacing: 2px;
  }

  .hero-sub {
    font-size: 13px;
    letter-spacing: 2px;
    color: #fff;
  }

  .holo-logo img {
    width: 110px;
  }
}

/* ================= SECTIONS ================= */
.section {
  padding: 120px 20px;
  text-align: center;
}

.section h2 {
  color: orange;
  margin-bottom: 20px;
}

/* ================= CONNECT CARDS ================= */
.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.glass {
  width: 200px;
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  background: rgba(0, 0, 0, 0.995);
  text-decoration: none;
  color: rgb(255, 255, 255);
  transition: 0.3s;
  text-align: center;
  border-color: #ffb300;
}

.glass i {
  font-size: 2.3rem;
  color: orange;
  margin-bottom: 12px;
}

.glass:hover {
  box-shadow: 0 0 30px rgb(126, 120, 107);
}

/* CARDS MOBILE */
@media (max-width: 600px) {
  .glass {
    width: 100%;
    max-width: 280px;
  }
}

/* ================= ABOUT PHIZEEO ================= */
.about-phizeeo {
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.08), transparent 60%);
  padding: 120px 20px;
}

.about-container {
  max-width: 900px;
  margin: auto;
  padding: 50px;
  background: rgb(6, 6, 6);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  border: 1px solid rgb(0, 0, 0);
  box-shadow: 0 30px 60px rgb(254, 132, 1);
}

.about-title {
  font-size: 42px;
  margin-bottom: 30px;
  text-align: center;
  background: linear-gradient(90deg, #ff8000, #ff4d00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-container p {
  font-size: 17px;
  line-height: 1.9;
  color: #ffffff;
  margin-bottom: 22px;
}

.about-container span,
.about-container strong {
  color: #ff8000;
}

/* ABOUT MOBILE */
@media (max-width: 768px) {
  .about-container {
    padding: 30px;
  }

  .about-title {
    font-size: 32px;
  }

  .about-container p {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* ================= BOOKING FORM ================= */
form {
  max-width: 420px;
  margin: 40px auto;
  padding: 30px;
  background: rgb(0, 0, 0);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgb(254, 94, 2);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form input,
form textarea {
  padding: 14px 16px;
  font-size: 15px;
  color: #ffffff;
  background: rgba(5, 5, 5, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  outline: none;
}

form textarea {
  resize: none;
  min-height: 120px;
}

form button {
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  background: linear-gradient(135deg, #ff7700, #ff0000);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,140,0,0.4);
}

/* FORM MOBILE */
@media (max-width: 600px) {
  form {
    width: 100%;
    padding: 22px;
  }

  form input,
  form textarea,
  form button {
    font-size: 14px;
  }
}

/* ================= REVEAL ================= */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 1s;
}

.reveal.active {
  opacity: 1;
  transform: none;
}

/* ================= EFFECTS ================= */
.cursor-glow {
  position: fixed;
  width: 20px;
  height: 20px;
  background: orange;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
  z-index: 999;
}

.scanlines {
  position: fixed;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.03) 1px,
    transparent 2px,
    transparent 4px
  );
  pointer-events: none;
  z-index: 2;
}

.noise {
  position: fixed;
  width: 100%;
  height: 100%;
  background: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}

/* ================= FOOTER ================= */
footer {
  padding: 30px;
  text-align: center;
  opacity: 0.4;
}
/* REVIEWS SLIDER */
.reviews {
    text-align: center;
    padding: 80px 20px;
}

.reviews-title {
    color: #ffb300;
    margin-bottom: 40px;
}

.review-slider {
    max-width: 700px;
    margin: auto;
    position: relative;
}

.review-card {
    display: none;
    background: rgba(5, 5, 5, 0.65);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,179,0,0.3);
    box-shadow: 0 0 25px rgba(255, 115, 0, 0.15);
    color: #e8e7e7;
}

.review-card.active {
    display: block;
    animation: fade 0.6s ease;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.review-card h3 {
    margin: 10px 0 6px;
}

.review-stars i {
    color: #ffb300;
}

.review-source {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    opacity: 0.85;
}

.review-source i {
    color: #34a853;
}

.review-dots {
    margin-top: 20px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    display: inline-block;
    border-radius: 50%;
    background: #555;
    cursor: pointer;
}

.dot.active {
    background: #ffb300;
}

@keyframes fade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* ================= FLOATING LOGO EFFECT ================= */
@keyframes floatLogo {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0);
  }
}
.services {
  background: radial-gradient(circle at top, rgb(0, 0, 0), transparent 60%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.service-card {
  background: rgba(8, 8, 8, 0.964);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 30px;
  border: 1px solid rgb(254, 111, 1);
  transition: 0.3s;
  color: #fff;
}

.service-card i {
  font-size: 2.4rem;
  color: #ffb300;
  margin-bottom: 14px;
}

.service-card h3 {
  margin-bottom: 10px;
  color: #ffb300;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(249, 133, 0, 0.25);
}
.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 14px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  z-index: 999;
}
 .therapist-grid {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
    }

    .therapist-card {
  background: rgba(2, 2, 2, 0.964);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 30px;
  border: 1px solid rgb(255, 94, 0);
  transition: 0.3s;
  color: #ffffff;
    }
    .therapist-card:hover {
      transform: translateY(-5px);
    }

    .therapist-card img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 12px;
    }

    .therapist-card h3 {
      margin: 10px 0 5px;
    }

    .short {
      color: #e8e7e7;
      font-size: 14px;
    }

    .view-btn {
      margin-top: 12px;
      padding: 10px 18px;
      background: #1e88e5;
      color: #000000;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 14px;
    }

    .therapist-details {
      display: none;
      margin-top: 15px;
      font-size: 14px;
      color: #444;
      text-align: left;
    }

    .therapist-card.active .therapist-details {
      display: block;
    }
    /* ===== LOGO INTRO ANIMATION (DO NOT AFFECT OTHER ELEMENTS) ===== */
.holo-logo img {
  animation:
    logoIntro 1.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards,
    logoGlow 1.8s ease-out forwards 0.8s,
    floatLogo 4s ease-in-out infinite 2.2s;
  transform: scale(0);
  opacity: 0;
}

/* Zoom + Pop */
@keyframes logoIntro {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  70% {
    transform: scale(1.12);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

/* Glow build-up */
@keyframes logoGlow {
  from {
    box-shadow: 0 0 0 rgba(255,179,0,0);
  }
  to {
    box-shadow: 0 0 35px rgba(255,179,0,0.65);
  }
}
/* ===== VIDEO-LIKE SPLASH INTRO ===== */
/* ===== CINEMATIC SPLASH (NON-VIDEO) ===== */
#splash {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #111, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  overflow: hidden;
  animation: splashExit 1s ease forwards;
  animation-delay: 4.2s;
}

/* LOGO */
#splash img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0) rotate(-12deg);
  z-index: 3;
  animation:
    logoReveal 1.8s cubic-bezier(0.25,0.8,0.25,1) forwards,
    logoPulse 1.6s ease-in-out infinite 2.2s;
}

/* ENERGY RING */
.energy-ring {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255,179,0,0.6);
  border-radius: 50%;
  opacity: 0;
  animation: ringExpand 2.2s ease-out forwards 0.4s;
}

/* LIGHT SWEEP */
.light-sweep {
  position: absolute;
  width: 120%;
  height: 120%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255,180,0,0.15),
    transparent 60%
  );
  opacity: 0;
  animation: sweep 1.2s ease-out forwards 2.4s;
}

/* ===== KEYFRAMES ===== */

@keyframes logoReveal {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-12deg);
  }
  60% {
    opacity: 1;
    transform: scale(1.2) rotate(3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

@keyframes logoPulse {
  0% { box-shadow: 0 0 25px rgba(255,179,0,0.4); }
  50% { box-shadow: 0 0 45px rgba(255,179,0,0.8); }
  100% { box-shadow: 0 0 25px rgba(255,179,0,0.4); }
}

@keyframes ringExpand {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(9);
  }
}

@keyframes sweep {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(100%);
  }
}

@keyframes splashExit {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {
  #splash img {
    width: 140px;
    height: 140px;
  }

  .energy-ring {
    border-width: 1.5px;
  }
}

@media (max-width: 480px) {
  #splash img {
    width: 120px;
    height: 120px;
  }
}
/* ENSURE HERO LOGO IS VISIBLE AFTER SPLASH */
.holo-logo img {
  opacity: 1 !important;
  transform: scale(1) !important;
  visibility: visible !important;
}

