* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body {
  background-image: url('/images/bg2.jpg');
}

:root {
  --main-color: #7A1529;
  --light-color:#c19e62;
}

.main-bg {
  background-color: #7A1529;
}
.main-color{
  color:#7A1529 ;
}
.light-color{
  color: #c19e62;
}

/* p {
    font-size: 10px;
} */





.navbar-nav .nav-link {
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;

}

.navbar-nav .nav-link:hover {
  background-color: #f8f9fa;
  color: var(--main-color);
}

.logo-img {
  width: 100%;
  margin: -25% 0% -25% -80px;
}


.ribbon {
  background-color: #fff8e5;
  padding: 0px 22px;
  display: flex;
  align-items: center;
  /* position: relative;
    max-width: 450px; */
}

.ribbon::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  border-top: 50% solid transparent;
  border-bottom: 50% solid transparent;
  border-left: 30px solid #fff8e5;
  transform: translateY(50%);
}

.icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 20px;
}

.icon-box img {
  width: 40px;
  height: auto;
}

.text-box {
  display: flex;
  flex-direction: column;
}

.text-box .highlight {
  color: var(--main-color);
  font-size: 25px;
  font-weight: 700;
}

.text-box .subtext {
  color: #1b1b1b;
  font-size: 10px;
  font-weight: 600;
}

@media (max-width: 576px) {
  .ribbon {
    /* flex-direction: column; */
    align-items: center;
    text-align: center;
  }

  .icon-box {
    margin-right: 0;
    margin-bottom: 0px;
  }

}


.form-select:focus {
  border-color: grey;
  outline: 0;
  box-shadow: none;
}


.text-content h3 {
  font-weight: 700;
  font-size: 2rem;
}

.text-content p {
  font-size: 1rem;
  color: #555;
}

.text-content .btn {
  background-color: #a37f4f;
  color: #fff;
  border: none;
}

/* .img-fluid {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  } */

/* .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
  } */

/* .hero-section{
    background-image: url('/images/bg-bannerpic.jpg');
    background-size: cover;
  } */

.hero-section {
  background: url('/images/bg-bannerpic.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  padding: 30px 20px;
  position: relative;
}

.home_content .heading_line {
  max-width: 200px;
  margin-top: -40px;
}

.home_content h1 {
  margin-top: -30px;

}

/* .hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
} */

.hero-content {
  position: relative;
  z-index: 2;
}

.chakra-img {
  max-width: 100%;
  height: auto;
}

.line-white {
  width: 150px;
}

/* about */

.about-content {
  padding: 30px 20px;
}

.about-content p {
  font-size: 17px;
  line-height: 1.7;
}

.btn-purple {
  background-color: #7A1529;
  color: #fff;
  border: none;
}

/* .btn-purple:hover {
  background-color: #7A1529;
} */

.image-gallery img {
  width: 50%;
  border-radius: 10px;
  margin-bottom: 20px;
}


/* service */


.service-card {
  background-color: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.service-card:hover {
  background: linear-gradient(to bottom, #7A1529, #000);
} 

.bg-rotate {
  content: '';
  background-image: url('/images/signs.png');
  /* Your rotating background image */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  animation: spin 10s linear infinite;
}

.service-card:hover .bg-rotate {
  opacity: 0.50;
}

.service-card img,
.service-card h5,
.service-card p {
  position: relative;
  z-index: 2;
}

@keyframes spin {
  0% {
      transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
      transform: translate(-50%, -50%) rotate(360deg);
  }
}


/* background-color: #21212C;
background-image: url(https://demos.coderplace.com/wp/WP02/WP02039/wp-content/uploads/2023/01/Contact-Bg.png);
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
} */


.my-service{
  background-color: #21212C;
  background: url(/images/section-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}



/* choose us */

/* .why-choose-us {
  background: linear-gradient(to right, #dbefff, #fbeeff);
} */

.text-purple {
  color: #7A1529;
}

.divider {
  width: 120px;
  height: 3px;
  background-color: #7A1529;
  position: relative;
}

.divider::before,
.divider::after {
  content: "✨";
  position: absolute;
  top: -15px;
  font-size: 16px;
  color: #7A1529;
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

.stat-item {
  text-align: center;
  position: relative;
}

.icon-circle {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto;
}

.stat-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  font-weight: 700;
  color: #000;
  z-index: 2;
}

.rotating-bg {
  width: 140px;
  height: 140px;
  animation: rotate 10s linear infinite;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

@keyframes rotate {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}


/* gallary */

.gallery-title {
  text-align: center;
  margin: 40px 0 20px;
}

.gallery-title h2 {
  font-weight: bold;
  color: #333;
}

.gallery-title h2 span {
  color: var(--main-color);
}

.gallery-title p {
  color: #555;
  max-width: 600px;
  margin: 10px auto;
}

.zoom-container {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

.zoom-container img,
.main-center-image {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
  border-radius: 10px;
}

.zoom-container:hover img {
  transform: scale(1.1);
}

/* .gallery {
  padding-bottom: 50px;
} */

.col-img {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.main-center-image {
  height: 575px;
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .main-center-image {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .col-img {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .zoom-container {
    flex: 1 1 48%;
  }

  .main-center-image {
    height: 325px;
    /* margin: 15px 0; */
  }
}

@media (max-width: 576px) {
  .zoom-container {
    flex: 1 1 100%;
  }

  .main-center-image {
    height: 415px;
  }
  
}


/* 
@media (max-width: 768px) {
  .logo-img {
    width: 100%;
    height: 172px !important;
    margin: -15% 0% -15% -80px;
  }
} */

@media (max-width: 767.98px) {
  .logo-img {
    width: 85%;
    height: 172px;
    margin: -11% 0% -12% -65px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .logo-img {
    width: 60%;
    height: 242px;
    margin: -6% 0% -6% -90px;
  }
}

@media (min-width: 992px) {
  .logo-img {
    width: 105%;
    height: 235px !important;
    margin: -15% 0% -15% -98px;
  }
}

/* footer */

.footer {
  background-image: url('/images/rm378-05f.jpg');
  /* Optional background lines pattern */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
  color: #ccc;
}

.footer-links li {
  margin-bottom: 15px;
  font-size: 15px;
}

.footer-links li i {
  margin-right: 8px;
}

.footer-description {
  font-size: 14px;
  color: #ccc;
}

.social-icons .icon {
  background-color: var(--light-color);
  color: white;
  display: inline-block;
  margin-right: 10px;
  padding: 8px;
  border-radius: 6px;
  font-size: 16px;
  transition: background 0.3s;
}

.social-icons .icon:hover {
  background-color: var(--light-color);
}


.text-purple {
  color: var(--light-color);
}

/* .custom-underline {
  width: 100px;
  height: 4px;
  background: #7A1529;
  border-radius: 10px;
  position: relative;
} */

/* .custom-underline::after {
  content: "";
  width: 20px;
  height: 4px;
  background: #7A1529;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  margin-top: 4px;
} */

/* .zoom-on-hover {
  transition: transform 0.5s ease;
}

.zoom-on-hover:hover {
  transform: scale(1.1);
  cursor: pointer;
} */


/* contact */

h2 span {
  color: var(--main-color);
}
.contact-section p{
  font-size: 15px;
}
/* .contact-section {
  padding: 60px 0;
} */
.contact-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.form-control:focus {
  border-color: var(--main-color);
  box-shadow: none;
}
.btn-submit {
  background-color: var(--light-color);
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 30px;
}
.btn-submit:hover {
  background-color: var(--main-color);
  color: white;
}
/* textarea {
  resize: none;
} */


/* horoscope */
.horoscope p{
font-size: 19px;
}
.horoscope{
  background-image: url('/images/section-bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
}
.zodiac-card {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  padding: 20px 10px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.zodiac-card img {
  width: 170px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.zodiac-card:hover {
  background: linear-gradient(to bottom, #7A1529, #000);
  border-color: var(--main-color);
  cursor: pointer;
  transform: translateY(-5px);
}

/* .zodiac-card.active {
  background: linear-gradient(to bottom, #7A1529 , #000);
  border-color: #fff;
} */

.zodiac-name {
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.1rem;
}

.zodiac-date {
  font-size: 0.85rem;
  color: #ccc;
}
