:root {
  --background-color: white;
  --accent-color: #E96B02;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Inter", sans-serif !important; */
  font-family: "Philosopher", sans-serif;
}

ul{
  list-style-type: none;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}
/* 
.navbar {
  background-color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

 
} */



/* .navbar.hidden {
  transform: translateY(-100%); 
  
} */

/* 
.logo-img {
  height: 3rem;
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
}


.nav-links a:hover {
  background-color: var(--accent-color);
  color: white;
}

.dropdown-own {
  position: relative;
}

.dropdown-toggle-own::after{
  display: inline-block;
  position: relative;
  top:1.5px;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
} */
/* 
.dropdown-menu-own {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 20px !important;
  background-color: #fff;
  list-style: none;
  padding: 5px 0;
  margin: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-30px);
  transition: all 0.3s ease-in-out;
  z-index: 1000;
  border-bottom: 2px solid var(--accent-color);
}

.dropdown-menu-own li {
  padding: 5px 15px;
    white-space: nowrap;
}

.dropdown-menu-own li a {
  color: var(--accent-color);
  font-size: 16px;
  transition: color 0.3s;
  
}


.dropdown-own:hover .dropdown-menu-own {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
} */

/* 
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: black;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .hamburger {
    display: flex;
    order: 3;
    margin-left: 1rem;
  }

  .login-btn {
    order: 2;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    text-align: center;
    gap: 0;
    padding: 1rem 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-bottom: 4px solid var(--accent-color);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 1rem 2rem;
  }


} */

/* carousal */

.owl-carousel {
  /* width: 100%; */
  max-width: 100%;

  margin: 0 auto;
  position: relative;
  margin-top: 70px !important;
}

/* Fixed Custom Next/Prev buttons inside the slider */
.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 1;
}

.owl-prev,
.owl-next {
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  font-size: 40px;
  color: #000;
  padding: 10px;
  cursor: pointer;
}

/* Custom Bullet Points */
.owl-dots {
  text-align: center;
  padding-top: 10px;
}

.owl-dots .owl-dot {
  display: inline-block;
  margin: 0 5px;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  display: inline-block;
}

.owl-theme .owl-dots .owl-dot.active span {
  background: var(--accent-color);
}

/* Make images fit within the carousel */
.owl-carousel .item img {
  width: 100%;
  height: auto;
}

/* heading */

.heading-line {
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 39px;
  /* margin: 0 0 0; */
  /* color: #353535; */
  position: relative;
  text-align: center;
  padding-bottom: 20px;
  padding-top: 50px;
}

.heading-line::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  background: url('/front_theme/landingpage6/images/line.svg');
  width: 205.23px;
  height: 12.74px;
  background-repeat: no-repeat;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.span-heading {
  color: var(--accent-color);
  /* font-style: italic; */
  font-weight: 900;
}

/* steps start */

.steps-container {
  gap: 20px;
  margin-top: 30px;
}

.step {
  /* background-color: #f0f4f8; */

  padding: 20px;
  border-radius: 8px;
  text-align: center;

  width: 26%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
}

.step:hover{
  transform: translateY(-8px);  /* Lift effect */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);  /* Enhanced shadow */
}

.step1 {
  border: 1px solid #1c70c6;
  background-color: #f3f9ff;
}
.step2 {
  border: 1px solid #c2244a;
  background-color: #fff2f5;
}
.step3 {
  border: 1px solid #1cface;
  background-color: #f2fffc;
}

.step h3 {
  font-size: 20px;
  /* color: var(--accent-color); */
  font-weight: 600;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: #555;
}

/* Adding icons to each step */
.step i {
  font-size: 40px;

  margin-bottom: 10px;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .step {
    width: 80%;
    margin-bottom: 20px;
  }
}

/* why-choose-us start */

.why-choose-us {
  /* background-color: #031D2E; */
  margin-top: 30px;
}

.why-choose-us h4 {
  text-align: center;
  color: var(--accent-color);

  font-weight: 700;
}

.why-choose-us .why-choose-para {
  /* padding-top: 10px; */
  text-align: center;
  color: #212529;
  font-weight: 500;
}

.text-control{
  text-align: center;
}

.why-choose-us .why-choose-para ul li{
  text-align: center;
}

.image-container {
  position: relative;
  display: inline-block;
}

.image-container img {
  width: 170px; /* Make images responsive */
  height: auto;
  animation: rotateImage 40s infinite linear;
  transition: animation 0.3s ease-in-out;
}

.why-p {
   font-size: 18px;
  font-weight: bold !important;
  margin-top: 30px;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  /* font-size: 18px;  */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Optional for better visibility */
  font-size: 20px;
  /* margin-top: 20px; */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Optional for better visibility */
  white-space: nowrap;
}

.plus {
  display: inline-block;
  font-size: 25px;
  margin-left: 5px; /* Adjust this value to control the space between the number and the "+" */
}

.number {
  display: inline-block;
}

/* Keyframe for continuous rotation */
@keyframes rotateImage {
  from {
    transform: rotate(0deg); /* Start from 0 degrees */
  }
  to {
    transform: rotate(360deg); /* End at 360 degrees */
  }
}

/* why choose us end */

/* services start */

.services {
  margin-top: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  /* gap: 2rem; */
  /* padding: 1rem; */
}

.service-card {
  background-color: white;
  border-radius: 12px;
  padding: 1rem;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* .service-card:hover {
  transform: translateY(-5px);
} */

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.3em;
  margin: 0.5rem 0;
  color: red;
  font-weight: 600;
}

.service-card p {
  color: black;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 15px;
}

/* .view-more-btn {
  border-radius: 8px;
  border: 1px solid var(--accent-color);
  padding: 0.6em 1.2em;
  font-size: 0.9em;
  font-weight: 700;
  font-family: inherit;
  background-color: var(--accent-color);
  cursor: pointer;
  color: white;
  transition: background-color 0.25s;
  width: 100%;
 
}

.view-more-btn:hover {
color: var(--accent-color);
background-color: white;
} */

.swiper-button-next,
.swiper-button-prev {
  background-color: var(--accent-color); /* Custom color */
  color: white; /* Text color */
  padding: 10px 20px; /* Button padding */
  border-radius: 50%; /* Optional, for round buttons */
  font-size: 18px; /* Font size */
  border: 1px solid var(--accent-color);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 90%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 15px; /* Adjust the size of the arrows */
  color: white;
}

.swiper-button-next,
.swiper-button-prev {
  top: 55%;
}

/* Mobile-specific styles */

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    padding: 8px; /* Smaller padding for mobile */
    font-size: 12px; /* Smaller font size */
    width: 40px; /* Set a specific width */
    height: 40px; /* Set a specific height */
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 10px; /* Smaller arrow size */
  }
}

/* services end */

/* top astrologers start */

.top-astrologers {
  margin-top: 30px;
}




.astrologer-card {
  /* background-color: rgba(255, 255, 255, 0.1); */
  /* background: linear-gradient(to right, #FF8C00, #FFD700); */
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;



}
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  
 
  padding: 8px 20px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 12px;
  z-index: 2;
  text-align: center;
}


.green-color{
  background-color: green; /* Red color */
  color: white;
}
.yellow-color{
  background-color: yellow; /* Red color */
  color: black;
}
.blue-color{
  background-color: blue; /* Red color */
  color: white;
}


.top-image-container {
  position: relative;
  margin-bottom: 0.8rem;
  margin-left: auto;
  margin-right: auto;
  
  border-radius: 50%;
  top: 0px;
    left: 0;
    right: 0;
    width: 130px !important;
    height: 130px !important;
    z-index: 1;
}

.top-image-container img {
  width: 120px !important;
  height: 120px !important;
  border-radius: 50%;
  border: 5px solid #fff;
  margin: 10px 10px;
  box-shadow: 0px 0px 12px 1px rgb(200 173 122 / 26%);
  object-fit: cover;
  margin-top: 20px;
}

.online-badge {
  position: absolute;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  bottom: 5px;
  right: 5px;
  /* background-color: green; */
  border: 2px solid white; /* Adds a white outline for better visibility */
}

.online-color{
  background-color: green;
}
.offline-color{
  background-color: red;
}
.busy-color{
  background-color: yellow;
}


.astrologer-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-align: center;
}

.specialties {
  color: black;
  margin-bottom: 0.75rem;
  text-align: center;
}

.stars {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  justify-content: center;
}

.star {
  font-size: 1.25rem;
  color: #ddd; /* Default color for empty stars */
}

.star.full {
  color: var(--accent-color); /* Full star color */
}

.star.half {
  color: transparent;
  background: linear-gradient(to right, #e96b02 50%, #ddd 50%);
  background-clip: text;
  color: transparent;
}

.star.empty {
  color: #ddd; /* Empty star color */
}

.experience {
  font-size: 0.875rem;
  color: #888;
  margin-bottom: 1rem;
  text-align: center;
}

/* .book-btn {
  width: 100%;
  background-color: var(--accent-color);
  color: white;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: 1px solid var(--accent-color);
}

.book-btn:hover {
  color: var(--accent-color);
  background-color: white;
} */
/* top astrologers end */

/* blog start */

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.image-container-blog {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.image-container-blog img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* contain to show full size image */
  transition: transform 0.3s ease;
}

.blog-card:hover .image-container-blog img {
  transform: scale(1.05);
}

.content {
  padding: 1.5rem;
}

/* .author {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.author-image {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  object-fit: cover;
  margin-right: 0.75rem;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: rgb(17, 24, 39);
  font-size: 0.875rem;
} */

.posted-by {
  color: rgb(107, 114, 128);
  font-size: 0.75rem;
}

.metadata {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: rgb(107, 114, 128);
  margin-bottom: 1rem;
}

.date,
.read-time {
  display: flex;
  align-items: center;
}

.date svg,
.read-time svg {
  margin-right: 0.5rem;
}

.dot {
  margin: 0 0.5rem;
}

.content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.blog-card:hover .content h3 {
  color: var(--accent-color);
}

.content p {
  color: rgb(75, 85, 99);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  display: flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 500;
  transition: color 0.2s ease;
  cursor: pointer;
}

.read-more svg {
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.blog-card:hover .read-more {
  color: var(--accent-color);
}

.blog-card:hover .read-more svg {
  transform: translateX(0.25rem);
}

/* blog end */

/* products start */

.product-grid {
  text-align: center;
}
.product-grid .product-image {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.product-grid .product-image a.image {
  display: block;
}
.product-grid .product-image img {
  width: 100%;
  height: 250px;
}
.product-grid .product-discount-label {
  color: #fff;
  background: var(--accent-color);
  font-size: 13px;
  font-weight: 600;
  line-height: 25px;
  /* padding: 0 20px; */
  position: absolute;
  top: 10px;
  left: 0;
}
.product-grid .product-links {
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  top: 10px;
  right: -50px;
  transition: all 0.5s ease 0s;
}
.product-grid:hover .product-links {
  right: 10px;
}
.product-grid .product-links li a {
  color: white;
  background: transparent;
  font-size: 17px;
  line-height: 38px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--accent-color);
  /* border-bottom: none; */
  display: block;
  transition: all 0.3s;
}
.product-grid .product-links li:last-child a {
  border-bottom: 1px solid #333;
}
.product-grid .product-links li a:hover {
  color: #fff;
  background: var(--accent-color);
}
.product-grid .add-to-cart {
  background: var(--accent-color);
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  width: 100%;
  padding: 10px 26px;
  position: absolute;
  left: 0;
  bottom: -60px;
  transition: all 0.3s ease 0s;
}
.product-grid:hover .add-to-cart {
  bottom: 0;
}
.product-grid .add-to-cart:hover {
  text-shadow: 4px 4px rgba(0, 0, 0, 0.2);
}
.product-grid .product-content {
  background: #fff;
  padding: 5px;
  /* box-shadow: 0 0 0 5px rgba(0,0,0,0.1) inset; */
  border: 1px solid var(--accent-color);
}
.product-grid .title {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 0 7px;
}
.product-grid .title a {
  color: var(--accent-color);
  transition: all 0.3s ease 0s;
}
.product-grid .title a:hover .product-grid .price {
  color: #0d0d0d;
  font-size: 14px;
  font-weight: 600;
}
.product-grid .price span {
  color: #888;
  font-size: 13px;
  font-weight: 400;
  text-decoration: line-through;
}
@media screen and (max-width: 990px) {
  .product-grid {
    margin-bottom: 30px;
  }
}

/* products end */

/* testimonials start */

.testimonial {
  border-left: 4px solid var(--accent-color);
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.06);
  padding: 30px 30px 30px 130px;
  overflow: hidden;
  position: relative;
}
.testimonial:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-top: 25px solid var(--accent-color);
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  transform: rotate(-45deg);
  transform-origin: 80% -30% 0;
}
.testimonial .pic {
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: 60px;
  left: 20px;
}
.testimonial .pic img {
  width: 100%;
  height: auto;
}
.testimonial .description {
  font-size: 15px;
  font-style: italic;
  /* color: #918686; */
  line-height: 25px;
  margin-bottom: 15px;
}
.testimonial .title {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0;
}
.testimonial .post {
  display: inline-block;
  font-size: 17px;
  color: var(--accent-color);
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  .testimonial {
    padding: 20px;
    text-align: center;
  }
  .testimonial .pic {
    display: block;
    position: static;
    margin: 0 auto 15px;
  }
}

.testimonials-subhead {
  text-align: center;
  color: var(--accent-color);
  font-weight: 600;
  margin-top: 10px;
  font-size: 20px;
}


.swiper-pagination {
  position: relative;
  margin-top: 30px; 
  text-align: center;
}

.swiper-pagination-bullet {
  background-color: var(--accent-color);
  width: 10px;
  height: 10px; 
  opacity: 0.2; 
  border-radius: 50%; 
  margin: 0 5px;
}

.swiper-pagination-bullet-active {
  background-color: var(--accent-color); 
  opacity: 1;
  width: 10px; 
  height: 10px;
}


/* testimonials end */

/* Footer start */

.footer-section {
  background: #151414;
  position: relative;
  margin-top: 100px;
}

.footer-section ul {
  margin: 0px;
  padding: 0px;
}

/* .footer-cta {
  
  text-align: center; 
  display: flex;
  justify-content: center; 
  align-items: center;
} */

.row {
  display: flex;
  justify-content: space-around;
 
  padding: 1.2rem 0rem;
}
.border{
 border-bottom: 1px solid #373636 !important; 
 border-left: none !important;
 border-right: none !important;
 border-top: none !important;
}

.single-cta {
  text-align: center; 
}

.single-cta i {
  color: var(--accent-color);
  font-size: 30px;
  margin-bottom: 10px; 
}

.cta-text {
  padding-left: 0;
}

.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.cta-text span {
   color: white;
  font-size: 15px;
}

@media (max-width: 767px) {
  .footer-cta {
    text-align: left; 
  }

  .footer-cta .row {
    flex-direction: column; 
    align-items: flex-start;
  }

  .single-cta {
    text-align: left;
    margin-bottom: 1rem;
  }

}




/* main footer */
.footer-content {
  position: relative;
  z-index: 2;
  padding-top: 48px;

}

.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 5px;
  margin-top: -20px;
}

.footer-logo img {
  max-width: 100px;
  max-height: 100px;

}
.footer-text p {
   margin-bottom: 14px;
  font-size: 14px;
  color: white;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 12px;
  margin-right: 15px;
  
}
.footer-social-icon i {
  height: 34px;
  width: 34px;
  text-align: center;
  line-height: 34px;
  border-radius: 50%;
  
}
.facebook-bg {
  background: #3b5998;
}
.instagram-bg {
  background: #d72574;
}
.twitter-bg {
  background: #55acee;
}
.youtube-bg {
  background: #cd201f;
}
.google-bg {
  background: #dd4b39;
}
.pinterest-bg{
background:#B60000;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: var(--accent-color);
}
.footer-widget ul li {
 
  margin-bottom: 12px;
}

.footer-widget ul li a {
   color: white;
  text-transform: capitalize;
  position: relative;
}



.footer-widget ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-color); 
  transition: width 0.3s ease;
  
}

.footer-widget ul li a:hover::after {
  width: 100%;
}


.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2e2e2e;
  border: 1px solid #2e2e2e;
  color: #fff;
}
.subscribe-form input:focus {
  outline: none;
}
.subscribe-form button {
  position: absolute;
  right: 0;
  background: var(--accent-color);
  padding: 13px 20px;
  border: 1px solid var(--accent-color);
  top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}


.copyright-area {
  background: #202020;
  padding: 25px 0;
}


.copyright-text p {
   margin: 0;
  font-size: 16px;
  color: white;
  text-align: center;
  font-weight: bold;
}
.copyright-text p a {
  color: var(--accent-color);
}




.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a {
  color: var(--accent-color);
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}

/* Footer end */

/* scrollbar */

::-webkit-scrollbar {
  width: 5px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
  background: white; /* Background of the scrollbar track */
}

::-webkit-scrollbar-thumb {
  background: var(--accent-color); /* Color of the scrollbar thumb */
  border-radius: 6px; /* Rounded corners */
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color); /* Color when hovered */
}

/* scrollbar   end*/


/* back to top */

.scroll-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  text-decoration: none;
  border: 1px solid var(--accent-color);
}

.scroll-to-top i {
  font-size: 15px;
  color: white;
  line-height: 0;

}

.scroll-to-top:hover {
  background-color: color-mix(in srgb, #E96B02, transparent 20%);
  
}

.scroll-to-top.active2 {
  visibility: visible;
  opacity: 1;
}


/* back to top */



/* loader */

#loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #ffff;
  transition: all 0.6s ease-out;
}

#loader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: #E96B02 transparent #E96B02 transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* loader */


.carousel-container {
  position: relative;
}

.owl-carousel .item img {
  width: 100%;
  height: auto;
  display: block;
}

.custom-prev, .custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  color: var(--accent-color);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  /* opacity: 0;  */
}

/* .carousel-container:hover .custom-prev,
.carousel-container:hover .custom-next {
  opacity: 1; 
} */

.custom-prev {
  left: 10px;
}

.custom-next {
  right: 10px;
}



/*  */

.astro-main-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}


.astro-main-slider01::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 450px;
  height: 450px;
  transform: translate(-50%, -50%);
  background-image: url(/images/zodiac-wheel.png);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: -1;
  opacity: 0.4;
  transition: all 0.5s ease;
  animation: rotate 15s linear infinite;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.astro-main-slider div.main-content {
  position: relative;
  max-width: 40rem;
  width: 100%;
  margin-top: 4rem;
  margin-bottom: 8rem;
}
.main-content .ast_sub_title {
  position: relative;
  font-weight: 600;
  font-size: 20px;
  text-transform: capitalize;
  color: white;
  background: #ffffff36;
  border-radius: 50px;
  display: inline-block;
  padding: 15px 24px 15px 24px;
  margin-bottom: 20px;
}
.main-content .ast_sub_title:has(.ast_slider_earth) {
  padding-left: 60px;
}
.main-content .ast_sub_title .ast_slider_earth {
  width: 40px;
  height: 40px;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  position: absolute;
  line-height: 40px;
  text-align: center;
  margin-right: 14px;
  border-radius: 50%;
  background-color: white;
}
.main-content .ast_sub_title .ast_slider_earth img {
  width: 30px;
  height: 25px;
  margin: auto;
  display: inline-block;
}
.main-content .ast_title {
  font-size: 55px;
  font-weight: 900;
  letter-spacing: 0.6px;
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
}
.main-content .ast_description {
  font-size: 22px;
  font-weight: 500;
  color: white;
  margin-bottom: 20px;
  line-height: 1.6;
}
.main-content .ast_slider_btn {
  margin-top: 35px;
}

.item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.astro_btn {
  position: relative;
  border: none;
  display: inline-block;
  color: black;
  padding: 18px 25px;
  letter-spacing: 0.3px;
  overflow: hidden;
  background: #fdc533;
  border-radius: 10px;
  font-size: 19px;
  font-weight: 600;
  z-index: 0;
  line-height: 20px;
  text-decoration: none;
  transition: 0.5s all ease;
}


.astro_pandit{

  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Media Queries for Responsive Design */

/* Tablets */
@media (max-width: 991px) {
  
  .astro-main-slider div.main-content {
    margin-top: 3rem;
    margin-bottom: 6rem;
  }
  .main-content .ast_sub_title {
    font-size: 14px;
    margin-top: 20px;

  }
  .main-content .ast_title {
    font-size: 30px;
    line-height: 1.2;
  }

  .main-content .ast_description {
    font-size: 15px;
  }

  .astro-main-slider01::after {
    width: 300px;
    height: 300px;
  }

  .astro_btn {
    font-size: 16px;
    padding: 15px 20px;
  }

  .astro_pandit img {
    width: 60%;
    max-width: 300px;
    margin-top: 70px;
  }
}

/* Mobile Devices */
@media (max-width: 767px) {
 
  .astro-main-slider div.main-content {
    margin-top: 2rem;
    margin-bottom: 4rem;
    text-align: center;
  }

  .main-content .ast_sub_title {
    font-size: 13px;
    padding: 10px 18px;
  }

  .main-content .ast_sub_title:has(.ast_slider_earth) {
    padding-left: 50px;
  }

  .main-content .ast_title {
    font-size: 18px;
    line-height: 1.3;
  }

  .main-content .ast_description {
    font-size: 13px;
  }

  .astro-main-slider01::after {
    width: 200px;
    height: 200px;
  }

  .astro_btn {
    font-size: 12px;
    padding: 12px 15px;
  }

  .astro_pandit img {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

  .row {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
}


/* contact us */


.contact-us-form .form-group .form-control {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid #f9f9f9;
  border-radius: 0;
  background: #f9f9f9;
}



.solid-btn {
  color: white;
  -webkit-box-shadow: 0 20px 30px 0 rgb(67 37 204 / 20%);
  box-shadow: 0 20px 30px 0 rgb(41 132 151 / 10%);
  background: var(--accent-color) ;
  border: 2px solid var(--accent-color) ;
  border-radius: 30px;

}

.solid-btn:hover {
  color: white !important;
  background-color: var(--accent-color) !important;
}



.contact-us-form .form-group .form-control:focus {
  border-color: #653B2B;
}

.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.form-control:focus {
  box-shadow: none;
}

.single-info p i {
  font-size: 16px;
  color:var(--accent-color) ;
  padding-right: 5px;
}



.icon-size-lg{

  font-size: 46px;
  color: var(--accent-color);
}


a{
  color: black;
}


/* new navbar */

nav {
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  /* box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
      rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; */
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.3s ease-in-out;
  
}


.nav-hidden {
  transform: translateY(-100%);
}

/* Center the nav links */
nav .nav-links {
  display: flex;
  justify-content: center;
  flex-grow: 1; /* Allow this section to take available space */
}
nav .logo {
  display: flex;
  align-items: center;
}
nav .logo img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}
.logo-mobile img {
  height: 40px;
  width: auto;
  margin-right: 10px;
  margin-bottom: 20px;
}
nav ul {
  list-style: none;
  display: flex;
  margin: 0;
}
nav ul li {
  margin-left: 1.5rem;
}
nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 95%;
  font-weight: 400;
  padding: 4px 8px;
  border-radius: 5px;
  transition: all 0.3s;
}
nav ul li a:hover {
  background-color: #F5F5F5;
  color: var(--accent-color);
}
.active-link{
  color: var(--accent-color);
}
nav .join-btn-container {
  display: flex;
  justify-content: flex-end; /* Align to the right */
}
.hamburger {
  display: none;
  cursor: pointer;
}
.hamburger .line {
  width: 25px;
  height: 1px;
  background-color: #1F1F1F;
  display: block;
  margin: 7px auto;
  transition: all 0.3s ease-in-out;
}
.hamburger-active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}
.hamburger-active .line:nth-child(2) {
  width: 0px;
}
.hamburger-active .line:nth-child(1),
.hamburger-active .line:nth-child(3) {
  transition-delay: 0.3s;
}
.hamburger-active .line:nth-child(1) {
  transform: translateY(12px);
}
.hamburger-active .line:nth-child(3) {
  transform: translateY(-5px) rotate(90deg);
}
.menubar {
  position: fixed;
  top: 0;
  left: -60%;
  display: flex;
  /* justify-content: center; */
  align-items: flex-start;
  flex-direction: column;
  width: 55%;
  height: 100vh;
  padding: 5% 10px;
  background: rgba(255, 255, 255);
  transition: all 0.5s ease-in;
  z-index: 9999;
}
.active-mobile {
  left: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.menubar ul {
  padding: 0;
  list-style: none;
  padding-top: 20px;
}
.menubar ul li {
  margin-bottom: 32px;
}
.menubar ul li a {
  text-decoration: none;
  color: #000;
  font-size: 95%;
  font-weight: 400;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.3s;
}
.menubar ul li a:hover {
  background-color: #F5F5F5;
  color: var(--accent-color);
}





.login-btn a {
  background-color: var(--accent-color);
  color: white !important;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid var(--accent-color);
  transition: all 0.3s;
  font-size: 1rem;
  font-weight: 600;
}

.login-btn a:hover {
  background-color: transparent;
  color: var(--accent-color) !important;
}

@media screen and (max-width: 790px) {
  .hamburger {
      display: block;
  }
  nav ul {
      display: none;
  }
  nav .login-btn{
      display: none !important;
  }
}


/* navbar endd */