/* GLOBAL SETTINGS */
:root {
  --primary-yellow: #ffc107;
  --primary-orange: #fe5301;
  --primary-red: #df1919;
  --primary-blue: #003857;
  --primary-black: #000000;
  --font-heading: "Poppins", sans-serif;
  --font-body: "Open Sans", sans-serif;
}

html,
body {
  font-family: var(--font-body);
  overflow-x: hidden;
}

.top-info-strip {
  background-color: rgba(251, 255, 179, 1);
  padding: 8px 0;
}
.top-info-strip p {
  font-size: 0.85rem;
  letter-spacing: 3.6px;
  color: #003857;
  text-decoration: underline;
}
.main-header {
  background-color: #fff;
  border-color: rgba(78, 78, 78, 1);
  border-bottom-width: 0px;
  border-bottom-style: solid;
  padding: 0.5rem 0;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}
#navbar.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.5s ease;
}
.navbar-brand img {
  max-width: 230px;
}
.nav-link {
  color: #000 !important;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin: 0 5px;
}
.nav-link:hover {
  color: var(--primary-orange) !important;
}
.btn-consultation {
  background-color: var(--primary-orange);
  color: white;
  font-weight: 700;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 13px;
  transition: 0.3s;
}
.btn-consultation:hover {
  background-color: #e65100;
  color: white;
}

/* 3️⃣ HERO SECTION */

/* 4️⃣ MARQUEE */
.marquee-section {
  background-color: var(--primary-blue);
  color: #fbffb3;
  overflow: hidden;
  padding: 0.5rem 0;
}
.marquee {
  width: 100%;
  overflow: hidden;
}
.marquee-content {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.marquee-content span {
  margin-right: 50px;
  white-space: nowrap;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 5️⃣ RED STRIP */
/*.red-strip-section {*/
/*  background-color: var(--primary-red);*/
/*  color: white;*/
/*  padding: 15px 0;*/
/*  font-weight: 700;*/
/*  font-size: 1.1rem;*/
/*}*/
/*.red-strip-section .pipe {*/
/*  margin: 0 10px;*/
/*  opacity: 0.7;*/
/*}*/


.red-strip-section {
  background-color: var(--primary-red);
  color: #fff;
  padding: 8px 0;
  text-align: center;
}

.red-strip-inner {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  white-space: normal;
}

.red-strip-inner span {
  display: inline;
}

.red-strip-inner .pipe {
  margin: 0 4px;   /* EXACT CONTROL */
  opacity: 0.7;
}

/* tablet */
@media (min-width: 576px) {
  .red-strip-inner {
    font-size: 14px;
  }
}

/* desktop */
@media (min-width: 992px) {
  .red-strip-inner {
    font-size: 15px;
  }
}


/* 6️⃣ BLACK SECTION (SERVICES) */
.black-content-section {
  background-color: var(--primary-black);
  padding: 60px 0;
  color: white;
}
.section-title-white {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3rem;
  font-style: italic;
  margin-bottom: 10px;
}
.black-content-section .marquee-section {
  color: var(--primary-blue);
}
.black-content-section .marquee-section .marquee-content span {
  font-size: 1.4rem;
  margin-right: 10px;
  font-style: italic;
}
#service-card .btn-consultation {
  background-color: var(--primary-red);
}

/* 7️⃣ ABOUT SECTION */
.about-section {
  background-color: var(--primary-blue);
  color: #fbffb3;
}
.about-section h2,
.astrologer-section h2,
.choose-section h2,
.client-section h2 {
  font-weight: 900;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, calc(2.25rem + 1.2vw), 3.3125rem);
}
.about-section img {
  max-width: 450px;
  width: 100%;
  animation: slowRotate 20s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  transform-origin: center center;
  transition: transform 1s ease;
}
@keyframes slowRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.about-section img:hover {
  animation-play-state: paused;
  transform: rotate(360deg);
}

.info-section {
  font-weight: 600;
  color: var(--primary-blue);
}
.info-section h3 {
  font-weight: 700;
}
.review .star {
  color: #ffc107;
  font-size: 24px;
  margin: 0 2px;
}

.stats-section,
.astrologer-section {
  color: var(--primary-blue);
}
.stat-item {
  text-align: center;
  padding: 20px;
}
.stat-number {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.astrologer-section h2,
.choose-section h2,
.client-section h2 {
  font-size: clamp(1.9rem, calc(1.7rem + 0.9vw), 2.7rem);
}
.astrologer-section .marquee-content span {
  margin-right: 10px;
}

.choose-section {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
}

.call-section h2 {
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--primary-red);
  font-size: calc(1.675rem + 1.8vw);
}
.call-section .marquee-section {
  color: #fff;
  background-color: var(--primary-red);
}
.call-section2 h2 {
  color: var(--primary-blue);
}
.call-section2 .marquee-section {
  background-color: var(--primary-blue);
}

/* 🔟 FOOTER */
.main-footer {
  position: relative;
  background: #000 url(../images/footer-img.webp) center/cover no-repeat;
  font-size: 0.9rem;
}
.main-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}
.main-footer > * {
  position: relative;
  z-index: 1;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links a:hover {
  color: var(--primary-yellow);
  padding-left: 5px;
}
.social-icons i {
  font-size: 1.2rem;
  transition: 0.3s;
}
.social-icons i:hover {
  color: var(--primary-yellow);
}

.floating-buttons {
  position: fixed;
  bottom: 4.8rem;
  z-index: 1040;
  right: 1.3rem;
}
.floating-buttons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-buttons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
#contact-icons .whatsapp-btn {
  background-color: #25d366;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .main-headline {
    font-size: 2rem;
  }
  .hero-section {
    text-align: center;
  }
  .hero-right {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .main-headline {
    font-size: 1.8rem;
  }
  .section-title-white {
    font-size: 1.8rem;
  }
}

.public-figures {
  padding: 70px 0;
  background: #fff;
  text-align: center;
}

.public-figures .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.sub-title {
  font-size: 14px;
  letter-spacing: 1px;
  color: #666;
  margin-bottom: 8px;
}

.main-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.main-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #c9a14a;
  display: block;
  margin: 10px auto 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Tablet */
@media (max-width: 991px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobile */
@media (max-width: 575px) {
  .main-title {
    font-size: 28px;
  }

  .gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}


@media (max-width:575px){

.black-content-section .marquee-section .marquee-content span {
    font-size: 11px;
    margin-right: 10px;
    font-style: italic;
}
}


@media (max-width: 575px){
    .section-title-white {
    font-size: 22px;
    margin-top: -30px;
    margin-bottom: 15px;
}
  
}

img.hema-img-sec {
    width: 97%;
    border-radius: 20px;
}

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
}

/* Whole button */
.wa-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

/* CHAT pill */
.wa-text {
  background: #ffffff;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 25px;
  letter-spacing: 1px;
  box-shadow: 0 0 15px rgba(255,255,255,0.85);
}

/* WhatsApp icon circle */
.wa-circle {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #25d366, #1ebe57);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
  animation: pulse 2s infinite;
}

/* icon */
.wa-circle i {
  font-size: 24px;
  color: #fff;
  line-height: 1;
}

/* hover */
.wa-btn:hover {
  transform: scale(1.05);
}

/* pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37,211,102,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }
}

/* mobile tweak */
@media (max-width: 576px) {
  .wa-text {
    font-size: 11px;
    padding: 6px 14px;
  }

  .wa-circle {
    width: 42px;
    height: 42px;
  }

  .wa-circle i {
    font-size: 22px;
  }
}


/* ===== CALL FLOAT BUTTON ===== */
.call-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
}

/* whole button */
.call-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-direction: row-reverse;   /* 🔥 MAIN FIX */
}

/* CALL text */
.call-text {
  background: #ffffff;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 25px;
  letter-spacing: 1px;
  box-shadow: 0 0 15px rgba(255,255,255,0.85);
  line-height: 1;
}

/* phone icon */
.call-circle {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #ff5f5f, #e63946);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
  animation: call-pulse 2s infinite;
}

.call-circle i {
  font-size: 20px;
  color: #fff;
  line-height: 1;
}

/* hover */
.call-btn:hover {
  transform: scale(1.05);
}

/* pulse */
@keyframes call-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230,57,70,0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(230,57,70,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230,57,70,0);
  }
}

/* mobile */
@media (max-width: 576px) {
  .call-text {
    font-size: 11px;
    padding: 6px 14px;
  }

  .call-circle {
    width: 42px;
    height: 42px;
  }

  .call-circle i {
    font-size: 18px;
  }
}
