/* ==========================================================================
   UJJAIN KAALSARP MANGAL DOSH - MODERN REDESIGN
   Clean, Elegant, Professional, and Modern Vedic Aesthetic
   100% Content Preserved - Optimized Layout, Spacing, and Visual Hierarchy
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Brand Palette: Deep Sacred Maroon & Warm Gold/Saffron */
  --theme-primary:        #7A1420;
  --theme-primary-hover:  #630E18;
  --theme-primary-light:  #941D2C;
  --theme-accent:         #D97706;
  --theme-accent-hover:   #B45309;
  --theme-gold:           #C59B27;
  --theme-gold-light:     #F3E8C8;
  
  /* Neutrals: Clean, Crisp, High Contrast */
  --theme-bg-white:       #FFFFFF;
  --theme-bg-soft:        #F9FAFB;
  --theme-bg-warm:        #FDFBF7;
  --theme-bg-dark:        #111827;
  --theme-text-main:      #1F2937;
  --theme-text-muted:     #4B5563;
  --theme-text-light:     #6B7280;
  --theme-border:         #E5E7EB;
  --theme-border-gold:    #F1E3BC;
  
  /* Shadows: Soft & Modern */
  --shadow-sm:  0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md:  0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg:  0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 14px 34px rgba(122, 20, 32, 0.12);
  
  /* Radii & Transitions */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-full: 9999px;
  --transition: all 0.25s ease;
}

/* BASE STYLES */
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--theme-text-main);
  background-color: var(--theme-bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  color: var(--theme-primary);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 0;
}

/* SECTION HEADER COMPONENT */
.ast_heading {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.ast_heading h2 {
  font-size: 32px !important;
  color: var(--theme-primary) !important;
  margin-bottom: 12px;
  line-height: 1.35;
  display: inline-block;
  position: relative;
}

.ast_heading h2 span {
  color: var(--theme-accent) !important;
}

.ast_heading h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--theme-accent);
  margin: 12px auto 0;
  border-radius: var(--radius-full);
}

.ast_heading p {
  font-size: 16px !important;
  color: var(--theme-text-muted) !important;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* BUTTONS */
.ast_btn,
a.ast_btn,
button.ast_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: var(--theme-primary);
  color: #FFFFFF !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none !important;
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.ast_btn:hover,
a.ast_btn:hover {
  background: var(--theme-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(122, 20, 32, 0.25);
  color: #FFFFFF !important;
}

.ast_btn-accent {
  background: var(--theme-accent) !important;
}

.ast_btn-accent:hover {
  background: var(--theme-accent-hover) !important;
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.3) !important;
}

/* ==========================================================================
   HERO CAROUSEL SECTION (Self-Contained, Pure CSS & JS)
   ========================================================================== */
.hero-carousel-section {
  position: relative !important;
  width: 100% !important;
  clear: both !important;
  display: block !important;
  overflow: hidden !important;
  background-color: #111827 !important;
  height: 640px !important;
  min-height: 640px !important;
}

.hp-slider-container {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 640px !important;
  overflow: hidden !important;
  background: #111827 !important;
}

.hp-slider-slides {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 640px !important;
}

.hp-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 1;
}

.hp-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hp-slide-img-wrap {
  width: 100%;
  height: 100%;
  background: #111827;
}

.hp-slide-img-wrap img {
  width: 100%;
  height: 45vw;
  min-height: 380px;
  max-height: 560px;
  object-fit: cover;
  display: block;
}

.carousel-caption-custom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  width: 78%;
  max-width: 720px;
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2.2rem 2rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  z-index: 5;
}

.carousel-caption-custom h1,
.carousel-caption-custom h2 {
  color: #ffc107 !important;
  font-weight: 700;
  font-size: 2.3rem;
  font-family: 'Cinzel', serif;
  margin: 0;
  line-height: 1.3;
}

.carousel-caption-custom h1 b,
.carousel-caption-custom h2 b {
  color: #FFFFFF !important;
}

.carousel-caption-custom p {
  font-size: 1.15rem;
  margin: 0.9rem 0 1.2rem;
  color: #F3F4F6;
  line-height: 1.5;
}

.carousel-caption-custom hr {
  width: 60px;
  margin: 0.8rem auto;
  border-top: 2px solid #D97706;
  opacity: 1;
}

.carousel-caption-custom a.btn,
.carousel-caption-custom a.btn-warning {
  background: #D97706 !important;
  border: none !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  padding: 0.65rem 2.2rem !important;
  border-radius: 9999px !important;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.4) !important;
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.25s ease;
}

.carousel-caption-custom a.btn:hover {
  background: #B45309 !important;
  transform: translateY(-2px);
}

.hp-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.6);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.hp-slider-arrow:hover {
  background: #D97706;
  border-color: #D97706;
}

.hp-slider-arrow.hp-prev {
  left: 20px;
}

.hp-slider-arrow.hp-next {
  right: 20px;
}

.hp-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hp-slider-dots .hp-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.25s ease;
}

.hp-slider-dots .hp-dot.active {
  width: 28px;
  border-radius: 6px;
  background: #D97706;
}

/* CONTAINER ALIGNMENT WITH HEADER */
.ast_header_bottom .container,
.ast_top_header .container,
.ast_pagetitle .container,
.ast_about_wrapper .container,
.seocompanyjaipur .container,
.ast_service_wrapper .container,
.ast_overview_wrapper .container,
.ast_blog_wrapper .container,
.ast_team_wrapper .container,
.ast_testimonials_wrapper .container,
.hp-faq-wrapper .container,
.ast_footer_wrapper .container,
.ak-page-wrapper .container,
.fp-page-wrapper .container,
.ks-page-wrapper .container,
.pd-page-wrapper .container,
.ng-page-wrapper .container,
.vd-page-wrapper .container,
.rb-page-wrapper .container,
.mb-page-wrapper .container,
.mangal-puja-section .container,
.ast_gallery_wrapper .container,
.ast_contact_wrapper .container,
.about_wrapper .container {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1400px) {
  .ast_header_bottom .container,
  .ast_top_header .container,
  .ast_pagetitle .container,
  .ast_about_wrapper .container,
  .seocompanyjaipur .container,
  .ast_service_wrapper .container,
  .ast_overview_wrapper .container,
  .ast_blog_wrapper .container,
  .ast_team_wrapper .container,
  .ast_testimonials_wrapper .container,
  .hp-faq-wrapper .container,
  .ast_footer_wrapper .container,
  .ak-page-wrapper .container,
  .fp-page-wrapper .container,
  .ks-page-wrapper .container,
  .pd-page-wrapper .container,
  .ng-page-wrapper .container,
  .vd-page-wrapper .container,
  .rb-page-wrapper .container,
  .mb-page-wrapper .container,
  .mangal-puja-section .container,
  .ast_gallery_wrapper .container,
  .ast_contact_wrapper .container,
  .about_wrapper .container {
    max-width: 1280px;
  }
}

/* ALL FAQ CONTAINERS FULL WIDTH ALIGNMENT ACCORDING TO HEADER */
.ak-faq-container,
.fp-faq-container,
.ks-faq-container,
.pd-faq-container,
.ng-faq-container,
.vd-faq-container,
.rb-faq-container,
.mangal-puja-faq-container,
.hp-faq-container {
  width: 100% !important;
  max-width: 100% !important;
}

.ak-faq-card,
.fp-faq-card,
.ks-faq-card,
.pd-faq-card,
.ng-faq-card,
.vd-faq-item,
.rb-faq-item,
.mangal-puja-faq-item,
.hp-faq-card {
  width: 100% !important;
}

.ak-faq-header,
.fp-faq-header,
.ks-faq-header,
.pd-faq-header,
.ng-faq-header,
.vd-faq-question,
.rb-faq-question,
.mangal-puja-faq-question,
.hp-faq-header {
  width: 100% !important;
  box-sizing: border-box !important;
}

/* ==========================================================================
   ABOUT GURUJI SECTION
   ========================================================================== */
.ast_about_wrapper {
  background: var(--theme-bg-white);
  padding: 64px 0;
}

.hp-guruji-equal-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.hp-guruji-equal-row > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

/* Left Box: Guruji Image Card (Equal Height) */
.ast_about_img_card {
  height: 100% !important;
  width: 100% !important;
  min-height: 100% !important;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--theme-border);
  background: var(--theme-bg-warm);
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  transition: var(--transition);
}

.ast_about_img_card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--theme-accent);
}

.ast_about_img_inner {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  flex: 1 1 100% !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
}

.ast_about_img_inner img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  object-position: center 15% !important;
  display: block !important;
  transition: transform 0.5s ease;
}

.ast_about_img_card:hover .ast_about_img_inner img {
  transform: scale(1.03);
}

.ast_about_img_badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 22px 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(17, 24, 39, 0.72) 35%, rgba(17, 24, 39, 0.94) 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #FFFFFF;
}

.ast_about_img_badge .badge-exp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--theme-accent);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  width: fit-content;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.4);
}

.ast_about_img_badge .badge-title {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.2px;
}

/* Right Box: Guruji Information Card (Equal Height) */
.ast_about_info_card {
  height: 100%;
  width: 100%;
  background: var(--theme-bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--theme-border);
  box-shadow: var(--shadow-md);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.ast_about_info_card:hover {
  box-shadow: var(--shadow-hover);
}

.ast_about_info_inner {
  flex: 1 1 auto;
}

.ast_about_info_header {
  margin-bottom: 14px;
}

.ast_badge_pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFF7ED;
  color: var(--theme-accent);
  border: 1px solid #FED7AA;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.ast_about_info_header h3 {
  font-size: 22px;
  color: var(--theme-primary);
  margin: 0;
  line-height: 1.4;
  font-weight: 700;
}

.ast_about_info_inner p {
  font-size: 15px;
  color: var(--theme-text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.ast_about_info_inner p.ast_lead_p {
  color: var(--theme-text-main);
  font-weight: 500;
  font-size: 15.5px;
}

.ast_places_wrapper {
  margin: 16px 0 0;
}

.ast_places_wrapper h4.ast_blog_info_heading {
  font-size: 17px;
  color: var(--theme-primary);
  margin-bottom: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ast_places_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ast_places_list li {
  font-size: 14px;
  color: var(--theme-text-muted);
  padding: 9px 14px;
  background: var(--theme-bg-soft);
  border-left: 3px solid var(--theme-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: 1.6;
}

.ast_places_list li strong {
  color: var(--theme-primary);
}

.ast_about_cta_bar {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--theme-border);
}

.ast_about_cta_bar .ast_btn {
  padding: 12px 28px;
  font-size: 15px;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
}

@media (max-width: 991px) {
  .ast_about_img_inner {
    min-height: 380px;
    height: 380px;
  }
  .ast_about_info_card {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   EDITORIAL & SEO SECTION (.seocompanyjaipur)
   2-Row Boxed Card Layout (All Cards Exact Same Size)
   ========================================================================== */
.seocompanyjaipur {
  background: var(--theme-bg-warm) !important;
  border-top: 1px solid var(--theme-border);
  border-bottom: 1px solid var(--theme-border);
  padding: 64px 0 !important;
}

.hp-editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 24px;
}

.hp-editorial-card {
  height: 100%;
  background: var(--theme-bg-white);
  border: 1px solid var(--theme-border);
  border-top: 3px solid var(--theme-accent);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.hp-editorial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--theme-primary);
}

.hp-editorial-card-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.hp-editorial-card-header {
  margin-bottom: 12px;
}

.hp-editorial-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFF7ED;
  color: var(--theme-accent);
  border: 1px solid #FED7AA;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.hp-editorial-card h2.ast_blog_info_heading,
.hp-editorial-card h3.ast_blog_info_heading {
  font-size: 21px !important;
  color: var(--theme-primary) !important;
  font-family: 'Cinzel', serif !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  margin: 0 !important;
  text-align: left !important;
}

.hp-editorial-card p.ast_blog_info_details {
  font-size: 14.5px !important;
  color: var(--theme-text-muted) !important;
  line-height: 1.75 !important;
  margin: 12px 0 0 !important;
  text-align: left !important;
}

.hp-editorial-card a {
  color: var(--theme-primary) !important;
  font-weight: 600;
  text-decoration: underline;
  transition: var(--transition);
}

.hp-editorial-card a:hover {
  color: var(--theme-accent) !important;
}

.hp-editorial-card-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--theme-border);
}

.hp-editorial-card-footer a.hp-book-link {
  color: var(--theme-accent) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  display: inline-block;
  transition: var(--transition);
}

.hp-editorial-card-footer a.hp-book-link:hover {
  color: var(--theme-primary) !important;
  text-decoration: underline !important;
}

@media (max-width: 991px) {
  .hp-editorial-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 20px;
  }
  .hp-editorial-card {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.ast_service_wrapper {
  background: var(--theme-bg-white);
  padding: 72px 0 54px;
}

.ast_service_box {
  background: #FFFFFF;
  border: 1px solid var(--theme-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.ast_service_box:hover {
  border-color: var(--theme-border-gold);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.ast_service_box img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  border: 1px solid #F3F4F6;
}

.ast_service_box h3 {
  font-size: 20px;
  color: var(--theme-primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.ast_service_box p {
  font-size: 14px;
  color: var(--theme-text-muted);
  line-height: 1.75;
  flex-grow: 1;
  margin-bottom: 18px;
}

.ast_service_box .d-flex {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ast_service_box .ast_btn {
  font-size: 13.5px;
  padding: 8px 18px;
}

.ast_service_box a[href^="tel"] {
  background: #111827;
}

.ast_service_box a[href^="tel"]:hover {
  background: var(--theme-primary);
}

/* ==========================================================================
   SUVICHAR BANNER
   ========================================================================== */
.ast_overview_wrapper {
  background: linear-gradient(135deg, #4A0B13 0%, var(--theme-primary) 100%) !important;
  color: #FFFFFF !important;
  padding: 64px 0 !important;
  position: relative;
}

.ast_overview_wrapper .ast_img_overlay {
  display: none;
}

.ast_overview_wrapper div[style*="font-size:36px"] {
  font-family: 'Cinzel', serif !important;
  font-size: 34px !important;
  font-weight: 700 !important;
  color: #FCD34D !important;
}

.ast_overview_wrapper p {
  font-size: 16px !important;
  color: #FDFBF7 !important;
  line-height: 1.85 !important;
  font-style: italic;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--theme-accent);
}

/* ==========================================================================
   BLOG SECTION
   ========================================================================== */
.ast_download_wrapper {
  background: var(--theme-bg-soft) !important;
  padding: 72px 0 !important;
  border-top: 1px solid var(--theme-border);
  border-bottom: 1px solid var(--theme-border);
}

.blog-box {
  background: #FFFFFF !important;
  border: 1px solid var(--theme-border) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-sm) !important;
  padding: 24px !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.blog-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--theme-border-gold);
}

.blog-box pre {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 12px !important;
  color: var(--theme-accent) !important;
  font-weight: 700 !important;
  background: transparent !important;
  padding: 0 !important;
  margin-bottom: 8px !important;
}

.blog-box h3 {
  font-size: 19px !important;
  color: var(--theme-primary) !important;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-box p {
  font-size: 14px !important;
  color: var(--theme-text-muted) !important;
  line-height: 1.75 !important;
  flex-grow: 1;
  margin-bottom: 18px;
}

.blog-box a.ast_btn {
  align-self: flex-start;
  font-size: 13px;
  padding: 7px 18px;
}

/* ==========================================================================
   EXPERIENCED PANDITS (TEAM)
   ========================================================================== */
.team-section {
  background: var(--theme-bg-white);
  padding: 72px 0 54px;
}

.team-heading {
  font-size: 32px !important;
  color: var(--theme-primary) !important;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.team-heading::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--theme-accent);
  margin: 12px auto 0;
  border-radius: var(--radius-full);
}

.team-slider {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.team-track {
  display: flex;
  gap: 20px;
  animation: slide 35s infinite linear;
}

.team-track:hover {
  animation-play-state: paused;
}

.team-member {
  flex: 0 0 250px !important;
  max-width: 250px !important;
  background: var(--theme-bg-soft) !important;
  border: 1px solid var(--theme-border) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-sm) !important;
  padding: 22px 18px !important;
  text-align: center;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--theme-border-gold);
}

.team-member img {
  width: 120px !important;
  height: 120px !important;
  border-radius: 50% !important;
  object-fit: cover;
  border: 3px solid #FFFFFF !important;
  box-shadow: var(--shadow-sm);
  margin: 0 auto 14px !important;
  display: block;
}

.team-member h3 {
  font-size: 16px !important;
  color: var(--theme-primary) !important;
  margin: 0 !important;
  line-height: 1.4;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.ast_testimonial_wrapper {
  background: var(--theme-bg-warm);
  padding: 72px 0 !important;
  border-top: 1px solid var(--theme-border);
}

.ast_testimonials_slider_box {
  background: #FFFFFF !important;
  border: 1px solid var(--theme-border) !important;
  border-radius: var(--radius-lg) !important;
  padding: 28px !important;
  box-shadow: var(--shadow-sm) !important;
  margin: 10px;
  text-align: center;
}

.ast_testimonials_slider_box img {
  width: 64px !important;
  height: 64px !important;
  border-radius: 50% !important;
  margin-bottom: 12px;
}

.ast_testimonials_slider_box_text p {
  font-size: 14.5px !important;
  color: var(--theme-text-muted) !important;
  line-height: 1.8 !important;
  font-style: italic;
  margin-bottom: 14px;
}

.ast_testimonials_slider_box_text h3 {
  font-size: 18px !important;
  color: var(--theme-primary) !important;
  margin: 0;
}

/* ==========================================================================
   FAQ SECTION (CLEAN ACCORDION)
   ========================================================================== */
.hp-faq-wrapper {
  background: var(--theme-bg-white);
  padding: 72px 0;
  border-top: 1px solid var(--theme-border);
  width: 100%;
  clear: both;
  position: relative;
}

.hp-faq-row {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: stretch !important;
}

.hp-faq-row::before,
.hp-faq-row::after {
  display: none !important;
}

.hp-faq-col {
  display: flex !important;
  flex-direction: column !important;
}

.hp-faq-img-box {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--theme-border);
  background: var(--theme-bg-soft);
  display: flex;
  position: relative;
}

.hp-faq-img-box img {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: var(--radius-lg);
  transition: transform 0.4s ease;
}

.hp-faq-img-box:hover img {
  transform: scale(1.02);
}

.hp-faq-container {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 100% !important;
  width: 100% !important;
}

.hp-faq-card {
  background: #FFFFFF;
  border: 1px solid var(--theme-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.hp-faq-card:last-child {
  margin-bottom: 0;
}

.hp-faq-card:hover {
  border-color: var(--theme-accent);
}

.hp-faq-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: #FFFFFF;
  user-select: none;
}

.hp-faq-card.active .hp-faq-header {
  background: var(--theme-bg-warm);
  border-bottom: 1px solid var(--theme-border);
}

.hp-faq-title-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.hp-faq-badge {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--theme-primary);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-faq-header h3 {
  font-size: 16.5px !important;
  color: #1F2937 !important;
  margin: 0 !important;
  line-height: 1.4;
}

.hp-faq-toggle-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--theme-bg-soft);
  border: 1px solid var(--theme-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-accent);
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
}

.hp-faq-card.active .hp-faq-toggle-icon {
  transform: rotate(45deg);
  background: var(--theme-accent);
  color: #FFFFFF;
  border-color: var(--theme-accent);
}

.hp-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 20px;
}

.hp-faq-card.active .hp-faq-body {
  max-height: 260px;
  padding: 14px 20px 18px;
}

.hp-faq-body p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--theme-text-muted);
  margin: 0;
}

@media (max-width: 991px) {
  .hp-faq-row {
    display: block !important;
  }
  .hp-faq-img-col {
    display: block !important;
    margin-bottom: 24px !important;
  }
  .hp-faq-img-box {
    height: 290px !important;
    min-height: 290px !important;
  }
  .hp-faq-accordion-col {
    display: block !important;
  }
}

@media (max-width: 575px) {
  .hp-faq-wrapper {
    padding: 44px 0 !important;
  }
  .hp-faq-img-box {
    height: 220px !important;
    min-height: 220px !important;
  }
  .hp-faq-header {
    padding: 14px 15px !important;
  }
  .hp-faq-header h3 {
    font-size: 14px !important;
    line-height: 1.35 !important;
  }
  .hp-faq-badge {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    font-size: 12px !important;
  }
  .hp-faq-toggle-icon {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    font-size: 14px !important;
  }
  .hp-faq-body {
    padding: 0 15px !important;
  }
  .hp-faq-card.active .hp-faq-body {
    padding: 12px 15px 16px !important;
  }
  .hp-faq-body p {
    font-size: 13.5px !important;
    line-height: 1.65 !important;
  }
}

/* ==========================================================================
   IMAGE GALLERY
   ========================================================================== */
.home-image-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 54px 40px;
  background: var(--theme-bg-soft);
  border-top: 1px solid var(--theme-border);
}

.home-image-gallery img.responsive-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--theme-border);
  transition: var(--transition);
}

.home-image-gallery img.responsive-img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   CALL & WHATSAPP SECTION
   ========================================================================== */
.ast_download_box {
  width: 100% !important;
  text-align: center !important;
}

.ast_download_box ul,
.hp-cta-btn-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 20px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 16px 0 0 !important;
  flex-wrap: wrap !important;
}

.ast_download_box ul li,
.hp-cta-btn-row li {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.ast_download_box ul li a,
.hp-cta-btn-link {
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
}

.ast_download_box ul li a img,
.hp-cta-btn-link img {
  height: 52px !important;
  width: auto !important;
  max-width: 100% !important;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease !important;
  display: block !important;
}

.ast_download_box ul li a:hover img,
.hp-cta-btn-link:hover img {
  transform: translateY(-3px) scale(1.04) !important;
  box-shadow: 0 8px 22px rgba(217, 119, 6, 0.28) !important;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.ast_footer_wrapper {
  background: #111827 !important;
  color: #9CA3AF !important;
  border-top: 3px solid var(--theme-accent);
  padding-top: 60px;
}

.ast_footer_info img {
  max-height: 58px;
  width: auto;
  margin-bottom: 18px;
}

.ast_footer_info ul {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin-top: 14px;
}

.ast_footer_info ul li a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1F2937;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D1D5DB !important;
  transition: var(--transition);
  text-decoration: none;
}

.ast_footer_info ul li a:hover {
  background: var(--theme-accent);
  color: #FFFFFF !important;
}

.widget-title {
  font-size: 18px !important;
  color: #F9FAFB !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  position: relative;
}

.widget-title::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--theme-accent);
  margin-top: 8px;
}

.ast_servicelink ul,
.ast_sociallink ul,
.ast_gettouch ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ast_servicelink ul li,
.ast_sociallink ul li {
  margin-bottom: 10px;
}

.ast_servicelink ul li a,
.ast_sociallink ul li a {
  color: #9CA3AF !important;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.ast_servicelink ul li a::before,
.ast_sociallink ul li a::before {
  content: '›';
  color: var(--theme-accent);
  margin-right: 8px;
  font-size: 16px;
}

.ast_servicelink ul li a:hover,
.ast_sociallink ul li a:hover {
  color: #FFFFFF !important;
  padding-left: 4px;
}

.ast_gettouch ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
}

.ast_gettouch ul li i {
  color: var(--theme-accent);
  margin-top: 3px;
}

.ast_gettouch ul li a {
  color: #9CA3AF !important;
  text-decoration: none;
  transition: var(--transition);
}

.ast_gettouch ul li a:hover {
  color: #FFFFFF !important;
}

.ast_copyright_wrapper {
  border-top: 1px solid #1F2937;
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
}

.ast_copyright_wrapper p {
  color: #6B7280 !important;
  font-size: 13.5px;
  margin: 0;
}

.ast_copyright_wrapper p a {
  color: var(--theme-accent) !important;
  text-decoration: none;
}

/* FLOATING ACTION BUTTONS */
.btn-whatsapp-pulse,
.btn-whatsapp-pulse-2 {
  position: fixed !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 9999 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25) !important;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
  right: auto !important;
  left: 20px !important;
}

.btn-whatsapp-pulse {
  bottom: 80px !important;
  background: #25D366 !important;
}

.btn-whatsapp-pulse-2 {
  bottom: 18px !important;
  background: var(--theme-accent, #D97706) !important;
}

.btn-whatsapp-pulse i,
.btn-whatsapp-pulse-2 i {
  font-size: 22px !important;
  color: #FFFFFF !important;
}

.btn-whatsapp-pulse:hover,
.btn-whatsapp-pulse-2:hover {
  transform: scale(1.08) !important;
}

/* Mobile Drawer Backdrop & Header Elements */
.ast_mobile_menu_header {
  display: none;
}


/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN & MOBILE OPTIMIZATIONS
   ========================================================================== */
html, body {
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
}

@media (max-width: 991px) {
  /* Headings & General Mobile Spacing */
  .ast_heading h2 {
    font-size: 27px !important;
  }

  .home-image-gallery {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 20px;
  }

  .seocompanyjaipur {
    padding: 48px 20px !important;
  }

  /* Slider Responsive */
  .carousel-caption-custom {
    width: 88% !important;
    padding: 1.6rem 1.4rem !important;
  }

  .carousel-caption-custom h1,
  .carousel-caption-custom h2 {
    font-size: 1.8rem !important;
  }

  /* Footer Mobile */
  .ast_footer_wrapper {
    padding-bottom: 90px !important;
  }
}

  .ast_heading h2 {
    font-size: 23px !important;
  }

  .ast_about_wrapper {
    padding: 44px 0;
  }

  .ast_about_img_card {
    min-height: 400px !important;
    height: 420px !important;
  }

  .ast_about_img_inner {
    min-height: 400px !important;
    height: 420px !important;
  }

  .ast_about_info_card {
    padding: 24px 18px !important;
  }

  .home-image-gallery {
    grid-template-columns: 1fr;
    padding: 30px 16px;
  }

  .home-image-gallery img.responsive-img {
    height: 200px;
  }

  .ast_download_box ul,
  .hp-cta-btn-row {
    flex-direction: row !important;
    gap: 14px !important;
  }

  .ast_download_box ul li a img,
  .hp-cta-btn-link img {
    height: 46px !important;
  }

  /* Services Mobile */
  .ast_service_wrapper {
    padding: 44px 0 30px;
  }

  .ast_service_box img {
    height: 170px !important;
  }

  /* Suvichar Mobile */
  .ast_overview_wrapper {
    text-align: center;
    padding: 44px 0;
  }

  /* Slider on Tablet/Phone */
  .hp-slide-img-wrap img {
    height: 52vw !important;
    min-height: 280px !important;
  }

  .carousel-caption-custom {
    width: 90% !important;
    padding: 1.3rem 1.1rem !important;
  }

  .carousel-caption-custom h1,
  .carousel-caption-custom h2 {
    font-size: 1.35rem !important;
  }

  .carousel-caption-custom p {
    font-size: 0.92rem !important;
    margin: 0.5rem 0 0.8rem !important;
  }

  /* Footer Mobile */
  .ast_footer_wrapper {
    padding-top: 40px !important;
    padding-bottom: 95px !important;
  }

  .ast_footer_info img {
    max-width: 170px !important;
    height: auto !important;
  }

  .ast_footer_wrapper .widget {
    margin-bottom: 28px !important;
  }

  .ast_copyright_wrapper {
    padding: 16px 0 0 !important;
    margin-top: 10px !important;
  }

  .ast_copyright_wrapper p {
    font-size: 13px !important;
    line-height: 1.6 !important;
    text-align: center !important;
  }

  /* Floating Buttons on Small Screens */
  .btn-whatsapp-pulse,
  .btn-whatsapp-pulse-2 {
    width: 46px !important;
    height: 46px !important;
    left: 14px !important;
  }

  .btn-whatsapp-pulse i,
  .btn-whatsapp-pulse-2 i {
    font-size: 20px !important;
  }

  .btn-whatsapp-pulse {
    bottom: 74px !important;
  }

  .btn-whatsapp-pulse-2 {
    bottom: 16px !important;
  }
}

@media (max-width: 575px) {
  .hp-email-text {
    display: none !important;
  }

  .ast_contact_details > ul {
    gap: 6px !important;
  }

  .ast_logo img {
    max-height: 42px !important;
  }

  .hp-slide-img-wrap img {
    height: 62vw !important;
    min-height: 250px !important;
  }

  .carousel-caption-custom {
    width: 94% !important;
    padding: 1.1rem 0.9rem !important;
  }

  .carousel-caption-custom h1,
  .carousel-caption-custom h2 {
    font-size: 1.2rem !important;
  }

  .carousel-caption-custom p {
    font-size: 0.88rem !important;
    margin: 0.4rem 0 0.7rem !important;
  }

  .carousel-caption-custom a.btn {
    font-size: 0.85rem !important;
    padding: 0.45rem 1.3rem !important;
  }

  .hp-slider-arrow {
    width: 36px !important;
    height: 36px !important;
    font-size: 18px !important;
  }

  .hp-slider-arrow.hp-prev {
    left: 8px !important;
  }

  .hp-slider-arrow.hp-next {
    right: 8px !important;
  }

  .hp-cta-btn-row,
  .ast_download_box ul {
    flex-direction: row !important;
    gap: 12px !important;
  }

  .hp-cta-btn-link img,
  .ast_download_box ul li a img {
    height: 44px !important;
  }

  .ast_about_img_card,
  .ast_about_img_inner {
    min-height: 360px !important;
    height: 360px !important;
  }
}
