/* ===================== */
/* /// Header Section \\\ */
/* ===================== */

.header-container {
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    90deg,
    rgba(248, 102, 196, 0.6) 0%,
    rgba(255, 235, 235, 0.4) 100%
  ); */
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  overflow: hidden;
  background-position: center;
  position: relative;
  background: linear-gradient(
      90deg,
      rgba(248, 102, 196, 0.2) 0%,
      rgba(255, 235, 235, 0.4) 100%
    ),
    url("../images/astrology\ banner\ 1_.webp");
  transition: all 0.5s;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-content {
  width: 100%;
  height: calc(100% - 70px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-container svg {
  position: absolute;
  top: 46%;
  left: 0;
}

.home-content h2 {
  font-family: "Tangerine", cursive;
  font-size: 6.3rem;
  font-weight: 900;
  color: var(--white-text);
  text-align: center;
}

.home-content p {
  width: 60%;
  text-align: center;
  margin-top: 20px;
  color: var(--white-text);
}

/* ===================== */
/* /// About Section \\\ */
/* ===================== */

.about {
  width: 100%;
  height: calc(100px * 6 + 50px);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 0 40px;
}

.about .content {
  width: 50%;
}

.about .content h2 {
  font-size: 3rem;
  color: var(--dark-blue-text);
  border-bottom: 5px dotted var(--primary-color);
  display: inline;
}

.about .content h3 {
  font-size: 2.1rem;
  margin: 25px 0 10px 0;
}

.about .content p {
  color: #1B1B1B;
  font-size: 17px;
  text-align: justify;
}

.about .content .ab-btn {
  width: 100px;
  height: 40px;
  border-radius: 50px;
  margin-top: 15px;
  transition: all 0.5s;
}

.about .content .ab-btn:hover {
  background-color: var(--primary-color);
  color: var(--white-text);
}

.about .content .bottom-btn {
  margin-top: 20px;
  font-size: 16px;
}
.about .content .bottom-btn a {
	color: #fff;
}

.about .image {
  width: 330px;
  height: 450px;
  position: relative;
  z-index: 0;
}

.about .image::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  background-color: var(--primary-color);
  width: 370px;
  height: 100%;
  z-index: -1;
  border-radius: 26% 74% 20% 80% / 70% 7% 93% 30%;
}

.about .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* ===================== */
/* /// Services Section \\\ */
/* ===================== */

.service {
  width: 100%;
  height: calc(100px * 8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.service .cards {
  width: 78.8%;
  height: 70%;
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: center;
  scroll-behavior: smooth;
  flex-wrap: wrap;
}

.service .cards .card {
  width: 300px;
  height: 450px;
  background-color: white;
  border-radius: 20px;
  margin: 0 20px;
  flex-shrink: 0;
  box-shadow: rgba(247, 12, 255, 0.63) 0px 1px 4px;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  flex-direction: column;
  position: relative;
  animation: service-card 1s ease-in-out infinite alternate;
}

.service .cards .card h2 {
  font-size: 1.3rem;
  text-align: center;
}

.service .cards .card.active {
  height: 100%;
}

.service .cards .card::before {
  content: "";
  position: absolute;
  left: -5px;
  width: 310px;
  height: 103%;
  border-radius: 30px;
  background: linear-gradient(
    90deg,
    rgba(248, 102, 196, 0.6) 0%,
    rgba(255, 235, 235, 0.4) 100%
  );
  z-index: -1;
  /* box-shadow: rgba(0, 132, 255, 0.979) 0px 1px 4px; */
  animation: service-card 1s ease-in-out infinite alternate;
}

@keyframes service-card {
  0% {
    border-radius: 30px;
  }
  100% {
    border-radius: 10px;
  }
}

.service .cards .card i {
  font-size: 32px;
  background: linear-gradient(
    90deg,
    rgba(248, 102, 196, 0.6) 0%,
    rgba(255, 235, 235, 0.4) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.service .cards .card p {
  margin: 15px 0;
  text-align: center;
}

.service .service-btn {
  width: 100px;
  height: 40px;
  border-radius: 8px;
  transition: all 0.5s;
  font-weight: 500;
  margin-top: 15px;
}
.service .service-btn a {
	color: #0b142e;
}

.service .bottom-btn {
  margin-top: 20px;
  font-size: 16px;
}
.service .bottom-btn a {
	color: #fff;
}

.service .service-btn:hover {
  background-color: var(--primary-color);
  color: var(--white-text);
}

/* ===================== */
/* /// Detail Slider Section \\\ */
/* ===================== */

.detail {
  width: 100%;
  height: calc(50px * 11);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.detail .slider {
  width: 980px;
  height: 350px;
  overflow: hidden;
  display: flex;
  padding: 20px;
}

.detail .slider .card {
  min-width: 300px;
  height: 300px;
  background-color: white;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 20px;
  margin: 0 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.detail .slider .card img {
  width: 60px;
}

.detail .slider .card h2 {
  font-size: 1.4rem;
  margin: 10px 0;
}

.detail .slider .card p {
  text-align: justify;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: rgb(97, 97, 97);
}

.detail .btns {
  width: 20%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail .btns .btn {
  width: 50px;
  height: 50px;
  background-color: white;
  color: var(--dark-blue-text);
  border-radius: 50px;
  margin: 0 20px;
  position: relative;
  box-shadow: rgba(4, 113, 255, 0.103) 0px 2px 10px;
}

.detail .btns .btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
  background-color: rgb(221, 219, 219);
}

.detail .btns .btn:hover {
  transform: translateY(-3px);
  box-shadow: rgba(4, 113, 255, 0.158) 0px 2px 10px;
}

.detail .btns .btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

/* ===================== */
/* /// Benifit Section \\\ */
/* ===================== */

.benifit {
  width: 100%;
  height: fit-content;
  background-color: var(--dark-blue-text);
  padding: 50px 0;
  margin: 40px 0;
}

.benifit .top h2 {
  color: var(--white-text);
}

.benifit .cards {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.benifit .cards .card {
  width: calc(100px * 5);
  height: 150px;
  background-color: white;
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 30px;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 2px 4px;
}

.benifit .cards .card p {
  margin: 10px 0;
}

/* ===================== */
/* /// Client Testimonial Section \\\ */
/* ===================== */

.client-testimonial {
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.client-testimonial .cards {
  width: 1145px;
  height: fit-content;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 50px 0;
}

.client-testimonial .cards .card {
  min-width: 360px;
  height: 400px;
  background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  margin: 0 10px;
  border-radius: 15px;
  overflow: hidden;
}
.client-testimonial .btns .btn {
}

.client-testimonial .cards .card .test-card-body {
  background-color: rgb(5, 24, 48);
  padding: 20px;
}
.test-card-body .quote {
  display: flex;
  align-items: center;
}
.test-card-body .quote i {
  font-size: 45px;
  color: var(--heading-clr);
  margin-right: 20px;
}
.test-card-body .quote h2 {
  color: var(--heading-clr);
}
.test-card-body p {
  margin: 10px 0px 15px;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
}
.test-card-body .ratings {
  margin-top: 20px;
}
.test-card-body .ratings i {
  font-size: 17px;
  color: var(--primary-clr);
  cursor: pointer;
}
.client-testimonial .cards .card .profile {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.profile .profile-image {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}
.profile .profile-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.profile .profile-desc {
  display: flex;
  flex-direction: column;
}
.profile-desc span:nth-child(1) {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-clr);
}
.profile-desc span:nth-child(2) {
  font-size: 15px;
  color: var(--text-clr);
}
