*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root{
  --primary-color: #6B5E58;
  --secondary-color: #6B5E58;
  --green-color: #4F7F2A;
  /* --green-color: #116e28; */
  --font-light-color: #fff;
  --font-dark-color: #000;
}

header{
  position: sticky;
  top: 0;
  z-index: 999;
}

.top-strip{
  background-color: var(--font-light-color);
  color: #6d6d6d;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-strip .social-icons a{
  color: #6d6d6d;
  text-decoration: none;
}

  .anc{
    color: #6d6d6d;
    text-decoration: none;
  }
  
.anc1{
  color: #ffffffb3;
  text-decoration: none;
}

@media (max-width: 768px) {
  .top-strip {
    display: none;
  }
}

.navbar{
  background-color: var(--font-light-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  color: var(--primary-color);
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  /* border-bottom: 2px solid var(--font-dark-color); */
}

.main-nav .navbar-collapse{
  flex-grow: 1;
  justify-content: center;
}

.main-nav .navbar-nav{
  align-items: center;
}

.navbar-brand{
  color: var(--green-color) !important;
  font-weight: bold;
}

.navbar-brand img{
  height: 45px;
  object-fit: cover;
}

.navbar-nav .nav-item .nav-link{
  color: var(--green-color);
  font-weight: 700;
}
.navbar-nav .nav-item .nav-link:hover{
  color: var(--green-color);
}
.navbar-nav .nav-item .nav-link.active{
  color: var(--primary-color);
}
.navbar .nav-link a{
  color: var(--font-light-color);
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

.navbar .nav-links a:hover{
  color: var(--primary-color);
}

.nav-icons{
  display: flex;
  align-items: center;
  color: var(--font-light-color);
}

.main-nav .nav-icons{
  margin-left: auto;
  gap: 12px;
}

.nav-icons .btn{
  color: var(--font-light-color);
}

.btn-appointment{
  background: var(--green-color) !important;
  color: var(--font-light-color) !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 700 !important;
  text-decoration: none;
  transition: all 0.3s ease !important;
  display: inline-block;
  border: 1px solid var(--green-color);
}

.btn-appointment:hover{
  /* background: rgba(128,0,128,0.8) !important; */
  transform: translateY(-2px);
  box-shadow: 0 2px 6px var(--green-color);
}

.nav-item{
  position: relative;
}

.navbar-toggler{
  order: 3;
  margin-left: auto;
}

.navbar-toggler:focus{
  box-shadow: none;
}

.navbar-toggler-icon{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23b536b5' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
  .navbar-brand{
    order: 1;
  }

  .navbar-toggler{
    order: 2;
    margin-left: auto;
  }

  .main-nav .nav-icons{
    display: none !important;
  }
}

.mobile-sidebar{
  width: min(86vw, 340px) !important;
  background: #ffffff;
}

.mobile-sidebar .offcanvas-header{
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 14px 18px;
}

.mobile-sidebar .offcanvas-title{
  color: var(--green-color);
  font-weight: 700;
}

.mobile-sidebar .btn-close:focus{
  box-shadow: none;
}

.mobile-nav-list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-list li{
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.mobile-nav-list li a{
  display: block;
  color: var(--green-color);
  text-decoration: none;
  font-weight: 700;
  padding: 12px 4px;
}

.mobile-service-toggle{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--green-color);
  background: transparent;
  border: none;
  font-weight: 700;
  padding: 12px 4px;
}

.mobile-service-toggle i{
  font-size: 0.85rem;
  transition: transform 0.25s ease;
}

.mobile-service-toggle[aria-expanded="true"] i{
  transform: rotate(180deg);
}

.mobile-service-dropdown{
  list-style: none;
  padding: 0 0 8px 14px;
  margin: 0;
}

.mobile-service-dropdown li{
  border-bottom: none;
}

.mobile-service-dropdown li a{
  padding: 8px 4px;
  font-size: 0.95rem;
  font-weight: 600;
}

.mobile-nav-title{
  color: #7a7a7a;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 4px 8px;
  border-bottom: none !important;
}

@media (min-width: 992px) {
  .mobile-sidebar{
    display: none !important;
  }
}

.service-dropdown{
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--font-dark-color);
  list-style: none;
  padding: 10px 0;
  margin-top: 10px;
  border-radius: 8px;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.service-dropdown::before{
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--font-dark-color);
}

.service-dropdown li{
  padding: 10px 20px;
  transition: background 0.3s ease;
}

.service-dropdown li:hover{
  background: rgba(128,0,128,0.1);
}

.service-dropdown li a{
  color: var(--font-light-color);
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.service-dropdown li a:hover{
  color: var(--primary-color);
}

.nav-item:hover .service-dropdown{
  display: block;
  opacity: 1;
  visibility: visible;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .navbar .nav-links {
    display: none;
  }
}


/* hero section slider */

.hero-slider{
  position: relative;
  --hero-mouse-x: 50%;
  --hero-mouse-y: 50%;
}

.hero-circles{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
}

.hero-circles::before{
  content: "";
  position: absolute;
  left: var(--hero-mouse-x);
  top: var(--hero-mouse-y);
  width: 1200px;
  height: 1200px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  opacity: 0.9;
  animation: heroCenterDriftLarge 13.5s ease-in-out infinite;
}

.hero-circles::after{
  content: "";
  position: absolute;
  left: var(--hero-mouse-x);
  top: var(--hero-mouse-y);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(181, 54, 181, 0.12) 40%, rgba(181, 54, 181, 0) 74%);
  filter: blur(5px);
  animation: heroCenterDrift 11.5s ease-in-out infinite;
}

.hero-ring{
  position: absolute;
  left: var(--hero-mouse-x);
  top: var(--hero-mouse-y);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.26);
  opacity: 0.95;
  animation: heroRingPulse 6.2s ease-in-out infinite;
}

.hero-ring--1{
  width: 520px;
  height: 520px;
  animation-delay: 0s;
}

.hero-ring--2{
  width: 700px;
  height: 700px;
  animation-delay: -1s;
}

.hero-ring--3{
  width: 880px;
  height: 880px;
  animation-delay: -2s;
}

.hero-ring--4{
  width: 1060px;
  height: 1060px;
  animation-delay: -3s;
}

.hero-ring--5{
  width: 1240px;
  height: 1240px;
  animation-delay: -4s;
}

.hero-ring--6{
  width: 1420px;
  height: 1420px;
  opacity: 0.45;
  animation-delay: -5s;
}

@keyframes heroRingPulse{
  0%{
    transform: translate(-50%, -50%) scale(0.976);
    opacity: 0.08;
  }
  22%{
    opacity: 0.95;
  }
  50%{
    transform: translate(-50%, -50%) scale(1.022);
    opacity: 0.45;
  }
  76%{
    opacity: 0.88;
  }
  100%{
    transform: translate(-50%, -50%) scale(0.976);
    opacity: 0.08;
  }
}

@keyframes heroCenterDrift{
  0%{
    transform: translate(-50%, -50%);
  }
  25%{
    transform: translate(-49.4%, -50.8%);
  }
  50%{
    transform: translate(-50.7%, -49.3%);
  }
  75%{
    transform: translate(-49.3%, -50.6%);
  }
  100%{
    transform: translate(-50%, -50%);
  }
}

@keyframes heroCenterDriftLarge{
  0%{
    transform: translate(-50%, -50%) scale(1);
  }
  50%{
    transform: translate(-50%, -50%) scale(1.015);
  }
  100%{
    transform: translate(-50%, -50%) scale(1);
  }
}

.hero-slider .swiper{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 85vh;
}

.hero-slide{
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-slide::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.15) 100%);
}

.hero-content{
  position: relative;
  z-index: 2;
}

.hero-content p{
  margin-bottom: 30px;
  font-weight: 600;
}

.hero-slide--1{ background-image: url('../images/hero-section/hero5.png'); }
.hero-slide--2{ background-image: url('../images/hero-section/hero2.png'); }
.hero-slide--3{ background-image: url('../images/hero-section/hero3.png'); }

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next{
  z-index: 4;
  color: var(--font-light-color);
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hero-slider .swiper-pagination-bullet{
  background: rgba(255,255,255,0.8);
  opacity: 0.8;
}

.hero-slider .swiper-pagination-bullet-active{
  background: var(--primary-color);
  opacity: 1;
}

.hero-slider .swiper-pagination{
  z-index: 4;
}

@media (max-width: 768px) {
  .hero-circles::before{
    width: 760px;
    height: 760px;
    opacity: 0.75;
  }

  .hero-circles::after{
    width: 220px;
    height: 220px;
  }

  .hero-ring{
    animation-duration: 7.2s;
  }

  .hero-ring--1{ width: 300px; height: 300px; }
  .hero-ring--2{ width: 430px; height: 430px; }
  .hero-ring--3{ width: 560px; height: 560px; }
  .hero-ring--4{ width: 690px; height: 690px; }
  .hero-ring--5{ width: 820px; height: 820px; }
  .hero-ring--6{ width: 950px; height: 950px; }

  .hero-slider{
    --hero-mouse-x: 50%;
    --hero-mouse-y: 50%;
  }
}

/* Page Hero */

.page-hero{
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 320px;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.page-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.65), rgba(0,0,0,0.45));
}

.page-hero .container{
  position: relative;
  z-index: 1;
}

.page-hero h1{
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.page-hero p{
  max-width: 640px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
}

.page-hero .breadcrumb{
  background: transparent;
  padding: 0;
  margin: 0;
  color: rgba(255,255,255,0.85);
}

.page-hero .breadcrumb a{
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}

.page-hero .breadcrumb .active{
  color: var(--secondary-color);
}

.about-hero{
  background-image: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1600&auto=format&fit=crop');
}

.blog-hero{
  background-image: url('https://images.unsplash.com/photo-1532693322450-2cb5c511067d?w=1600&auto=format&fit=crop');
}

.astrology-hero{
  background-image: url('https://images.unsplash.com/photo-1419242902214-272b3f66ee7a?w=1600&auto=format&fit=crop');
}

/* Lead Generation Sections */

.lead-section{
  background: white;
}

.lead-section-alt{
  background: #f8f9fa;
}

.section-badge{
  display: inline-block;
  background: rgba(128,0,128,0.1);
  color: var(--primary-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-content h2{
  font-size: 2rem;
  font-weight: 800;
  color: var(--font-dark-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-content p{
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.7;
}

.feature-list{
  list-style: none;
  padding: 0;
}

.feature-list li{
  padding: 12px 0;
  color: #555;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-list i{
  color: var(--primary-color);
  font-size: 1.2rem;
}

.lead-form-card{
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(128,0,128,0.08);
}

.lead-section-alt .lead-form-card{
  background: white;
}

.lead-form-card h4{
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--font-dark-color);
}

.lead-form .form-label{
  font-weight: 600;
  color: var(--font-dark-color);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.lead-form .form-control,
.lead-form .form-select{
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 11px 14px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.lead-form .form-control:focus,
.lead-form .form-select:focus{
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(128,0,128,0.15);
}

.lead-form .form-control::placeholder{
  color: #aaa;
  font-size: 0.9rem;
}

.lead-form .btn{
  padding: 12px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.lead-form .btn:hover{
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(128,0,128,0.3);
}

@media (max-width: 768px) {
  .lead-section{
    padding: 40px 0 !important;
  }
  
  .section-content h2{
    font-size: 1.6rem;
  }
  
  .lead-form-card{
    padding: 24px;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-hero{
    min-height: 260px;
    text-align: center;
  }

  .page-hero h1{
    font-size: 2rem;
  }
}

/* Blog Listing Section */

.blog-listing-section{
  background: #f8f9fa;
}

.blog-card{
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.4s ease;
}

.blog-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(128,0,128,0.15);
}

.blog-image{
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img{
  transform: scale(1.08);
}

.blog-category{
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary-color);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-body{
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta{
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #888;
}

.blog-meta span{
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta i{
  color: var(--primary-color);
}

.blog-title{
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--font-dark-color);
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title{
  color: var(--primary-color);
}

.blog-excerpt{
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
  flex-grow: 1;
}

.blog-read-more{
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  width: fit-content;
}

.blog-read-more:hover{
  gap: 12px;
  color: var(--secondary-color);
}

.blog-read-more i{
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.blog-read-more:hover i{
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .blog-image{
    height: 180px;
  }
  
  .blog-title{
    font-size: 1.1rem;
  }
  
  .blog-body{
    padding: 20px;
  }
}

.btn-hero{
  background: linear-gradient(135deg, var(--green-color), var(--green-color));
  color: var(--font-light-color);
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  /* box-shadow: 0 5px 15px rgba(128,0,128,0.3); */
  transition: all 0.4s ease;
}
.btn-hero:hover{
  background: linear-gradient(135deg, var(--green-color), var(--green-color));
  /* box-shadow: 0 8px 20px rgba(128,0,128,0.5); */
  transform: translateY(-3px);
}

/* about section  */

.about-section{
  /* padding: 80px 0; */
  /* background-color: #f9f9f9; */
  gap: 100px;
}
.about-img img{
  width: 100%;
  height: auto; 
  border-radius: 50px;
}
.about-desc{
  /* display: flex; */
  max-width: 700px;
  text-align: justify;
}
@media (max-width: 1300px) {
  .about-desc{
  max-width: 600px;
  text-align: justify;
}
}
.about-desc p{
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

@media (max-width: 1199.98px){
  .about-section{
    gap: 40px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px){
  .about-section{
    flex-direction: column !important;
    align-items: center !important;
    gap: 26px;
  }

  .about-section .about-img{
    flex: 0 0 100%;
    max-width: 460px;
    width: 100%;
  }

  .about-section .about-desc{
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    text-align: left;
  }

  .about-section .about-desc p{
    font-size: 0.98rem;
    line-height: 1.78;
    margin-bottom: 22px;
  }
}

@media (max-width: 767.98px){
  .about-section{
    gap: 24px;
  }

  .about-img img{
    border-radius: 24px;
  }

  .about-desc{
    text-align: left;
  }
}

.btn-learn{
  background: linear-gradient(135deg, var(--green-color), var(--green-color));
  color: var(--font-light-color);
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(43, 91, 21, 0.5);
  transition: all 0.4s ease;
}
.btn-learn:hover{
  background: linear-gradient(135deg, var(--green-color), var(--green-color));
  box-shadow: 0 8px 20px rgba(43, 91, 21, 0.5);
  transform: translateY(-3px);
}

/* astrologer expertise section */

.astrologer-expertise{
  /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
  position: relative;
  overflow: hidden;
}

.astrologer-expertise::before{
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(128,0,128,0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-50px, -50px) rotate(180deg); }
}

.section-title{
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-color);
  position: relative;
  display: inline-block;
}

.section-title::after{
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--green-color), var(--green-color));
  border-radius: 2px;
}

.expertiseSwiper{
  padding: 6px 4px 12px;
}

.expertiseSwiper .swiper-slide{
  height: auto;
}

.expertiseSwiper .expertise-card{
  height: 100%;
}

.expertise-card{
  background: white;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.expertise-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(43, 91, 21, 0.1), transparent);
  transition: left 0.6s;
}

.expertise-card:hover::before{
  left: 100%;
}

.expertise-card:hover{
  transform: translateY(-8px);
  /* box-shadow: 0 15px 40px rgba(43, 91, 21, 0.5); */
  border: 2px solid var(--green-color);
}

.card-icon{
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--green-color), var(--green-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 8px 20px rgba(43, 91, 21, 0.5);
}

.expertise-card:hover .card-icon{
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 12px 30px rgba(43, 91, 21, 0.5);
}

.expertise-card h4{
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--font-dark-color);
  margin-bottom: 15px;
  transition: color 0.3s;
}

.expertise-card:hover h4{
  color: var(--primary-color);
}

.expertise-card p{
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.card-stats{
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
  font-size: 0.9rem;
  color: #888;
  gap: 10px;
}

.card-stats span{
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-stats i{
  color: var(--primary-color);
}

.btn-astro{
  background: linear-gradient(135deg, var(--green-color), var(--green-color));
  color: var(--font-light-color) !important;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(43, 91, 21, 0.3);
  transition: all 0.4s ease;
}
.btn-astro:hover{
  background: linear-gradient(135deg, var(--green-color), var(--green-color));
  box-shadow: 0 8px 20px rgba(43, 91, 21, 0.5);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .section-title{
    font-size: 2rem;
  }
  
  .expertise-card{
    padding: 25px 20px;
  }
  
  .card-icon{
    width: 70px;
    height: 70px;
    font-size: 1.7rem;
  }
}


/* CTA section  */

.cta-section{
  position: relative;
  overflow: hidden;
}

.cta-wrapper{
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.cta-bg-image{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43, 91, 21, 0.5) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.cta-content{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 40px;
  text-align: center;
}

.cta-content h2{
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p{
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
}

.btn-cta{
  background: linear-gradient(135deg, var(--green-color), var(--green-color));
  color: var(--font-light-color);
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(43, 91, 21, 0.3);
  transition: all 0.4s ease;
}
.btn-cta:hover{
  background: linear-gradient(135deg, var(--green-color), var(--green-color));
  box-shadow: 0 8px 20px rgba(43, 91, 21, 0.5);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .cta-wrapper{
    height: 400px;
  }
  
  .cta-content h2{
    font-size: 1.8rem;
  }
  
  .cta-content p{
    font-size: 1rem;
  }
}

/* Blog Section */

.blog-section{
  background: #f8f9fa;
}

.blog-card{
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(128,0,128,0.2);
}

.blog-image{
  position: relative;
  overflow: hidden;
  height: 250px;
}

.blog-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img{
  transform: scale(1.1);
}

.blog-category{
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 1;
}

.blog-content{
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta{
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #888;
}

.blog-meta span{
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta i{
  color: var(--primary-color);
}

.blog-title{
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--font-dark-color);
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title{
  color: var(--primary-color);
}

.blog-excerpt{
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
  flex-grow: 1;
}

.blog-read-more{
  color: var(--green-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.blog-read-more:hover{
  gap: 12px;
  color: var(--green-color);
}

.blog-read-more i{
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.blog-read-more:hover i{
  transform: translateX(5px);
}

.btn-post{
  background: linear-gradient(135deg, var(--green-color), var(--green-color));
  color: var(--font-light-color);
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(43, 91, 21, 0.5);
  transition: all 0.4s ease;
}
.btn-post:hover{
  background: linear-gradient(135deg, var(--green-color), var(--green-color));
  box-shadow: 0 8px 20px rgba(43, 91, 21, 0.5);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .blog-image{
    height: 200px;
  }
  
  .blog-title{
    font-size: 1.1rem;
  }
}

/* Gallery Section */

.gallery-section{
  background: #f8f9fa;
}

.gallery-filter{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn{
  padding: 10px 25px;
  border: 2px solid var(--green-color);
  background: white;
  color: var(--green-color);
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active{
  background: var(--green-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(43, 91, 21, 0.3);
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.gallery-item{
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}

.gallery-item.hide{
  display: none;
}

.gallery-item:hover{
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(128,0,128,0.2);
}

.gallery-item img{
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img{
  transform: scale(1.1);
}

.gallery-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43, 91, 21, 0.9), rgba(0,0,0,0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay{
  opacity: 1;
}

.gallery-content{
  text-align: center;
  color: white;
  padding: 20px;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-content{
  transform: translateY(0);
}

.gallery-content h4{
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.gallery-content p{
  font-size: 0.95rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.gallery-zoom{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: white;
  color: var(--primary-color);
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.gallery-zoom:hover{
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .gallery-grid{
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .gallery-item img{
    height: 250px;
  }
}

/* Contact Section */

.contact-section{
  background: #f8f9ff;
}

.contact-card{
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(128,0,128,0.05);
}

.contact-card h3{
  font-weight: 700;
  color: var(--font-dark-color);
}

.accent-line{
  width: 40px;
  height: 3px;
  background: var(--green-color);
  border-radius: 10px;
}

.info-item{
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.info-item:last-child{
  border-bottom: none;
}

.info-icon{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(128,0,128,0.08);
  color: var(--green-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.contact-form .form-control,
.contact-form .form-select{
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 12px 14px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus{
  border-color: var(--green-color);
  box-shadow: 0 0 0 0.1rem rgba(43, 91, 21, 0.5);
}

.contact-form .btn-primary{
  background: var(--green-color);
  border-color: var(--green-color);
  padding: 12px;
  font-weight: 600;
  /* box-shadow: 0 10px 25px rgba(43, 91, 21, 0.5); */
}

.contact-form .btn-primary:hover{
  background: var(--green-color);
  border-color: var(--green-color);
}

.map-wrapper iframe{
  border: 0;
  width: 100%;
  height: 400px;
}

@media (max-width: 768px) {
  .contact-card{
    padding: 24px;
  }
}

/* Team Section */

.team-section{
  background: #f8f9fa;
}

.team-card{
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  text-align: center;
}

.team-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(43, 91, 21, 0.5);
}

.team-image{
  position: relative;
  overflow: hidden;
  height: 300px;
}

.team-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-image img{
  transform: scale(1.1);
}

.team-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43, 91, 21, 0.8), rgba(0,0,0,0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover .team-overlay{
  opacity: 1;
}

.team-social{
  display: flex;
  gap: 15px;
}

.team-social a{
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.team-card:hover .team-social a{
  transform: translateY(0);
  opacity: 1;
}

.team-card:hover .team-social a:nth-child(1){
  transition-delay: 0.1s;
}

.team-card:hover .team-social a:nth-child(2){
  transition-delay: 0.2s;
}

.team-card:hover .team-social a:nth-child(3){
  transition-delay: 0.3s;
}

.team-social a:hover{
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.team-info{
  padding: 25px 20px;
}

.team-name{
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--font-dark-color);
  margin-bottom: 8px;
}

.team-role{
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.team-rating{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-bottom: 10px;
}

.team-rating i{
  color: #ffc107;
  font-size: 0.9rem;
}

.team-rating span{
  margin-left: 8px;
  color: #666;
  font-weight: 600;
  font-size: 0.95rem;
}

.team-experience{
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .team-image{
    height: 250px;
  }
}

/* Footer Section */

.footer{
  background: linear-gradient(135deg, var(--font-dark-color) 0%, var(--font-dark-color) 100%);
  color: var(--font-light-color);
  position: relative;
  overflow: hidden;
}

.footer::before{
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(128,0,128,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.footer-top{
  padding: 80px 0 40px;
  position: relative;
  z-index: 1;
}

.footer-widget{
  margin-bottom: 30px;
}

.footer-logo{
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--font-light-color);
}

.footer-logo img{
  filter: brightness(2) invert(0);
}

.footer-text{
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  font-size: 0.95rem;
}

.social-links{
  display: flex;
  gap: 12px;
}
.social-links1{
  display: flex;
  gap: 12px;
}

.social-icon{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--font-light-color);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}
.social-links1 .social-icon{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--green-color);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(10, 10, 10, 0.1);
}

.social-links1 .social-icon:hover{
  background: var(--green-color);
  border-color: var(--green-color);
  transform: translateY(-3px);
  color: white;
  box-shadow: 0 5px 15px rgba(128,0,128,0.4);
}
.social-icon:hover{
  background: var(--green-color);
  border-color: var(--green-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(128,0,128,0.4);
}

.footer-title{
  color: var(--font-light-color);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--green-color);
  border-radius: 2px;
}

.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li{
  margin-bottom: 12px;
}

.footer-links a{
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.footer-links a i{
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.footer-links a:hover{
  color: var(--green-color);
  padding-left: 5px;
}

.footer-links a:hover i{
  transform: translateX(3px);
}

.footer-contact{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.footer-contact i{
  color: var(--green-color);
  font-size: 1.1rem;
  margin-top: 3px;
  min-width: 20px;
}

.footer-bottom{
  background: rgba(0,0,0,0.3);
  padding: 25px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p{
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.footer-bottom-links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-bottom-links li a{
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links li a:hover{
  color: var(--green-color);
}

.shubhitech{
  text-decoration: none;
  /* font-size: 1.5rem; */
  font-weight: 600;
  color: var(--green-color);
}

@media (max-width: 768px) {
  .footer-top{
    padding: 60px 0 30px;
  }
  
  .footer-bottom-links{
    margin-top: 15px;
    justify-content: center;
  }
  
  .footer-bottom .row > div{
    margin-bottom: 10px;
  }
}


/* Astrology Content Section */

.astrology-content-section{
  background: white;
}

.content-box{
  padding: 20px;
}

.content-box h2{
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-color);
  margin-bottom: 15px;
}

.content-box h3{
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.content-box p{
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
}

.content-list{
  /* list-style: none; */
  margin-left: 40px;
  padding: 0;
}

.content-list li{
  padding: 10px 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.content-highlight{
  background: linear-gradient(135deg, rgba(128,0,128,0.05), rgba(181,54,181,0.05));
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(35, 100, 35, 0.15);
}

.content-highlight h3{
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-color);
  margin-bottom: 15px;
}

.content-highlight p{
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

.highlight-features{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.feature-item{
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.feature-item i{
  font-size: 1.8rem;
  color: var(--green-color);
  flex-shrink: 0;
  margin-top: 5px;
}

.feature-item h5{
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--font-dark-color);
  margin-bottom: 8px;
}

.feature-item p{
  font-size: 0.9rem;
  color: #888;
  margin: 0;
}

@media (max-width: 768px) {
  .content-box{
    padding: 15px;
  }
  
  .content-box h2{
    font-size: 1.5rem;
  }
  
  .content-highlight{
    padding: 25px;
  }
  
  .highlight-features{
    grid-template-columns: 1fr;
  }
}

/* client sectionn  */

.client-section{
  /* background: #f8f9fa; */
  padding: 50px 0;
}

.client-images{
  position: relative;
  display: block !important;
  width: 100%;
  min-height: 320px;
  /* border-radius: 14px; */
  border-right: 1px solid #d0d0d0;
  /* background: #ececec; */
  overflow: hidden;
}

.client-avatar{
  position: absolute;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  animation: clientFloatUpDown 3.8s ease-in-out infinite;
  transition: transform 0.25s ease;
}

.client-avatar:hover{
  transform: scale(1.05);
}

.client-img{
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 5px solid #f5f5f5;
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(0,0,0,0.14);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.client-avatar.is-active .client-img{
  border-color: var(--green-color);
  box-shadow: 0 0 0 4px rgba(17, 110, 40, 0.25), 0 10px 20px rgba(0,0,0,0.2);
}

.avatar-1{ left: 10%; top: 16%; animation-delay: -0.2s; }
.avatar-2{ left: 42%; top: 24%; animation-delay: -1s; }
.avatar-3{ right: 12%; top: 14%; animation-delay: -1.8s; }
.avatar-4{ left: 23%; top: 58%; animation-delay: -2.2s; }
.avatar-5{ left: 53%; top: 62%; animation-delay: -2.8s; }
.avatar-6{ right: 8%; top: 50%; animation-delay: -3.2s; }

.client-content{
  min-height: 220px;
  color: var(--font-light-color);
  width: 100%;
}

.client-testimonial-text{
  display: none;
  background-color: var(--green-color);
  color: var(--font-light-color);
  padding: 30px 28px;
  border-radius: 20px;
  animation: clientTextFade 0.35s ease;
}

.client-testimonial-text.is-active{
  display: block;
}

@keyframes clientFloatUpDown{
  0%,
  100%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(-10px);
  }
}

@keyframes clientTextFade{
  from{
    opacity: 0;
    transform: translateY(6px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }

}

@media (max-width: 769px){
  .client-images{
    border-bottom: 1px solid #d0d0d0; 
    border-right: none;
  }

  .avatar-1{ left: 8%; top: 16%; }
  .avatar-2{ left: 40%; top: 22%; }
  .avatar-3{ right: 8%; top: 12%; }
  .avatar-4{ left: 18%; top: 58%; }
  .avatar-5{ left: 48%; top: 62%; }
  .avatar-6{ right: 4%; top: 50%; }
}

@media (max-width: 991.98px){
  .client-images{
    min-height: 360px;
    
  }

  .avatar-1{ left: 8%; top: 16%; }
  .avatar-2{ left: 40%; top: 22%; }
  .avatar-3{ right: 8%; top: 12%; }
  .avatar-4{ left: 18%; top: 58%; }
  .avatar-5{ left: 48%; top: 62%; }
  .avatar-6{ right: 4%; top: 50%; }
}

@media (max-width: 575.98px){
  .client-images{
    min-height: 300px;
    border-radius: 12px;
  }

  .client-img{
    width: 74px;
    height: 74px;
    border-width: 4px;
  }

  .avatar-1{ left: 10%; top: 12%; }
  .avatar-2{ left: 39%; top: 20%; }
  .avatar-3{ right: 10%; top: 12%; }
  .avatar-4{ left: 16%; top: 58%; }
  .avatar-5{ left: 44%; top: 64%; }
  .avatar-6{ right: 8%; top: 56%; }
}