/* ======= RESET ======= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { font-family: 'Poppins', sans-serif; color: #222; background: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ======= TOP HEADER ======= */
.hs_top_header_wrapper {
  background: linear-gradient(90deg, #f5871f 0%, #f29120 100%);
  color: #fff;
  padding: 10px 0;
  font-size: 13px;
}
.top_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.hs_top_contect { display: flex; gap: 25px; flex-wrap: wrap; }
.hs_top_contect p { display: flex; align-items: center; gap: 6px; }
.hs_top_contect a { color: #fff; }
.hs_top_contect a:hover { color: #222; }
.hs_top_socialicon { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hs_top_socialicon span { font-size: 13px; }
.hs_top_socialicon a {
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.18);
  border-radius: 4px;
  transition: background 0.3s, transform 0.3s;
}
.hs_top_socialicon a:hover { background: #fff; color: #f5871f; transform: translateY(-2px); }

/* ======= NAV ======= */
.hs_navigation_header_wrapper {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
  z-index: 10;
}
.nav_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  flex-wrap: wrap;
  gap: 16px;
}
.hs_logo_wrapper img { height: 55px; }
.hs_main_nav { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.hs_main_nav ul { display: flex; gap: 26px; }
.hs_main_nav ul li a {
  font-size: 15px;
  font-weight: 500;
  color: #222;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s;
}
.hs_main_nav ul li a:hover,
.hs_main_nav ul li a.active { color: #f5871f; }

.book_appointment_btn {
  background: linear-gradient(90deg, #2db8e8, #1fa8e0);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 14px rgba(45, 184, 232, 0.35);
}
.book_appointment_btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(45, 184, 232, 0.5); }

/* Mobile Menu Toggle */
.mobile_menu_toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile_menu_toggle span {
  width: 25px;
  height: 3px;
  background: #222;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile_menu_toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile_menu_toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile_menu_toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* ======= HERO SLIDER ======= */
.hs_slider_main_wrapper {
  position: relative;
  height: 640px;
  background: radial-gradient(ellipse at center, #0b1428 0%, #050815 70%, #01030a 100%);
  overflow: hidden;
  color: #fff;
}
.stars, .stars2, .stars3 {
  position: absolute; top:0; left:0; right:0; bottom:0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, #fff, transparent),
    radial-gradient(1px 1px at 60% 20%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 80% 50%, #fff, transparent),
    radial-gradient(1px 1px at 40% 70%, #fff, transparent);
  background-size: 800px 600px;
  opacity: 0.8;
  animation: stars-move 60s linear infinite;
  will-change: transform;
}
.stars2 { background-size: 600px 400px; opacity: 0.5; animation-duration: 90s; }
.stars3 { background-size: 400px 300px; opacity: 0.3; animation-duration: 120s; }
@keyframes stars-move {
  from { background-position: 0 0; }
  to { background-position: -800px 600px; }
}

.hs_slider_heading_wrapper {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-top: 60px;
}
.hs_slider_heading_wrapper h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hs_slider_heading_wrapper h4 span { color: #f5871f; font-weight: 700; }
.hs_slider_heading_wrapper h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  margin: 4px 0;
}
.hs_slider_heading_wrapper h2 span { color: #f5871f; font-weight: 700; }

/* planets */
.hs_slider_cont_wrapper {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}
.orbit1 { width: 260px; height: 260px; }
.orbit2 { width: 380px; height: 380px; }
.orbit3 { width: 520px; height: 520px; }
.orbit4 { width: 680px; height: 680px; }
.orbit5 { width: 860px; height: 860px; }

.sun {
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffd98a 0%, #ff8a1c 40%, #c93b08 80%, #6b1a00 100%);
  box-shadow:
    0 0 40px rgba(255, 138, 28, 0.6),
    0 0 80px rgba(255, 138, 28, 0.3),
    inset -10px -10px 40px rgba(0,0,0,0.4);
  animation: sun-pulse 6s ease-in-out infinite;
  will-change: box-shadow;
}
@keyframes sun-pulse {
  0%, 100% { box-shadow: 0 0 40px rgba(255,138,28,0.6), 0 0 80px rgba(255,138,28,0.3), inset -10px -10px 40px rgba(0,0,0,0.4);}
  50% { box-shadow: 0 0 60px rgba(255,170,40,0.8), 0 0 100px rgba(255,138,28,0.4), inset -10px -10px 40px rgba(0,0,0,0.4);}
}

.planet-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
.planet-wrap .planet {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: inset -4px -3px 8px rgba(0,0,0,0.5);
}

.mercury { width: 260px; height: 260px; animation: spin 15s linear infinite; }
.mercury .planet { width: 14px; height: 14px; background: #b9a176; }

.venus { width: 380px; height: 380px; animation: spin 25s linear infinite; }
.venus .planet { width: 20px; height: 20px; background: #d89a53; }

.earth { width: 520px; height: 520px; animation: spin 35s linear infinite; }
.earth .planet { width: 26px; height: 26px; background: radial-gradient(circle at 30% 30%, #4fa8ff 0%, #1d4e89 60%, #0b2a4a 100%); }

.mars { width: 680px; height: 680px; animation: spin 50s linear infinite; }
.mars .planet { width: 20px; height: 20px; background: #c4522e; }

.jupiter { width: 860px; height: 860px; animation: spin 70s linear infinite; }
.jupiter .planet {
  width: 46px; height: 46px;
  background:
    linear-gradient(180deg, transparent 25%, rgba(255,255,255,0.2) 26%, transparent 30%),
    linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.25) 56%, transparent 60%),
    radial-gradient(circle at 35% 35%, #f2dab2 0%, #c8a26a 50%, #7b4a1f 100%);
}

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero_bottom_mask {
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 80px;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'><path fill='%23ffffff' d='M0,50 C240,10 480,90 720,50 C960,10 1200,90 1440,50 L1440,80 L0,80 Z'/></svg>") no-repeat bottom / cover;
  z-index: 4;
}

/* ======= SECTION HEADING ======= */
.section_heading { text-align: center; padding: 60px 0 30px; }
.section_heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #222;
}
.section_heading h2 span { color: #f5871f; font-weight: 700; }
.heading_divider {
  width: 80px; height: 4px;
  background: #ddd;
  margin: 14px auto 18px;
  position: relative;
  border-radius: 2px;
}
.heading_divider span {
  position: absolute;
  width: 30px; height: 100%;
  background: #f5871f;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}
.section_heading p { color: #666; font-size: 15px; line-height: 1.7; }

/* ======= ABOUT ======= */
.hs_about_indx_main_wrapper { padding-bottom: 70px; }
.about_row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}
.about_left img { width: 100%; max-width: 420px; margin: 0 auto; }
.about_right h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #222;
  font-weight: 600;
}
.about_right p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.readmorebtn {
  display: inline-block;
  background: linear-gradient(90deg, #2db8e8, #1fa8e0);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  margin-top: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 14px rgba(45, 184, 232, 0.35);
}
.readmorebtn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(45,184,232,0.5); }

/* ======= ZODIAC ======= */
.hs_sign_main_wrapper {
  padding-bottom: 80px;
  background: #f6f6f6;
  position: relative;
}
.zodiac_grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 30px;
  align-items: center;
  margin-top: 20px;
}
.zodiac_col { display: flex; flex-direction: column; gap: 18px; }
.zodiac_item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 16px;
  border-bottom: 1px dashed #d5d5d5;
  transition: transform 0.3s;
}
.zodiac_item:hover { transform: translateX(4px); }
.zodiac_col_right .zodiac_item:hover { transform: translateX(-4px); }

.z_icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5871f 0%, #ff6b2b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(245, 135, 31, 0.3);
}
.z_info { display: flex; flex-direction: column; flex: 1; }
.z_info a {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: #222;
  transition: color 0.3s;
}
.z_info a:hover { color: #f5871f; }
.z_info span { font-size: 13px; color: #888; margin-top: 2px; }
.zodiac_col_right .zodiac_item { justify-content: flex-end; flex-direction: row-reverse; }
.zodiac_col_right .z_info.right { text-align: right; }

.zodiac_center { display: flex; justify-content: center; align-items: center; }
.zodiac_circle {
  position: relative;
  width: 360px; height: 360px;
  max-width: 100%;
}
.zodiac_circle img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.pulse {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 100%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(245,135,31,0.4);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245,135,31,0.4); }
  70% { box-shadow: 0 0 0 30px rgba(245,135,31,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,135,31,0); }
}

/* ======= SERVICES ======= */
.hs_services_hero_wrapper {
  background: linear-gradient(135deg, #1a103d 0%, #0a0518 100%);
  color: #fff;
  /* padding: 80px 20px; */
  text-align: center;
}

.services_hero_content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services_hero_content h1 span {
  color: #f5871f;
}

.services_hero_content p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.vedic_content {
  margin-top: 30px;
}

.vedic_intro {
  text-align: center;
  margin-bottom: 40px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.vedic_intro p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.vedic_processes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.process_card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #f5871f;
}

.process_card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #222;
  margin-bottom: 15px;
}

.process_card p {
  color: #666;
  line-height: 1.6;
}

.houses_table, .planets_table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.houses_table th, .planets_table th {
  background: #f5871f;
  color: #fff;
  padding: 12px;
  text-align: left;
  font-weight: 600;
}

.houses_table td, .planets_table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.houses_table tr:nth-child(even), .planets_table tr:nth-child(even) {
  background: #f9f9f9;
}

.nakshatras {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background: rgba(245, 135, 31, 0.05);
  border-radius: 10px;
}

.nakshatras h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #222;
  margin-bottom: 10px;
}

.nakshatras p {
  color: #666;
  line-height: 1.6;
}

.predictive_readings {
  margin-top: 30px;
}

.predictive_readings h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #222;
  margin-bottom: 15px;
  text-align: center;
}

.predictive_readings p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.dasha_system, .transits {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.dasha_system h4, .transits h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #f5871f;
  margin-bottom: 10px;
}

.dasha_system p, .transits p {
  color: #666;
  line-height: 1.6;
}

.transit_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 15px;
}

.transit_item {
  background: rgba(245, 135, 31, 0.05);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.transit_item h5 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #222;
  margin-bottom: 8px;
}

.transit_item p {
  color: #666;
  line-height: 1.5;
}

.yogas_remedies {
  margin-top: 30px;
}

.yogas_remedies h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #222;
  margin-bottom: 15px;
  text-align: center;
}

.yogas_remedies p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.yoga_examples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.yoga_item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.yoga_item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #f5871f;
  margin-bottom: 8px;
}

.yoga_item p {
  color: #666;
  line-height: 1.5;
}

.remedies {
  margin-top: 30px;
}

.remedies h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #222;
  margin-bottom: 15px;
  text-align: center;
}

.remedies p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.remedy_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.remedy_item {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.remedy_item i {
  font-size: 32px;
  color: #f5871f;
  margin-bottom: 15px;
}

.remedy_item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #222;
  margin-bottom: 8px;
}

.cta_section {
  margin-top: 50px;
  text-align: center;
}

.cta_box {
  background: linear-gradient(135deg, #f5871f, #ff6b2b);
  color: #fff;
  padding: 40px;
  border-radius: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.cta_box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 15px;
}

.cta_box p {
  font-size: 16px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.service_cta_btn {
  background: #fff;
  color: #f5871f;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
}

.service_cta_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 135, 31, 0.3);
}

.hs_additional_services_wrapper {
  padding: 80px 20px;
  background: #f6f6f6;
}

.additional_services_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.additional_service_card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.additional_service_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.additional_service_card .service_icon {
  height: 120px;
  background: linear-gradient(135deg, #f5871f, #ff6b2b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 36px;
}

.additional_service_card .service_content {
  padding: 25px;
}

.additional_service_card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #222;
  margin-bottom: 10px;
}

.additional_service_card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.learn_more_btn {
  background: linear-gradient(90deg, #2db8e8, #1fa8e0);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.learn_more_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(45, 184, 232, 0.35);
}

/* Mobile Responsive for Services */
@media (max-width: 768px) {
  .vedic_processes {
    grid-template-columns: 1fr;
  }
  
  .transit_list {
    grid-template-columns: 1fr;
  }
  
  .yoga_examples {
    grid-template-columns: 1fr;
  }
  
  .remedy_list {
    grid-template-columns: 1fr;
  }
  
  .additional_services_grid {
    grid-template-columns: 1fr;
  }
}
.hs_service_main_wrapper { padding-bottom: 80px; }

/* Services Grid Layout */
.services_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Services Tabs */
.hs_services_tabs_wrapper {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service_tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.tab_btn {
  background: #fff;
  border: 2px solid #e0e0e0;
  color: #333;
  padding: 14px 28px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 140px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.tab_btn:hover {
  background: linear-gradient(135deg, #f5871f, #ff6b2b);
  color: #fff;
  border-color: #f5871f;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 135, 31, 0.3);
}

.tab_btn.active {
  background: linear-gradient(135deg, #f5871f, #ff6b2b);
  color: #fff;
  border-color: #f5871f;
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(245, 135, 31, 0.25);
}

/* Tab Content */
.tab_content {
  min-height: 400px;
}

.tab_pane {
  display: none;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  border: 1px solid rgba(245, 135, 31, 0.1);
}

.tab_pane.active {
  display: block;
  animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
  from { 
    opacity: 0; 
    transform: translateY(30px) scale(0.95); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
  }
}

.service_intro {
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, rgba(245, 135, 31, 0.08) 0%, rgba(255, 107, 43, 0.05) 100%);
  border-radius: 15px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.service_intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f5871f, #ff6b2b);
}

.service_intro h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #222;
  margin-bottom: 18px;
  font-weight: 700;
}

.service_intro p {
  color: #555;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto 25px;
  font-size: 16px;
}

.explore_btn {
  display: inline-block;
  background: linear-gradient(135deg, #f5871f, #ff6b2b);
  color: #fff;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(245, 135, 31, 0.25);
}

.explore_btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.explore_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 135, 31, 0.35);
}

.explore_btn:hover::before {
  left: 100%;
}

/* Service Features */
.service_features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  margin-top: 40px;
  padding: 0 20px;
}

.feature_item {
  background: #fff;
  padding: 35px 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 135, 31, 0.1);
}

.feature_item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f5871f, #ff6b2b);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(245, 135, 31, 0.15);
  border-color: rgba(245, 135, 31, 0.2);
}

.feature_item:hover::before {
  transform: scaleX(1);
}

.feature_item i {
  font-size: 36px;
  color: #f5871f;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  display: inline-block;
  background: linear-gradient(135deg, rgba(245, 135, 31, 0.1), rgba(255, 107, 43, 0.05));
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
}

.feature_item:hover i {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(245, 135, 31, 0.15), rgba(255, 107, 43, 0.1));
}

.feature_item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #222;
  margin-bottom: 12px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.feature_item:hover h4 {
  color: #f5871f;
}

.feature_item p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 15px;
  transition: color 0.3s ease;
}

.feature_item:hover p {
  color: #555;
}

/* CTA Section */
.hs_services_cta_wrapper {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a103d 0%, #0a0518 50%, #1a103d 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hs_services_cta_wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(245,135,31,0.1)"/></svg>');
  background-size: 50px 50px;
  animation: float 20s linear infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-50px); }
}

.cta_box {
  max-width: 700px;
  margin: 0 auto;
  padding: 50px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.cta_box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 25px;
  font-weight: 700;
  background: linear-gradient(135deg, #fff, #f8f9fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta_box p {
  font-size: 18px;
  margin-bottom: 35px;
  opacity: 0.9;
  line-height: 1.6;
}

.cta_buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta_primary_btn, .cta_secondary_btn {
  padding: 18px 40px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.cta_primary_btn {
  background: linear-gradient(135deg, #f5871f, #ff6b2b);
  color: #fff;
  box-shadow: 0 4px 20px rgba(245, 135, 31, 0.3);
}

.cta_secondary_btn {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.cta_primary_btn::before, .cta_secondary_btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.cta_primary_btn:hover, .cta_secondary_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245, 135, 31, 0.4);
}

.cta_primary_btn:hover::before, .cta_secondary_btn:hover::before {
  left: 100%;
}

.cta_secondary_btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Mobile Responsive for Services */
@media (max-width: 768px) {
  .hs_services_tabs_wrapper {
    padding: 40px 15px;
  }
  
  .service_tabs {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
  }
  
  .tab_btn {
    min-width: 100%;
    margin: 3px 0;
    padding: 12px 20px;
    font-size: 13px;
  }
  
  .service_intro {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  
  .service_intro h3 {
    font-size: 24px;
  }
  
  .service_intro p {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .explore_btn {
    padding: 12px 25px;
    font-size: 14px;
  }
  
  .service_features {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
    padding: 0 10px;
  }
  
  .feature_item {
    padding: 30px 20px;
  }
  
  .feature_item i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 28px;
  }
  
  .feature_item h4 {
    font-size: 18px;
  }
  
  .feature_item p {
    font-size: 14px;
  }
  
  .cta_box {
    padding: 35px 25px;
  }
  
  .cta_box h2 {
    font-size: 28px;
  }
  
  .cta_box p {
    font-size: 16px;
  }
  
  .cta_buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .cta_primary_btn, .cta_secondary_btn {
    width: 100%;
    max-width: 280px;
    padding: 15px 30px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hs_services_tabs_wrapper {
    padding: 30px 10px;
  }
  
  .service_tabs {
    margin-bottom: 25px;
  }
  
  .tab_btn {
    padding: 10px 18px;
    font-size: 12px;
    min-width: 100%;
  }
  
  .service_intro {
    padding: 25px 15px;
  }
  
  .service_intro h3 {
    font-size: 22px;
  }
  
  .service_intro p {
    font-size: 14px;
  }
  
  .service_features {
    gap: 20px;
    margin-top: 25px;
    padding: 0 5px;
  }
  
  .feature_item {
    padding: 25px 15px;
  }
  
  .feature_item i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
  }
  
  .feature_item h4 {
    font-size: 16px;
  }
  
  .feature_item p {
    font-size: 13px;
  }
  
  .cta_box {
    padding: 30px 20px;
  }
  
  .cta_box h2 {
    font-size: 24px;
  }
  
  .cta_box p {
    font-size: 15px;
  }
}
.section_heading p.italic { font-style: italic; }

/* Individual Service Page Styles */
.hs_service_hero_wrapper {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a103d 0%, #0a0518 100%);
  color: #fff;
  text-align: center;
}

.service_hero_content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
}

.service_hero_content h1 span {
  color: #f5871f;
}

.service_hero_content p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.6;
}

.service_content_layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.service_main_content {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(245, 135, 31, 0.1);
}

.service_intro_box {
  background: linear-gradient(135deg, rgba(245, 135, 31, 0.05), rgba(255, 107, 43, 0.03));
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 40px;
  border-left: 4px solid #f5871f;
}

.service_intro_box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #222;
  margin-bottom: 15px;
  font-weight: 600;
}

.service_intro_box p {
  color: #555;
  line-height: 1.7;
  font-size: 16px;
}

.service_features_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.service_feature_card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(245, 135, 31, 0.1);
  transition: all 0.3s ease;
}

.service_feature_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(245, 135, 31, 0.15);
}

.feature_icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(245, 135, 31, 0.1), rgba(255, 107, 43, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature_icon i {
  font-size: 24px;
  color: #f5871f;
}

.feature_content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #222;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature_content p {
  color: #666;
  line-height: 1.6;
  font-size: 14px;
}

.service_details_section {
  margin-bottom: 40px;
}

.service_details_section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #222;
  margin-bottom: 25px;
  font-weight: 600;
  border-bottom: 2px solid #f5871f;
  padding-bottom: 10px;
}

.service_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service_item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(245, 135, 31, 0.08);
  transition: all 0.3s ease;
}

.service_item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 20px rgba(245, 135, 31, 0.1);
}

.service_item i {
  font-size: 24px;
  color: #f5871f;
  margin-top: 5px;
  flex-shrink: 0;
}

.service_item div h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #222;
  margin-bottom: 8px;
  font-weight: 600;
}

.service_item div p {
  color: #666;
  line-height: 1.6;
  font-size: 14px;
  margin: 0;
}

.service_benefits {
  background: linear-gradient(135deg, rgba(245, 135, 31, 0.05), rgba(255, 107, 43, 0.03));
  padding: 40px;
  border-radius: 15px;
  margin-top: 40px;
}

.service_benefits h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #222;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.benefits_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.benefit_item {
  text-align: center;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(245, 135, 31, 0.15);
}

.benefit_item i {
  font-size: 32px;
  color: #f5871f;
  margin-bottom: 15px;
}

.benefit_item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #222;
  margin-bottom: 10px;
  font-weight: 600;
}

.benefit_item p {
  color: #666;
  line-height: 1.5;
  font-size: 14px;
  margin: 0;
}

/* Service Sidebar */
.service_sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar_card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(245, 135, 31, 0.1);
}

.sidebar_card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #222;
  margin-bottom: 15px;
  font-weight: 600;
}

.sidebar_card p {
  color: #666;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 20px;
}

.sidebar_btn {
  display: inline-block;
  background: linear-gradient(135deg, #f5871f, #ff6b2b);
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-align: center;
}

.sidebar_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 135, 31, 0.3);
}

.requirements_list, .other_services_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.requirements_list li, .other_services_list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(245, 135, 31, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #555;
}

.requirements_list li:last-child, .other_services_list li:last-child {
  border-bottom: none;
}

.requirements_list i {
  color: #f5871f;
  font-size: 16px;
  width: 20px;
}

.other_services_list a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.other_services_list a:hover {
  color: #f5871f;
}

.hs_service_cta_wrapper {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a103d 0%, #0a0518 100%);
  color: #fff;
  text-align: center;
}

.service_cta_btn {
  display: inline-block;
  background: linear-gradient(135deg, #f5871f, #ff6b2b);
  color: #fff;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 135, 31, 0.3);
}

.service_cta_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 135, 31, 0.4);
}

/* Mobile Responsive for Service Pages */
@media (max-width: 968px) {
  .service_content_layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .service_sidebar {
    order: -1;
  }
  
  .service_main_content {
    padding: 30px 20px;
  }
  
  .service_hero_content h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hs_service_hero_wrapper {
    padding: 60px 15px;
  }
  
  .service_hero_content h1 {
    font-size: 32px;
  }
  
  .service_hero_content p {
    font-size: 16px;
  }
  
  .service_content_layout {
    gap: 25px;
  }
  
  .service_main_content {
    padding: 25px 15px;
  }
  
  .service_intro_box {
    padding: 25px 20px;
  }
  
  .service_features_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service_feature_card {
    padding: 25px 20px;
  }
  
  .service_item {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
  
  .service_item i {
    align-self: flex-start;
  }
  
  .benefits_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .benefit_item {
    padding: 20px 15px;
  }
  
  .service_benefits {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .hs_service_hero_wrapper {
    padding: 50px 10px;
  }
  
  .service_hero_content h1 {
    font-size: 28px;
  }
  
  .service_main_content {
    padding: 20px 10px;
  }
  
  .service_intro_box {
    padding: 20px 15px;
  }
  
  .service_feature_card {
    padding: 20px 15px;
  }
  
  .service_item {
    padding: 15px;
  }
  
  .benefits_grid {
    grid-template-columns: 1fr;
  }
  
  .benefit_item {
    padding: 20px;
  }
  
  .sidebar_card {
    padding: 20px 15px;
  }
}
/* Services Tabs Grid */
.hs_services_tabs_wrapper {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services_tabs_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.service_tab_item {
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(245, 135, 31, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service_tab_item.featured {
  border: 2px solid #f5871f;
  transform: scale(1.02);
}

.service_tab_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(245, 135, 31, 0.15);
  text-decoration: none;
  color: inherit;
}

.service_tab_item:visited {
  text-decoration: none;
  color: inherit;
}

.service_tab_icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f5871f, #ff6b2b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service_tab_item:hover .service_tab_icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #ff6b2b, #f5871f);
}

.service_tab_icon i {
  font-size: 24px;
  color: #fff;
}

.service_tab_info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #222;
  margin-bottom: 5px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service_tab_info span {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  display: block;
  margin-top: 3px;
}

.service_tab_item:hover .service_tab_info h4 {
  color: #f5871f;
}

/* Service Details Wrapper */
.hs_service_details_wrapper {
  padding: 60px 20px;
  background: #f9f9f9;
}

.service_detail_section {
  display: none;
  animation: fadeInUp 0.6s ease-out;
}

.service_detail_section.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service_detail_content {
  max-width: 1000px;
  margin: 0 auto;
}

.service_intro_text {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #f5871f;
}

.service_intro_text p {
  color: #555;
  line-height: 1.7;
  font-size: 16px;
  margin: 0;
}

.service_process_sections {
  display: grid;
  gap: 40px;
}

.process_section {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(245, 135, 31, 0.1);
}

.process_section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #222;
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 2px solid #f5871f;
  padding-bottom: 10px;
}

.process_section p {
  color: #555;
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 25px;
}

/* Info Tables */
.info_table_section {
  margin: 30px 0;
}

.info_table_section h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #222;
  margin-bottom: 15px;
  font-weight: 600;
}

.responsive_table {
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.houses_table, .planets_table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.houses_table th, .planets_table th {
  background: linear-gradient(135deg, #f5871f, #ff6b2b);
  color: #fff;
  padding: 15px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
}

.houses_table td, .planets_table td {
  padding: 12px 15px;
  border-bottom: 1px solid #e0e0e0;
  color: #555;
  font-size: 14px;
}

.houses_table tr:nth-child(even), .planets_table tr:nth-child(even) {
  background: rgba(245, 135, 31, 0.03);
}

.houses_table tr:hover, .planets_table tr:hover {
  background: rgba(245, 135, 31, 0.08);
}

.info_box {
  background: linear-gradient(135deg, rgba(245, 135, 31, 0.05), rgba(255, 107, 43, 0.03));
  padding: 20px;
  border-radius: 10px;
  border-left: 3px solid #f5871f;
  margin: 20px 0;
}

.info_box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #222;
  margin-bottom: 10px;
  font-weight: 600;
}

.info_box p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Prediction Methods */
.prediction_methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.method_card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(245, 135, 31, 0.1);
  transition: all 0.3s ease;
}

.method_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(245, 135, 31, 0.15);
}

.method_icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(245, 135, 31, 0.1), rgba(255, 107, 43, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.method_icon i {
  font-size: 20px;
  color: #f5871f;
}

.method_content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #222;
  margin-bottom: 10px;
  font-weight: 600;
}

.method_content p {
  color: #555;
  line-height: 1.6;
  font-size: 14px;
  margin: 0;
}

.transit_list {
  margin-top: 15px;
}

.transit_item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(245, 135, 31, 0.1);
  font-size: 14px;
  color: #555;
}

.transit_item:last-child {
  border-bottom: none;
}

.transit_item strong {
  color: #f5871f;
  font-weight: 600;
}

/* Yoga Examples */
.yoga_examples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.yoga_card {
  background: linear-gradient(135deg, rgba(245, 135, 31, 0.05), rgba(255, 107, 43, 0.03));
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(245, 135, 31, 0.2);
  transition: all 0.3s ease;
}

.yoga_card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(245, 135, 31, 0.15);
}

.yoga_card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #222;
  margin-bottom: 8px;
  font-weight: 600;
}

.yoga_card p {
  color: #666;
  line-height: 1.5;
  font-size: 14px;
  margin: 0;
}

/* Remedies Grid */
.remedies_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.remedy_item {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(245, 135, 31, 0.1);
  transition: all 0.3s ease;
}

.remedy_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(245, 135, 31, 0.15);
}

.remedy_icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(245, 135, 31, 0.1), rgba(255, 107, 43, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.remedy_icon i {
  font-size: 24px;
  color: #f5871f;
}

.remedy_item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #222;
  margin-bottom: 8px;
  font-weight: 600;
}

/* Service CTA Box */
.service_cta_box {
  background: linear-gradient(135deg, #1a103d 0%, #0a0518 100%);
  color: #fff;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.service_cta_box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f5871f, #ff6b2b);
}

.service_cta_box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.service_cta_box p {
  font-size: 16px;
  margin-bottom: 25px;
  opacity: 0.9;
}

/* Feature Highlights */
.feature_highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.highlight_item {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(245, 135, 31, 0.1);
  transition: all 0.3s ease;
}

.highlight_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(245, 135, 31, 0.15);
}

.highlight_item i {
  font-size: 32px;
  color: #f5871f;
  margin-bottom: 15px;
}

.highlight_item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #222;
  margin-bottom: 10px;
  font-weight: 600;
}

.highlight_item p {
  color: #666;
  line-height: 1.5;
  font-size: 14px;
  margin: 0;
}

/* Mobile Responsive for Service Tabs */
@media (max-width: 768px) {
  .hs_services_tabs_wrapper {
    padding: 40px 15px;
  }
  
  .services_tabs_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .service_tab_item {
    padding: 25px 20px;
    gap: 15px;
  }
  
  .service_tab_icon {
    width: 50px;
    height: 50px;
  }
  
  .service_tab_icon i {
    font-size: 20px;
  }
  
  .service_tab_info h4 {
    font-size: 16px;
  }
  
  .service_tab_info span {
    font-size: 13px;
  }
  
  .hs_service_details_wrapper {
    padding: 40px 15px;
  }
  
  .process_section {
    padding: 25px 20px;
  }
  
  .process_section h3 {
    font-size: 20px;
  }
  
  .prediction_methods {
    grid-template-columns: 1fr;
  }
  
  .yoga_examples {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .remedies_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature_highlights {
    grid-template-columns: 1fr;
  }
  
  .service_cta_box {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .hs_services_tabs_wrapper {
    padding: 30px 10px;
  }
  
  .services_tabs_grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .service_tab_item {
    padding: 20px 15px;
    gap: 12px;
  }
  
  .service_tab_icon {
    width: 45px;
    height: 45px;
  }
  
  .service_tab_icon i {
    font-size: 18px;
  }
  
  .service_tab_info h4 {
    font-size: 15px;
  }
  
  .service_tab_info span {
    font-size: 12px;
  }
  
  .process_section {
    padding: 20px 15px;
  }
  
  .yoga_examples {
    grid-template-columns: 1fr;
  }
  
  .remedies_grid {
    grid-template-columns: 1fr;
  }
  
  .service_cta_box {
    padding: 25px 15px;
  }
  
  .service_cta_box h3 {
    font-size: 20px;
  }
}

/* Legacy service card styles (keeping for compatibility) */
.service_card {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
}
.service_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.14);
}
.service_card img {
  width: 100%;
  height: 202px;
  object-fit: cover;
  transition: transform 0.5s;
}
.service_card:hover img { 
  transform: scale(1.05); 
}
.service_body {
  padding: 18px;
  text-align: center;
  border-top: 3px solid #f5871f;
}
.service_body h5 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin: 0;
}

.services_cta { text-align: center; margin-top: 50px; }
.servicesbtn {
  display: inline-block;
  background: linear-gradient(90deg, #f5871f, #ff6b2b);
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 14px rgba(245,135,31,0.35);
}
.servicesbtn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(245,135,31,0.5); }

/* ======= ADVERT ======= */
/* .hs_advert_main_wrapper {
  position: relative;
  padding: 90px 0;
  background: url("https://hilarious-sable-7c6dcd.netlify.app/images/overview_bg.jpg") center / cover no-repeat,
              linear-gradient(135deg, #1a1030, #0a0518);
  background-blend-mode: overlay;
  color: #fff;
  text-align: center;
} */

.hs_advert_main_wrapper {
    background: url("https://hilarious-sable-7c6dcd.netlify.app/images/overview_bg.jpg") 50% 0 repeat-y;
    background-size: cover;
    background-position: center 0;
    background-repeat: no-repeat;
    float: left;
    width: 100%;
    height: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    text-align: center;
    background-attachment: fixed;
}

.hs_advert_img_overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 5, 24, 0.75);
}
.hs_advert_cont_wrapper {
  position: relative;
  z-index: 2;
}

/* Festival Calendar Styles */
.festival-intro {
  font-size: 18px;
  margin-bottom: 40px;
  color: #f0f0f0;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.festival_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

/* Festival categories with auto height based on content */
.festival_category {
  height: auto;
  min-height: auto;
  display: flex;
  flex-direction: column;
}

.festival_list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Remove fixed heights to allow natural content flow */
.festival_category:nth-child(3),
.festival_category:nth-child(4),
.festival_category:nth-child(5),
.festival_category:nth-child(6) {
  min-height: auto;
}

/* Islamic festivals adjustments - let content flow naturally */
.festival_category:nth-child(2) .festival_list {
  gap: 12px;
}

.festival_category:nth-child(2) .festival_item {
  padding: 12px 15px;
}

.festival_category {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.festival_category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.festival_header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.festival_icon {
  font-size: 28px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.festival_icon.hindu { background: linear-gradient(135deg, #ff6b35, #f7931e); }
.festival_icon.islamic { background: linear-gradient(135deg, #4a90e2, #357abd); }
.festival_icon.christian { background: linear-gradient(135deg, #8e44ad, #9b59b6); }
.festival_icon.buddhist { background: linear-gradient(135deg, #f39c12, #e67e22); }
.festival_icon.sikh { background: linear-gradient(135deg, #3498db, #2980b9); }
.festival_icon.jain { background: linear-gradient(135deg, #e74c3c, #c0392b); }

/* Special styling for National Observances section */
.festival_category:nth-last-child(1) {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.15) 0%, 
    rgba(255, 255, 255, 0.1) 33%, 
    rgba(255, 255, 255, 0.05) 66%, 
    rgba(255, 255, 255, 0.15) 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.festival_category:nth-last-child(1)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF9933 0%, #FFFFFF 33%, #138808 66%, #FF9933 100%);
  animation: flagWave 3s ease-in-out infinite;
}

.festival_category:nth-last-child(1) .festival_header {
  border-bottom: 2px solid rgba(255, 153, 51, 0.5);
}

.festival_category:nth-last-child(1) .festival_icon {
  background: linear-gradient(135deg, #FF9933, #138808);
  box-shadow: 0 0 20px rgba(255, 153, 51, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.festival_category:nth-last-child(1) .festival_header h3 {
  background: linear-gradient(135deg, #FF9933, #FFFFFF, #138808);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.festival_category:nth-last-child(1) .festival_item {
  border-left: 3px solid transparent;
  background: linear-gradient(90deg, 
    rgba(255, 153, 51, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 50%, 
    rgba(19, 136, 8, 0.1) 100%);
}

.festival_category:nth-last-child(1) .festival_item:hover {
  border-left-color: #FF9933;
  background: linear-gradient(90deg, 
    rgba(255, 153, 51, 0.2) 0%, 
    rgba(255, 255, 255, 0.1) 50%, 
    rgba(19, 136, 8, 0.2) 100%);
  transform: translateX(5px) scale(1.02);
}

.festival_category:nth-last-child(1) .festival_date {
  background: linear-gradient(135deg, #FF9933, #138808);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(255, 153, 51, 0.3);
}

@keyframes flagWave {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.festival_header h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.festival-note {
  font-size: 12px;
  color: #ccc;
  font-style: italic;
  margin-top: 5px;
}

.festival_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.festival_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.festival_item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: #f5871f;
  transform: translateX(5px);
}

.festival_name {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  flex: 1;
}

.festival_date {
  color: #f5871f;
  font-size: 13px;
  font-weight: 600;
  background: rgba(245, 135, 31, 0.1);
  padding: 4px 10px;
  border-radius: 15px;
  white-space: nowrap;
}

.hs_advert_cont_wrapper {
  max-width: 950px;
  margin: 0 auto;
}

.hs_advert_cont_wrapper h1 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #f5871f;
  font-weight: 700;
}
.hs_advert_cont_wrapper p {
  font-size: 15px;
  line-height: 1.8;
  color: #e4e4e4;
}

/* ======= COUNTER ======= */
.hs_counter_main_wrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 60px 20px;
  background: #fff;
  gap: 20px;
}
.hs_counter_cont_wrapper {
  text-align: center;
  flex: 1;
  min-width: 160px;
}
.count_circle {
  width: 90px; height: 90px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5871f, #ff6b2b);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(245,135,31,0.35);
}
.hs_counter_cont_wrapper h5 {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
}

/* ======= TESTIMONIALS ======= */
.hs_testi_slider_main_wrapper {
  padding-bottom: 80px;
  background: #f6f6f6;
}
.testi_row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.testi_card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid rgba(245, 135, 31, 0.1);
  overflow: hidden;
}
.testi_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f5871f, #ff6b2b);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.testi_card:hover { 
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(245, 135, 31, 0.15);
  border-color: rgba(245, 135, 31, 0.3);
}
.testi_card:hover::before {
  transform: scaleX(1);
}
.testi_quote { 
  position: relative; 
  padding: 25px 25px 25px 45px;
  margin-bottom: 25px;
  background: rgba(245, 135, 31, 0.03);
  border-radius: 10px;
  border-left: 3px solid #f5871f;
}
.testi_quote .fa-quote-left {
  position: absolute;
  top: 15px; 
  left: 15px;
  font-size: 24px;
  color: #f5871f;
  opacity: 0.8;
}
.testi_quote p { 
  font-size: 16px; 
  color: #444; 
  line-height: 1.8; 
  font-style: italic;
  font-weight: 400;
  margin: 0;
}
.testi_client {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0 0 0;
  border-top: 2px solid rgba(245, 135, 31, 0.1);
}
.testi_img img {
  width: 80px; 
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f5871f;
  box-shadow: 0 4px 15px rgba(245, 135, 31, 0.2);
  transition: all 0.3s ease;
}
.testi_card:hover .testi_img img {
  transform: scale(1.1);
  border-color: #ff6b2b;
}
.testi_text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin: 0 0 5px 0;
}
.testi_text p { 
  color: #f5871f; 
  font-size: 14px; 
  margin: 0;
  font-weight: 500;
}
.testi_card .testi_text { 
  flex: 1; 
  text-align: left;
}

.testi_dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.testi_dots span {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #ccc;
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}
.testi_dots span.active { background: #f5871f; transform: scale(1.2); }

/* ======= ABOUT US PAGE ======= */

/* About Hero Section */
.hs_about_hero_wrapper {
  background: linear-gradient(135deg, #1a1030 0%, #0a0518 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hs_about_hero_wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://hilarious-sable-7c6dcd.netlify.app/images/overview_bg.jpg") center/cover no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.about_hero_content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.about_hero_content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: #f5871f;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.about_intro {
  font-size: 18px;
  line-height: 1.8;
  color: #f0f0f0;
  max-width: 700px;
  margin: 0 auto;
}

.about_intro p {
  margin-bottom: 20px;
}

/* Expertise Section */
.hs_expertise_main_wrapper {
  padding: 80px 0;
  background: #f8f9fa;
}

.expertise_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.expertise_card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(245, 135, 31, 0.1);
}

.expertise_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(245, 135, 31, 0.15);
}

.expertise_icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f5871f, #ff6b2b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.expertise_icon i {
  font-size: 28px;
  color: #fff;
}

.expertise_content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #222;
  margin-bottom: 15px;
  font-weight: 600;
}

.expertise_content p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}

.expertise_list {
  list-style: none;
  padding: 0;
}

.expertise_list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #444;
}

.expertise_list i {
  color: #f5871f;
  font-size: 14px;
}

.expertise_note {
  background: rgba(245, 135, 31, 0.05);
  padding: 15px;
  border-radius: 8px;
  border-left: 3px solid #f5871f;
  font-style: italic;
  color: #555;
}

/* Business Strengths */
.business_strengths {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 20px;
}

.strength_item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: rgba(245, 135, 31, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.strength_item:hover {
  background: rgba(245, 135, 31, 0.1);
  transform: translateX(5px);
}

.strength_item i {
  color: #f5871f;
  font-size: 18px;
}

.strength_item span {
  font-size: 14px;
  font-weight: 600;
  color: #222;
}

/* Why Choose Section */
.hs_choose_main_wrapper {
  padding: 80px 0;
  background: #fff;
}

.choose_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.choose_item {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 15px;
  border: 2px solid rgba(245, 135, 31, 0.1);
  transition: all 0.3s ease;
}

.choose_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(245, 135, 31, 0.2);
  border-color: #f5871f;
}

.choose_icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f5871f, #ff6b2b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.choose_icon i {
  font-size: 24px;
  color: #fff;
}

.choose_item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
  margin: 0;
}

/* Promise Section */
.hs_promise_main_wrapper {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1030 0%, #0a0518 100%);
  color: #fff;
}

.promise_content {
  max-width: 600px;
  margin: 40px auto 0;
}

.promise_box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.promise_box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #f5871f, #ff6b2b);
  border-radius: 2px;
}

.promise_icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f5871f, #ff6b2b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.promise_icon i {
  font-size: 32px;
  color: #fff;
}

.promise_box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #f5871f;
  margin-bottom: 15px;
  font-weight: 600;
}

.promise_box p {
  font-size: 18px;
  line-height: 1.7;
  color: #f0f0f0;
  margin: 0;
}

/* ======= SERVICES PAGE ======= */

/* Services Hero Section */
.hs_services_hero_wrapper {
  background: linear-gradient(135deg, #1a1030 0%, #0a0518 100%);
  /* padding: 100px 0; */
  padding: 50px 0; 
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hs_services_hero_wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://hilarious-sable-7c6dcd.netlify.app/images/overview_bg.jpg") center/cover no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.services_hero_content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.services_hero_content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #f5871f;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.services_hero_content p {
  font-size: 18px;
  line-height: 1.6;
  color: #f0f0f0;
  max-width: 600px;
  margin: 0 auto;
}

/* Service Detail Section */
.hs_service_detail_main_wrapper {
  padding: 80px 0;
  background: #f8f9fa;
}

.service_detail_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.service_detail_card {
  background: #fff;
  border-radius: 15px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(245, 135, 31, 0.1);
  position: relative;
  overflow: hidden;
}

.service_detail_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f5871f, #ff6b2b);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service_detail_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(245, 135, 31, 0.15);
  border-color: rgba(245, 135, 31, 0.3);
}

.service_detail_card:hover::before {
  transform: scaleX(1);
}

.service_icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f5871f, #ff6b2b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.service_icon i {
  font-size: 32px;
  color: #fff;
}

.service_detail_content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #222;
  margin-bottom: 15px;
  font-weight: 600;
}

.service_subtitle {
  font-size: 16px;
  color: #f5871f;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.house_analysis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.house_item {
  background: rgba(245, 135, 31, 0.05);
  padding: 20px;
  border-radius: 10px;
  border-left: 3px solid #f5871f;
}

.house_item h4 {
  font-size: 18px;
  color: #222;
  margin-bottom: 10px;
  font-weight: 600;
}

.house_item p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.service_description {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

.service_cta_btn {
  display: inline-block;
  background: linear-gradient(90deg, #f5871f, #ff6b2b);
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 135, 31, 0.3);
}

.service_cta_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 135, 31, 0.4);
}

/* Numerology Section */
.hs_numerology_main_wrapper {
  padding: 80px 0;
  background: #fff;
}

.number_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.number_card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 15px;
  padding: 25px;
  border: 2px solid rgba(245, 135, 31, 0.1);
  transition: all 0.3s ease;
}

.number_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(245, 135, 31, 0.15);
  border-color: #f5871f;
}

.number_title {
  font-size: 20px;
  font-weight: 700;
  color: #f5871f;
  margin-bottom: 15px;
  text-align: center;
  padding: 10px;
  background: rgba(245, 135, 31, 0.1);
  border-radius: 8px;
}

.number_traits {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trait_positive {
  font-size: 14px;
  color: #444;
  padding: 8px 12px;
  background: rgba(46, 204, 113, 0.1);
  border-radius: 6px;
  border-left: 3px solid #2ecc71;
}

.trait_negative {
  font-size: 14px;
  color: #444;
  padding: 8px 12px;
  background: rgba(231, 76, 60, 0.1);
  border-radius: 6px;
  border-left: 3px solid #e74c3c;
}

.numerology_note {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background: rgba(245, 135, 31, 0.05);
  border-radius: 10px;
  font-style: italic;
  color: #666;
}

/* Personality Insights Section */
.hs_personality_main_wrapper {
  padding: 80px 0;
  background: #f6f6f6;
}

.personality_content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.personality_box {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border: 1px solid rgba(245, 135, 31, 0.1);
}

.personality_box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #222;
  margin-bottom: 20px;
  font-weight: 600;
}

.personality_list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.personality_list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #555;
}

.personality_list i {
  color: #f5871f;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.personality_note {
  background: rgba(245, 135, 31, 0.05);
  padding: 15px;
  border-radius: 8px;
  border-left: 3px solid #f5871f;
  font-style: italic;
  color: #666;
  margin: 0;
}

/* Face Reading */
.face_reading {
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(245, 135, 31, 0.1);
}

.face_reading h4 {
  font-size: 18px;
  color: #222;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.face_features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 20px;
}

.feature_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: rgba(245, 135, 31, 0.05);
  border-radius: 8px;
}

.feature_label {
  font-size: 14px;
  font-weight: 600;
  color: #f5871f;
}

.feature_desc {
  font-size: 14px;
  color: #555;
  text-align: right;
}

/* Vastu Section */
.hs_vastu_main_wrapper {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.vastu_content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.vastu_box {
  background: #fff;
  border-radius: 15px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(245, 135, 31, 0.1);
  text-align: center;
}

.vastu_icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f5871f, #ff6b2b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.vastu_icon i {
  font-size: 32px;
  color: #fff;
}

.vastu_text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #222;
  margin-bottom: 20px;
  font-weight: 600;
}

.vastu_text p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

/* Forecasting Section */
.hs_forecasting_main_wrapper {
  padding: 80px 0;
  background: #fff;
}

.forecasting_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.forecast_card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 15px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(245, 135, 31, 0.1);
  transition: all 0.3s ease;
}

.forecast_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(245, 135, 31, 0.15);
  border-color: rgba(245, 135, 31, 0.3);
}

.forecast_icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f5871f, #ff6b2b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.forecast_icon i {
  font-size: 28px;
  color: #fff;
}

.forecast_content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #222;
  margin-bottom: 20px;
  font-weight: 600;
}

.forecast_content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

.forecast_expectations {
  margin-top: 30px;
}

.expectation_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.expectation_item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(245, 135, 31, 0.05);
  border-radius: 10px;
  border-left: 3px solid #f5871f;
  transition: all 0.3s ease;
}

.expectation_item:hover {
  background: rgba(245, 135, 31, 0.1);
  transform: translateX(5px);
}

.expectation_item i {
  color: #f5871f;
  font-size: 20px;
  margin-top: 5px;
}

.expectation_item h5 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin: 0;
}

.expectation_item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.forecast_benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.benefit_item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(46, 204, 113, 0.1);
  border-radius: 8px;
  border-left: 3px solid #2ecc71;
  transition: all 0.3s ease;
}

.benefit_item:hover {
  background: rgba(46, 204, 113, 0.2);
  transform: translateX(5px);
}

.benefit_item i {
  color: #2ecc71;
  font-size: 18px;
}

.benefit_item h5 {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin: 0;
}

/* ======= FESTIVAL PAGE ======= */

/* Festival Hero Section */
.hs_festival_hero_wrapper {
  background: linear-gradient(135deg, #1a1030 0%, #0a0518 100%);
  padding: 100px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hs_festival_hero_wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://hilarious-sable-7c6dcd.netlify.app/images/overview_bg.jpg") center/cover no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.festival_hero_content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.festival_hero_content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #f5871f;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.festival_hero_content p {
  font-size: 18px;
  line-height: 1.6;
  color: #f0f0f0;
  max-width: 600px;
  margin: 0 auto;
}

/* Festival Calendar Section */
.hs_festival_calendar_main_wrapper {
  padding: 80px 0;
  background: #f8f9fa;
}

/* Festival Grid - Two column layout */
.festival_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.festival_column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.festival_category {
  height: auto;
  min-height: auto;
  max-height: none;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(245, 135, 31, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  margin-bottom: 0;
}

.festival_category:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 15px 35px rgba(245, 135, 31, 0.25);
  border-color: rgba(245, 135, 31, 0.5);
}

.festival_header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(245, 135, 31, 0.2);
}

.festival_icon {
  font-size: 28px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.festival_icon.hindu { background: linear-gradient(135deg, #ff6b35, #f7931e); }
.festival_icon.islamic { background: linear-gradient(135deg, #4a90e2, #357abd); }
.festival_icon.christian { background: linear-gradient(135deg, #8e44ad, #9b59b6); }
.festival_icon.buddhist { background: linear-gradient(135deg, #f39c12, #e67e22); }
.festival_icon.sikh { background: linear-gradient(135deg, #3498db, #2980b9); }
.festival_icon.jain { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.festival_icon.national { background: linear-gradient(135deg, #FF9933, #138808); }

.festival_category:hover .festival_icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.festival_header h3 {
  color: #222;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  flex: 1;
  transition: color 0.3s ease;
}

.festival_category:hover .festival_header h3 {
  color: #f5871f;
}

.festival-note {
  font-size: 12px;
  color: #666;
  font-style: italic;
  margin-top: 5px;
}

.festival_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: none;
}

.festival_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(245, 135, 31, 0.03) 0%, rgba(245, 135, 31, 0.08) 100%);
  border-radius: 10px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.festival_item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 135, 31, 0.1), transparent);
  transition: left 0.5s ease;
}

.festival_item:hover {
  background: linear-gradient(135deg, rgba(245, 135, 31, 0.08) 0%, rgba(245, 135, 31, 0.15) 100%);
  transform: translateX(6px);
  border-left-color: #f5871f;
  box-shadow: 0 4px 12px rgba(245, 135, 31, 0.2);
}

.festival_item:hover::before {
  left: 100%;
}

.festival_name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  flex: 1;
  position: relative;
  z-index: 1;
}

.festival_date {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #f5871f, #ff6b2b);
  padding: 5px 10px;
  border-radius: 15px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(245, 135, 31, 0.3);
  position: relative;
  z-index: 1;
}

/* Special styling for National Observances section */
.festival_category:nth-last-child(1) {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 2px solid rgba(255, 153, 51, 0.3);
  position: relative;
  overflow: hidden;
}

.festival_category:nth-last-child(1)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF9933 0%, #FFFFFF 33%, #138808 66%, #FF9933 100%);
}

.festival_category:nth-last-child(1) .festival_header {
  border-bottom: 2px solid rgba(255, 153, 51, 0.5);
}

.festival_category:nth-last-child(1) .festival_icon {
  background: linear-gradient(135deg, #FF9933, #138808);
  animation: gentlePulse 3s ease-in-out infinite;
}

@keyframes gentlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.festival_category:nth-last-child(1) .festival_header h3 {
  color: #FF9933;
  font-weight: 700;
}

.festival_category:nth-last-child(1) .festival_item:hover {
  border-left-color: #FF9933;
  transform: translateX(5px);
}

.festival_category:nth-last-child(1) .festival_date {
  background: linear-gradient(135deg, #FF9933, #138808);
  color: #fff;
  font-weight: 600;
}

/* ======= ZODIAC PREDICTIONS PAGES ======= */

/* Zodiac Hero Section */
.hs_zodiac_hero_wrapper {
  background: linear-gradient(135deg, #1a1030 0%, #0a0518 100%);
  padding: 100px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hs_zodiac_hero_wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://hilarious-sable-7c6dcd.netlify.app/images/overview_bg.jpg") center/cover no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.zodiac_hero_content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.zodiac_icon_large {
  font-size: 80px;
  color: #f5871f;
  margin-bottom: 30px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.zodiac_hero_content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #f5871f;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.zodiac_date_range {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 10px;
  font-weight: 500;
}

.zodiac_theme {
  font-size: 22px;
  color: #fff;
  font-style: italic;
  margin-bottom: 0;
}

/* Zodiac Predictions Section */
.hs_zodiac_predictions_main_wrapper {
  padding: 80px 0;
  background: #f8f9fa;
}

.predictions_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.prediction_card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(245, 135, 31, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.prediction_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f5871f, #ff6b2b);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.prediction_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(245, 135, 31, 0.15);
  border-color: rgba(245, 135, 31, 0.3);
}

.prediction_card:hover::before {
  transform: scaleX(1);
}

.prediction_header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.prediction_icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.prediction_icon.career {
  background: linear-gradient(135deg, #3498db, #2980b9);
}

.prediction_icon.finance {
  background: linear-gradient(135deg, #27ae60, #229954);
}

.prediction_icon.health {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.prediction_icon.love {
  background: linear-gradient(135deg, #e91e63, #c2185b);
}

.prediction_card:hover .prediction_icon {
  transform: scale(1.1) rotate(5deg);
}

.prediction_icon i {
  font-size: 24px;
  color: #fff;
}

.prediction_header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #222;
  margin: 0;
  font-weight: 600;
}

.prediction_content {
  flex: 1;
}

.prediction_content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.prediction_highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: rgba(245, 135, 31, 0.05);
  border-radius: 8px;
  border-left: 3px solid #f5871f;
}

.highlight_label {
  font-size: 14px;
  font-weight: 600;
  color: #f5871f;
  white-space: nowrap;
}

.highlight_text {
  font-size: 14px;
  color: #444;
  font-weight: 500;
}

/* Zodiac Summary Section */
.zodiac_summary {
  margin-top: 60px;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 40px;
  border: 2px solid rgba(245, 135, 31, 0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.zodiac_summary h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #222;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.zodiac_summary h2 span {
  color: #f5871f;
}

.summary_content {
  max-width: 800px;
  margin: 0 auto;
}

.summary_content p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  text-align: center;
}

.summary_points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.summary_point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(245, 135, 31, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.summary_point:hover {
  background: rgba(245, 135, 31, 0.1);
  transform: translateX(5px);
}

.summary_point i {
  color: #f5871f;
  font-size: 18px;
}

.summary_point span {
  font-size: 15px;
  color: #444;
  font-weight: 500;
}

/* Mobile Responsiveness for Zodiac Pages */
@media (max-width: 768px) {
  .zodiac_hero_content h1 {
    font-size: 32px;
  }
  
  .zodiac_date_range {
    font-size: 16px;
  }
  
  .zodiac_theme {
    font-size: 18px;
  }
  
  .predictions_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .prediction_card {
    padding: 25px;
  }
  
  .prediction_header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .prediction_header h3 {
    font-size: 20px;
  }
  
  .prediction_content p {
    font-size: 15px;
  }
  
  .prediction_highlight {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .zodiac_summary {
    padding: 30px 20px;
  }
  
  .zodiac_summary h2 {
    font-size: 26px;
  }
  
  .summary_content p {
    font-size: 16px;
  }
  
  .summary_points {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .summary_point {
    padding: 12px;
  }
  
  .summary_point span {
    font-size: 14px;
  }
}

/* ======= FOOTER ======= */
.hs_footer_main_wrapper {
  background: #11131a;
  color: #b8b8b8;
  padding: 60px 20px 30px;
  text-align: center;
}
.hs_footer_logo_wrapper img {
  height: 65px;
  margin: 0 auto 20px;
}
.footer_links { margin: 18px 0; font-size: 14px; }
.footer_links a { color: #d2d2d2; transition: color 0.3s; }
.footer_links a:hover { color: #f5871f; }
.footer_social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}
.footer_social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #1f2230;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s, transform 0.3s;
}
.footer_social a:hover { background: #f5871f; transform: translateY(-3px); }

.hs_bottom_footer_main_wrapper {
  background: #0b0d14;
  color: #888;
  padding: 18px 20px;
  text-align: center;
  font-size: 13px;
}

/* ======= RESPONSIVE ======= */

/* Tablet Styles */
@media (max-width: 992px) {
  .about_row { grid-template-columns: 1fr; }
  .zodiac_grid { grid-template-columns: 1fr; gap: 30px; }
  .zodiac_circle { width: 300px; height: 300px; margin: 0 auto; }
    .services_grid { grid-template-columns: repeat(2, 1fr); }
  .testi_row { grid-template-columns: 1fr; }
  .hs_slider_heading_wrapper h2 { font-size: 36px; }
  .mercury, .venus, .earth, .mars, .jupiter { display: none; }
  .sun { width: 140px; height: 140px; }
}

/* Mobile Styles */
@media (max-width: 768px) {
  /* Mobile Navigation */
  .mobile_menu_toggle {
    display: flex;
  }
  
  .hs_main_nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    flex-direction: column;
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  .hs_main_nav.active {
    right: 0;
  }
  
  .hs_main_nav ul {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  
  .hs_main_nav ul li a {
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }
  
  .book_appointment_btn {
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
  
  /* Festival Section Mobile */
  .festival_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .festival_category {
    padding: 20px;
    height: auto;
    min-height: auto;
  }
  
  .festival_header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .festival_header h3 {
    font-size: 20px;
  }
  
  .festival_item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px;
  }
  
  .festival_date {
    align-self: flex-end;
  }
  
  /* Reset min-heights for mobile */
  .festival_category:nth-child(3),
  .festival_category:nth-child(4),
  .festival_category:nth-child(5),
  .festival_category:nth-child(6) {
    min-height: auto;
  }
  
  /* Islamic festivals mobile adjustments */
  .festival_category:nth-child(2) .festival_list {
    gap: 8px;
  }
  
  .festival_category:nth-child(2) .festival_item {
    padding: 8px 10px;
  }
  
  /* National Observances Mobile */
  .festival_category:nth-last-child(1) {
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  .festival_category:nth-last-child(1) .festival_header h3 {
    font-size: 18px;
  }
  
  .festival_category:nth-last-child(1) .festival_item:hover {
    transform: translateX(3px) scale(1.01);
  }
  
  /* Top Header */
  .top_row {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .hs_top_contect {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }
  
  .hs_top_socialicon {
    justify-content: center;
  }
  
  /* Hero Section */
  .hs_slider_main_wrapper {
    height: 500px;
  }
  
  .hs_slider_heading_wrapper h4 {
    font-size: 18px;
  }
  
  .hs_slider_heading_wrapper h2 {
    font-size: 32px;
    margin: 10px 0;
  }
  
  /* About Section */
  .about_row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about_right h2 {
    font-size: 24px;
  }
  
  /* Zodiac Section */
  .zodiac_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .zodiac_circle {
    width: 250px;
    height: 250px;
  }
  
  .zodiac_item {
    padding: 15px;
  }
  
  /* Services Section */
  .services_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Counter Section */
  .hs_counter_main_wrapper {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .hs_counter_cont_wrapper {
    flex: 1 1 calc(50% - 10px);
    min-width: 150px;
  }
  
  /* Testimonials */
  .testi_row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testi_card {
    padding: 25px;
  }
  
  .testi_quote {
    padding: 20px 20px 20px 40px;
    margin-bottom: 20px;
  }
  
  .testi_quote .fa-quote-left {
    font-size: 20px;
    top: 10px;
    left: 10px;
  }
  
  .testi_quote p {
    font-size: 15px;
    line-height: 1.7;
  }
  
  .testi_client {
    gap: 15px;
  }
  
  .testi_img img {
    width: 60px;
    height: 60px;
  }
  
  .testi_text h2 {
    font-size: 18px;
  }
  
  .testi_text p {
    font-size: 13px;
  }
  
  /* Footer */
  .footer_links {
    font-size: 12px;
    line-height: 1.8;
  }
  
  .footer_links a {
    display: inline-block;
    margin: 5px;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  /* Hero Section */
  .hs_slider_main_wrapper {
    height: 450px;
  }
  
  .hs_slider_heading_wrapper h4 {
    font-size: 16px;
  }
  
  .hs_slider_heading_wrapper h2 {
    font-size: 24px;
  }
  
  /* Section Headings */
  .section_heading h2 {
    font-size: 22px;
  }
  
  .section_heading p {
    font-size: 14px;
  }
  
  /* Festival Section Small Mobile */
  .festival-intro {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .festival_category {
    padding: 15px;
  }
  
  .festival_header {
    gap: 8px;
    margin-bottom: 15px;
  }
  
  .festival_icon {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  
  .festival_header h3 {
    font-size: 18px;
  }
  
  .festival_item {
    padding: 8px;
  }
  
  .festival_name {
    font-size: 13px;
  }
  
  .festival_date {
    font-size: 12px;
    padding: 3px 8px;
  }
  
  /* Zodiac Section */
  .zodiac_circle {
    width: 200px;
    height: 200px;
  }
  
  .zodiac_item {
    padding: 12px;
  }
  
  .z_icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .z_info a {
    font-size: 14px;
  }
  
  .z_info span {
    font-size: 11px;
  }
  
  /* Services */
  .service_card {
    border-radius: 8px;
  }
  
  /* Counter Section */
  .hs_counter_cont_wrapper {
    flex: 1 1 100%;
    text-align: center;
  }
  
  .count_circle {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
  
  .hs_counter_cont_wrapper h5 {
    font-size: 14px;
  }
  
  /* Testimonials */
  .testi_card {
    padding: 15px;
  }
  
  .testi_quote p {
    font-size: 14px;
  }
  
  .testi_img img {
    width: 50px;
    height: 50px;
  }
  
  .testi_text h2 {
    font-size: 16px;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .hs_slider_heading_wrapper h2 {
    font-size: 20px;
  }
  
  .section_heading h2 {
    font-size: 20px;
  }
  
  .zodiac_circle {
    width: 180px;
    height: 180px;
  }
  
  .book_appointment_btn {
    font-size: 12px;
    padding: 10px 20px;
  }
  
  /* About Us Page Mobile */
  .about_hero_content h1 {
    font-size: 32px;
  }
  
  .about_intro {
    font-size: 16px;
  }
  
  .expertise_grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .expertise_card {
    padding: 20px;
  }
  
  .expertise_icon {
    width: 60px;
    height: 60px;
  margin-bottom: 15px;
  }
  
  .expertise_content h4 {
    font-size: 20px;
  }
  
  .expertise_content p {
    font-size: 14px;
  }
  
  .business_strengths {
    grid-template-columns: 1fr;
  }
  
  .strength_item {
    padding: 12px;
  }
  
  .choose_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .choose_item {
    padding: 20px 15px;
  }
  
  .choose_icon {
    width: 50px;
    height: 50px;
  }
  
  .choose_item h4 {
    font-size: 14px;
  }
  
  .promise_box {
    padding: 30px;
  }
  
  .promise_icon {
    width: 60px;
    height: 60px;
  }
  
  .promise_box h3 {
    font-size: 20px;
  }
  
  .promise_box p {
    font-size: 16px;
  }
  
  /* Services Page Mobile */
  .services_hero_content h1 {
    font-size: 32px;
  }
  
  .services_hero_content p {
    font-size: 16px;
  }
  
  .service_detail_grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .service_detail_card {
    padding: 25px;
  }
  
  .service_icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  
  .service_detail_content h2 {
    font-size: 24px;
  }
  
  .service_subtitle {
    font-size: 14px;
  }
  
  .house_analysis {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .house_item {
    padding: 15px;
  }
  
  .house_item h4 {
    font-size: 16px;
  }
  
  .service_description {
    font-size: 14px;
  margin-bottom: 20px;
  }
  
  .number_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .number_card {
    padding: 20px;
  }
  
  .number_title {
    font-size: 18px;
  padding: 8px;
  }
  
  .number_traits {
    gap: 8px;
  }
  
  .trait_positive,
  .trait_negative {
    font-size: 13px;
    padding: 6px 10px;
  }
  
  .personality_content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .personality_box {
    padding: 25px;
  }
  
  .personality_box h3 {
    font-size: 20px;
  }
  
  .personality_list {
    gap: 10px;
  }
  
  .personality_list li {
    font-size: 14px;
    padding: 10px;
  }
  
  .vastu_content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .vastu_box {
    padding: 25px;
  }
  
  .vastu_box h3 {
    font-size: 20px;
  }
  
  .forecasting_grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .forecast_card {
    padding: 25px;
  }
  
  .forecast_icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .forecast_content h3 {
    font-size: 20px;
  }
  
  .forecast_content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .expectation_list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .expectation_item {
    padding: 15px;
  }
  
  .expectation_item h5 {
    font-size: 14px;
  }
  
  .expectation_item p {
    font-size: 13px;
  }
  
  .forecast_benefits {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .benefit_item {
    padding: 12px;
  }
  
  /* Festival Page Mobile */
  .festival_hero_content h1 {
    font-size: 32px;
  }
  
  .festival_hero_content p {
    font-size: 16px;
  }
  
  .festival_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .festival_column {
    gap: 15px;
  }
  
  .festival_category {
    padding: 20px;
  }
  
  .festival_header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .festival_header h3 {
    font-size: 20px;
  }
  
  .festival_item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px;
  }
  
  .festival_date {
    align-self: flex-end;
  }
  
  /* National Observances Mobile */
  .festival_category:nth-last-child(1) {
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  .festival_category:nth-last-child(1) .festival_header h3 {
    font-size: 18px;
  }
  
  .festival_category:nth-last-child(1) .festival_item:hover {
    transform: translateX(3px) scale(1.01);
  }
}


/* =========================================
   SERVICE PAGE LAYOUT
========================================= */

.service_layout{
    display:flex;
    gap:40px;
    align-items:flex-start;
}

.service_main_content{
    width:70%;
}

.service_sidebar{
    width:30%;
    position:sticky;
    top:120px;
}

/* =========================================
   SIDEBAR WIDGET
========================================= */

.sidebar_widget{
    background:#fff;
    border-radius:16px;
    padding:25px;
    margin-bottom:25px;
    box-shadow:0 4px 20px rgba(0,0,0,0.08);
    border:1px solid #f1f1f1;
}

.sidebar_widget h3{
    font-size:22px;
    margin-bottom:18px;
    color:#2b1b5a;
    position:relative;
    padding-bottom:10px;
}

.sidebar_widget h3:after{
    content:'';
    width:50px;
    height:3px;
    background:#ff9800;
    position:absolute;
    left:0;
    bottom:0;
}

/* =========================================
   CONSULTATION BOX
========================================= */

.consultation_widget{
    background:linear-gradient(135deg,#2b1b5a,#5e35b1);
    color:#fff;
    text-align:center;
}

.consultation_widget h3{
    color:#fff;
}

.consultation_widget h3:after{
    background:#fff;
}

.sidebar_btn{
    display:inline-block;
    margin-top:15px;
    background:#ff9800;
    color:#fff;
    padding:12px 24px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.sidebar_btn:hover{
    background:#fff;
    color:#2b1b5a;
}

/* =========================================
   SERVICES LIST
========================================= */

.sidebar_services{
    list-style:none;
    padding:0;
    margin:0;
}

.sidebar_services li{
    border-bottom:1px solid #eee;
}

.sidebar_services li:last-child{
    border-bottom:none;
}

.sidebar_services li a{
    display:block;
    padding:12px 0;
    color:#444;
    text-decoration:none;
    transition:0.3s;
    font-weight:500;
}

.sidebar_services li a:hover{
    color:#ff9800;
    padding-left:8px;
}

/* =========================================
   CONTACT WIDGET
========================================= */

.contact_widget p{
    margin-bottom:15px;
    color:#555;
    line-height:1.7;
}

.contact_widget i{
    color:#ff9800;
    margin-right:10px;
}

/* =========================================
   TIPS
========================================= */

.tip_box{
    background:#faf7ff;
    border-left:4px solid #ff9800;
    padding:15px;
    border-radius:8px;
    margin-bottom:15px;
}

/* =========================================
   SOCIAL ICONS
========================================= */

.sidebar_social{
    display:flex;
    gap:12px;
}

.sidebar_social a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#2b1b5a;
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.sidebar_social a:hover{
    background:#ff9800;
    transform:translateY(-4px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .service_layout{
        flex-direction:column;
    }

    .service_main_content,
    .service_sidebar{
        width:100%;
    }

    .service_sidebar{
        position:relative;
        top:0;
    }
}

/* =========================================
   VIDEOS PAGE LAYOUT
========================================= */

.hs_videos_wrapper{
    padding:80px 0;
    background:#f8f9fa;
}

.video_category_section{
    margin-bottom:80px;
}

.video_category_section:last-child{
    margin-bottom:0;
}

/* =========================================
   VIDEOS GRID
========================================= */

.videos_grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(400px, 1fr));
    gap:40px;
    margin-top:50px;
}

.video_card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 4px 20px rgba(0,0,0,0.08);
    transition:all 0.3s ease;
    cursor:pointer;
}

.video_card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

/* =========================================
   VIDEO WRAPPER
========================================= */

.video_wrapper{
    position:relative;
    width:100%;
    padding-bottom:56.25%;
    height:0;
    overflow:hidden;
    background:#000;
}

.video_wrapper iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:none;
}

/* =========================================
   VIDEO INFO
========================================= */

.video_info{
    padding:25px;
}

.video_info h3{
    font-size:22px;
    color:#2b1b5a;
    margin-bottom:12px;
    font-weight:600;
    line-height:1.3;
}

.video_info p{
    color:#666;
    font-size:16px;
    line-height:1.6;
    margin:0;
}

/* =========================================
   VIDEO CATEGORY HEADING
========================================= */

.video_category_section .section_heading{
    text-align:center;
    margin-bottom:30px;
}

.video_category_section .section_heading h2{
    font-size:42px;
    color:#2b1b5a;
    margin-bottom:15px;
    font-weight:700;
}

.video_category_section .section_heading span{
    color:#f58220;
}

.video_category_section .heading_divider{
    width:80px;
    height:4px;
    background:#f58220;
    margin:20px auto;
    border-radius:2px;
}

.video_category_section .section_heading > p{
    font-size:18px;
    color:#666;
    max-width:600px;
    margin:0 auto;
    line-height:1.6;
}

/* =========================================
   RESPONSIVE FOR VIDEOS
========================================= */

@media(max-width:768px){

    .hs_videos_wrapper{
        padding:60px 0;
    }

    .videos_grid{
        grid-template-columns:1fr;
        gap:30px;
        margin-top:40px;
    }

    .video_category_section{
        margin-bottom:60px;
    }

    .video_info{
        padding:20px;
    }

    .video_info h3{
        font-size:20px;
    }

    .video_info p{
        font-size:15px;
    }

    .video_category_section .section_heading h2{
        font-size:32px;
    }

    .video_category_section .section_heading > p{
        font-size:16px;
    }
}

@media(max-width:480px){

    .hs_videos_wrapper{
        padding:40px 0;
    }

    .videos_grid{
        gap:25px;
        margin-top:30px;
    }

    .video_category_section{
        margin-bottom:50px;
    }

    .video_info{
        padding:15px;
    }

    .video_info h3{
        font-size:18px;
    }

    .video_info p{
        font-size:14px;
    }

    .video_category_section .section_heading h2{
        font-size:28px;
    }

    .video_category_section .section_heading > p{
        font-size:15px;
    }
}


