/* Reset and setup */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden !important; /* only hides horizontal overflow */
    font-family: sans-serif;
    background-color: #170A36
 !important;
    scroll-behavior: smooth;
    
   
  }
  /* Fullscreen preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  z-index: 9999;
  overflow: hidden;
}

/* Ensure video fills the screen with no space */
#preloader-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
 .header-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 45px 20px;
     background-color: #1A0B3D
 !important;
    background: url('/img/backgroung_img3.png') no-repeat center center;
    background-size: cover;
  }

   .navbar-custom {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 1.2rem;
}

.navbar-custom a {
  position: relative;
  padding-bottom: 5px;
  color: white;
  text-decoration: none;
 transition: color 0.2s ease-in-out; 

}

.navbar-custom a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, #AC2FE2, #C0758B,#FFCC00);
  /* background-color: #ffc107; */
  /* transition: 0.3s ease; */
}

/* Hover effect */
.navbar-custom a:hover {
  color: #ECBE04;
}

.navbar-custom a:hover::after {
  width: 100%;
}

/* Active link style */
.navbar-custom a.active {
  color: #ffc107;
}

.navbar-custom a.active::after {
  width: 100%;
}

/* ========== */
.social-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
  z-index: 1000;
}

.social-icons a {
  font-size: 36px; /* Increased icon size */
  text-decoration: none;
  transition: transform 0.3s ease;
}

/* Individual icon colors */
.social-icons .whatsapp {
  color: #25D366;
}

.social-icons .facebook {
  color: #1877F2;
}

.social-icons .youtube {
  color: #fb0404;
}

.social-icons .instagram {
  color: #E1306C; /* Or use a gradient SVG if you want exact */
}

/* Hover animation */
.social-icons a:hover {
  transform: scale(1.3);
}

/* =========== */
     /* Row 2: Logo */
  .logo-container {
    text-align: center;
    max-width: 350px;
    width: 100%;
  }

  .logo-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
  }
    /* Row 3: Buttons */
    .cta-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }

    .btn-primary-custom {
      background: linear-gradient(to right, #4338CA, #7C3AED);
      /* background: linear-gradient(to right, #6a5acd, #8a2be2); */

      border: none;
      color: white !important;
      padding: 10px 30px !important;
      border-radius: 15px !important; 
    }

   /* CTA Button Styles */
.btn-outline-custom {
  border: 2px solid #ffc107 !important; /* Yellow */
  color: #ffc107 !important;
  background: transparent;
  padding: 10px 30px !important;
  border-radius: 15px !important;
  transition: 0.3s ease;
}

.btn-outline-custom:hover {
  background-color: #ffc107;
  color: #ffc107 !important;
}

    @media (max-width: 768px) {
      .navbar-custom {
        flex-direction: column;
        gap: 10px;
      }
    }
 
   .services-section{
     background-color: #170A36 !important;
    /* background-color: #180A38 !important; */
      /* background: url('/img/Neiharika1.png') no-repeat center center !important;
    background-size: cover; */
    
   }
   .text-gradient {
  background: linear-gradient(to right, #AC2FE2, #C0758B,#FFCC00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.8rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.text-gradient::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  
 background: linear-gradient(to right, #AC2FE2, #C0758B,#FFCC00);
  border-radius: 2px;
}

/* Paragraph spacing (before and after) */
.section-subtitle-service{
  margin-top: 1rem !important;
  margin-bottom: 3rem !important;
  font-size: 1.1rem;
  color: #ccc;
}



.tab-btn {
  background: #1E1B4B;
  border: none;
  color: #fff;
  padding: 14px 32px;
  border-radius: 14px;
  font-size: 1.1rem;
  transition: 0.3s ease;
  font-weight: 500;
  margin: 10px;
  min-width: 160px;
}

.tab-btn.active {

  background: linear-gradient(to right, #4338CA, #7C3AED);
}
/* Spacing between buttons (if needed override) */
.d-flex.gap-3 {
  gap: 100px !important;
}



  .service-card {
    background:#1A0B3D;

    /* background: #1a103d; */
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: left;
    color: #fff;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .service-card h5 {
    color: #FFCC00
;
    /* color: #ffc107; */
    font-size: 1.2rem;
    margin-top: 10px;
  }
  p em {
  color: #FDE68A;
}

  .btn-book {
      background: linear-gradient(to right, #4338CA, #7C3AED);
    /* background: linear-gradient(to right, #8a2be2, #6a5acd); */
    color: #fff !important;
    padding: 10px 18px;
    border: none;
    border-radius: 10px;
    
  }

  .icon i {
    font-size: 1.4rem;
    color: #fff;
    background: linear-gradient(to right, #4338CA, #7C3AED);
    padding: 8px 10px;
    border-radius: 50%;
  }
  .duration {
  position: absolute;
  top: 15px;
  right: 20px;
    background: linear-gradient(to right, #4338CA, #7C3AED);
  /* background: #2f1e66; */
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  color: #fff;
  font-weight: 500;
  border: 1px solid #fff3;
}
/* =========3) ready to begin ==========*/
.cta-section {
  
  background: #170A36 !important;
  padding: 60px 20px;
}

.cta-box {
background:#1A0B3D;
  padding: 50px 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1000px;
  margin: 0 auto;
  color: #fff;
}

.cta-heading {
  font-size: 2rem;
  color: #FFCC00;
  font-weight: bold;
  margin-bottom: 15px;
}

.cta-text {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 30px;
}

.cta-button {

   background: linear-gradient(to right, #4338CA, #7C3AED);
  color: white;
  padding: 10px 25px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1rem;
  transition: 0.3s ease;
}

.cta-button:hover {
  opacity: 0.9;
  transform: scale(1.03);
}
/* ===========4)mystical tools====== */
.tools-section {
  background: #170A36;
  color: #fff;
  padding-top: 70px;
  padding-bottom: 70px;
}

.tools-heading {
  font-size: 2.8rem !important;
  font-weight: bold;

  background: linear-gradient(to right, #AC2FE2, #C0758B,#FFCC00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.tools-heading::after {
  content: "";
  display: block;
  width: 70%;
  height: 3px;
 background: linear-gradient(to right, #AC2FE2, #C0758B,#FFCC00);
  margin: 8px auto 0;
  border-radius: 10px;
}

.tools-subtext {
  color: #ccc;
  margin-top: 15px;
  font-size: 1.1rem;
}

.tool-card {
  background: #1A0B3D;
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: 0.3s ease;
  height: 100%;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 12px rgba(138, 43, 226, 0.3);
}

.tool-icon {
 background: linear-gradient(to right, #4338CA, #7C3AED);
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.tool-icon i {
  color: #fff;
  font-size: 1.5rem;
}

.tool-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 5px;
}

.tool-desc {
  color: #ccc;
  font-size: 0.95rem;
}
/* ============5) soul trasformation=========== */
.section-title {
  font-size: 2.8rem;
  font-weight: bold;
background: linear-gradient(to right, #AC2FE2, #C0758B,#FFCC00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  margin-bottom: 0.3rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: linear-gradient(to right, #AC2FE2, #C0758B,#FFCC00);
  margin: 8px auto 0;
  border-radius: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-top: 12px;
}
.testimonial-card { 
  background: #1a103d;
  border-radius: 16px;
  padding: 25px 20px;
  /* width: 100%; */
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 10px rgba(245, 194, 66, 0.05);
  transition: 0.3s ease;
}







.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 18px rgba(245, 194, 66, 0.2);
}

.stars {
  color: #FFCC00;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.badge {
  background: linear-gradient(to right, #4338CA, #7C3AED);
  display: inline-block;
  color: #fff;
  font-size: 0.9rem;
  padding: 10px 16px; /* Increased height */
  border-radius: 20px;
  margin-bottom: 16px;
  font-weight: 600;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 20px;
}

.author {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  margin-top: auto;
}

.author .dot {
  width: 28px;
  height: 28px;
  background: linear-gradient(to right, #4338CA, #7C3AED);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

.author-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-grow: 1;
}

.author-info strong {
  color: #FFCC00; /* Yellow name */
  font-weight: 600;
  font-size: 0.9rem;
}

.author-info small {
  color: #fff; /* White place */
  font-size: 0.75rem;
}

.service-name {
  font-size: 0.8rem;
  color: #FFCC00;
  font-weight: bold;
}
/* ========= last 3 sections========== */
.text-gradient1 {
  background: linear-gradient(to right, #f5c242, #c471ed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 2.2rem;
}


.footer-section, .stats-section, .cta-section {
  /* background: #120b2b; */
  background-color: #170A36;
}

.border-purple {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.text-warning{
  font-size: 2.2rem !important;
}
/* =================== ready to reclam */
/* CTA Section Styling */
.cta-section {
  background-color: #1A0B3D; 
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  text-align: center;
}

/* Gradient Title */
.cta-title {
  font-size: 2.8rem;
  font-weight: 600 !important;
background: linear-gradient(to right, #AC2FE2, #C0758B,#FFCC00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CTA Subtitle Text */
.cta-section p {
  color: #ccc !important; /* white text */
  font-size: 1.1rem;
  margin-top: 0.75rem;
  line-height: 1.6;
}

/* ===== footer section============ */
/* Footer Background */
.footer-section {
  /* background-color: #11072b; */
  padding: 60px 0;
}
.fw-semibold{
  font-size: 22px !important;
}
/* Footer Headings */
.footer-section h5,
.footer-section h6 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Light Gray Paragraphs & Descriptive Text */
.footer-section p,
.footer-section .small {
  color: #ccc !important;
  margin-bottom: 0.8rem;
}
.footer-section ul li {
  margin-bottom: 0.5rem;
}
/* Footer Links - Light Gray */
.footer-section ul li a {
  color: #ccc !important;
  text-decoration: none;
  font-size: 0.95rem;
 
}

.footer-section ul li a:hover {
  color: #f5c242;
}

/* Social Icons */
.footer-section i {
  font-size: 1.2rem !important;
  color: #ffffff;
  margin-right: 8px;
}

/* Input and Button */
.footer-section input[type="email"] {
  font-size: 0.7rem;
}

.footer-section .btn {
  background-color: #6a5acd;
  border: none;
}

.footer-section .btn i {
  font-size: 0.95rem;
}

/* ============ mobile vire for all the sections start here======= */


.mobile-menu-toggler {
  display: none;
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 26px;
  color: rgb(214, 210, 210);
  cursor: pointer;
  z-index: 1100;
}

@media (max-width: 768px) {
  .mobile-menu-toggler {
    display: block;
  }
      .mobile-hide-br {
    display: none;
  }
   .header-section {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 45px 20px;
     background-color: #1A0B3D
 !important;
    background: url('/img/backgroung_img3.png') no-repeat center center;
    background-size: cover;
  }
.navbar-custom a::after {
  display: none !important;
  text-decoration: underline !important;
}
  .navbar-custom {
    flex-direction: column;
    text-align: left !important;
    gap: 5px;
    padding: 10px 0;
    position: absolute;
    top: 20px;
    right: 0;
    width: 100%;
    display: none;
    z-index: 1000;
    background: none; /* No background */
    backdrop-filter: none;
    /* border-color: #1A0B3D !important; */
    background-color: #1E1B4B !important;
  }

  .navbar-custom.active {
    display: flex;
  }

  .navbar-custom a {
    font-size: 1rem; /* Smaller font size */
    padding: 6px 18px;
    
  }


  .logo-container {
    max-width: 260px;
    margin: 40px auto 20px auto;
  }

  .logo-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.2));
  }

  .cta-buttons {
    flex-direction: row; /* Same row */
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
  }

  .cta-buttons .btn {
    padding: 6px 14px !important;
    font-size: 0.85rem;
    border-radius: 10px !important;
  }

  .social-icons {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }

  .social-icons a {
    font-size: 22px; /* Smaller icons */
  }
}
/* ========== mobile viwe section of the services========== */
@media (max-width: 768px) {
  .text-gradient {
    font-size: 2rem !important;
    margin-bottom: 1.2rem;
  }

  .text-gradient::after {
    width: 80px;
    height: 2px;
    bottom: -6px;
  }

  .section-subtitle-service {
    font-size: 0.95rem !important;
    margin-bottom: 2rem !important;
  }

  .tab-btn {
  font-size: 1.1rem;
  padding: 8px 16px;
  width: 60% !important;  /* Let width depend on content */
  margin: 10px auto; /* Center horizontally */
  display: block; /* Required for margin auto to work */
  text-align: center;
  border-radius: 20px;
  /* background-color: #2c2c54; */
  /* color: white; */
  border: none;
  cursor: pointer;
  
}


  .d-flex.gap-3 {
    flex-direction: column;
    gap: 10px !important;
    align-items: stretch;
  }

  .service-card {
    padding: 16px;
    min-height: auto;
  }

  .service-card h5 {
    font-size: 1.2rem;
  }

 .btn-book {
    padding: 8px 14px;
    font-size: 0.9rem;
  }


  .icon i {
    font-size: 1.2rem;
    padding: 6px 8px;
  }

  .duration {
    font-size: 0.7rem;
    padding: 4px 8px;
  }
   section.services-section.py-5{
     /* padding-top: 0.25rem !important; */
    padding-bottom: 0.25rem !important;
   }

}
/* ============= 3) mobile view on ready to calm section========== */

@media (max-width: 768px) {
  .cta-section {
    padding: 10px 15px;
  }

  .cta-box {
    padding: 30px 20px;
  }

  .cta-heading {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .cta-text {
    font-size: 0.95rem !important;
    margin-bottom: 25px;
    line-height: 1.6;
   
  }

.cta-button {

   background: linear-gradient(to right, #4338CA, #7C3AED);
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1rem;
  transition: 0.3s ease;
}
    .mobile-hide-br {
    display: none;
  }
}
/* ====================4)mystical tools on mobile view=========== */
@media (max-width: 768px) {
  .tools-heading {
    font-size: 2rem !important;
  }
section.tools-section.py-5{
     padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
   }
  .tools-heading::after {
    width: 50%;
    height: 2px;
    margin-top: 6px;
  }

  .tools-subtext {
    font-size: 1rem;
    margin-top: 10px;
  }

  .tool-card {
    padding: 20px 15px;
    margin-bottom: 15px;
  }

  .tool-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .tool-icon i {
    font-size: 1.3rem;
  }

  .tool-title {
    font-size: 1.25rem;
  }

  .tool-desc {
    font-size: 0.9rem;
  }

  .tools-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .text-arrange{
    padding: 0 20px !important;
  }
}

/* ===========5) soul transformation======== */
@media (max-width: 768px) {
.section-title {
  font-size: 2rem;
  font-weight: bold;
background: linear-gradient(to right, #AC2FE2, #C0758B,#FFCC00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  margin-bottom: 0.3rem;
}
.section-title::after {
  content: "";
  display: block;
  width: 40%;
  height: 3px;
  background: linear-gradient(to right, #AC2FE2, #C0758B,#FFCC00);
  margin: 8px auto 0;
  border-radius: 10px;
}
.section-subtitle {
  font-size: 0.98rem;
  color: #ccc;
  margin-top: 15px;
  margin-bottom: 10px !important;
}
.soul-transformations{
 margin: 0 5px !important;

}
section.soul-transformations.py-5{
     /* padding-top: 0.25rem !important; */
    padding-bottom: 0.25rem !important;
   }
}
/* ================6) review and ratings  mobile vioew ======= */
@media (max-width: 768px) {
.text-warning{
  font-size: 1.8rem !important;
}
.text-white{
  font-size: 0.9rem !important;
}
section.stats-section.py-5{
    /* margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; */
      padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}
.review-container{
  width: 100% !important;
  /* height: 80% !important; */
}
}
/* ==========7) ready to calm mobile view======== */
@media (max-width: 768px) {
.cta-title{
  font-size: 2rem !important;
}
.text-white{
  font-size: 0.95rem !important;
}
section.cta-section.py-5{
    /* margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; */
      padding-top: 0.7rem !important;
    padding-bottom: 0.25rem !important;
}
}
/* =============8) footer section on mobile view===== */
@media (max-width: 768px) {
.fw-semibold{
  font-size: 1.2rem !important;
}
section.footer-section .py-5{
padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}
.footer-section {
  padding-left: 10px !important;
}
.footer-section ul li a {
  font-size: 0.93rem !important;
}
.footer-section p,
.footer-section .small {
  color: #ccc !important;
  margin-bottom: 0.8rem;
  font-size: 0.93rem !important;
}
}