body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.main-btn{
    color: #fff;
    background-color: #ff6a00;
}
.main-btn:hover{
    color: #ff6a00;
    background-color: #fff;
    border: 1px solid #ff6a00;
}
.site-btn{
    color: #fff;
    background-color: #ff2d95;
}

.site-btn:hover{
    color: #ff2d95;
    background-color: #fff;
    border: 1px solid #ff2d95;
}
/* ================= TOP BAR ================= */
.topbar{
  background:#0A1931;
  color:#fff;
  font-size:16px;
  padding:10px 0;
}
.topbar i{margin-right:5px;}
.topbar a{
  color:#fff;
  margin-left:15px;
  transition:.3s;
}
.topbar a:hover{color:#fbc531;}

/* ================= NAVBAR ================= */
.main-navbar{
  background:#fff;
  transition:all .4s ease;
}
.main-navbar .nav-link{
  font-weight:600;
  color:#000;
}
.main-navbar .nav-link:hover{
  color:#ff2d95;
  
}

.main-navbar .nav-link.active{
  color:#ff2d95;
  font-weight:700;
}

/* Sticky Animation */
.main-navbar.sticky{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  box-shadow:0 4px 20px rgba(0,0,0,.1);
  animation:slideDown .5s ease;
}
@keyframes slideDown{
  from{transform:translateY(-100%);}
  to{transform:translateY(0);}
}

/* Button */
.whatsapp-btn{
  background:linear-gradient(45deg,#ff6a00,#ff2d95);
  color:#fff;
  border-radius:30px;
  padding:10px 18px;
  font-weight:600;
  white-space:nowrap;
}
.whatsapp-btn:hover{
  color:#fff;
  opacity:.9;
}
.whatsapp-btn:hover{
    background:linear-gradient(45deg,#ff2d95, #ff6a00);
}

/* ================= MOBILE MENU ================= */
.m-active{
  color:#ff2d95 !important;
}
.mobile-logo{
  max-height: 40px;
}
.mobile-box{
  display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu{
  position:fixed;
  top:0;
  left:-100%;
  width:260px;
  height:100%;
  background:#fff;
  z-index:9999;
  padding:20px;
  transition:.4s ease;
  box-shadow:4px 0 20px rgba(0,0,0,.2);
}
.mobile-menu.active{left:0;}

.mobile-menu .close-btn{
  background:none;
  border:none;
  font-size:30px;
  float:right;
}

.mobile-menu ul{
  list-style:none;
  padding:30px 0 0;
}
.mobile-menu ul li{
  margin-bottom:15px;
}
.mobile-menu ul li a{
  text-decoration:none;
  font-size:18px;
  font-weight:600;
  color:#000;
}

/* Hide Topbar on Mobile */
@media(max-width:991px){
  .topbar{display:none;}
}

/* hero section */
.hero-section {
    min-height: 80vh;
    background: url("../images/hero-banner.jpg")
      no-repeat center/cover;
    overflow: hidden;
  }

  .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* dark layer for text visibility */
  }

 

  .service-box {
    background: #fff;
    transition: transform 0.4s ease;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }

  .service-box:hover {

    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    
    cursor: pointer;
  }

  /* fade animation */
  .animate-fade {
    opacity: 0;
    animation: fadeInUp 1.2s ease forwards;
  }

  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(25px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* fetures section */
  .astro-card {
    background: #f7f5ff;
    border-radius: 20px;
    padding: 40px 25px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
  }

  .astro-card.active {
    background: linear-gradient(180deg, #f1ecff, #ffffff);
    border-color: #7b61ff;
  }

  .astro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(123, 97, 255, 0.2);
    border-color: #7b61ff;
  }

  .icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #7b61ff, #9f8cff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    transition: transform 0.4s ease;
  }

  .astro-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
  }

  .astro-card h4 {
    font-weight: 700;
    color: #1f1f1f;
  }

  .astro-card p {
    color: #6c6c6c;
    font-size: 15px;
    margin: 15px 0 25px;
  }

  .astro-link {
    color: #7b61ff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .astro-link i {
    margin-left: 6px;
    transition: transform 0.3s ease;
  }

  .astro-link:hover {
    color: #5a3fff;
  }

  .astro-link:hover i {
    transform: translateX(5px);
  }

  /* about section */
  .about-section {
    background: linear-gradient(135deg, #f7f5ff, #ffffff);
    overflow: hidden;
  }

  .about-content h2 {
    font-weight: 800;
    line-height: 1.3;
  }

  .about-content h2 span {
    color: #7b61ff;
  }

  .about-content p {
    color: #555;
    margin-top: 15px;
    font-size: 16px;
  }

  .about-badge {
    display: inline-block;
    background: rgba(123, 97, 255, 0.1);
    color: #7b61ff;
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .about-content:hover .about-badge {
    background: #7b61ff;
    color: #fff;
  }

  .about-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    background:linear-gradient(45deg,#ff6a00,#ff2d95);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    text-align: center;
  }

  .about-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
  }

  .about-btn:hover {
    box-shadow: 0 15px 35px rgba(123, 97, 255, 0.4);
    transform: translateY(-3px);
  }

  .about-btn:hover i {
    transform: translateX(6px);
  }

  .about-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
  }

  .about-image img {
    width: 100%;
    border-radius: 25px;
    transition: transform 0.5s ease;
  }

  .about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(123,97,255,0.25), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .about-image:hover::after {
    opacity: 1;
  }

  .about-image:hover img {
    transform: scale(1.08);
  }

  /* courses section */
  .course-card {
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    transition: all 0.35s ease;
    border: 1px solid #eaeaea;
  }

  .course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  }

  .course-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .course-body {
    padding: 20px;
  }

  .course-category {
    color: #7b61ff;;
    font-weight: 600;
    font-size: 14px;
  }

  .course-title {
    font-weight: 700;
    margin: 10px 0;
    font-size: 18px;
    color: #333;
  }

  .course-rating {
    color: #f5a623;
    font-size: 15px;
    margin-bottom: 10px;
  }

  .rating-number {
    color: #333;
    font-weight: 600;
    margin-right: 5px;
  }

  .course-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
  }

  .course-features li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #555;
  }
   .course-features li i{
    color: #7b61ff;;
   }

  .apply-btn {
    display: block;
    text-align: center;
    background: #f58220;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .apply-btn:hover {
    background: #e36f10;
    color: #fff;
  }


  /* puja section */
  .puja-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  .puja-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  }

  .puja-img {
    position: relative;
  }

  .puja-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .badge-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 193, 7, 0.9);
    color: #000;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
  }

  /* courses cat section */
  .courses-cta {
  background: linear-gradient(135deg, #ff9800, #ff5722);
}

.cta-box {
  max-width: 900px;
  border-radius: 24px;
  
  backdrop-filter: blur(10px);
  
}

.cta-pill {
  background: rgba(255,255,255,0.2);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.courses-cta h2 {
  font-size: 2rem;
}
.WhatsApp{
  color: #fff;
  background-color: #10b418;
}
.WhatsApp:hover{
  border: #10b418;
  color: #10b418;
  background-color: #fff;
}

@media (max-width: 576px) {
  .cta-box {
    padding: 2rem 1.5rem !important;
  }

  .courses-cta h2 {
    font-size: 1.6rem;
  }
}

/* star section */
.stat-circle{
  width:60px;
  height:60px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 12px;
  font-size:18px;
}

.stat-text{
  font-size:14px;
  color:#fff;
  max-width:220px;
  margin:0 auto;
}

/* why choise us */
.info-card{
  background:#f4f7fb;
  padding:24px;
  border-radius:14px;
  cursor: pointer;
}
.info-card:hover{
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.info-card h5{
  margin-top:14px;
  font-weight:600;
}

.info-card p{
  font-size:14px;
  color:#6c757d;
}

.icon-circle{
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid #ced4da;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
}

.blue-card{
  background:#7b61ff;
  color:#fff;
  padding:32px;
  border-radius:16px;
}

.blue-card p{
  font-size:14px;
  color:#dce6f5;
}

.icon-circle.dark{
  border-color:#fff;
  color:#fff;
  margin-bottom:16px;
}
.icon-circle i{
  color: #7b61ff;
}

/* Mobile spacing fix */
@media (max-width: 575px){
  .blue-card{
    padding:24px;
  }
}


/* Daily Horoscope */

.zodiac-wrapper {
  background: linear-gradient(135deg, #2b0b4e, #4b177f);
  padding: 60px 30px;
  border-radius: 18px;

}

/* Card */
.zodiac-card {
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 16px;
  text-align: center;
  color: #fff;
  transition: 0.35s ease;
  cursor: pointer;
  border: 2px solid transparent;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Hover Effect */
.zodiac-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.14);
  border-color: #ffc107;
  box-shadow: 0 0 0 3px rgba(255,193,7,0.25);
}



/* Icon Circle */
.zodiac-icon {
  width: 50px;
  height: 50px;
 
  border-radius: 50%;
  margin: 0px auto 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zodiac-icon img {
  width: 80px;
}

/* Title */
.zodiac-title {
  font-weight: 600;
  letter-spacing: 0.4px;
}


/* testimonial */
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  

}

.first{
  display: flex;
}
.testimonial-card img {
  width: 40px !important;
  height: 40px;
  margin-right: 20px;
}

.testimonial-carousel .owl-stage {
  display: flex;
}

.testimonial-carousel .owl-item {
  display: flex;
  height: auto;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.position{
  color: #7b61ff;
}



/* Team section */

.team-carousel .owl-stage {
  display: flex;
}
.team-carousel .owl-item {
  display: flex;
}
.team-item {
  display: flex;
}

.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.team-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.team-social i {
  font-size: 16px;
  margin-right: 12px;
  cursor: pointer;
  color: #111;
}
.team-social i:hover {
  color: #0d6efd;
}

/* footer section */

.footer-section {
  background:  #2b124c;
}

.footer-text {
  color: #d1cbe0;
  font-size: 15px;
  line-height: 1.6;
}

.footer-title {
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cfc6df;
  text-decoration: none;
  font-size: 18px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact li {
  color: #cfc6df;
  margin-bottom: 12px;
  font-size: 18px;
  display: flex;
  gap: 10px;
}

.footer-contact i {
  margin-top: 6px;
  color: #f7b731;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 50%;
  margin-right: 8px;
  text-decoration: none;
}

.footer-social a:hover {
  background: #f7b731;
  color: #000;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  color: #cfc6df;
}

/* cta section */
.cta-section {
  background: linear-gradient(135deg, #f15a24, #f7941d);
}

.corner {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
}

.corner-left {
  top: -80px;
  left: -80px;
}

.corner-right {
  bottom: -80px;
  right: -80px;
}
.call-btn{
  background-color: #04AA6D; 
  color: #fff;
  border-radius: 50px;
}
.call-btn:hover{
  background-color: #fff; 
  color: #04AA6D;
  border: 1px solid #04AA6D;
}
.what-btn{
  background-color: #fff; 
  color: #04AA6D;
  border: 1px solid #04AA6D;
  border-radius: 50px;
}
.what-btn:hover{
  background-color: #04AA6D; 
  color: #fff;
  
}

/* sticky button */

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 30px;
  width: 45px;
  height: 45px;
  background:linear-gradient(45deg,#ff2d95, #ff6a00);
  color: #fff;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  text-align: center;
  line-height: 45px;
  transition: all 0.3s ease;
}

.scroll-top:hover {
  background: #7b61ff;
  color: #fff;
}

/* help flotting button */
.help-float {
  position: fixed;
  left: 20px;
  bottom: 30px;
  z-index: 999;
  display: none;
}
.help-float a{
  text-decoration: none;
}
.help-main {
  background:linear-gradient(45deg,#ff2d95, #ff6a00);
  color: #fff;
  padding: 12px 16px;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  animation: zoomPulse 1.8s ease-in-out infinite;
}

@keyframes zoomPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

.help-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.help-float.active .help-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.help-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.help-btn:hover {
  transform: scale(1.1);
}

.help-btn.call {
  background: #007bff;
}

.help-btn.msg {
  background: #17a2b8;
}

.help-btn.whatsapp {
  background: #25d366;
}


/* 
  About Page code
*/
.about-inner {
  background: #e6f9f5;
}

.breadcrumb-item a{
  text-decoration: none;
  color: #ff6a00;
  font-weight: 700;
  font-size: 20px;
}

.in-active{
  color: #ff2d95;
  font-weight: 700;
  font-size: 20px;
}

.float-animation {
  max-height: 420px;
  animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

/*
 Contact page code
*/

.contact-section {
  background: #faf7f2;
}

.contact-title {
  font-weight: 700;
  color: #0f3d2e;
}

.contact-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 14px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: all 0.3s ease;
   cursor: pointer;
}

.contact-card:hover {
  transform: translateY(-8px);
}

.icon-circle {
  width: 52px;
  height: 52px;
  background: #f1ede6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #0f3d2e;
  font-size: 18px;
  transition: all 0.3s ease;
 
}

.contact-card:hover .icon-circle {
   background:linear-gradient(45deg,#ff6a00,#ff2d95);
}

.contact-card:hover .icon-circle i{
  color: #fff;
}

.contact-card p {
  margin: 0;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

/* contact from */

.contact-map-form {
  background: #5a3fff;
}

.map-box {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.form-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.form-control {
  padding: 12px;
  border-radius: 8px;
}
.contact-btn{
  background:linear-gradient(45deg,#ff6a00,#ff2d95);
  border-radius: 50px;
  color: #fff;
}

.contact-btn:hover{
  background:linear-gradient(45deg,#ff2d95,#ff6a00);
  color: #fff;
}