/* -------------------- Hero Section -------------------- */
.hero {
  background: url('../img/banner/b1.webp') no-repeat center center/cover;
  color: #333;
  padding: 6rem 1rem; /* responsive padding */
  min-height: 62vh;
  display: flex;
  align-items: center;
  padding-top: 145px;
}

h2 {
    /* Text appearance */
    font-family: Arial, Helvetica, sans-serif; /* A clear, modern font */
    font-size: 2.5rem; /* Large and prominent */
    font-weight: 700; /* Bold */
    color: #333; /* Dark gray for good contrast */

    /* Centering and spacing */
    text-align: center; /* Center the text above the carousel */
    text-transform: uppercase; /* Makes it look professional and structured */
    letter-spacing: 2px; /* Adds a little space between letters */
    
    /* Margin and separation */
    margin-top: 0;
    margin-bottom: 3rem; /* Push the heading well above the content */
    padding-bottom: 0.5rem;
    
    /* Optional: A subtle underline/border to separate it from the content */
    border-bottom: 2px solid #5d4037; /* Matches the dark wood frame color */
    max-width: 600px; /* Constrain the underline width */
    margin-left: auto;
    margin-right: auto;
}

.hero h1 {
  color: #7b4f28;
  font-size: clamp(2rem, 5vw, 3rem); /* responsive font */
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hero p {
  color: #444;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  max-width: 100%;
  margin-bottom: 1.5rem;
}

/* -------------------- Card with GIF -------------------- */
.gif-card {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1/1; /* maintain square */
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s;
}

.gif-card video,
.gif-card img {
  width: 105%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gif-card:hover video,
.gif-card:hover img {
  transform: scale(1.05);
}

.gif-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  text-align: center;
  background: rgba(0,0,0,0.25);
  color: #fff;
}

.gif-card:hover .card-overlay {
  opacity: 1;
}

.gif-card .card-overlay h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.gif-card .card-overlay p {
  font-size: 0.95rem;
  line-height: 1.4;
}


.section__container {
  max-width: 1200px;
  margin: auto;
  padding: 3rem 1rem;
  text-align: center;
}

.section__container h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2rem;
  position: relative;
}

.section__container h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.5rem;
  transform: translateX(-50%);
  width: 5rem;
  height: 2px;
  background-color: var(--primary-color);
}

/* Grid */
.section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding-top: 2rem;
}

/* Card */
.section__card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 3rem 1.5rem 2rem;
  background-color: var(--white);
  border-radius: 15px;
  transition: 0.3s ease-in-out;
}

.section__card::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 75%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--primary-color);
  z-index: -1;
  transition: 0.5s ease-in-out;
}

.section__card span {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 3rem;
  color: var(--white);
}

.section__card h4 {
  margin-top: 3rem;
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: 0.3s;
}

.section__card p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.section__card img {
  margin-bottom: 1rem;
  max-width: 80px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  transition: 0.3s;
}

.section__card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: 0.3s;
}

.section__card h6 {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-light);
  transition: 0.3s;
}

.section__card:hover::before {
  width: 400%;
}

.section__card:hover :is(h4, h5) {
  color: var(--white);
}

.section__card:hover :is(p, h6) {
  color: var(--secondary-color);
}

.section__card:hover img {
  border-color: var(--white);
}

/* -------------------- Responsive Adjustments -------------------- */
@media (max-width: 992px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 4rem 1rem;
    padding-top: 125px;
  }

  .hero .col-lg-6 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .gif-card {
    max-width: 100%;
    aspect-ratio: auto;
    height: 300px;
  }

  .section__card {
    padding: 2rem 1rem;
  }

  .section__card img {
    max-width: 60px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .gif-card {
    height: 250px;
  }

  .section__card h4 {
    font-size: 1.25rem;
  }

  .section__card h5 {
    font-size: 1.1rem;
  }

  .section__card h6 {
    font-size: 0.85rem;
  }
}

/* about Section */
/* Base Section */
.mission-vision-section {
  background-color: #fff;
  color: #333;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.bg-mand{
  background-image: url('../img/banner/ab2.webp');
  background-repeat: no-repeat;
  background-size: 240px auto; /* slightly smaller */
  background-position: center center;
  background-origin: content-box;
  padding-left: 10px;  /* creates left gap */
  padding-right: 10px; /* creates right gap */
}
/* Text */
.section-text {
  padding-left: 10px;
  line-height: 1.9;
  font-size: 1.05rem;
  max-width: 420px;
  margin: 0 auto;
  padding-top: 30px;
  text-align: justify;
  position: relative;
  z-index: 1;
  color: #444;
  font-weight: 300;
  font-style: normal;
  font-family: 'Poppins', sans-serif;
}

/* Decorative Quote Images */
.quote-img {
  position: absolute;
  width: 100px;
  opacity: 0.15;
  z-index: 0;
}

/* Opening Quote — near Mission */
.quote-open {
  top: 60px;
  left: 10px;
}

/* Closing Quote — BELOW Vision area */
.quote-close {
  bottom: -40px; /* pushes below the section */
  right: 20px;
  opacity: 0.12;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 992px) {
  .mission-vision-section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-text {
    max-width: 100%;
    padding-top: 20px;
  }

  .quote-img {
    width: 60px;
  }

  .quote-open {
    top: 20px;
    left: 20px;
  }

  .quote-close {
    bottom: -20px;
    right: 40px;
  }

  /* Remove mandala on small screens */
 
}

.stats-section {
  position: relative;
  background: linear-gradient(180deg, #fffaf2 0%, #fdf6ec 100%);
  background-image: url('img/bg/mand-patte.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,153,51,0.15), rgba(255,255,255,0.9));
  z-index: 0;
}

.stat-glass-card {
  position: relative;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 20px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  z-index: 2;
  border: 1px solid rgba(255,153,51,0.2);
}

.stat-glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(255,153,51,0.3);
  border-color: rgba(255,153,51,0.4);
}

/* Icons */
.stat-glass-card i {
  color: #d35400;
  background: linear-gradient(135deg, #ff9933, #d35400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.3s;
}

.stat-glass-card:hover i {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(255,153,51,0.5));
}

/* Numbers */
.stat-glass-card h2 {
  font-family: "Cinzel Decorative", serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #5b3a29;
  margin-bottom: 10px;
}

/* Text */
.stat-glass-card p {
  font-size: 1.05rem;
  color: #704214;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Glow accent */
.stat-glass-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #ff9933, #d35400, #ffb84d);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .stat-glass-card {
    padding: 30px 15px;
  }
  .stat-glass-card h2 {
    font-size: 2rem;
  }
}

.spiritual-gallery {
      background: linear-gradient(to bottom, #fff8f0, #fff);
      color: #5a3825;
      overflow: hidden;
      position: relative;
      font-family: 'Poppins', sans-serif;
    }

    .gallery-heading {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      color: #b85c2e;
      letter-spacing: 1px;
    }

    .gallery-subtitle {
      color: #7b4f2e;
      font-size: 1.05rem;
      max-width: 700px;
      margin: 0 auto;
    }

    /* Grid Layout */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    /* Gallery Items */
    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 16px;
      height: 250px; /* uniform height for all */
      box-shadow: 0 6px 15px rgba(90, 56, 37, 0.1);
      transition: transform 0.5s ease, box-shadow 0.5s ease;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 16px;
      transition: transform 0.7s ease;
    }

    /* Hover Effects */
    .gallery-item:hover img {
      transform: scale(1.08);
    }

    .gallery-item::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(213, 84, 0, 0.3);
      opacity: 0;
      transition: opacity 0.4s ease;
      border-radius: 16px;
    }

    .gallery-item:hover::after {
      opacity: 1;
    }

    /* Floating animation for calm feel */
    .gallery-item {
      animation: floatEffect 6s ease-in-out infinite;
    }

    @keyframes floatEffect {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-6px);
      }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .gallery-item {
        height: 200px;
      }
      .gallery-heading {
        font-size: 1.8rem;
      }
    }

/* -------------------------------------- */
/* 3. Individual Card Styling             */
/* -------------------------------------- */


/* Mimics the hover:scale-[1.03] effect */
.hover-lift {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.hover-lift:hover {
    transform: scale(1.03);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important; /* Emulate shadow-2xl */
}

/* Custom Primary Color (Mimics Tailwind's orange-500) and White Text on Hover */
.hover-bg-primary:hover {
    background-color: #fd7e14 !important; /* A strong orange for primary */
}
.hover-bg-primary:hover .group-hover-text-white,
.hover-bg-primary:hover p,
.hover-bg-primary:hover span.quote-mark {
    color: #fff !important;
}

/* Hide scrollbar for cleaner look, but keep scrolling functionality */
#card-scroll-wrapper {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}
#card-scroll-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}


/* ===== General Layout ===== */
section {
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 50px;
}

/* ===== Mission & Vision ===== */
.mission-vision-section {
  background: radial-gradient(circle at top left, #f9f6ef, #fff);
}
.mv-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.mv-card h2 {
  font-size: 1.5rem;
  margin: 15px 0;
  color: #222;
}
.mv-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}
.icon-large {
  font-size: 2.5rem;
  color: #a7663e;
}

/* ===== Values Section ===== */
.values-section {
  background: #f9f9f9;
  text-align: center;
}
.value-item {
  background: #fff;
  border-radius: 14px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.value-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.value-icon {
  font-size: 2.2rem;
  color: #a7663e;
  margin-bottom: 10px;
}
.value-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}
.value-item p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}
/* ===== CTA Section ===== */
.cta-banner {
  background: linear-gradient(90deg, #c99d00, #e8c547);
  color: #fff;
  text-align: center;
  border-radius: 0;
}
.cta-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.cta-content p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #fdfdfd;
}
.btn-cta {
  display: inline-block;
  background: #a7663e;
  color: white;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-cta:hover {
  background:#ffaa00;
  color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .mv-card, .value-item, .stat-box {
    padding: 25px 20px;
  }
  .cta-content h3 {
    font-size: 1.5rem;
  }
}


/* ===== HERO SECTION ===== */
.hero-section {
  padding: 150px 20px;
  text-align: center;
  color: #fff;
background: linear-gradient(90deg,rgba(167, 102, 62, 1) 0%, rgba(255, 170, 0, 1) 47%);
  background-size: 200% 200%;
  animation: gradientFlow 8s ease infinite;
  position: relative;
}

/* Optional soft overlay for readability */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-section .main-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.hero-section .sub-heading {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #fff5d1;
  font-weight: 500;
}

.hero-section .intro-text {
  font-size: 1.05rem;
  color: #fdfdfd;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 650px;
}

/* Smooth background animation */
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 90px 20px;
  }
  .hero-section .main-title {
    font-size: 2.2rem;
  }
  .hero-section .sub-heading {
    font-size: 1.2rem;
  }
}

/* ===== CONTACT SECTION ===== */
.contact-details-form {
  background: #f9f9f9;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  align-items: start;
}

/* ===== CONTACT INFO BLOCK ===== */
.contact-info-block {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.section-title-left {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}

.contact-info-block p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.info-item {
  margin-bottom: 25px;
}

.info-item h4 {
  font-size: 1.1rem;
  margin: 10px 0 5px;
  color: #333;
}

.accent-icon {
  font-size: 1.5rem;
  color: #ffaa00;
  margin-right: 8px;
}

/* ===== SOCIAL LINKS ===== */
.social-links {
  margin-top: 25px;
}

.social-heading {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #222;
}

.social-icon {
  display: inline-block;
  background: #a7663e;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 38px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #222;
  color: #fff;
}

/* ===== CONTACT FORM BLOCK ===== */
.contact-form-block {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  color: #333;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #c99d00;
  box-shadow: 0 0 5px rgba(201, 157, 0, 0.3);
  outline: none;
}

.btn-submit {
  background: #ffaa00;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-submit:hover {
  background: #222;
  color: #fff;
}

.map-section {
  background-image: url('../img/contact/b1.webp') ;
  text-align: center;
  padding: 80px 0;
}

.map-section .section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 25px;
}

.map-placeholder {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .hero-section {
    padding: 70px 20px;
  }

  .hero-section .main-title {
    font-size: 2rem;
  }

  .contact-info-block,
  .contact-form-block {
    padding: 30px 20px;
  }

  .btn-submit {
    width: 100%;
    text-align: center;
  }
}

/* --- Astrology page Styling --- */

 /* --- Hero Section Styling --- */
        .ashero-section {
            min-height: 100vh;
            background: url('../img/services/astro.webp') no-repeat center center/cover;
            position: relative;
            overflow: hidden;
        }

        .ashero-section::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.5) 0%,
                rgba(0, 0, 0, 0.7) 70%,
                #0d090a 100%
            );
            z-index: 1;
        }

        /* --- Top Bar --- */
        .top-bar {
            background-color: #fbaf2c;
            color: #0d090a;
            padding: 8px 0;
            text-align: center;
            font-size: 14px;
            font-weight: 600;
            display: flex;
            justify-content: space-around;
            z-index: 5;
            position: relative;
            margin-top: 25px;
        }

        /* --- Hero Content --- */
        .ashero-content {
            position: absolute;
            top: 55%;
            left: 100px;
            transform: translateY(-50%);
            z-index: 2;
            max-width: 650px;
        }

        .ashero-title {
            font-size: 60px;
            line-height: 1.1;
            margin-bottom: 20px;
            color: #fff;
            font-family: 'Poppins', sans-serif;
        }

        .ashero-subtitle {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
            color: #d1d1d1;
            opacity: 0.8;
            font-family: 'Poppins', sans-serif;
        }

        .btn-consu {
            background: #fbaf2c;
            color: white;
            font-weight: 600;
            border-radius: 30px;
            padding: 10px 25px;
            border: none;
            transition: all 0.3s ease-in-out;
            box-shadow: 0 4px 15px rgba(167, 102, 62, 0.3);
            text-transform: uppercase;
            font-size: 14px;
            cursor: pointer;
            text-decoration: none;
        }

        .btn-consu:hover {
            background: #a7663e;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(167, 102, 62, 0.4);
        }

        .btn-consu:focus {
            outline: 2px solid #fbaf2c;
            outline-offset: 2px;
        }

        .category-section {
      padding: 50px 20px;
      background: #f9f9f9;
      text-align: center;
  }

.category-section-title {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.category-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.category-card {
    position: relative;
    width: 260px;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.3);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.card-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    text-align: center;
}

.category-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.shop-now-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #ffce00;
    color: #333;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.shop-now-btn i {
    margin: 0 5px;
}

.shop-now-btn:hover {
    background: #fff;
    color: #ffce00;
}

@media (max-width: 768px) {
    .category-card {
        width: 45%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .category-card {
        width: 90%;
    }
}
/* --- Section Layout --- */
.faq-section {
    display: flex;
    max-width: 1200px;
    margin: 50px auto;
    background-color: white; /* The section itself has a white background */
    border-radius: 10px; /* Optional: adds a slight curve to the corners */
    overflow: hidden; /* To contain the image's rounded corners */
}

/* FAQ Content Side */
.faq-content {
    flex: 1;
    padding: 40px 50px;
    min-width: 50%;
    box-sizing: border-box;
    /* Adding background shapes (Sun/Zodiac) is complex and requires SVG or a background image,
       which is omitted here for simplicity and focus on the main layout. */
}

/* FAQ Image Side */
.faq-image-container {
    flex: 1;
    min-width: 50%;
    position: relative;
    background-color: var(--background-color); /* Light background for image container */
    /* Adds the implied padding/margin around the image */
    padding: 20px 0 20px 20px;
    box-sizing: border-box;
}

.faq-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Create the crop effect shown in the image */
    border-radius: 0 0 0 100px; /* Rounded corner at the bottom left */
}

/* The Zodiac Pattern on the top right would be a background image
   applied to the .faq-image-container or a pseudo-element. */

/* --- Typography --- */
.faq-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: normal;
}

.faq-subtitle {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* --- FAQ Accordion Styles --- */
.faq-list {
    border-top: 1px solid #eee; /* Top separator for the first item */
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin: 0; /* Remove default margin from details tag */
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    list-style: none; /* Hide default arrow on Firefox */
}

/* Hide the default marker for Webkit browsers (Chrome, Safari) */
.faq-item > summary::-webkit-details-marker {
    display: none;
}

/* Style the custom + / - icon */
.icon-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-right: 15px;
    color: var(--primary-color); /* Dark color for the icon */
    font-weight: 400; /* Lighter weight than the question text */
}

/* Update the icon when the details element is open */
.faq-item[open] .icon-toggle {
    content: '-';
}
/* This is a simple fallback for the content update. A better way uses a pseudo-element or JavaScript.
   The HTML has been modified to put the symbol in the span, and the CSS below handles the open state. */
.faq-item:not([open]) .icon-toggle::before {
    content: '+';
}
.faq-item[open] .icon-toggle::before {
    content: '-';
}

/* The text within the summary tag */
.faq-question {
    flex-grow: 1;
}

/* Style for the answer content */
.faq-answer {
    padding: 0 0 20px 40px; /* Matches the left padding of the icon + margin */
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
}


/* General Background Animation */
.mission-vision-section {
  position: relative;
  background: linear-gradient(135deg, #fff5e1, #fffaf4);
  overflow: hidden;
}

/* Glass Effect Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px rgba(184, 92, 46, 0.1);
  border: 1px solid rgba(255, 153, 51, 0.2);
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
  position: relative;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(184, 92, 46, 0.2);
}

/* Accent glowing border on hover */
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  border: 2px solid transparent;
  background: linear-gradient(120deg, #ff9933, #d35400) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glass-card:hover::before {
  opacity: 1;
}

/* Icon Circle */
.icon-wrap {
  background: linear-gradient(135deg, #ffb84d, #ff9933);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px rgba(255, 153, 51, 0.3);
}


/* Responsive Tweaks */
@media (max-width: 768px) {
  .icon-wrap {
    width: 65px;
    height: 65px;
  }
  .glass-card {
    text-align: center;
  }
}
.services-grid-section {
  position: relative;
  padding: 100px 0;

  /* Background layers: image + gradient */
  background-image: 
    linear-gradient(180deg, rgba(255, 235, 214, 0), rgba(255, 248, 240, 0.85)),
    url('img/banner/ser.webp'); /* <-- your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* optional: parallax effect */
}


/* Header */
.section-header .subtitle {
  color: rgb(248, 172, 43);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.section-header .title {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.section-header .description {
  font-size: 1rem;
  color: white;
  margin-bottom: 20px;
}

/* Button */
.divine-btn {
  background-color: #ff9933;
  color: #fff;
  border: none;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}
.divine-btn:hover {
  background-color: #d35400;
  transform: translateY(-3px);
}


/* Service Card */
.service-card {
  background: #fff5e6;
  border-radius: 25px;
  padding: 35px 25px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
  text-align: center;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.12);
}

/* Icon */
.icon-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background-color: #ff9933;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(255,153,51,0.3);
  transition: 0.3s;
}
.service-card:hover .icon-circle { transform: scale(1.1); }

/* Titles & Text */
.service-card h5 {
  font-size: 1.4rem;
  color: #5b3a29;
  margin-bottom: 10px;
  font-weight: 600;
}
.service-card p {
  font-size: 0.95rem;
  color: #704214;
  line-height: 1.6;
}

/* Responsive */
@media(max-width:992px){
  .col-lg-4 { flex: 0 0 48%; max-width:48%; margin-bottom:20px; }
}
@media(max-width:768px){
  .col-md-6 { flex: 0 0 100%; max-width: 100%; margin-bottom:20px; }
  .section-header .title { font-size:2rem; }
}
.spiritual-blog {
  background: linear-gradient(to bottom, #fff8f0, #ffffff);
  color: #5a3825;
  font-family: 'Poppins', sans-serif;
  padding: 60px 0;
}

.blog-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #b85c2e;
  letter-spacing: 1px;
}

.blog-subtitle {
  color: #7b4f2e;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* Blog Grid Layout */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 25px;
}

/* Blog Card */
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(90, 56, 37, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(213, 84, 0, 0.2);
}

/* Blog Image */
.blog-img {
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.07);
}

/* Blog Content */
.blog-content {
  padding: 20px 22px 25px;
}

.blog-content h5 {
  font-family: 'Playfair Display', serif;
  color: #5a3825;
  font-weight: 700;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.blog-content p {
  color: #7b4f2e;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.blog-card:hover h5 {
  color: #d35400;
}

.read-more {
  color: #d35400;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #5a3825;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-heading {
    font-size: 1.8rem;
  }
  .blog-img {
    height: 200px;
  }
  .blog-content h5 {
    font-size: 1.1rem;
  }
}
.divine-offer-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff3e0 0%, #fff8f2 100%);
  color: #5a3825;
  font-family: 'Poppins', sans-serif;
  padding: 100px 20px;
}

.banner-overlay {
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background: radial-gradient(circle at 70% 40%, rgba(213, 84, 0, 0.2), transparent 60%);
  z-index: 1;
}

.banner-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 2;
}

/* Text */
.banner-text {
  flex: 1;
  min-width: 300px;
  z-index: 2;
}

.limited-offer {
  background: #d35400;
  color: #fff;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(213, 84, 0, 0.4);
}

.banner-heading {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.banner-heading span {
  color: #d35400;
}

.banner-subtext {
  color: #7b4f2e;
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 500px;
}

.shop-btn {
  background: linear-gradient(90deg, #d35400, #b34700);
  color: #fff;
  text-decoration: none;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(213, 84, 0, 0.3);
}

.shop-btn:hover {
  background: #5a3825;
  box-shadow: 0 8px 30px rgba(90, 56, 37, 0.4);
}

/* Visual Section */
.banner-visual {
  flex: 1;
  min-width: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(213, 84, 0, 0.2);
  animation: float 5s ease-in-out infinite;
}

.floating-card img {
  width: 460px;
  border-radius: 15px;
}

.offer-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #d35400;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(213, 84, 0, 0.4);
}

.float-item {
  position: absolute;
  width: 165px;
  opacity: 0.9;
  animation: float-slow 6s ease-in-out infinite;
}

.incense {
  top: 10%;
  right: 10%;
  animation-delay: 1s;
}

.mala {
  bottom: 5%;
  left: 5%;
  animation-delay: 2s;
  border-radius: 100px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-10px) rotate(3deg); }
}

/* Responsive */
@media (max-width: 992px) {
  .banner-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .banner-heading {
    font-size: 2.2rem;
  }

  .banner-subtext {
    margin: 0 auto 25px;
  }

  .floating-card img {
    width: 220px;
  }

  .float-item {
    display: none;
  }
}

@media (max-width: 576px) {
  .banner-heading {
    font-size: 1.7rem;
  }
}
.simple-testimonials {
  background: #fff8f0;
  color: #5a3825;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #5a3825;
}
.section-title span {
  color: #d35400;
}

/* Testimonial Card */
.testimonial-card {
  background: #fff;
  border-left: 5px solid #d35400;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 8px 20px rgba(90, 56, 37, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(213, 84, 0, 0.2);
}

/* Quote Mark */
.quote-mark {
  font-size: 2rem;
  color: #d35400;
  position: absolute;
  top: 15px;
  left: 15px;
  opacity: 0.2;
}

/* Text */
.testimonial-card p {
  font-style: italic;
  color: #7b4f2e;
  line-height: 1.6;
  margin-top: 25px;
  margin-bottom: 15px;
}

.testimonial-card h5 {
  font-weight: 600;
  color: #5a3825;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-card {
    padding: 20px 15px;
  }
}

@media (max-width: 768px) {
  .carousel-inner .row > div {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 576px) {
  .carousel-inner .row > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.why-choose .reason:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(211, 84, 0, 0.15);
  background: linear-gradient(135deg, #fff8e1, #fff);
}
@media (max-width: 576px) {
  .why-choose .reason {
    padding: 2rem 1rem;
  }
}

.about-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(56, 30, 10, 0.7); /* soft brown overlay */
  backdrop-filter: blur(2px);
}

.about-hero h1 {
  font-family: 'Poppins', serif;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.3;
}

.about-hero h1 span {
  color: #ffb347;
  background: #ff9933;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-hero .btn {
  color: #8B4513;
  background-color: #fff;
  border: none;
  transition: 0.3s;
}

.about-hero .btn:hover {
  background-color: #D35400;
  color: #fff;
  box-shadow: 0 0 15px rgba(255,153,51,0.4);
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 50vh;
    background-position: top;
  }
  .about-hero h1 {
    font-size: 2rem;
  }
  .about-hero p {
    font-size: 1rem;
  }
}
  .about-hero {
  min-height: 60vh;
  background: url('img/about/ab5.webp') center center/cover no-repeat;
  position: relative;
  overflow: hidden;
  }

.zodiac-section {
  background: radial-gradient(circle at top center, #0b132b, #1c2541 70%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.zodiac-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.07);
  padding: 22px 12px;
  border-radius: 16px;
  text-align: center;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
  cursor: default;
}

.zodiac-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 10px 30px rgba(212,175,55,0.12);
}

.zodiac-svg {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
}

.zodiac-svg img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 60px; /* adjust as needed */
  margin: 0 auto;
}


.zodiac-name {
  font-weight: 700;
  color: #f3d38a;
  margin-bottom: 4px;
}

.zodiac-dates {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

/* Small devices spacing */
@media (max-width: 575px) {
  .zodiac-svg { width: 56px; height: 56px; }
  .zodiac-card { padding: 18px 8px; border-radius: 12px; }
}
.process-section {
  background: linear-gradient(135deg, #fff8f0 0%, #fff 100%);
  color: #4e2a00;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-weight: 700;
  color: #a0522d; /* warm brown */
}

.section-subtitle {
  color: #6c4c2f;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
}

.process-step {
  background: #fff;
  border-radius: 16px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(160, 82, 45, 0.1);
  transition: all 0.35s ease;
  position: relative;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(208, 106, 40, 0.25);
  background: linear-gradient(180deg, #fff9f3 0%, #ffffff 100%);
}

.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  color: #d35400; /* saffron */
  background: rgba(211, 84, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-weight: 700;
  color: #a0522d;
  margin-bottom: 12px;
}

.step-description {
  font-size: 0.95rem;
  color: #5c3d24;
}

.intro-section {
  position: relative;
  overflow: hidden;
  color: #4e2a00;
}

.intro-section .section-title {
  font-weight: 700;
  font-size: 30px;
  color: #a0522d;
  margin-bottom: 20px;
  text-align: center;
}

.intro-section .intro-text {
  color: #6c4c2f;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 15px;
}

.feature-item {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff9f3;
  padding: 12px 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(208,106,40,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(208,106,40,0.25);
}

.feature-icon svg {
  flex-shrink: 0;
}

.intro-section .btn.divine-btn {
  background: #d35400;
  color: #fff;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.intro-section .btn.divine-btn:hover {
  background: #a0522d;
}

.floating-img img {
  max-width: 90%;
  animation: float 6s ease-in-out infinite;
  border-radius: 16px;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 992px){
  .intro-section .section-title {
    text-align: center;
  }
  .features-grid {
    justify-content: center;
  }
  .feature-item {
    flex: 1 1 80%;
  }
}

 .about-numerology {
  background: linear-gradient(180deg, #fffaf5 0%, #f9f2e9 100%);
  position: relative;
  overflow: hidden;
}

.about-numerology::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -100px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,140,0,0.2) 0%, transparent 80%);
  border-radius: 50%;
}

.about-content {
  color: #5a3e1b;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #a45e1b;
}

.section-desc {
  font-size: 1.05rem;
  color: #6b4b2f;
  line-height: 1.7;
}

.about-card {
  background: #fff;
  border: 1px solid rgba(164, 94, 27, 0.15);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(165, 84, 22, 0.05);
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(165, 84, 22, 0.15);
}

.about-card .icon {
  font-size: 2rem;
  color: #c7782e;
  margin-bottom: 10px;
}

.spiritual-glow {
  border: 6px solid #fff8f0;
  box-shadow: 0 0 25px rgba(200, 120, 40, 0.4);
  transition: all 0.4s ease;
}

.spiritual-glow:hover {
  transform: scale(1.03);
  box-shadow: 0 0 35px rgba(200, 120, 40, 0.6);
}

/* Responsiveness */
@media (max-width: 991px) {
  .about-content {
    text-align: center;
  }
}
 .numerology-services {
  background: linear-gradient(180deg, #fffaf3 0%, #f9f1e8 100%);
  position: relative;
  overflow: hidden;
}

.bg-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 152, 56, 0.2), transparent 70%);
  top: -50px;
  right: -50px;
  animation: floatGlow 12s infinite alternate ease-in-out;
  z-index: 0;
}

.bg-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 120, 40, 0.15), transparent 70%);
  bottom: -80px;
  left: -60px;
  animation-duration: 16s;
}

@keyframes floatGlow {
  0% { transform: translateY(0) translateX(0); opacity: 0.3; }
  50% { transform: translateY(-20px) translateX(15px); opacity: 0.45; }
  100% { transform: translateY(0) translateX(0); opacity: 0.3; }
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #a45e1b;
}

.section-subtitle {
  color: #6b4b2f;
  max-width: 650px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.service-orb {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 50px 25px;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 25px rgba(164, 94, 27, 0.07);
  transition: all 0.4s ease;
}

.service-orb:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 12px 35px rgba(195, 120, 40, 0.15);
}

.orb-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, #dba34c 0%, #a45e1b 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2.2rem;
  box-shadow: 0 0 25px rgba(200, 120, 40, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-orb:hover .orb-icon {
  transform: rotate(15deg) scale(1.1);
  box-shadow: 0 0 40px rgba(200, 120, 40, 0.6);
}

.service-orb h4 {
  color: #a45e1b;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-orb p {
  color: #6b4b2f;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 991px) {

/* Validation Styles */
.is-invalid {
    border-color: #dc3545 !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 3.6.4.4.4-.4'/%3e%3cpath d='M6 7v2.5'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.is-invalid ~ .invalid-feedback {
    display: block;
}

/* Loading button styles */
.btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* Success modal styles */
.booking-details {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid #28a745;
}

.booking-details p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
