@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
:root{
    --primary-color:black;
    --secondary-color: rgb(245, 162, 74);
    --tersary-color:rgb(48, 46, 46);
    --para-color: rgb(157, 153, 153);
    --text-color: white;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}
/* TOPBAR */
.topbar {
  background: var(--primary-color);
  color: var(--text-color);
  padding: 20px 0;
  position: relative;
  z-index: 20;
}
.topbar-left img {
  width: 180px;
  height: auto;
}
.topbar-center {
  display: flex;
  align-items: center;
  gap: 40px;
}
.info-box {
  display: flex;
  align-items: center;
  gap: 13px;
}
.icon-circle {
  width: 45px;
  height: 45px;
  border: 1px solid var(--para-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.icon-circle:hover{
  transform: scale(1.2);
}
.icon-circle i {
  font-size: 1.6rem;
}
.info-box small {
  display: block;
  color: var(--para-color);
  font-size: 1rem;
  line-height: 2;
}
.info-box small:hover{
  color: var(--secondary-color);
}
.info-box p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
}
.info-box p:hover{
  color: var(--secondary-color);
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.appointment-btn {
  border: 1px solid var(--text-color);
  padding: 6px 18px;
  border-radius: 30px;
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 500;
  transition: 0.3s;
}
.appointment-btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--primary-color);
}
.topbar-right img {
  height: 50px;
  width: 50px;
  object-fit: cover;
  border: 1px solid var(--text-color);
  border-radius: 50%;
}
@media (max-width: 767px) {

  /* FORCE full width */
  .topbar .container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 0 15px !important;
  }

  /* LEFT - HIDE LOGO */
  .topbar-left {
    display: none !important;
  }

  /* CENTER - HIDE */
  .topbar-center {
    display: none !important;
  }

  .info-box {
    display: none !important;
  }

  /* RIGHT SECTION - VISIBLE, ROW LAYOUT */
  .topbar-right {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 15px;
    width: 100%;
  }

  /* IMAGE ON LEFT SIDE */
  .topbar-right img {
    width: 40px;
    height: 40px;
    order: 1;
  }

  /* APPOINTMENT BUTTON ON RIGHT SIDE */
  .appointment-btn {
    font-size: 0.85rem;
    padding: 6px 14px;
    order: 2;
  }
}
/* ================= NAVBAR ================= */
.navbar-custom {
  position: absolute;
  top: 110px; 
  left: 0;
  width: 100%;
  z-index: 30;
}

/* NAV CONTAINER */
.navbar-custom .container {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 15px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 50px; 
  list-style: none;
  padding: 0;
  margin: 0;
}

/* LINKS */
.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
  position: relative;
}

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

/* ACTIVE LINK */
.nav-links a.active {
  color: var(--secondary-color);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--secondary-color);
  left: 0;
  bottom: -5px;
}

/* ================= DROPDOWN ================= */
.dropdown {
  position: relative;
}

/* Hide by default — same as mega menu */
.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translate(-50%, 10px);

  background: var(--primary-color);
  min-width: 220px;
  padding: 15px 0;

  border-top: 2px solid var(--secondary-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);

  /* ✅ SAME PATTERN AS MEGA MENU */
  opacity: 0;
  visibility: hidden;
  display: block !important; /* override Bootstrap's display:none */
  transition: all 0.3s ease;
}

/* ✅ SHOW ON HOVER — pure CSS, zero JS */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
}

/* Dropdown items */
.dropdown-menu .dropdown-item {
  color: #ccc;
  padding: 10px 25px;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
  background: transparent;
}

.dropdown-menu .dropdown-item:hover {
  color: var(--secondary-color);
  padding-left: 30px;
  background: transparent;
}

/* HOVER BRIDGE (prevents gap issue) */
.mega-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 25px;
}

/* MAIN DROPDOWN */
.mega-menu {
  position: absolute;
  top: 110%; /* little gap for smooth hover */
  left: 50%;
  transform: translate(-50%, 10px);

  width: 90%;
  max-width: 1100px;

  background: #000;
  padding: 30px 40px;

  border-top: 2px solid #f5a623;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);

  /* IMPORTANT: NO display:none */
  opacity: 0;
  visibility: hidden;

  transition: all 0.3s ease;
}

/* SHOW DROPDOWN */
@media (min-width: 992px) {
  .mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
}

/* TITLE */
.mega-inner h5 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 20px;
}

/* GRID */
.mega-columns {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* LIST */
.mega-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* LINKS */
.mega-columns li a {
  display: block;
  color: #ccc;
  padding: 10px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
}

.mega-columns li a:hover {
  color: #f5a623;
  padding-left: 5px;
}
/* Mobile mega menu open state */
@media (max-width: 992px) {
  .mega-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    width: 100%;
    display: none;
    padding: 15px 20px;
  }

  .mega-menu.show,
  .mega-menu.mobile-open {
    display: block;
  }

  .mega-columns {
    flex-direction: column;
    gap: 0;
  }

  .mega-columns ul {
    margin-bottom: 5px;
  }

  .mega-columns li a {
    padding: 8px 0;
    font-size: 15px;
  }

  /* Services dropdown items — always clickable */
  .dropdown-menu.show {
    display: block !important;
  }
}
/* ================= MOBILE NAVBAR ================= */
@media (max-width: 992px) {

  /* Navbar wrapper */
  .navbar-custom {
    position: static;
    background: transparent;
    padding: 0;
  }

  /* Hide the collapse by default — we control it ourselves */
  .navbar-collapse {
    display: none !important;
  }

  /* ── MENU TRIGGER BAR ── */
  .mobile-menu-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    background: rgba(0,0,0,0.6);
    border: none;
    color: #fff;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    cursor: pointer;
  }

  .mobile-menu-trigger span {
    font-size: 20px;
  }

  /* ── FULL SCREEN PANEL ── */
  .mobile-nav-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
  }

  .mobile-nav-panel.open {
    transform: translateX(0);
  }

  /* ── PANEL HEADER ── */
  .panel-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    min-height: 60px;
  }

  .panel-header .back-btn {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: #333;
    cursor: pointer;
    margin-right: auto;
    padding: 0 10px 0 0;
  }

  .panel-header .back-btn.visible {
    display: block;
  }

  .panel-header .close-btn {
    background: none;
    border: none;
    font-size: 22px;
    color: #333;
    cursor: pointer;
    line-height: 1;
  }

  /* ── SUBMENU TITLE ── */
  .panel-submenu-title {
    display: none;
    padding: 16px 24px 0;
    font-size: 17px;
    font-weight: 600;
    color: #222;
  }

  .panel-submenu-title.visible {
    display: block;
  }

  /* ── NAV ITEMS ── */
  .mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-nav-list li a,
  .mobile-nav-list li .mobile-nav-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #222;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    width: 100%;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    letter-spacing: 0.5px;
  }

  .mobile-nav-list li a.active,
  .mobile-nav-list li a:hover {
    color: var(--secondary-color);
  }

  .mobile-nav-list li .mobile-nav-parent:hover {
    color: var(--secondary-color);
  }

  .mobile-nav-list li .arrow {
    font-size: 14px;
    color: #999;
  }

  /* ── SUBMENU PANEL (slides in) ── */
  .mobile-submenu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }

  .mobile-submenu.open {
    transform: translateX(0);
  }

  .mobile-submenu .mobile-nav-list {
    flex: 1;
  }

  /* Hide Bootstrap toggler — we use our own */
  .navbar-toggler {
    display: none !important;
  }
}

/* Desktop — hide mobile elements */
@media (min-width: 993px) {
  .mobile-menu-trigger,
  .mobile-nav-panel {
    display: none !important;
  }
}
/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
}

/* VIDEO BACKGROUND */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* HERO IMAGE (CENTER 70%) */
.hero-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 70%;
  max-width: 1200px;
  min-width: 300px;

  height: 100%;
  background: url('/images/hero.png') center/cover no-repeat;
  z-index: 1;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* CONTENT */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  text-align: center;
  z-index: 3;
}

/* TEXT */
.main-heading {
  color: var(--text-color);
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.3;
  text-shadow: 0 0 5px var(--secondary-color);
}

.sub-heading {
  color: var(--secondary-color);
  font-size: clamp(0.8rem, 2.5vw, 1.3rem);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* BUTTON */
.hero-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  border: 1px solid var(--text-color);
  border-radius: 25px;
  color: var(--text-color);
  text-decoration: none;
  transition: 0.3s;
}

.hero-btn:hover {
  background: var(--secondary-color);
  color: black;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  .hero-image {
    width: 85%;
  }

  .hero-content {
    max-width: 600px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .hero-image {
    width: 100%;
    left: 0;
    transform: none;
    opacity: 0.5;
  }

  .hero-content {
    top: 55%;
  }

  .main-heading {
    font-size: 1.5rem;
  }

  .sub-heading {
    font-size: 0.85rem;
    letter-spacing: 1px;
  }

  .hero-btn {
    padding: 8px 18px;
    font-size: 0.8rem;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

  .hero-content {
    top: 58%;
  }

  .main-heading {
    font-size: 1.3rem;
  }

  .hero-btn {
    padding: 7px 16px;
  }
}
/* 🌌 PURPOSE SECTION */
.purpose {
  background: var(--primary-color);
  padding: 60px 0;
  overflow: hidden;
}

/* CONTAINER */
.purpose .container-fluid {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ROW */
.purpose .row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  overflow: visible;
}

.orbit {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}

/* ALWAYS center */
.orbit img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* KEEP YOUR SIZE */
.center-img {
  width: 180%;
  max-width: 180%;
  z-index: 2;
}

.moon-layer {
  width: 90%;
  z-index: 3;
  animation: rotateMoon 18s linear infinite;
}

.star-layer {
  width: 95%;
  z-index: 1;
  animation: rotateStar 25s linear infinite;
}

@keyframes rotateMoon {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotateStar {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

.text-content {
  max-width: 100%;
  color: var(--para-color);
  text-align: center;
}

.section-title {
  font-size: 36px;
  text-shadow: 0 0 5px var(--secondary-color);
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 25px;
  text-align: center;
}

.astro-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.astro-list li {
  position: relative;
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 0.95rem;
  color: var(--para-color);
  padding-left: 20px;
}

.astro-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--text-color);
  font-size: 16px;
}

.astro-list strong {
  color: var(--text-color);
  font-weight: 600;
}

@media (min-width: 992px) {
  .purpose {
    padding: 100px 0;
  }
  
  .orbit {
    max-width: 700px;
    transform: translateX(-50px);
  }
  
  .center-img {
    width: 190%;
  }
  
  .text-content {
    max-width: 520px;
    text-align: left;
  }
  
  .section-title {
    font-size: 50px;
    text-align: left;
    margin-bottom: 30px;
  }
  
  .astro-list {
    margin: 0;
  }
  
  .astro-list li {
    font-size: 1.2rem;
    margin-bottom: 18px;
    line-height: 1.8;
  }
  
  .purpose .row {
    justify-content: space-between;
    gap: 40px;
  }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .orbit {
    max-width: 450px;
  }
  
  .center-img {
    width: 170%;
  }
  
  .section-title {
    font-size: 38px;
  }
  
  .astro-list li {
    font-size: 1rem;
  }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
  .purpose {
    padding: 50px 0;
  }
  
  .purpose .container-fluid {
    padding: 0 15px;
  }
  
  .orbit {
    max-width: 320px;
    margin-bottom: 20px;
  }
  
  .center-img {
    width: 160%;
  }
  
  .moon-layer {
    width: 88%;
  }
  
  .star-layer {
    width: 92%;
  }
  
  .section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .astro-list li {
    font-size: 0.9rem;
    margin-bottom: 14px;
    line-height: 1.5;
    padding-left: 18px;
  }
  
  .astro-list li::before {
    font-size: 14px;
  }
  
  .purpose .row {
    gap: 25px;
  }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
  .purpose {
    padding: 40px 0;
  }
  
  .orbit {
    max-width: 260px;
  }
  
  .center-img {
    width: 150%;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .astro-list li {
    font-size: 0.85rem;
    margin-bottom: 12px;
    padding-left: 16px;
  }
  
  .astro-list li::before {
    font-size: 12px;
  }
}

/* Very Small Mobile (up to 360px) */
@media (max-width: 360px) {
  .orbit {
    max-width: 220px;
  }
  
  .center-img {
    width: 140%;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .astro-list li {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }
}

/* Animation performance for mobile */
@media (max-width: 768px) {
  .moon-layer,
  .star-layer {
    will-change: transform;
  }
}

/* Reduce motion if user prefers */
@media (prefers-reduced-motion: reduce) {
  .moon-layer,
  .star-layer {
    animation: none;
  }
}
/* Zodiac Sign */
.zodiac-section {
  background:var(--primary-color);
  padding: 120px 0;
  color:var(--text-color);
}
.zodiac-section .container {
  text-align: left;
  width: 100%;
  padding: 0 15px;
}
.zodiac-section h5 {
  color: var(--secondary-color);
  font-size: 1.6rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.zodiac-section h2 {
  font-size: 3.5rem;
  text-shadow: 0 0 4px var(--secondary-color);
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.zodiac-section p {
  color: var(--para-color);
  max-width: 650px;
  line-height: 1.7;
  margin-bottom: 80px;
}
.zodiac-section .row {
  justify-content: flex-start;
  row-gap: 70px;
  margin: 0;
}
.zodiac-item {
  text-align: center;
}
.zodiac-box {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}
.zodiac-bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.4s ease;
}
.zodiac-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  transform: translate(-50%, -50%);
  transition: 0.4s ease;
}
.zodiac-item h6 {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 500;
}
.zodiac-item:hover .zodiac-bg {
  filter: brightness(1.9) sepia(100%) saturate(1000%) hue-rotate(-10deg);
  opacity: 1;
  transform: scale(1.1);
}
.zodiac-item:hover .zodiac-icon {
  transform: translate(-50%, -50%) scale(1.2);
}

@media (max-width: 768px) {
  .zodiac-section {
    padding: 60px 0;
  }
  .zodiac-section h2 {
    font-size: 2rem;
  }
  .zodiac-section h5 {
    font-size: 1.2rem;
  }
  .zodiac-section p {
    margin-bottom: 40px;
  }
  .zodiac-section .row {
    row-gap: 40px;
  }
  .zodiac-box {
    width: 140px;
    height: 140px;
  }
  .zodiac-icon {
    width: 35px;
  }
}
/* ===== SECTION ===== */
.services-section {
  background: #000;
  padding: 120px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* ===== ROTATING CHAKRA ===== */
.services-section::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  background: url('/images/chakra.webp') center/contain no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: rotateChakra 60s linear infinite;
}

@keyframes rotateChakra {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.services-section .details {
  position: relative;
  z-index: 2;
}

/* ===== TITLE ===== */
.service-title {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-desc {
  color: var(--para-color);
  max-width: 600px;
  margin: 0 auto 70px;
  line-height: 1.6;
}

/* ===== CARD (UNCHANGED DESIGN) ===== */
.service-card {
  width: 100%;
  max-width:380px;
  min-height: 400px;
  padding: 35px 20px 25px;
  border-radius: 7px;
  text-align: center;
  background: var(--text-color);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  margin:0 auto;
}

/* CLOUD EFFECT */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 220%;
  height: 100%;
  background: url('/images/cloud.png') repeat-x;
  background-size: cover;
  opacity: 0.35;
  animation: cloudMove 18s linear infinite;
}

@keyframes cloudMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* ICON */
.service-icon {
  width: 100%;
  max-width: 200px;
  margin-bottom: 15px;
}

/* TEXT */
.service-card h5 {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 16px;
  color: var(--tersary-color);
  line-height: 1.5;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  background: rgba(255, 255, 255, 0.12);
}
.service-card:hover p{
  color: var(--text-color);
}
.service-card:hover h5{
  color:var(--secondary-color)
}
.service-card:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  filter: brightness(0) invert(1);
  box-shadow: 0 0 25px rgba(245, 162, 74, 0.35);
}

/* ===== SWIPER ===== */
.swiper {
  padding: 40px 0 60px;
  overflow:visible;
}
            
/* SLIDES */
.swiper-slide {
  display: flex;
  justify-content:center;
  transition: all 0.4s ease;
  opacity: 1;
}
/* ALIGNMENT */
.swiper-wrapper {
  align-items: center;
}

/* ===== PAGINATION ===== */
.swiper-pagination {
  bottom: 20px !important;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: transparent;
  border: 1.5px solid #fff;
  opacity: 1;
  margin: 0 5px !important;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.2);
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {

  .services-section {
    padding: 80px 0;
  }

  .service-title {
    font-size: 32px;
  }

  .service-desc {
    margin-bottom: 40px;
  }

  .swiper {
    padding: 60px 0 80px;
  }

  .swiper-slide {
    opacity: 1;
    transform: scale(1);
  }

  .service-card {
    width: 90%;
  }

  .service-icon {
    max-width: 150px;
  }
}
/* counter */
/* ================= SECTION ================= */
.stats-section {
  background: var(--primary-color);
  padding: 80px 0;
  color: var(--text-color);
  overflow: hidden;
}
/* ================= ROW ================= */
.stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 150px;
  flex-wrap: nowrap; 
  width: max-content;
  margin: auto;
  position: relative;
}

/* ================= BOX ================= */
.stat-box {
  text-align: center;
  max-width: 150px;
  position: relative;
}

/* 🔥 VERTICAL DIVIDER LINE */
.stat-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -130px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 140px;
  background: rgba(201, 199, 199, 0.274);
}

/* ================= CIRCLE ================= */
.circle {
  position: relative;
  width: 250px;
  height: 250px;
  margin: auto;
}

/* ================= IMAGE ================= */
.moon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(100%);
  transition: 0.4s ease;
}
/* ================= NUMBER ================= */
.circle h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 35px;
  font-weight: bold;
  color: #fff;
  z-index: 2;
}

/* ================= TEXT ================= */
.stat-box p {
  margin-top: 12px;
  color: #ccc;
  font-size: 13px;
}

/* ================= HOVER ================= */
.stat-box:hover .moon {
  filter: brightness(1.1) sepia(100%) saturate(900%) hue-rotate(-10deg);
  cursor: pointer;
}

.stat-box:hover h3 {
  color:var(--text-color);
}

.stat-box:hover p {
  color: #fff;
}

/* ================= ORBITS ================= */
.orb {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Rings */
.orb1 {
  width: 200px;
  height: 200px;
  border: 3px dashed rgba(255,255,255,0.15);
  animation: spin 12s linear infinite;
}

.orb2 {
  width: 230px;
  height: 230px;
  border: 3px dashed rgba(255,255,255,0.1);
  animation: spinReverse 18s linear infinite;
}

.orb3 {
  width: 260px;
  height: 260px;
  border: 2px dashed rgba(255,255,255,0.08);
  animation: spin 25s linear infinite;
}

/* Animation */
@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spinReverse {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}

/* Glow dot */
.orb::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #f5a24a;
  border-radius: 50%;
  box-shadow: 0 0 8px #f5a24a;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  .stats-row {
    flex-wrap: wrap; /* allow wrap on small screens */
    gap: 40px;
    width: 100%;
  }

  .stat-box::after {
    display: none; /* remove divider on mobile */
  }
}

@media (max-width: 768px) {
  .circle {
    width: 110px;
    height: 110px;
  }

  .orb1 { width: 130px; height: 130px; }
  .orb2 { width: 150px; height: 150px; }
  .orb3 { width: 170px; height: 170px; }

  .circle h3 {
    font-size: 16px;
  }

  .stat-box p {
    font-size: 12px;
  }
}
/* testimonial */
.testimonial-section {
  background: var(--primary-color);
  color: var(--text-color);
  padding: 100px 0;
  position: relative;
}
.tag {
  color: var(--secondary-color);
  letter-spacing: 2px;
  font-size: 1.5rem;
}
.title {
  font-size: 3.5rem;
  text-shadow: 0 0 5px var(--secondary-color);
  font-weight: 700;
  margin: 10px 0;
}
.desc {
  font-size: 1.5rem;
  max-width: 700px;
  margin: auto;
  color: var(--para-color);
}
.testimonial-box {
  padding: 15px;
  transition: 0.3s;
}
.testimonial-box h4 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.testimonial-box p {
  color:var(--para-color);
  font-size: 1.5rem;
}
.testimonial-box span {
  display: block;
  margin-top: 1.5rem;
  color:var(--text-color);
}
.testimonial-box:hover {
  transform: translateY(-8px);
}

/* ARROWS COLOR */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  cursor: var(--text-color);
}
/* ============================= */
/* ✅ TABLET (≤ 992px) */
/* ============================= */
@media (max-width: 992px) {
  .testimonial-section {
    padding: 70px 20px;
  }

  .title {
    font-size: 2.5rem;
  }

  .desc {
    font-size: 1.2rem;
  }

  .testimonial-box h4 {
    font-size: 1.4rem;
  }

  .testimonial-box p {
    font-size: 1.2rem;
  }
}
/* ============================= */
/* 🔥 FIX: 1 CARD ON MOBILE */
/* ============================= */
@media (max-width: 767px) {
  .carousel-item .row > div {
    display: none !important;
  }

  .carousel-item .row > div:first-child {
    display: block !important;
  }
}
/* ============================= */
/* ✅ SMALL MOBILE (≤ 576px) */
/* ============================= */
@media (max-width: 576px) {
  .title {
    font-size: 1.6rem;
  }

  .desc {
    font-size: 0.9rem;
  }

  .testimonial-box {
    padding: 12px;
  }

  .testimonial-box p {
    font-size: 0.95rem;
  }
}
/* get-in-touch */
.contact-section {
  background:var(--primary-color);
  color:var(--text-color);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.container {
  width: 90%;
  margin: auto;
}
.contact-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.moon-box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.moon-box img {
  width: 350px;
  opacity: 0.9;
}
.contact-content {
  width: 100%;
  text-align: center;
}

.contact-content h2 {
  font-size: 48px;
  margin-bottom: 40px;
  font-weight: 600;
}
.contact-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  cursor: pointer;
}
/* ================= FORM FIELDS ================= */
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--text-color);
  padding: 10px;
  color: #fff;
  width: 250px;
  outline: none;
  font-family: inherit;
}

/* TEXTAREA FIX */
.contact-form textarea {
  color: var(--text-color);
  height: 50px;
  resize: none;
}

/* focus effect (optional pro look) */
.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom: 1px solid #ff914d;
}
.contact-form input::placeholder {
  color: var(--text-color);
}
.contact-form button {
  padding: 12px 30px;
  border-radius: 30px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #ff914d;
  border-color: #ff914d;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  .contact-content h2 {
    font-size: 28px;
    margin-bottom: 25px;
  }
  .contact-form {
    position: relative;
    z-index: 1;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  .contact-form input {
    width: 90%;
    max-width: 280px;
  }
  .moon-box {
    display: block;
    position: absolute;
    top: 5%;          /* move to top */
    left: 2px;       /* align right */
    transform: none;
    opacity: 0.6;      /* subtle background effect */
    z-index: 0;
  }

  .moon-box img {
    width: 150px;      /* smaller for mobile */
  }
}
/* ================= FOOTER ================= */
.footer {
  height: auto;
  min-height: 60vh;
  background: var(--primary-color);
  color: var(--text-color);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* background overlay */
.footer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('/images/footer_bg.png') center/cover no-repeat;
  opacity: 0.2;
  top: 0;
  left: 0;
  z-index: 0;
}

/* container */
.holder {
  width: 90%;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* layout */
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

/* equal width columns */
.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 250px;
}

/* LEFT */
.footer-left p {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

/* BUTTON */
.btn-outline {
  border: 1px solid var(--para-color);
  padding: 10px 20px;
  border-radius: 25px;
  color: var(--text-color);
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

/* CENTER */
.footer-center {
  text-align: center;
}

.footer-center img {
  width: 300px;
  margin-bottom: 35px;
}

.footer-center p {
  color: var(--para-color);
  margin-bottom: 25px;
}

.footer-center span {
  font-size: 14px;
  color: #666;
}

/* RIGHT */
.footer-right {
  text-align: center;
}

.footer-right p {
  margin-bottom: 20px;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icons a {
  color: #fff;
  margin-left: 15px;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:first-child {
  margin-left: 0;
}

.social-icons a:hover {
  color: #ff914d;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .footer {
    padding: 50px 15px;
    text-align: center;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    width: 100%;
    min-width: auto;
  }

  .footer-left p {
    font-size: 1rem;
  }

  .footer-center img {
    width: 160px;
    margin-bottom: 20px;
  }

  .footer-center p {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .footer-right p {
    font-size: 1rem;
  }

  .social-icons {
    gap: 15px;
  }

  .social-icons a {
    margin-left: 0;
    font-size: 16px;
  }

  .btn-outline {
    font-size: 0.9rem;
    padding: 8px 18px;
  }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {

  .footer {
    padding: 40px 10px;
  }

  .footer-center img {
    width: 140px;
  }

  .footer-center p {
    font-size: 0.85rem;
  }

  .footer-left p,
  .footer-right p {
    font-size: 0.9rem;
  }
}

/* PREVENT HORIZONTAL SCROLL BUG */
body {
  overflow-x: hidden;
}
/*topbar*/
@media (max-width: 768px) {
  .topbar {
    padding: 20px 0;
    text-align: center;
  }
  .topbar .container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  .topbar-center .icon-circle{
    visibility: hidden;
  }
  .topbar-left {
    width: 100%;
    text-align: center;
  }
  .topbar-left img {
    width: 160px;
  }
  .topbar-right {
    width: 100%;
    justify-content: center;
    gap: 15px;
  }
  .appointment-btn {
    font-size: 1rem;
    padding: 8px 22px;
    border-radius: 30px;
  }
  .topbar-right img {
    width: 45px;
    height: 45px;
  }
}
/* navber*/
@media (max-width: 991px) {

  .nav-links {
    flex-direction: column !important;
    gap: 15px !important;
    align-items: center;
  }

  .navbar-custom {
    position: relative;
    top: 0;
    padding: 15px 0;
    background: var(--primary-color);
  }

  .dropdown-menu {
    position: static;
    transform: none;
    display: none;
    width: 100%;
    text-align: center;
  }

  .dropdown-menu.show {
    display: block;
  }
}
/*pupose*/
/* MOBILE FIX FOR PURPOSE SECTION */
@media (max-width: 768px) {

  .purpose {
    min-height: auto;
    padding: 60px 0;
  }

  .purpose .row {
    flex-direction: column;
  }

  .orbit {
    max-width: 280px;
    margin-bottom: 30px;
  }

  .center-img {
    width: 120%;
  }

  .moon-layer {
    width: 60%;
  }

  .star-layer {
    width: 65%;
  }

  .text-content {
    padding: 10px 20px;
    text-align: center;
  }

  .section-title {
    font-size: 26px;
  }

  .astro-list li {
    font-size: 14px;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .services-section .row {
    flex-wrap: wrap;
  }
  .service-card {
    width: 90%;
    margin-bottom: 20px;
  }
}