/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin-top: 120px; /* Adjust for two fixed navbars */
}

a {
  text-decoration: none;
}
.mt-60{
  margin-top: 60px;
}
h1{color: #ffe4b1; 
  font-family: "Limelight", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 50px;
 }
 .logo-text{
  font-family: "Limelight", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
 }
/* NAVBAR LAYOUT */
.navbar {
  background-color: transparent !important;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.fixed-top {
  position: fixed;
  top: 0;
  width: 100%;
}
.w-100 {
  width: 100% !important;
  margin: 0 auto;
}
.top-nav {
  top: -130px;
  height: 90px;
  z-index: 1030;
  transition: transform 0.3s ease;
  /* background: #000 !important; */
  background-color: rgb(0, 0, 0);
  position: relative;
  width: 100%;
  z-index: 99999999999999999999999;
}
.top-nav.hide {
  transform: translateY(-100%);
}
.main-nav {
  top: 30px; /* Adjust to match top-nav height */
  z-index: 9999;
  padding: 10px 0;
}

/* Scrolled state */
.top-nav.scrolled,
.main-nav.scrolled {
  background-color: #001121 !important;
  top: 0;
}

/* Navbar Links */
.navbar a {
  color: #ffe4b1;
  font-weight: 500;
}

.navbar a:hover {
  color: #d88c00;
}

/* LOGO IMAGE */
.navbar-brand img {
  height: 100px;
  border-radius: 12px;
  transition: height 0.3s ease;
}

.scrolled .navbar-brand img {
  height: 60px;
}
.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: rgb(251, 247, 247);
  background-color: #fff;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition);
}
/* HERO SECTION */
.hero-section {
  position: relative;
  /* height:80vh; */
  padding:175px 20px 40px;
  color: white;
  overflow: hidden;
  top: -212px;
  margin-bottom: -212px;
  z-index: 0;
}
.hero-section2 {
    padding: 61px 20px 40px;
}
/* Background image cycling */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1s ease-in-out;
  z-index: -2;
  opacity: 0;
}

.hero-bg.active {
  opacity: 1;
}

/* Black overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* TEXT SECTION */
.text-section h3 {
  font-size: 2.2rem;
  font-weight: bold;
}

.text-section h5 {
  font-size: 1.3rem;
}

/* Rotating Image */
.rotating-img {
  margin-top:30px;
  max-width: 350px;
  animation: rotateZSlow 15s linear infinite;
}

@keyframes rotateZSlow {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}

/* Buttons */
.btn-warning {
  color: #000 !important;
}

.btn-primary {
  background-color: #f39c12;
  border: none;
}

.btn-primary:hover {
  background-color: #e67e22;
}
.card{border-radius: 12px;}
/* Cards */
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

/* Footer */
.footer {
  background-color: #001121;
}
.footer-bg {
  background-color: #001121;
  font-size: 12px !important;
  text-align: left !important;
}
.footer-bg ul li{
  margin-bottom: 10px;
}
.footer-bg a{
  font-size: 12px !important;
  text-align:left !important;
  color: #fff !important;
  text-decoration: none;
}
.footer-bg a:hover {
  color: #c97c00 !important;
  text-decoration: underline;
}
.footer-bg .fab{
  font-size: 18px !important;
}
/* SERVICES SECTION */
.services {
  padding: 60px 20px;
  background-image: url("../images/sign_bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #fdfdfd !important;
  /* height: 100vh; */
}

.as_service_box {
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 30px;

  /* Transparent gradient overlay over image */
  background: linear-gradient(rgba(255, 145, 0, 0.4), rgba(119, 56, 255, 0.4)), 
              url("../images/testi_bg.jpg") center center / cover no-repeat;
  color: #000;
}
.as_service_box p{
  font-size: 13px;
}
/* Hover: orange tint over the same image */
.as_service_box:hover {
  background: linear-gradient(rgba(119, 56, 255, 0.4), rgba(255, 145, 0, 0.4)),
              url("../images/testi_bg.jpg") center center / cover no-repeat;
  color: #000;
}

    .as_icon {
      display: inline-block;
      margin-bottom: 20px;
      transition: transform 0.3s;
    }

    .as_service_box:hover .as_icon {
      transform: scale(1.1) rotate(5deg);
    }

    .as_subheading {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .as_paddingBottom10 {
      margin-bottom: 10px;
      color: #555;
    }

    .as_link {
      display: inline-flex;
      align-items: center;
      font-weight: 500;
      color: #007bff;
      text-decoration: none;
      transition: color 0.3s;
    }

    .as_link svg {
      margin-left: 5px;
      transition: transform 0.3s;
    }

    .as_link:hover {
      color: #0056b3;
    }

    .as_link:hover svg {
      transform: translateX(3px);
    }
.as_icon img{
  width: 20%;
  height: auto;
}
/* About */
.about{
  padding: 60px 20px;
  background-image: url("../images/testi_bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f3eeff !important;
  height:auto;
}
.about-left img{
      width:100%;
}
.about-right img{
  width:100%;
  margin-top: 20px;
  border-radius: 8px;
}
/* Why Us */
.why-us{
  padding: 60px 20px;
  background-image: url("../images/testi_bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f3eeff !important;
  height:auto;
}
.ast_why_box {
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 30px;

  /* Transparent gradient overlay over image */
  background: linear-gradient( rgba(119, 56, 255, 0.4),rgba(255, 145, 0, 0.4)), 
              url("../images/fortune-wheel.jpg") center center / cover no-repeat;
  color: #000;
}

/* Hover: orange tint over the same image */
.ast_why_box:hover {
  background: linear-gradient( rgba(255, 145, 0, 0.4), rgba(119, 56, 255, 0.4)),
              url("../images/fortune-wheel.jpg") center center / cover no-repeat;
  color: #000;
}

    .ast_icon {
      display: inline-block;
      margin-bottom: 20px;
      transition: transform 0.3s;
    }

    .ast_why_box:hover .ast_icon {
      transform: scale(1.1) rotate(5deg);
    }

    .ast_subheading {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .ast_paddingBottom10 {
      margin-bottom: 10px;
      color: #555;
    }

    .ast_link {
      display: inline-flex;
      align-items: center;
      font-weight: 500;
      color: #007bff;
      text-decoration: none;
      transition: color 0.3s;
    }

    .ast_link svg {
      margin-left: 5px;
      transition: transform 0.3s;
    }

    .ast_link:hover {
      color: #0056b3;
    }

    .ast_link:hover svg {
      transform: translateX(3px);
    }
    
.ast_icon img{
  width: 20%;
  height: auto;
}
.breadcrumb-inner p a{color: #ffae00;}
.bg-1{
  width: 100%;
  height:600px;
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: -212px;
  background-position-x:100%;
  background-size: cover;
}
.social_media a{color: #fff;}
.breadcrumb-inner{color: #fff; margin-top: 300px;}

.consultancy{
  padding: 60px 20px;
  background: #ffe4b1;
  border-radius: 8px;
}
/*-- hs_sign_wrapper start --*/

/* .hs_sign_wrapper{
	float:left;
	width:100%;
	padding-top:78px;
} */
.hs_sign_heading_wrapper{
	float:left;
	width:100%;
}
.hs_sign_box{
    float: left;
    text-align: center;
    width: 160px;
    min-height: 185px;
    padding-top: 20px;
    margin-top: 60px;
    background: #fff;
	-webkit-box-shadow: 0px 0px 35px -20px;
    box-shadow: 0px 0px 35px -20px;
	border-radius: 10px;
}
.sign_box_cont a{
    color: #000;
    font-weight: 600;
    text-decoration: none;
    font-size: 12px !important;
}
.sign_box_cont a h3{
  font-size: 16px;
}
.hs_sign_box:hover{
    background: #fa7900;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.hs_sign_box:hover h2, 
.hs_sign_box:hover p {
    color: #fff;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.hs_sign_box h2 {
    font-size: 20px;
	padding-bottom:8px;
}
.hs_sign_main_wrapper{
	background:url('../images/sign_bg.jpg') 50% 0 repeat-y;
	background-position:center 0;
	background-repeat:repeat;
	position:relative;
	padding-top:40px;
	padding-bottom:40px;
}
/*-- hs_sign_wrapper end --*/
.bg-light1{
  background:url('../images/sign_bg.jpg') 50% 0 repeat-y;
	background-position:center 0;
	background-repeat:repeat;
	position:relative;
	padding-top:100px;
	padding-bottom:100px;
}
/*-- hs service wrapper Start --*/

.hs_service_main_wrapper{
	 background:url('../images/sign_bg.jpg') 50% 0 repeat-y;
	background-position:center 0;
	background-repeat:repeat;
	position:relative;
	padding-top:100px;
	padding-bottom:100px;
}
.hs_service_main_box_wrapper{
	float:left;
	width:100%;
	text-align:center;
	-webkit-box-shadow: 0px 0px 35px -20px;
    box-shadow: 0px 0px 35px -20px;
	border:1px solid #ebebeb;
    padding: 0px 30px 20px 30px;
	margin-top:83px;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	min-height: 236px;
  background: #fff;
  border-radius: 12px;
}
.hs_service_icon_wrapper{
	display: inline-block;
    position: relative;
    margin-top: -50px;
    width: 180px;
    height:180px;
    text-align: center;
    line-height:178px;
    background: rgb(255, 255, 255);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(206, 206, 206);
    border-image: initial;
    border-radius: 100%;
    transition: all 0.5s ease 0s
}
.hs_service_icon_wrapper i:before{
	color:#fa7900;
	margin-left:0;
	font-size:40px;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.hs_service_icon_cont_wrapper{
	/* float: left; */
	width:100%;
	display:inline-block;
}
.hs_service_icon_wrapper img{
  width:90%;
  height: auto;
  border-radius: 50%;
}
.hs_service_icon_cont_wrapper h2{
	font-size:20px;
	color:#000000;
	font-weight:bold;
	text-transform:uppercase;
	padding-top:20px;
	padding-bottom:0px;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.hs_service_icon_cont_wrapper h5 a{
	font-size:16px;
	color:#fa7900;
	display:inline-block;
}
.hs_service_icon_cont_wrapper h5 a i{
	position:relative;
	top:2px;
	    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.hs_service_icon_cont_wrapper h5 a:hover i{
	padding-left:5px;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	color: #fff;
}
.btc_step_overlay{
	position:absolute;
	left:50%;
	right:50%;
	top:50%;
	bottom:50%;
	opacity:0;
	padding:10px;
	 -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.hs_service_main_box_wrapper:hover{
	background:#fa7900;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.hs_service_main_box_wrapper:hover .hs_service_icon_wrapper{
	border-color:#fa7900;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.hs_service_main_box_wrapper:hover .btc_step_overlay{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:#ee8722;
	opacity:.5;
}
.hs_service_main_box_wrapper:hover .hs_service_icon_wrapper i:before{
	position:relative;
	color:#ffffff;
	z-index:100;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.hs_service_main_box_wrapper:hover .hs_service_icon_cont_wrapper h2{
	color:#fff;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.hs_service_main_box_wrapper:hover .hs_service_icon_cont_wrapper p{
	color:#fff;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.hs_service_main_box_wrapper:hover .hs_service_icon_cont_wrapper h5 a{
	color:#fff;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.hs_service_main_box_wrapper:hover .hs_service_icon_cont_wrapper h5 a i{
	color:#fff;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.astro-sign img{width: 100%;}
.pt-90{
 margin:90px 0 0 0;
}
.pd-20{
  padding: 20px 0;
}
.pd-60{
  padding: 60px 0;
}
#social_media{
  font-size: 18px;
}
#social_media a{
  margin: 0 10px;
}

.service-details-wrap h2{
  color: #ff7b07;
}
.service-details-wrap strong{
  color: #ff7b07 !important;
}
.black{
  color: #000 !important;
}

.pad-bg {
  background: #f8f8f8;
  padding: 40px 20px;
  border-radius: 5px;
  /* margin-top: 50px; */
  margin-bottom: 50px;
  border: 1px solid #e5e5e5;
  h1 {
    padding-bottom: 30px;
    margin-top: 0;
    margin-bottom: 30px;
    border-bottom: 1px dashed #ccc;
  }
}
.service-details-wrap {
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  padding: 10px 20px;
}
.mb-10{
  margin-bottom:10px ;
}
.form-group{
  margin: 10px 0;
} 
.form-group label{
  margin: 10px 0;
}
.btn-big{
  width: 100%;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #ff7b00;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
/*-- hs service wrapper End --*/

/* Course Slider */
/* Carousel heading */
.heading {
  display: block;
  text-align: center;
}

/* Container for the entire carousel */
.multi-carousel-container {
  cursor: grab;
  margin: 0 auto;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

/* Cursor styles for dragging */
.multi-carousel-container.dragging,
#multiCarousel.dragging {
  cursor: grabbing;
}

/* Wrapper for all slides */
.multi-carousel-inner {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Individual slide */
.multi-carousel-item,
.clone {
  box-sizing: border-box;
  flex: 0 0 33.333333%;
  padding: 0 5px;
  position: relative; /* Essential for item-number positioning */
}

/* Control buttons */
.multi-carousel-control-prev,
.multi-carousel-control-next {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  height: 40px;
  justify-content: center;
  position: absolute;
  text-decoration: none;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
  width: 40px;
  z-index: 10;
}

.multi-carousel-control-prev:hover,
.multi-carousel-control-next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.multi-carousel-control-prev {
  left: 10px;
}

.multi-carousel-control-next {
  right: 10px;
}

/* Image container with dynamic height */
.img-container {
  border-radius: 1.5rem;
  /* height: var(--carousel-height, 80vh); */
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

/* Image styling */
.img-container img,
#carouselInner img {
  height: 100%;
  object-fit: cover;
  object-position: top;
  pointer-events: none;
  user-drag: none;
  width: 100%;
  -webkit-user-drag: none;
  transition: transform 0.3s ease;
}

.img-container:hover img {
  transform: translateZ(0) scale(1.02);
}

/* Item number styling - guaranteed visibility */
.item-number {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  display: inline-flex;
  font-size: 120%;
  font-weight: bold;
  height: 35px;
  justify-content: center;
  left: 1rem;
  position: absolute;
  top: 1rem;
  width: 35px;
  z-index: 2; /* Higher than default but below controls */
  /* Isolation prevents z-index context issues */
  isolation: isolate;
}

/* Carousel cursor styling */
#multiCarousel {
  cursor: grab;
  touch-action: pan-y;
}

/* Disable text selection during drag */
#multiCarousel.dragging {
  user-select: none;
  -webkit-user-select: none;
}
.img-container img{width: 30% !important;}
/* FAQ section */
.accordion-header {
  margin-bottom: 0;
  border-radius: 12px;
}


/**************-------------------- ARIES CSS START --------------*******************/
.zodiac-wrapper img{
	width: 100% !important;
  border-radius: 12px;
}
.wrapper1{
  width: 100%;
  position: relative;
  display: block;
  clear: both;
}
.wrapper1 img{
  float: left;
  display: block;
}
.wrapper1 h2{
  float: left;
  display: block;
  width: 80%;
  padding-top: 10px;
}
.details-wrapper{
  width: 100%;
  position: relative;
  display: block;
  clear: both;
}
.horoscope-list{
  padding: 0;
}
.horoscope-list li{
  width: 100%;
  padding:0;
  border-bottom: 1px solid #ccc;
  list-style: none;
}
.horoscope-list li img{
  width: 20%;
  height: auto;
  margin-top: 10px;
}
.horoscope-list li a{
  color: #050505;
  text-decoration: none;
  font-weight: bold;
}
/**************-------------------- ARIES CSS END --------------*******************/
.birth-date{
width: 30%;
float: left;
display: block;
}
.birth-place{
width: 35%;
float: right;
display: block;
}
.date-picker-margin{
  margin-left: 10px;
}
.img-width img{
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.contact-block{
  padding: 22px;
  border: 1px solid #ccc;
  border-radius: 10px;
}
/* Responsive adjustments for screens smaller than 720px (45em) */
@media (max-width: 45em) {
  .multi-carousel-item,
  .clone {
    flex: 0 0 100%;
  }
}
/* Responsive tweak for smaller screens */
    @media (max-width: 576px) {
      .as_service_box {
        padding: 20px 15px;
      }
    }
/* RESPONSIVE FIXES */
@media (max-width: 991.98px) {
  .top-nav{
    padding-top: 20px !important;
  }
  .top-nav ul{
    text-align: center;
  }
  .navbar-brand img {
    height: 60px;
  }
#social_media{
  text-align: center;
}
  .main-nav {
    top:105px;
  }

  .navbar-collapse {
    background-color: #001121;
    padding: 1rem;
  }

  .navbar-nav .nav-link {
    color: #ffe4b1;
    font-size: 1.1rem;
  }

  .navbar-nav .nav-link:hover {
    color: #d88c00;
  }
  .hs_sign_box {
  width: 100%;
}
.sign_box_cont a h3 {
  font-size:32px;
}
.text p{
  font-size: 20px;
}
.youtube1 iframe{width: 100%; height: 250px;}

.youtube2 iframe{width: 100%; height: 250px;}
.hero-section {
  position: relative;
  padding: 175px 20px 40px;
  color: white;
  overflow: hidden;
  top: -255px;
  margin-bottom: -212px;
  z-index: 0;
}
#social_media a{
  width: 90%;
}
h1 {
  color: #ffe4b1;
  font-family: "Limelight", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 35px;
  padding-top: 17px;
}

}
@media (max-width: 575.98px) {
  .top-nav {
    height: auto;
    padding: 5px 0;
  }

  .top-nav .nav-link {
    font-size: 0.9rem;
  }

  .navbar-brand strong {
    font-size: 1rem;
  }
  .rotating-img {
  margin-top: -321px;
  max-width: 350px;
  animation: rotateZSlow 15s linear infinite;
  opacity: .9;
}
.res-zindex{
  z-index: 99999999999999;
}
}
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: #001121;
    padding: 1rem;
  }

  .navbar-nav .nav-link {
    color: #ffe4b1;
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }

  .navbar-nav .nav-link:hover {
    color: #d88c00;
  }
}


