@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}


html,
body {
  overflow-x: hidden;
}

.navbar-collapse {
  position: unset !important;
}

nav.navbar.navbar-expand-lg.navbar-light.top-navbar {
  background: #f4f0e8;
}

.sf_chat_button1 {
  position: fixed;
  bottom: 12px;
  right: 12px;
  z-index: 99;
}

.sf_chat_button1 button {
  border-radius: 50%;
  padding: 0;
  border: none;
  background: none;
}

.sf_chat_button1 svg {
  display: inline-block;
}

.footer-link {
  color: #bfbfbf;
  text-decoration: none;
  transition: color 0.3s;
}

#footer p {
  color: #bfbfbf;
  font-size: 14px;
}

.footer-link:hover {
  color: #fff;
}

.as_padderBottom30 {
  padding-bottom: 30px;
}

.as_padderTop80 {
  padding-top: 80px;
}

.daily_horoscope_box {
  text-align: center;
  padding-bottom: 10px;
  display: block;
  box-shadow: 0 0 12px #9289894f;
  margin-top: 65px;
  border-radius: 5px 30px 5px 30px;
  cursor: pointer;
  background: azure;
}

.daily_horoscope_box img {
  height: 90px;
  margin-top: -45px;
  filter: drop-shadow(0.35px 0.35px 4.4px rgba(0, 0, 0, 0.3));
  border-radius: 100px;
  border: 1px solid rosybrown;
  padding: 5px;
}





/* Background */
.astro-actions {
  background:
    radial-gradient(circle at top,
      #2a2a20 0%,
      #0c0c08 60%,
      #000 100%);
}


/* Card */
.astro-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 15px;
  box-shadow:
    0 0 30px rgba(255, 255, 255, 0.25),
    0 0 60px rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  height: 100%;
}

.astro-card a {
  text-decoration: none;
}

.astro-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 10px 40px rgba(255, 255, 255, 0.35);
}

/* Icon Circle */
.icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: #fff;
  font-size: 26px;
}

/* Icon Colors */
.icon.pink {
  background: #ff6fae;
}

.icon.green {
  background: #2eccb0;
}

.icon.blue {
  background: #5b9dff;
}

.icon.orange {
  background: #ffa36c;
}

/* Text */
.astro-card p {
  font-weight: 700;
  margin: 0;
  font-size: 18px;
  color: #000;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
}

.marquee {
  display: flex;
  animation: marquee 10s linear infinite;
}

.marquee a {
  flex-shrink: 0;
  text-decoration: none;
}

/* Pause marquee on hover */
.marquee a:hover,
.marquee:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.youtube-icon {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
}

.video-card {
  position: relative;
}

.Horoscope {
  padding: 30px 0;
}

.custom-gap {
  gap: 12px;
}

.custom-gap li {
  list-style: none;
}




.astro-form {
  background: #fff;
  padding: 20px;
  margin: 0 auto;
}




.astro-form .btn-horoscope {
  background: linear-gradient(180deg, #2d2d2d, #111);
  color: #ffc107;
  border-radius: 30px;
  font-weight: 600;
  padding: 12px 25px;
}

.astro-form .btn-horoscope:hover {
  background: #000;
  color: #ffc107;
}


/* Tabs */
.match-tabs {
  background: #fff;
  border-radius: 50px;
  padding: 6px;
  display: flex;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.match-tabs .nav-item {
  flex: 1;
  max-width: 180px;
  /* SAME SIZE */
  text-align: center;
}

.match-tabs .nav-link {
  border-radius: 40px;
  color: #666;
  font-weight: 600;
  padding: 10px 0;
}

.match-tabs .nav-link.active {
  background: #25b3fd;
  color: #fff;
}

/* Card */
.detail-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  margin-top: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.detail-title {
  text-align: center;
  font-weight: 700;
  color: #666;
  margin-bottom: 20px;
  position: relative;
}

.detail-title:before,
.detail-title:after {
  content: "";
  width: 80px;
  height: 2px;
  background: #ccc;
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
}

/* Inputs */
.match-tabs label {
  font-weight: 600;
  font-size: 14px;
}

.match-tabs label span {
  color: red;
}

.match-tabs .input-group-text {
  background: #f1f1f1;
}

.match-tabs .form-control {
  height: 45px;
  font-size: 14px;
}

/* Button */
.match-btn {
  background: #25b3fd;
  color: #fff;
  border-radius: 30px;
  font-weight: 700;
  padding: 12px 40px;
}

.match-btn:hover {
  background: #e6d800;
}

.container.mt-5.mb-5.pujalist-show {
  display: flex;
  flex-wrap: wrap;
  /* gap: 10px; */
}


.dark {
  background: #FFF5E0 !important;
}

.darkS {
  background: #8DECB4 !important;
}

.scard {
  width: 350px;
  /* height: 463px; */
  /* Fixed height */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #d0d0d0;
  border-radius: 10px;
  padding: 15px;
  margin: 10px;
}

/* Image Wrapper (important) */
.scard img {
  width: 100%;
  height: 200px;
  /* Fixed image height */
  object-fit: cover;
  /* Prevent stretch */
  border-radius: 8px;
}

.imgb {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background-position: bottom;
  background-size: cover;
  border-radius: 10px;
}

.descrb {
  height: 100%;
}

.icons {
  display: flex;
  padding: 5px 0px;
  display: none;
}

.icon {
  display: block !important;
  padding: 12px;
}

.icons i {
  margin-right: 15px;
}

.puja-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
}

.amt {
  color: #65A9FD;
  font-weight: bold;
}

.read {
  border: none;
  background: #25b3fd;
  color: #fff;
  padding: 5px 8px;
  border-radius: 15px;
}

.puja-footer i {
  padding: 5px;
  border-radius: 15px;
}

@media (min-width: 1199px) {
  .container {
    max-width: 1200px !important;
  }
}


.onl {
  display: none;
}


@media (max-width: 999px) {

  .space4 {
    padding: 10px 0 !important;
  }

  .space1 {
    padding: 30px 0 !important;
  }



  .scard .descrb h3 {
    font-size: 15px;
  }

  .descrb span {
    -webkit-line-clamp: 1 !important;
    margin-bottom: 0 !important;
  }

  .scard .puja-footer span {
    font-size: 12px;
    font-weight: 600;
  }






  .astroway-logo-ntext {
    display: none;
  }

  .aa-online-status {
    display: none !important;
  }

  .onl {
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin: 0;
    padding: 4px 0 0 0;
    margin-right: -10px;
  }

  .scard {
    width: auto;
  }

  .card-link+.card-link {
    margin-left: 0;
  }
}





/* ====== NAV TAB STYLING ====== */
.product-info {
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
}

.product-info .nav-link {
  font-weight: 600;
  color: #333;
  font-size: 16px;
  border-radius: 0;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.product-info .nav-link.active {
  color: #fff;
  background-color: #ff6600;
  border-radius: 5px;
}

.section {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.section.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section.active h2 {
  color: #ff6600;
  font-weight: 700;
  margin-bottom: 15px;
}

/* .tab-content ul {
    padding: 0 30px;
    list-style: none;
    overflow-y: scroll;
    height: 250px;
} */



.modalheadercolor {
  background: linear-gradient(135deg, #373737 0%, #000000 100%) !important;
}

.modalheadercolor h4 {
  color: #fff;
}

.modal-header .close {
  color: #fff;
}

#sf_chat_button1 .rounded-circle #checkBalance {
  display: none !important;
}

#faqAccordion .btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.btn-check:checked+.btn-outline-primary {
  background-color: #007bff;
  color: #ffffff;
  border-color: #007bff;
}


.faq-box {
  background: #f2f2f2;
  border-radius: 10px;
  padding: 20px 24px;
}

.faq-question {
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.faq-answer {
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

.astro-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.astro-img-container {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #f0f0f0;
  background: #f8f9fa;
}

.pujaAddAddressbtn:hover,
.pujaAddAddressbtn:focus,
.pujaAddAddressbtn:active {
  color: #fff !important;
  background: #102866;
}


.pujaAddAddressbtn {
  border: 1px solid #102866;
  border-radius: 30px;
  font-size: 15px;
  padding: 8px 30px;
  box-shadow: 0 1px 5px #102866;
  font-weight: 500;
}

.astrolgoermodalsheadercolor {
  background-color: #000000 !important;
  color: white !important;
}

#footer {
  background: linear-gradient(180deg, #2c2c2c 0%, #1a1304 100%) !important;
}

div#footer .text-center {
  background: #181102 !important;
}

.descrb span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 12px;
}

.astroway-breadcrumb {
  padding: 7px !important;
}

.notification-title {
  font-weight: 600;
}

#addressTableBody {
  max-height: 150px;
  overflow-y: auto;
  display: block;
}



#pujaImage {
  /* width: 100%; */
  height: auto !important;
  object-fit: cover;
  /* width: 100%; */
}


.dropdown-menu-rightnew {
  right: 8px !important;
}

.custom-gap1 {
  margin-right: 5px;
}



div#notificationListContainer {
  position: absolute;
  right: -68px;
}

div#notificationBell {
  position: absolute;
  right: -68px;
}

.space1 {
  padding: 40px 0;
}

.space2 {
  padding-top: 40px;
}

.space3 {
  padding-bottom: 40px;
}

.space4 {
  padding: 40px 0;
}

.space5 {
  padding: 10px 0 35px 0;
}



/* CARD */
.astro-ux-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  /* height: 220px; */
  height: 256px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.astro-ux-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.astro-ux-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}



/* TEXT */
.astro-ux-text {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: #fff;
}

.astro-ux-text h6 {
  margin: 0;
  font-weight: 700;
  font-size: 15px;
}


.astro-ux-text p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  margin: 0;
}

/* BADGE */
.astro-ux-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #000000;
  color: #fff;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
  z-index: 2;
}

/* HOVER */
.astro-ux-card:hover {
  transform: scale(1.04);
}

/* MOBILE */
@media (max-width: 576px) {
  .astro-img-container {
    width: 75px;
    height: 75px;
  }

  .astro-ux-text p {
    -webkit-line-clamp: 1;
  }

  .astro-ux-card {
    height: 180px;
  }

  .astro-ux-text h6 {
    font-size: 13px;
  }
}


.mypujadetailsphoto {
  object-fit: cover;
}

.wrapper {
  overflow-x: hidden;
}


.astroway-logo-ntext.ml-2 {
  display: none;
}


.hamaraastrplogo {
  width: 152px !important;
}


/* ====== STICKY NAVBAR STYLES ====== */

/* CSS custom property for animating the border angle */
@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* Rotating border animation */
@keyframes rotateBorder {
  to {
    --border-angle: 360deg;
  }
}

/* Slide down animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* When .header gets the .sticky-active class */
.header.sticky-active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  animation: slideDown 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hide top navbar on scroll */
.header.sticky-active .top-navbar {
  display: none !important;
}

/* Floating pill navbar on scroll */
.header.sticky-active #mainMenuNav {
  width: 87%;
  margin: 0 auto;
  top: 22px;
  position: relative;
  border-radius: 58px;
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 4px 24px -4px rgba(0, 0, 0, 0.10),
    0 1px 3px rgba(0, 0, 0, 0.06),
    inset 0 1px rgba(255, 255, 255, 0.9),
    inset 0 -1px rgba(0, 0, 0, 0.03);
  padding: 6px 24px;
  z-index: 1;
  overflow: visible;
  transition: box-shadow 0.3s ease;
}

.header.sticky-active #mainMenuNav:hover {
  box-shadow:
    0 8px 32px -4px rgba(0, 0, 0, 0.14),
    0 2px 6px rgba(0, 0, 0, 0.08),
    inset 0 1px rgba(255, 255, 255, 0.9),
    inset 0 -1px rgba(0, 0, 0, 0.03);
}

/* Rotating color line traveling around the pill border */
.header.sticky-active #mainMenuNav::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 60px;
  background: conic-gradient(from var(--border-angle, 0deg),
      transparent 0%,
      transparent 75%,
      #ffc107 85%,
      #a47515 92%,
      #ff9800 96%,
      transparent 100%);
  animation: rotateBorder 2.5s linear infinite;
  z-index: -1;
}

/* White fill behind content so rotating line only shows as border */
.header.sticky-active #mainMenuNav::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 58px;
  background: rgba(255, 255, 255, 0.97);
  z-index: -1;
}

/* Placeholder so content doesn't jump when header becomes fixed */
.header-placeholder {
  display: none;
}

.header-placeholder.active {
  display: block;
}

/* Disable sticky navbar on mobile/tablet (when toggler icon is visible) */
@media (max-width: 991px) {
  .header.sticky-active {
    position: static !important;
    animation: none !important;
    background: transparent !important;
  }

  .header.sticky-active .top-navbar {
    display: block !important;
  }

  .header.sticky-active #mainMenuNav {
    width: 100% !important;
    top: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .header.sticky-active #mainMenuNav::before,
  .header.sticky-active #mainMenuNav::after {
    display: none !important;
  }

  .header-placeholder.active {
    display: none !important;
  }
}

.rating-stars i {
  color: #c2c2c2;
  font-size: 12px;
}

i.fas.fa-star.filled-star {
  color: #f6a812;
}




.faq-box {
  background: #f2f2f2;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
}

.faq-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
}

.faq-accordion-header:hover {
  background: #ebebeb;
}

.faq-toggle-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #a98334;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  transition: background 0.2s ease;
}

.faq-box.faq-open .faq-toggle-icon {
  background: #fef3ec;
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-accordion-body p {
  padding: 0 20px 16px;
}

.faq-question {
  font-weight: 700;
  color: #222;
  margin-bottom: 0;
}

.faq-answer {
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}