.astro-divider {
  margin: 10px;
  width: 160px;
  height: 4px;
  margin: 0 auto 25px;
  background: linear-gradient(90deg, #ffb07c 0%, #a9412d 50%, #ffb07c 100%);
  border-radius: 5px;
  position: relative;
}


.astro-divider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,176,124,0.3), rgba(169,65,45,0.4), rgba(255,176,124,0.3));
  filter: blur(6px);
  border-radius: 5px;
}
.hero-section {
  background: linear-gradient(135deg, #ffcc70, #ff8c00);
  position: relative;
  overflow: hidden;
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 40%, rgba(255,255,255,0.25), transparent 60%);
}
.text-shadow {
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

body {
  font-family: linear-gradient(135deg, #ffcc70 0%, #ff8c00 100%) important;
  background: #f5885114;
  color: var(--astro-dark);
}

.as_heading_center, .section-title {
  font-weight: 700;
  font-size: 2rem;
  background: var(--astro-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /*text-transform: uppercase;*/
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.as_subheading {
  font-weight: 600;
  color: var(--astro-orange);
  margin: 10px 0;
}
.as_font14 { font-size: 14px; color: #555; }
.as_padderBottom5 { margin-bottom: 5px; }
.as_padderBottom50 { margin-bottom: 50px; }
.as_padderTop80 { padding-top: 80px; }
.as_padderBottom80 { padding-bottom: 80px; }

.as_btn, .btn-deep-orange {
  display: inline-block;
  background: var(--astro-gradient);
  color: #fff !important;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow: var(--astro-shadow);
  transition: 0.3s;
}
.as_btn:hover, .btn-deep-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.4);
}

.as_service_box, .card-shadow, .ai-astro-card, .card {
  background: #fff;
  border: 1px solid var(--astro-border);
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.1);
  transition: 0.3s;
}
.as_service_box {
  /*padding: 30px 20px;*/
  /*margin-bottom: 30px;*/
}
.as_service_box:hover, .ai-astro-card:hover, .card-shadow:hover, .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
}
.as_service_box .as_icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}
.as_link {
  color: var(--astro-orange);
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.as_link:hover {
  color: var(--astro-gold);
  text-decoration: underline;
}

.ai-astrologers-section {
  background: #fff;
  border-top: 1px solid var(--astro-border);
}
.ai-astro-card img {
  border: 3px solid var(--astro-orange);
  box-shadow: 0 0 10px rgba(255, 179, 0, 0.3);
}
.offer-ribbon {
  
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #ffffff 0%, #ff9713 40%, #ffa328 100%);
  color: #fff;
  padding: 2px 8px;
  font-size: 0.75rem;
  border-radius: 4px;
  font-weight: 600;
}


.nav-tabs .nav-link {
  color: var(--astro-orange);
  border: none;
  font-weight: 600;
  transition: 0.3s;
}
.nav-tabs .nav-link.active {
  background: var(--astro-gradient);
  color: #fff;
  /*border-radius: 50px;*/
}


.ai-scroll-container::-webkit-scrollbar { height: 6px; }
.ai-scroll-container::-webkit-scrollbar-thumb {
  background: var(--astro-gradient);
  border-radius: 10px;
}

.as_horoscope_tools {
  background: var(--astro-bg);
  font-family: var(--astro-font);
}

.tools-grid {
  display: grid;
  /*grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));*/
  gap: 1.2rem;
  justify-items: center;
  text-align: center;
}
.tool-card {
  background: #fff;
  /*border-radius: 16px;*/
  padding: 0px 8px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}
.tool-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(255, 126, 0, 0.25);
  font-size: 15px;
}
.tool-cell {
    background: #fff;
    transition: all 0.3s ease;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
}
.tool-cell img {
    transition: all 0.3s ease;
    height: 50px;
}
.tool-cell .small {
    transition: all 0.3s ease;
    font-size: 12px; /* default font size */
}

.tool-cell:hover {
    background: #fff3e0;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.tool-cell:hover img {
    height: 65px; /* enlarge image on hover */
}
.tool-cell:hover .small {
    font-size: 14px; /* increase font size on hover */
}

.tool-card img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-bottom: 8px;
}
.tool-card p {
  font-size: 13px;
  font-weight: 200;
  color: var(--astro-dark);
}

.ui-custom-tabs .nav-link {
  border: none;
  border-radius: 30px;
  background: #f8f8f8;
  margin: 0 5px;
  color: var(--astro-dark);
  transition: 0.3s;
}
.ui-custom-tabs .nav-link.active {
  background: var(--astro-orange);
  color: #fff;
  box-shadow: 0 3px 8px rgba(255, 126, 0, 0.4);
}
.ui-scroll.ul-li {
  list-style: none;
  padding-left: 0;
  max-height: 300px;
  overflow-y: auto;
}
.ui-scroll.ul-li li { margin-bottom: 8px; }
.ui-scroll.ul-li a {
  display: block;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  color: var(--astro-dark);
  text-decoration: none;
  transition: color 0.3s;
}
.ui-scroll.ul-li a:hover { color: var(--astro-orange); }


.as_sign_form ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.as_form_box { flex: 1 1 200px; }
.as_input_feild {
  position: relative;
}
.as_input_feild input {
  width: 100%;
  padding: 10px 40px 10px 10px;
  border-radius: 50px;
  border: 1px solid var(--astro-border);
  outline: none;
  transition: 0.3s;
}
.as_input_feild input:focus {
  border-color: var(--astro-orange);
  box-shadow: 0 0 10px rgba(255,140,0,0.2);
}
.as_input_feild span {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

  .as_remedies_wrapper {
    background: #fffaf3;
  }

  .as_heading {
    font-weight: 700;
    background: var(--astro-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .as_subtext {
    color: #666;
    font-size: 15px;
    margin-top: 5px;
  }

  .as_featured_product {
    border: 2px solid rgba(255, 179, 0, 0.3);
    transition: all 0.3s ease;
  }
  .as_featured_product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.2);
  }

  .btn-gradient {
    background: var(--astro-gradient);
    color: #fff;
    border: none;
    font-weight: 600;
    border-radius: 6px;
    padding: 8px 16px;
    transition: all 0.3s ease;
  }
  .btn-gradient:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.4);
  }

  /* Product Cards */
  .as_card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  }

  .as_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(255, 140, 0, 0.25);
  }

  .as_card_image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .as_card:hover img {
    transform: scale(1.05);
  }

  .as_card_body {
    padding: 12px 15px 18px;
    text-align: center;
  }

  .as_card_body h5 {
    font-weight: 600;
    color: var(--astro-orange);
    margin-bottom: 6px;
  }

  .as_card_body p {
    font-size: 14px;
    color: #666;
    margin: 0;
  }

  @media (max-width: 767px) {
    .as_featured_product { margin-bottom: 30px; }
    .as_card_image img { height: 140px; }
  }


@media (max-width: 767px) {
  .as_sign_form ul { flex-direction: column; }
}

 .zodiac-sign {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: stretch;
      background: linear-gradient(90deg, #ffb347, #ffcc33);
      border-top: 3px solid #f8b500;
      border-bottom: 3px solid #f8b500;
      /* padding: 10px 0; */
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .zodiac-sign a {
      display: block;
      text-align: center;
      font-weight: 600;
      color: #fff;
      text-decoration: none;
      border-radius: 6px;
      background: rgba(255,255,255,0.1);
      /* padding: 0px 5px; */
      margin: 5px;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .zodiac-sign a:hover {
      background: #fff;
      color: #d35400;
      box-shadow: 0 0 10px rgba(255,255,255,0.6);
      transform: translateY(-2px);
    }

    /* Header Tweaks */
    .as_topbar ul li a {
      transition: all 0.3s ease;
    }

    .as_topbar ul li a:hover {
      color: #b35400 !important;
    }

    .as_header_wrapper {
      position: relative;
      z-index: 999;
    }
    .btn:hover { transform: scale(1.1); }

.login-box {
  display: none;
  position: relative;
  max-width: 360px;
  z-index: 2000;
  animation-duration: 0.5s;
}
.login-box.show {
  display: block;
  animation: slideDown 0.6s ease forwards;
}
@keyframes slideDown {
  0% { transform: translateY(-30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .as_topbar .container-fluid {
    flex-direction: column;
    text-align: center;
  }
  .login-box {
    width: 90%;
  }
}

/* Container */
.ac-data-area {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
  font-family: Arial, sans-serif;
}

/* Page Title */
.page-title {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

/* Astrologer Card Grid */
.astrologer-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* Astrologer Card */
.astrologer-card {
  background: var(--astro-gradient);
  border-radius: 12px;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.astrologer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Image */
.astrologer-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Profile Info */
.astrologer-info {
  padding: 15px;
}

.profiler-name {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.astro_txt {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 10px;
}

.astro_desc {
  font-size: 0.85rem;
  opacity: 0.8;
}

.range {
  font-size: 0.8rem;
  margin-top: 3px;
  opacity: 0.85;
  color: #fff;
}

  .astro-modal {
    background: #fff;
    border-radius: 20px;
    animation: fadeInUp 0.4s ease-in-out;
  }
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
.as_footer_wrapper {
background: linear-gradient(135deg, #a9412d 0%, #a9412d 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 60px;
}

.as_footer_wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(2px);
}

.as_footer_inner {
  position: relative;
  z-index: 2;
}

.as_footer_heading {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.as_footer_heading::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #fff;
  margin-top: 8px;
  border-radius: 5px;
}

.as_footer_widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.as_footer_widget ul li {
  margin-bottom: 10px;
}

.as_footer_widget ul li a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.as_footer_widget ul li a:hover {
  color: #222;
  background: rgba(255,255,255,0.2);
  padding-left: 6px;
  border-radius: 4px;
}

.as_footer_logo img {
  max-width: 160px;
  margin-bottom: 15px;
}

.as_share_box p {
  font-weight: 600;
  margin-bottom: 10px;
}

.as_share_box ul {
  display: flex;
  gap: 12px;
}

.as_share_box ul li img {
  width: 26px;
  transition: transform 0.3s ease;
}

.as_share_box ul li:hover img {
  transform: scale(1.15);
}

.as_contact_list img {
  width: 20px;
  margin-right: 8px;
}

.as_contact_list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #fff;
}

.as_copyright_wrapper {
  background: #1a1a1a;
  color: #fff;
  padding: 15px 0;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.3px;
}


/* Gradient text title effect */
.as_heading_center, .section-title {
  font-weight: 700;
  font-size: 2rem;
  background: var(--astro-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* Topbar gradient */
.as_topbar {
  background: var(--astro-gradient);
  color: #fff;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* Menu buttons */
.as_topbar .nav .btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff !important;
  transition: 0.3s ease;
  font-weight: 500;
}

.as_topbar .nav .btn:hover {
  background: #fff;
  color: #ff8c00 !important;
}

/* Chat + Login buttons */
.as_topbar .btn-light {
  background-color: #fff;
  color: #ff8c00;
  font-weight: 600;
  transition: 0.3s ease;
}

.as_topbar .btn-light:hover {
  background: var(--astro-gradient);
  color: #fff;
}

.as_topbar .btn-outline-dark {
  border-color: #fff;
  color: #fff;
  font-weight: 600;
}

.as_topbar .btn-outline-dark:hover {
  background: #fff;
  color: #ff8c00;
}

/* Alignment + padding tweaks */
.as_topbar .container-fluid {
  padding: 0.5rem 1rem;
}
.text-gradient {
  background: linear-gradient(90deg, #a9412d, #e67e22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.astro-card {
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #f0f0f0;
}
.astro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(169, 65, 45, 0.15);
}
.astro-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 3px solid #a9412d20;
  padding: 5px;
  background: #fff;
  transition: 0.3s ease;
}
.astro-card:hover .astro-img {
  transform: scale(1.05);
  border-color: #a9412d;
}
.astro-btn {
  background: linear-gradient(90deg, #a9412d, #d35400);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 8px 20px;
  transition: 0.3s;
}
.astro-btn:hover {
  background: linear-gradient(90deg, #d35400, #a9412d);
  color: #fff;
}


/* Section Container */
.portfolio-area {
  background-color: #fffaf3;
}

/* Section Title */
.section-title {
  font-weight: 700;
  font-size: 2rem;
  background: var(--astro-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

/* Service Box */
.hs_service_main_box_wrapper {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid #f7d89c;
  position: relative;
  overflow: hidden;
}

.hs_service_main_box_wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255, 140, 0, 0.25);
  border-color: #ff8c00;
}

/* Icon */
.hs_service_icon_wrapper {
  font-size: 3rem;
  background: var(--astro-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  position: relative;
}

.hs_service_icon_wrapper i {
  transition: transform 0.3s ease;
}

.hs_service_main_box_wrapper:hover i {
  transform: scale(1.1) rotate(8deg);
}

/* Overlay (optional subtle glow) */
.btc_step_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: var(--astro-gradient);
  transition: opacity 0.4s ease;
  border-radius: 1rem;
  z-index: 0;
}

.hs_service_main_box_wrapper:hover .btc_step_overlay {
  opacity: 0.05;
}

/* Content */
.hs_service_icon_cont_wrapper h2 {
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--astro-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.hs_service_icon_cont_wrapper p {
  font-size: 0.9rem;
  color: #6b6b6b;
  margin-bottom: 0.8rem;
}

.hs_service_icon_cont_wrapper h5 a {
  color: #ff8c00;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hs_service_icon_cont_wrapper h5 a:hover {
  color: #d66a00;
}

.astrologer-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  padding: 20px 15px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #f1f1f1;
}

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

.astro-img-box {
  width: 90px;
  height: 90px;
  margin: 0 auto 10px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ffd34e;
}

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

.profiler-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
}

.astro_txt {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.astro_lang,
.astro_exp {
  color: #777;
  font-size: 0.85rem;
  margin: 0;
}

.astro-footer {
  /*border-top: 1px solid #eee;*/
}

.astro-rating {
  color: #ffb400;
  font-weight: bold;
  font-size: 1rem;
}

.star {
  font-size: 1.1rem;
  vertical-align: middle;
}

.astro-charge {
  margin: 5px 0;
  font-weight: 600;
  color: #333;
}

.free-label {
  background: #ffd34e;
  color: #000;
  padding: 2px 8px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 0.8rem;
  margin-right: 5px;
}

.astro-status {
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.status-online {
  color: green;
  font-weight: 600;
}

.status-offline {
  color: #999;
  font-weight: 600;
}

.btn-consult {
  background: #ffb400;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 6px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.btn-consult:hover {
  background: #e8a000;
}
.astro-info-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-top: 10px;
  border-top: 1px solid #eee;
  padding-top: 8px;
  color: #333;
}

.astro-rating {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #ffb400;
}

.star {
  font-size: 1rem;
  margin-right: 4px;
}

.astro-charge {
  font-weight: 600;
  color: #333;
}

.free-label {
  background: #ffd34e;
  color: #000;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.75rem;
  margin-right: 4px;
}

.astro-status .status-online {
  color: green;
  font-weight: 600;
}

.astro-status .status-offline {
  color: #999;
  font-weight: 600;
}
.ai-astro-card, .panchang-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #eee;
}

.ai-astro-card:hover, .panchang-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.offer-ribbon:hover {
  background: #ff6b6b; 
  display:block;
}


.panchang-icon i {
  color: #ffb347;
}

.panchang-title {
  font-size: 18px;
  font-weight: 600;
}

.panchang-desc {
  font-size: 14px;
  color: #666;
}

.panchang-link {
  color: #ffb347;
  text-decoration: none;
  font-weight: 500;
}

.panchang-link:hover {
  color: #ff8c00;
  text-decoration: underline;
}

.festival-list .festival-link {
  /*display: block;*/
  width: 100%;
  color: #ff6f00;
  text-decoration: none;
  transition: 0.3s;
  /*padding: 6px 4px;*/
}

.festival-list .festival-link:hover {
  text-decoration: underline;  
  cursor: pointer;
  border-radius: 5px;
}
/* ðŸŒ  Astrology Services Grid */
.astro-services-grid {
  gap: 8px;
  justify-items: center;
  align-items: start;
  padding: 5px;
}

/* Each Service Cell */
.astro-service-cell {
  text-align: center;
  transition: all 0.3s ease-in-out;
}

/* Gradient Circle / Block */
.astro-icon-gradient {
 
background: linear-gradient(135deg, #ffffff 0%, #ff9713 40%, #ffa328 100%);
  /*border-radius: 12px;*/
  /*display: content;*/
  justify-content: center;
  align-items: center;
  margin: 0 auto 6px;
  transition: all 0.4s ease;
  box-shadow: 0 2px 6px rgba(255, 136, 0, 0.3);
}

/* Icon Image */
.astro-service-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

/* Service Title */
.astro-service-title {
  font-size: 13px;
  line-height: 1.3;
  color: #333;
  margin-bottom: 0;
}

.astro-service-title small {
  color: #777;
  font-size: 11px;
}

/* Hover Effects */
.astro-service-link:hover .astro-icon-gradient {
  background: linear-gradient(135deg, #ff8c00, #ff5e00);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 94, 0, 0.4);
}

.astro-service-link:hover .astro-service-img {
  transform: scale(1.2);
}

.astro-service-link:hover .astro-service-title {
  color: #e67e22;
  font-weight: 600;
}

/* Responsive Fine-tuning */
@media (max-width: 768px) {
  .astro-services-grid {
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  }
  .astro-service-title {
    font-size: 12px;
  }

  .astro-service-img {
    width: 26px;
    height: 26px;
  }
}

  .zodiac-img {
    width: auto;
    height: auto;
    transition: transform 0.3s ease;
  }
  .zodiac-link:hover .zodiac-img {
    transform: scale(1.1);
  }
  .tooltip-inner {
    background-color: #ff8c00 !important; /* Orange color */
    color: #fff !important;
    font-weight: 600;
    font-size: 0.85rem;
  }
  .tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #ff8c00 !important;
  }
/* 🌌 Hero Section Styling */
.hero-section {
  background: linear-gradient(135deg, #ffffff 0%, #ff9713 40%, #ffa328 100%);
}
