@import url("https://fonts.googleapis.com/css2?family=Ibarra+Real+Nova:ital,wght@0,400..700;1,400..700&family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

*,
dl,
ol,
ul {
  padding: 0;
  margin: 0;
}

a,
img {
  transition: 0.4s;
}

* {
  box-sizing: border-box;
}

:root {
  --first-clr: #000000;
  --second-clr: #ffc367;
  --third-clr: #fdf8f4;
}

li {
  list-style: none;
}

li,
p {
  font-family: "Jost", serif;
  font-size: 16px;
  color: #5C5C5C;
  line-height: 1.5;
  font-weight: normal;
  letter-spacing: .5px;
  transition: 0.4s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Ibarra Real Nova", serif;
  color: #000;
  line-height: 1.5;
  font-weight: bold;
  transition: 0.4s ease;
}

h3,
h4,
h5,
h6 {
  font-weight: 600;
}

a {
  font-family: "Jost", serif;
  font-weight: 400;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.4px;
  color: #000;
}

.container {
  max-width: 1230px;
}

.bg-color {
  background-color: #f3f7fa;
}

img {
  max-width: 100%;
}

.padd {
  padding: 60px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position : relative;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-cont a i {
  color: var(--second-clr);
  font-size: 20px;
}

.top-cont {
  display: flex;
  align-items: center;
  gap: 7px;
}

.social-icons ul {
  display: flex;
  align-items: center;
}

.social-icons ul li a {
  font-size: 15px;
  margin: 0 4px;
  width: 30px;
  height: 30px;
  display: grid;
  place-content: center;
  background: var(--second-clr);
  border-radius: 100%;
}

.top-bar {
  background-color: var(--first-clr);
  padding: 10px 0;
  border-bottom: 1px solid var(--second-clr);
}

.top-cont a {
  color: white;
}

a.navbar-brand {
  margin: 0;
  width: 100px;
  height: auto;
  position: absolute;
  top: 0;
  z-index: 99;
}

a.navbar-brand img {
  width: 100%;
  height: 100%;
}

header.header {
  background: #fff;
}

header.header.sticky {
  background: #fffffff0;
  top: 0;
  z-index: 99;
  /* position: sticky; */
}

.sticky a.navbar-brand {
  width: 100px;
}

.navbar-expand-lg .navbar-nav li a.nav-link {
  color: white;
  font-weight: 400;
  font-size: 18px;
  padding: 6px 15px;
  border-radius: 30px;
  text-transform: capitalize;
}

.navbar-expand-lg .navbar-nav li a.nav-link:hover {
  background: var(--second-clr);
  border-radius: 30px;
  color: var(--first-clr);
}

.nav-btn a {
  display: inline-block;
  padding: 10px 35px;
  /* border-radius: 3px; */
  color: var(--second-clr);
  /* font-weight: bold; */
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  background: #000;
  font-weight: 500;
}

/* Hover Effect */
.nav-btn a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgb(255 195 103 / 36%);
}

/* Hover Gradient Animation */
.nav-btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease-in-out;
}

.nav-btn a:hover::before {
  left: 100%;
}

/* Active Click Effect */
.nav-btn a:active {
  transform: scale(0.95);
  box-shadow: 0 5px 10px rgba(216, 46, 136, 0.3);
}

/* banner  */

.banner-sec {
  position: relative;
  overflow: hidden;
  z-index: 9;
  width: 100%;
  height: auto;
  background: var(--third-clr);
}

.slide {
  position: relative;
}

.slide:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../imgs/banner-bg-1.png);
  z-index: -1;
  left: -100px;
  top: -100px;
  background-size: contain;
  background-repeat: space;
  opacity: .1;
  animation: rotate 20s linear infinite;
}

.banner-sec .container {
  position: relative;
  padding: 60px 0;
}

.banner-sec video {
  width: 100%;
  height: auto;
  position: absolute;
}

.slide__content--headings h2 {
  font-size: 55px;
  margin: 10px 0 20px;
  color: #000000;
  text-transform: capitalize;
}

.slide__content--headings h2 span {
  color: var(--second-clr);
  border-bottom: 2px solid;
}

.slide__content--headings p {
  color: #000000;
  margin-bottom: 20px;
  font-size: 16px;
  position: relative;
}

.slide__content--headings .animated {
  transition: all 0.5s ease;
}

.slider [data-animation-in] {
  transition: opacity 0.5s ease 0.3s;
}

.slide__content {
  width: 100%;
}

.banner-side-img img {
  animation: rotate 20s linear infinite;
  margin: auto;
  width: 75%;
}

/* Keyframes for rotation */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.bottom-bar {
  padding: 10px 0;
  background: var(--first-clr);
}

.bottom-bar .nav-btn a {
    background: var(--third-clr);
    color: #000;
}

span.title-span {
  font-family: "Jost", serif;
  font-size: 20px;
  text-transform: capitalize;
  color: #000;
  font-style: italic;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  background-color: #000;
  padding: 25px 0;
}

.marquee {
  align-items: center;
  display: inline-flex;
  opacity: 0; /* Initially hide the content */
  animation: showContent 1s forwards, scroll-left 20s linear infinite 0s; /* Delay animation to start after 3s */
  white-space: nowrap;
}

.marquee-container .service {
  padding: 0 20px;
  font-size: 22px;
  color: white;
}

.separator {
  padding: 0 15px;
  font-size: 24px;
  color: var(--second-clr);
}

/* Show content with fade-in */
@keyframes showContent {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Move the content after delay */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* On hover, stop the marquee */
.marquee-container:hover .marquee {
  animation-play-state: paused;
}

.marquee-container:hover .marquee {
  transform: translateX(0);
}

/* about sec  */

.about-img {
    width: 95%;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    height: 500px;
}

h1.title,
h2.title {
  font-size: 2.5rem;
  color: #000000;
}

h1.title span,
h2.title span {
  color: var(--second-clr);
  border-bottom: 2px solid;
}

/* abouse us sec  */

section {
  position: relative;
  overflow-x: clip;
}

.service-sec {
  /* background-image: url(../imgs/ab-bg.jpg);
  background-size: cover;
  animation: moveStars 40s linear infinite; */
  /* Controls speed and repetition */
  background: var(--third-clr);
}

/* Animation to create a drifting effect */
@keyframes moveStars {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -1000px 1000px;
    /* Diagonal movement */
  }
}

.about-text p {
  /* color: white; */
}

.counter {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.counter-box h4 {
  font-size: 30px;
  font-weight: bold;
  color: #936d42;
  margin: 0;
  /* text-shadow: 0px 8px 13.28px rgba(64, 0, 68, 0.43); */
}

.counter-box p {
  font-size: 18px;
  margin: 0;
  /* color: white; */
}

.counter-box {
  /* padding-bottom: 20px; */
  margin-bottom: 20px;
  /* border-bottom: 1px solid #eee; */
  width: 95%;
  display: flex;
  gap: 14px;
}

.pattern-1 img {
  position: absolute;
  left: 0;
  top: -146px;
  width: 275px;
  animation: rotate 10s linear infinite;
}

.pattern-2 img {
  position: absolute;
  right: 90px;
  top: 40px;
  animation: rotate 5s linear infinite;
}

.count-img img {
  width: 40px;
  height: auto;
  filter: brightness(0);
}

/* ========Location css =========== */

.lacation-sec {
  background-image: url(../imgs/ab-bg.jpg);
  overflow: hidden;
  background-size: cover;
}

.location-box {
  text-align: center;
  position: relative;
  width: 75%;
  margin: auto;
}

.loc-box {
  /* background-image: url(../imgs/bg-2.png); */
  background-position: center;
  background-repeat: no-repeat;
  display: grid;
  place-content: center;
  transition: 0.4s ease;
  background: var(--second-clr);
  width: 150px;
  height: 140px;
  margin: auto;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}

.loc-dot {
  width: 25px;
  height: 25px;
  margin: 25px auto;
  background: var(--first-clr);
  border: 4px solid white;
  border-radius: 100%;
}

.loc-text p {
  font-family: "Poppins";
  font-size: 22px;
  font-weight: bold;
  color: white;
  margin: 0;
}

.lacation-sec .row {
  position: relative;
  align-items: center;
}

.lacation-sec .row:before {
  width: 100%;
  height: 1px;
  background: #faf0977a;
  position: absolute;
  content: "";
  bottom: 72px;
  left: 0;
}

.loc-box img {
  width: 100px;
  height: 55px;
  object-fit: contain;
}

.location-box:hover .loc-box {
  background: var(--third-clr);
}

.location-box:hover .loc-dot {
  background: var(--second-clr);
}

.location-box:hover p {
  color: var(--second-clr);
}

/* ========Location css end  =========== */

/* services css  */

.service-box {
  width: 95%;
  margin: auto;
  position: relative;
  text-align: center;
  padding: 40px 20px 20px;
  background: var(--first-clr);
  border: 1px solid var(--third-clr);
  overflow: hidden;
  z-index: 9;
  border-radius: 50% 50% 0 0;
min-height: 330px;
}

.service-box h5 {
  color: white;
  font-size: 18px;
}

.ser-icon img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    margin: 0 auto 15px;
    border-radius: 100%;
    border: 1px solid #ffc367;
    padding: 5px;
}

.service-box p {
  color: white;
  font-size: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ser-arrow a {
  color: var(--third-clr);
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  font-size: 14px;
  text-decoration: underline;
}

.ser-arrow a i {
  transition: 0.4s ease;
}

.ser-arrow a:hover i {
  transform: translateX(5px);
}

.service-box:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-bottom: 50px solid var(--second-clr);
  border-right: 50px solid transparent;
  bottom: 0;
  left: 0;
}

.service-box:after {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  background: var(--second-clr);
  left: 0;
  bottom: 0;
  transition: 0.4s ease;
  opacity: 0;
}

.service-box:hover:after {
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 1;
}

.service-box:hover:before {
  border: none;
}

.service-box:hover h5,
.service-box:hover a {
  color: var(--first-clr);
}

.service-box:hover p {
  color: inherit;
}


.service-box:hover .ser-icon img {
    border-color: #000;
}



/* services css end */

/* bg text  */

.bg-sec {
  background-size: 100% 100%;
  padding: 80px 0;
  background-repeat: no-repeat;
}

.bg-text {
  width: 42%;
  margin: auto;
}

.bg-text p {
  color: white;
}

h2.title.bg-title {
  text-shadow: 0px 8px 13.28px rgba(64, 0, 68, 0.43);
  font-size: 2.9rem;
}

/* bg text  */

.home-form-sec {
  background-image: url(../imgs/ab-bg.jpg);
  /* background-size: cover; */
  /* animation: moveStars 40s linear infinite; */
}

.form-box input,
.form-box textarea,
.form-box select {
  border: none;
  width: 100%;
  padding: 10px 10px;
  margin-bottom: 15px;
  outline: none;
  background: var(--third-clr);
  border-radius: 5px;
  color: #000000;
}

.form-box input::placeholder,
.form-box textarea::placeholder {
  color: rgb(0, 0, 0);
}

textarea {
  height: 120px;
}

.form-box input[type="submit"] {
  border: none;
  background: var(--first-clr);
  /* border-radius: 30px; */
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  width: max-content;
  padding: 10px 45px;
}

.testimonial-sec {
  background-color: var(--third-clr);
}

.testimonial-box {
  padding: 25px;
  background-image: url(../imgs/ab-bg.jpg);
  background-size: cover;
  /* animation: moveStars 40s linear infinite; */
  position: relative;
  overflow: hidden;
  z-index: 9;
  width: 92%;
  margin: auto;
}

.testimonial-box:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 90px;
  background: var(--second-clr);
  left: 0;
  top: 0;
  z-index: -1;
  transition: 0.4s ease;
}

.testimonial-box:hover:before {
  width: 100%;
  background: var(--first-clr);
}

/* .testimonial-box:hover p {
    color: inherit;
} */

.test-info {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  margin-top: 30px;
}

.t-icon img {
  width: 75px;
  height: 75px;
  border-radius: 100%;
}

.test-info h6 {
  color: white;
  font-size: 18px;
}

.t-qoute img {
  position: absolute;
  top: 20px;
  filter: brightness(0);
}

.test-para {
  padding-top: 50px;
  padding-left: 80px;
}

.test-para {
}

.test-para p {
  color: white;
  font-size: 16px;
}

.testimonial-box:hover .t-qoute img {
  filter: invert(1);
}

/* footer  */

.footer {
  padding: 60px 0 20px;
  /*background-image: url(../imgs/service-bg.jpg);*/
  background-size: cover;
  /* animation: moveStars 40s linear infinite; */
  /* background: #000; */
}

.footer-img img {
  width: 115px;
  height: auto;
  margin-bottom: 10px;
}

h4.f-title {
  color: var(--second-clr);
  font-size: 28px;
  margin: 0 0 15px 0;
  padding: 0 0 15px 0;
  position: relative;
  font-weight: 500;
}

h4.f-title:before {
  position: absolute;
  content: "";
  width: 55px;
  height: 2px;
  background: #fff;
  bottom: 0;
}

.footer-links ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.footer-links ul li a,
.footer p {
  color: #fff;
}

.footer-links ul li:before {
  position: absolute;
  content: ">";
  /* font-size: 18px; */
  left: 0;
  color: var(--second-clr);
  font-weight: bold;
  clip-path: polygon(56% 27%, 100% 50%, 55% 71%, 0% 100%, 17% 51%, 0% 0%);
  content: "";
  background: var(--second-clr);
  width: 10px;
  height: 10px;
  top: 7px;
}

ul.footer-box li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

ul.footer-box li i {
  margin: 0 5px 0 0;
  color: #000000;
  font-size: 14px;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  display: grid;
  place-content: center;
  background: var(--second-clr);
  border-radius: 100%;
}

ul.footer-box li a {
  width: 75%;
  color: #fff;
}

.copyrights {
  padding-top: 20px;
  margin: 20px 0 0;
  text-align: center;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyrights a {
  text-align: center;
  color: #fff;
}

.footer-padding {
  padding-left: 50px;
}

.footer-social ul li a {
  margin: 0 4px;
  width: 30px;
  height: 30px;
  display: grid;
  place-content: center;
  background: var(--second-clr);
  border-radius: 100%;
  color: #000000;
  font-size: 15px;
}

/* ========== Inner pages ============ */

.inner-sec {
  position: relative;
  background-size: cover;
  padding: 95px 0;
  z-index: 9;
}

.inner-sec:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  top: 0;
  opacity: 0.4;
  z-index: -1;
}

.inner-text h4 {
  font-size: 2.5rem;
  color: white;
  font-weight: 600;
}

.inner-text ul li a {
  color: white;
}

.inner-text ul {
  display: flex;
  align-items: center;
  gap: 5px;
}

h2.title.title-2 span {
  color: var(--second-clr);
}

.hover-img-effect {
  position: relative;
  /* display: inline-block; */
  overflow: hidden;
  /* border-radius: 10px; */
  /* Optional rounded corners */
}

.hover-img-effect img {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease, filter 0.5s ease;
  object-fit: cover;
}

/* Hover Effect */
.hover-img-effect:hover img {
  transform: scale(1.1) rotate(3deg);
  /* Slight zoom & tilt */
  filter: brightness(0.8) contrast(1.2);
  /* Darken & enhance contrast */
}

/* Overlay Effect */
.hover-img-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hover-img-effect:hover::before {
  opacity: 1;
}

.about-img-2 {
  width: 95%;
  object-fit: cover;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  height: 500px;
}

.about-text-2 ul li {
  color: #936d42;
  padding-bottom: 10px;
  border-bottom: 1px solid #cdcdcd;
  margin-bottom: 10px;
  list-style: decimal inside;
  font-weight: 500;
}

.zodiac-box {
  /* float: left; */
  text-align: center;
  width: 100%;
  padding: 20px;
  min-height: 200px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 35px -20px;
  box-shadow: 0px 0px 35px -20px;
  margin-bottom: 25px;
  border: 2px solid #fff;
  transition: 0.4s ease;
}

.zodiac-box h2 {
  font-size: 20px;
  font-weight: 600;
}

.zodiac-box:hover {
  background: transparent;
  border-radius: 10px;
}

.zodiac-box:hover h2,
.zodiac-box:hover p {
  color: #fff;
}

.zodiac-sec {
  background-color: var(--second-clr);
  background-image: url(../imgs/ab-bg.jpg);
  background-size: cover;
  /* animation: moveStars 40s linear infinite; */
  position: relative;
}

.zodiac-box p {
  margin: 0;
}

.about-cont-sec {
  position: relative;
  background-color: var(--second-clr);
  z-index: 9;
}

.about-cont-sec:before {
  background-image: url(../imgs/chakra.png);
  animation: rotate 20s linear infinite;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  z-index: -1;
  filter: brightness(0);
}

.about-cont-box {
  text-align: center;
  width: 80%;
  margin: auto;
}

.about-cont-box img {
  width: auto;
  height: 400px;
  margin: 0 auto 30px;
}

.about-cont-box h5 {
  /* color: #936d42; */
  font-size: 36px;
}

a.bg-call {
  color: var(--first-clr);
  font-size: 34px;
  font-style: italic;
  font-weight: 600;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  align-items: center;
}

a.bg-call i {
  background: #936d42;
  animation: ring 1.5s infinite ease-in-out;
  color: var(--third-clr);
  font-size: 35px;
  width: 75px;
  height: 75px;
  display: grid;
  place-content: center;
  border-radius: 100%;
}

@keyframes ring {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(15deg);
  }

  20% {
    transform: rotate(-10deg);
  }

  30% {
    transform: rotate(7deg);
  }

  40% {
    transform: rotate(-5deg);
  }

  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.contact-form {
  width: 85%;
  margin-left: auto;
  background: var(--second-clr);
  padding: 35px;
  border-radius: 30px;
}

.contact-box {
  width: 100%;
  height: 100%;
  border-top: 1px solid #cdcdcd;
  border-right: 1px solid #cdcdcd;
  display: flex;
  justify-content: space-between;
  padding: 50px 20px;
}

.contact-box i {
  font-size: 30px;
  color: var(--first-clr);
}

.contact-box > div {
  width: 87%;
}

.contact-box.last {
  border-right: none;
}

.cont-text a {
  color: #000000;
  display: inline-block;
  margin-bottom: 7px;
}

.contact-sec {
  position: relative;
}

.contact-sec:before {
  background-image: url(../imgs/chakra.png);
  animation: rotate 20s linear infinite;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  z-index: -1;
  filter: brightness(0);
}

input[type="checkbox"] {
  width: auto;
  height: auto;
}

.contact-info-sec {
  background-color: var(--third-clr);
}

.cont-text h5 {
  color: var(--second-clr);
}

.service-pg .service-box {
  width: 100%;
}

.detail-float {
  width: 45%;
  border-radius: 10px;
  float: right;
  margin-bottom: 25px;
  margin-left: 15px;
}

.detail-img {
  width: 100%;
  height: 450px;
  border-radius: 10px;
}

h3.detail-title {
  color: var(--first-clr);
  font-size: 28px;
  /* border-bottom: 2px solid var(--first-clr); */
  /* display: inline-block; */
  padding: 0 0 5px;
  margin: 0 0 15px;
  /* width: fit-content; */
}

.contact-service-box h5 {
  color: #936d42;
  font-size: 30px;
  font-style: italic;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
}

.contact-service-box h5:before {
  position: absolute;
  content: "";
  width: 45%;
  height: 2px;
  background: var(--second-clr);
  bottom: -4px;
  left: 0;
}

.contact-service-box a {
  color: #936d42;
  font-weight: 600;
  font-size: 18px;
  font-style: italic;
}

.service-form-sec {
  background-color: var(--second-clr);
}

.consult-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.consult-flex img {
  width: 90px;
  height: 90px;
}

.form-box.consult-form {
  width: 85%;
  margin: auto;
}

.row.location-2:before {
  display: none;
}

.row.location-2 .col-md-3 {
  width: 20%;
}

.row.location-2 .col-md-3 .location-box {
  margin-bottom: 25px;
}

.astro-box {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  z-index: 9;
}

.astro-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 400px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}

.astro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.astro-img:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, black, transparent);
  bottom: 0;
  z-index: 9;
}

.astro-txt h4 {
  color: white;
  font-size: 20px;
  border-bottom: 1px solid #fff;
  display: inline-block;
  padding: 0 0 5px;
  margin: 0 0 10px;
}

.astro-txt {
  position: absolute;
  bottom: 0;
  padding: 0 20px 20px;
  z-index: 9;
}

.astro-txt p {
    color: white;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.astro-arrow a {
  color: var(--third-clr);
}

.astro-box:hover img {
  transform: scale(1.1) rotate(3deg);
  /* Slight zoom & tilt */
  filter: brightness(0.8) contrast(1.2);
  /* Darken & enhance contrast */
}

.astro-de-img {
  width: calc(100% - 300px);
  border-radius: 10px;
  height: 450px;
  margin-bottom: 20px;
}

.accordion-button {
  background: transparent;
  color: #000000;
  font-weight: bold;
  /* border-bottom: 1px solid #cdcdcd; */
  font-weight: 500;
  font-size: 20px;
  /* opacity: 0.9; */
}

.accordion-button:not(.collapsed) {
  font-size: 20px;
  background: inherit;
  color: #000000;
  /* border-bottom: 1px solid #cdcdcd; */
  box-shadow: none;
  font-weight: 500;
}

.accordion-body {
  background-color: #fff;
  border: none;
  border-radius: 5px;
}

.accordion-item {
  margin-bottom: 10px;
  border: none;
  /* background: antiquewhite; */
  border-bottom: 1px solid #cdcdcd;
}

.accordion {
  max-width: 80%;
  margin: 10px 0 0;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  /* border-radius: 10px; */
}

.location-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.location-box-2 {
  /* background-color: #f8f9fa; */
  /* padding: 15px; */
  /* border-radius: 10px; */
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  width: 48%;
}

.location-box-2 h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--first-clr);
  border-bottom: 1px solid var(--first-clr);
  display: inline-block;
}

.location-box-2 ul li a {
  width: 100%;
  display: inline-block;
  color: #000000;
  border-bottom: 1px dashed #000000;
  padding: 0 0 10px 15px;
  margin: 0 0 10px;
}

.astro-detail-box {
  position: relative;
}

.astro-detail-box:before {
  background-image: url(../imgs/chakra.png);
  animation: rotate 20s linear infinite;
  position: absolute;
  content: "";
  width: 470px;
  height: 470px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  z-index: -1;
  filter: brightness(0);
  right: 0;
}


.service-cat {
    position: relative;
    width: 90%;
    margin: auto;
    text-align: center;
}

.cat-img {
    width: 100%;
    height: 350px;
    background: var(--third-clr);
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
}

.cat-text {
    text-align: center;
    padding: 10px 15px 0;
    margin: auto;
}

.cat-text h4 {
    color: #936d42;
    font-size: 27px;
}

.cat-arrow a {
    border-bottom: 1px solid #936d42;
    display: inline-flex;
    gap: 10px;
    color: #936d42;
    align-items: center;
}

.service-sec .col-lg-4 {
    border-bottom: 1px solid #C3BEB6;
    border-right: 1px solid #C3BEB6;
    padding: 50px 0;
}

.service-sec .col-lg-4:first-child{
    border-left: 1px solid #C3BEB6;
}

.form-flex {
    display: flex;
    margin-bottom: 30px;
    gap: 20px;
}

.form-flex i {
    width: 75px;
    height: 75px;
    display: grid;
    place-content: center;
    background: var(--second-clr);
    color: #000000;
    font-size: 30px;
    border-radius: 100%;
}

.form-flex>div {
    width: 80%;
}

.form-flex p {
    color: var(--third-clr);
    font-size: 22px;
}

.form-flex a {
    color: #fff;
}

.home-form-flex {
    width: 95%;
    margin-left: auto;
}

.home-form {
    padding: 30px;
    background: var(--second-clr);
    border-radius: 30px;
}

.new-testimonial-box {
    width: 80%;
    margin: auto;
    text-align: center;
}

.new-testimonial-box img {
    width: 90px;
    margin: 0 auto 15px;
}

.test-p p {
    font-family: "Ibarra Real Nova", serif;
    color: #936d42;
    font-size: 30px;
    font-weight: 600;
}

.test-client span {
    font-family: "Jost", serif;
    color: #000;
    font-size: 20px;
    border-bottom: 1px solid;
}

button.slick-arrow {
    border: none;
    background: transparent;
    position: absolute;
    top: 45%;
    z-index: 99;
}

button.slick-next.slick-arrow {
    right: 0;
}

button.slick-arrow i {
    font-size: 20px;
    width: 45px;
    height: 45px;
    display: grid;
    place-content: center;
    background: var(--second-clr);
    border-radius: 100%;
}


.footer-links ul li a {
    border-bottom: 1px solid #eeeeee38;
}

.new-pattern-1 img {
    position: absolute;
    right: 0;
    opacity: .8;
    top: 0;
    width: auto;
    height: auto;
}

.why-sec {
    background: #000;
}

.why-box {
    text-align: center;
    background: var(--third-clr);
    padding: 40px 30px 15px;
    border-radius: 50% 50% 0 0;
    margin-bottom: 25px;
    border: 5px solid var(--second-clr);
    transition: .4s ease;
}

.why-box img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
}

.why-box h4 {
    font-size: 20px;
}

.why-box:hover {
    background: var(--second-clr);
}

.why-box:hover img {
    filter: brightness(0.5);
}

.why-img {
    position: relative;
    text-align: center;
}

.why-two-img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 150px;
}

img.why-one-img {
    width: 90%;
    margin: auto;
    animation: rotate 20s linear infinite;
}

.get-img {
    position: relative;
    z-index: 9;
}

.get-main {
    position: relative;
    width: 90%;
    margin-left: auto;
    border-radius: 30px;
}

img.get-1 {
    position: absolute;
    right: -75px;
    top: -75px;
    z-index: -1;
}

img.get-2 {
    position: absolute;
    bottom: 0;
    z-index: -1;
    left: 0;
    opacity: .5;
}

.service-pg {
    /*background: #000;*/
}

.lacation-sec.location-sec-2 .loc-dot {
    display: none;
}

.lacation-sec.location-sec-2 .loc-text p {
    margin-top: 8px;
    color: #000;
}

.lacation-sec.location-sec-2 {
    background: var(--third-clr);
}

.lacation-sec.location-sec-2 .location-box:hover .loc-box {
    background: #000;
}


.footer {
    position: relative;
    overflow: hidden;
}


/* Video Background */
.footer-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.2; /* Adjust transparency */
}

/* Overlay to Make Text More Readable */
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0); /* Dark overlay */
    z-index: -1;
}


ul.pagination.justify-content-center span.page-numbers.current {
    background: #eeb660;
    padding: 10px 20px;
    border-radius: 10px;
    margin-right: 1px;
}
ul.pagination.justify-content-center a.page-numbers {
    background: #e7e7e7;
    padding: 10px 20px;
    border-radius: 10px;
    margin: 0px 2px;
}

.cat-text p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

form p {
    margin: 0;
}

.astro-detail-box li , .detail-box li{
    margin-bottom: 7px;
    list-style: inside;
}

.phone {
    display: none;
}






/*RESPONSIVE QUERY______*/


@media only screen and (max-width: 1280px) {

}

@media only screen and (max-width: 1199px) {

}

@media only screen and (max-width: 1140px) {

}

@media only screen and (max-width: 1024px) {

}

@media only screen and (max-width: 991px) {
    
    button.navbar-toggler {
    background: var(--third-clr);
    order: 3;
    padding: 6px 9px;
}

.bottom-bar .nav-btn {
    margin-left: auto;
    margin-right: 10px;
}

.nav-btn {
    overflow: hidden;
}

span.navbar-toggler-icon {
    width: 25px;
    height: 30px;
}

.container, .container-md, .container-sm {
    max-width: 720px;
}

.slide__content--headings h2 {
    font-size: 44px;
}

.banner-side-img img {
    width: 60%;
}

h1.title, h2.title {
    font-size: 2rem;
}

.test-p p {
    font-size: 22px;
}

.footer-padding {
    padding-left: 0;
}

.navbar-collapse {
    position: absolute;
    width: 100%;
    top: 50px;
    z-index: 99;
    background: #000;
    left: 0;
}

ul#menu-primary-menu {
    padding-left: 0 !important;
    padding-top: 55px;
}

a.navbar-brand {
    z-index: 999;
}


.inner-sec {
    padding: 60px 0;
}

.inner-text h4 {
    font-size: 1.4rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.astro-de-img {
    width: 100%;
    height: auto;
}

.padd {
    padding: 40px 0;
}

h3.detail-title {
    font-size: 22px;
}

.navbar-expand-lg .navbar-nav li a.nav-link {
    font-size: 15px;
    border-bottom: 1px solid #cdcdcd;
    border-radius: 0;
    padding: 10px 15px;
}

.accordion {
    max-width: 100%;
}

.laptop {
    display: none;
}


.phone {
    display: block;
}

.detail-float {
    width: 100%;
    height: auto;
    margin: 0 0 20px;
}

.detail-img {
    height: auto;
}

.contact-form {
    width: 100%;
    margin: 20px 0 0;
}

.contact-box , .contact-box.last {
    border-left: 1px solid #cdcdcd;
    border-right: 1px solid #cdcdcd;
}

.contact-box {
    padding: 30px 20px;
}

.map iframe {
    width: 100%;
    height: 360px;
}

.about-cont-box {
    width: 100%;
}

.about-cont-box h5 {
    font-size: 30px;
}












}


@media only screen and (max-width: 980px) {

}

@media only screen and (max-width: 840px) {

}


@media only screen and (max-width: 800px) {

}


@media only screen and (max-width: 768px) {

}

@media only screen and (max-width: 767px) {
    
    .container, .container-sm {
        max-width: 540px;
    }
    
    .nav-btn a {
    padding: 7px 20px;
    font-size: 14px;
}

a {
    font-size: 15px;
}

.slide__content--headings h2 {
    font-size: 31px;
}

.banner-sec .container {
    padding: 50px 0 30px;
    padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5);
}


.counter {
    flex-wrap: wrap;
    justify-content: space-between;
}

.counter-box {
    width: 33%;
}

.count-img img {
    width: 25px;
}

.counter-box h4 {
    font-size: 22px;
}

.counter-box p {
    font-size: 14px;
}

h1.title, h2.title {
    font-size: 1.7rem;
}

.service-sec .col-lg-4 {
        border-left: 1px solid #C3BEB6;
        width: 95%;
        margin: auto;
}

.get-main {
    width: 100%;
}

.form-flex i {
    width: 50px;
    height: 50px;
    font-size: 20px;
}

.new-testimonial-box img {
    width: 55px;
}

button.slick-arrow i {
    width: 35px;
    height: 35px;
    font-size: 15px;
}

.footer-img img {
    width: 90px;
}

h4.f-title {
    font-size: 24px;
}
    
.service-box {
    min-height: auto;
}

.lacation-sec .row .col-md-4 {
    width: 50%;
    margin: 0 0 10px;
}

.location-box-2 {
    width: 100%;
}





    

}

@media only screen and (max-width: 667px) {

}

@media only screen and (max-width: 600px) {

}

@media only screen and (max-width: 575px) {
    
    .cat-img {
    height: auto;
    width: 90%;
    margin: auto;
}

.cat-text h4 {
    font-size: 22px;
}

.new-pattern-1 img {
    width: auto;
    height: 420px;
}

.top-social.social-icons {
    display: none;
}

.top-social.social-icons {
    display: none;
}

button.navbar-toggler {
    padding: 1px 5px;
}

a.navbar-brand {
    width: 90px;
}
.marquee-container .service {
    font-size: 19px;
}

.about-img-2 {
    width: 100%;
    height: auto;
}

a.a-1 {
    display: none;
}








}

@media only screen and (max-width: 480px) {
    
    
    

}

@media only screen and (max-width: 414px) {

}

@media only screen and (max-width: 375px) {

}

@media only screen and (max-width: 360px) {

}


@media only screen and (max-width: 320px) {

}






