
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 60px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

.btn.btn-light {
    color: var(--bs-primary);
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}


/* Topbar background */
.topbar-bar {
  background: linear-gradient(90deg, #8e24aa, #e91e63);
  color: #fff;
}

/* Typewriter Effect */
.typing-wrapper {
  display: inline-block;
  overflow: hidden;
  border-right: 2px solid #fff; /* cursor effect */
  white-space: nowrap;
  animation: typing 8s steps(80, end), blink .75s step-end infinite;
  font-weight: 700;
  font-size: clamp(12px, 3vw, 16px);
  color: white;
  text-align: center;
  padding: 0 10px;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink {
  from, to { border-color: transparent }
  50% { border-color: white }
}

/* Mobile adjustments (keep effect, allow wrapping after animation) */
@media (max-width: 576px) {
  .typing-wrapper {
    font-size: 15px !important;
    white-space: nowrap;   /* keep typing effect */
  }

  /* Let text wrap after typing finishes */
  .typing-wrapper.done {
    white-space: normal;
    border-right: none;
  }

  .topbar-btn {
    width: 100%; /* full width button on mobile */
  }
}

/* Button styles */
.topbar-btn {
  background: #fff;
  color: #e91e63;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}

.topbar-btn:hover {
  background: #f8f8f8;
  color: #d81b60;
}

/*** Topbar Start ***/ 
.wide-btn {
  flex: 1 1 30%;
  min-width: 160px;
  padding: 10px 16px;
  font-weight: 600;
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.wide-btn:hover {
  transform: scale(1.05);
  text-decoration: none;
}
.icon-lg {
  min-width: 24px;
  min-height: 24px;
}

@keyframes colorChangeGreen {
  0% { background-color: #198754; }
  50% { background-color: #157347; }
  100% { background-color: #198754; }
}

@keyframes colorChangeYellow {
  0% { background-color: #ffc107; }
  50% { background-color: #e0a800; }
  100% { background-color: #ffc107; }
}

@keyframes colorChangeRed {
  0% { background-color: #dc3545; }
  50% { background-color: #b02a37; }
  100% { background-color: #dc3545; }
}

.btn-animate-green {
  animation: colorChangeGreen 3s infinite ease-in-out;
}
.btn-animate-yellow {
  animation: colorChangeYellow 3s infinite ease-in-out;
}
.btn-animate-red {
  animation: colorChangeRed 3s infinite ease-in-out;
}

/* Header */
.header-img {
  width: 100%;       /* image always fills the column */
  height: auto;      /* preserve aspect ratio */
  display: block;    /* remove inline spacing */
  max-width: 100%;   /* prevent overflow */
  object-fit: cover; /* scale image nicely to fill space */
}

@media (max-width: 768px) {
  .row.g-0 {
    margin: 0;
  }

  .row.g-0 > [class*='col-'] {
    padding: 0;
  }
}

/* Header End */

/* Marquee Row Background */
.marquee-row {
  background: #000;
  color: #fff;
}

/* Marquee Wrapper */
.custom-marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
}

/* Marquee Text */
.custom-marquee-text {
  display: inline-block;
  padding-left: 100%;
  color: white;
  font-weight: 700;
  font-size: 16px;
  animation: customMarquee 18s linear infinite;
}

/* Marquee Animation */
@keyframes customMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Responsive Text Size */
@media (max-width: 767.98px) {
  .custom-marquee-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .custom-marquee-text {
    font-size: 12px;
  }
}
/*** Carousel Hero Header Start ***/
/* Limit height and make image responsive in all viewports */
.banner-slide-img {
  width: 100%;
  height: 65vh;
  object-fit: cover;
}

/* Adjust height for smaller screens */
@media (max-width: 768px) {
  .banner-slide-img {
    height: 40vh;
  }
}

.header-carousel .header-carousel-item {
    height: 700px;
}

.carousel-control-prev,
.carousel-control-next {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  width: 48px;
  height: 48px;
  background-color: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  z-index: 10;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 60% 60%;
  filter: brightness(10);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  border-color: white;
  background-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 36px;
    height: 36px;
    border-width: 1.5px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-size: 50% 50%;
  }
}


.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}
/*** Carousel Hero Header End ***/

/*** Features Start ***/
.feature {
    background:linear-gradient(90deg, #FFD700, #FFEC8B);
    padding: 3rem 0;
}
.feature .feature-item {
    display: flex;
    flex-direction: column; /* Columnar for better responsiveness */
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: #CC0000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature .feature-item .feature-icon span {
    width: 90px; 
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-light);
    background: var(--bs-primary);
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    animation: icon-animat 5s alternate infinite;
    transition: all 0.5s ease;
    font-size: 2rem; /* icon size */
    margin-bottom: 1rem;
}

@keyframes icon-animat {
  0% {
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    background-color: var(--bs-primary);
  }
  50% {
    border-radius: 50% 50% 45% 55% / 50% 60% 40% 50%;
    background-color: #ffc107; /* yellow */
  }
  100% {
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    background-color: var(--bs-success);
  }
}

@media (max-width: 991px) {
  .feature .feature-item {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
  
  .feature .feature-item .feature-icon span {
    margin-bottom: 0;
    margin-right: 1rem;
  }
}

@media (max-width: 576px) {
  .feature .feature-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .feature .feature-item .feature-icon span {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

.feature img {
    width: 100%;
    object-fit: cover;   
    border-radius: 15px;
    height: 100%;      
}


.feature .row.align-items-stretch {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}


@media (max-width: 991px) {
    .feature .row.align-items-stretch {
        flex-direction: column;
    }

    .feature img {
        height: auto;
        max-height: 400px;
        margin-bottom: 2rem;
    }
}


/*** Features End ***/

/*** About Start ***/
:root {
  --bs-primary: #b30000; /* Hindu Red */
  --bs-secondary: #ffcc00; /* Hindu Yellow / Saffron */
  --bs-light: #fff8e7; /* Cream tone background */
  --bs-dark: #1c1b1b;
}

.text-d{
	 font-family: Times, "Times New Roman", Georgia, serif;
	 font-size:18px;
	color:#000;
	text-align:justify;
	font-weight:620;
}

/* HEADING */
.section-title {
  color: var(--bs-primary);
  background: var(--bs-secondary);
  display: inline-block;
  padding: 5px 20px;
  border-radius: 30px;
}

/* ABOUT ITEMS */
.about .about-item .about-item-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  border-radius: 10px;
  background: var(--bs-light);
  transition: 0.5s;
  padding: 20px;
  border: 1px solid var(--bs-secondary);
}

.about .about-item .about-item-inner .about-icon {
  width: 70px;
  height: 70px;
  background: var(--bs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 15px;
}

.about .about-item .about-item-inner h5 {
  color: var(--bs-primary);
  font-weight: bold;
  margin-bottom: 10px;
}

.about .about-item .about-item-inner p,
.about .about-item .about-item-inner i {
  color: #000 !important;
  font-size: 15px;
}

/* BUTTONS */
/* Container for buttons */
.offer-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* Unified button style */
.offer-buttons .btn {
  flex: 1 1 auto;
  min-width: 150px;
  padding: 0.7rem 1.8rem;
  font-weight: 600;
  border: none;
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  background:linear-gradient(90deg, #8e24aa, #e91e63);
  background-size: 300% 300%;
  transition: all 0.3s ease;
  position: relative;
  animation: heartbeat 2s infinite;
}

/* Hover effect: Sweet pink + slight zoom */
.offer-buttons .btn:hover {
  background: #ff69b4; /* sweet pink */
  color: #fff;
  transform: scale(1.05);
}

/* Heartbeat animation */
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.05); }
  50% { transform: scale(1); }
  75% { transform: scale(1.05); }
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .offer-buttons .btn {
    flex: 1 1 100%;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .offer-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}


/* OFFER BOX */
.offer-box {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid transparent;
  border-radius: 30px;
  padding: 12px 25px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.offer-box {
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 28px;
  text-align: center;
  overflow: hidden;            /* keeps border animation inside */
  background: #fff;            /* inner box background */
  box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* subtle depth */
}

/* Subtle animated border using ::before */
.offer-box::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 30px;
  padding: 2px;
  background: linear-gradient(
    90deg,
    rgba(255,0,0,0.4),
    rgba(255,165,0,0.4),
    rgba(255,255,0,0.4),
    rgba(0,255,0,0.4),
    rgba(0,255,255,0.4),
    rgba(0,0,255,0.4),
    rgba(255,0,255,0.4),
    rgba(255,0,0,0.4)
  );
  background-size: 300% 300%;
  animation: borderMove 6s linear infinite;
  z-index: 0;
}

/* Text always on top */
.offer-box .offer-link {
  position: relative;
  z-index: 1;
  color: #000;         /* visible text color */
  font-weight: 650;
  text-decoration: none;
  font-size: 1rem;
}

/* Gradient animation */
@keyframes borderMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .offer-box {
    padding: 0.75rem 1rem;
  }

  .offer-box .offer-link {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .offer-box {
    padding: 0.5rem 0.75rem;
  }

  .offer-box .offer-link {
    font-size: 0.9rem;
  }
}

/*** About End ***/


/*** Fact Counter Start ***/
.counter {
   background: linear-gradient(90deg, rgba(142, 36, 170, 0.5), rgba(233, 30, 99, 0.5)), url('../img/bg-1.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter .counter-item .counter-item-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: black; /* starting color */
    animation-name: icon-animat;
    animation-duration: 6s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

@keyframes icon-animat {
    0% {
        background: black;
        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    }
    33% {
        background: darkred;
        border-radius: 60% 40% 35% 65% / 42% 48% 52% 58%;
    }
    66% {
        background: #b30059; /* dark pink */
        border-radius: 55% 45% 40% 60% / 50% 44% 56% 50%;
    }
    100% {
        background: black;
        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    }
}



/*** Fact Counter End ***/

/*** Services Start ***/
.service .service-item {
  background: var(--bs-white);
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: 0.5s;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  height: 100%;
}

.service .service-item img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.service .service-item h5 {
  font-size: 18px;
  margin-top: 15px;
  color: #000;
}

.service .btn-wrap {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.service .btn-call,
.service .btn-whatsapp {
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  border: none;
  transition: 0.3s ease;
  color: #fff;
  white-space: nowrap;
}

.service .btn-call {
  background-color: #000;
}

.service .btn-whatsapp {
  background-color: #25D366;
}

@media (max-width: 768px) {
  .service .service-item {
    margin-bottom: 20px;
  }
}
.service .service-item {
    position: relative;
    overflow: hidden;
    background: var(--bs-white);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    transition: 0.5s ease;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
}

.service .service-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: var(--bs-primary);
    border-radius: 10px;
    opacity: 0;
    z-index: 0;
    transition: 0.5s;
}

.service .service-item:hover::after {
    opacity: 0.15; /* Adjust for stronger or lighter overlay */
}

.service .service-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.service .service-item h5 {
    margin-top: 15px;
    font-weight: 600;
    color: #000;
    z-index: 1;
    position: relative;
}

.service .btn-wrap {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
    z-index: 1;
    position: relative;
}

.service .btn-call,
.service .btn-whatsapp {
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 15px;
    border: none;
    transition: 0.3s;
}

.service .btn-call {
    background: linear-gradient(90deg, #8e24aa, #e91e63);
    color: #fff;
}

.service .btn-whatsapp {
    background: #25d366;
    color: #fff;
}

/*** Service End ***/

/*** Cars Categories Start ***/
.categories .categories-item {
    position: relative;
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item:hover {
    border: 1px solid var(--bs-primary);
}

.categories .categories-item .categories-item-inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item .categories-item-inner:hover {
    box-shadow: 0 0 50px rgba(234, 0, 30, .3);
}

.categories .categories-item-inner .categories-img {
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-content {
    border-top: 4px solid var(--bs-white);
    text-align: center;
    background: linear-gradient(90deg, #8e24aa, #e91e63);
}

.categories .categories-item-inner .categories-review {
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories-carousel .owl-stage-outer {
    margin-top: 65px;
    margin-right: -1px;
}

.categories-carousel .owl-nav .owl-prev,
.categories-carousel .owl-nav .owl-next {
    position: absolute;
    top: -65px;
    padding: 10px 35px;
    color: var(--bs-white);
    background: linear-gradient(90deg, #8e24aa, #e91e63);
    border-radius: 50px;
    transition: 0.5s;
}

.categories-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.categories-carousel .owl-nav .owl-next {
    right: 0;
}

.categories-carousel .owl-nav .owl-prev:hover,
.categories-carousel .owl-nav .owl-next:hover {
    background:linear-gradient(90deg, #8e24aa, #e91e63);
    color: var(--bs-white);
}
/*** Cars Categories End ***/


/*** Process Start ***/
.steps {
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url(../img/bg-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.overlay-card-left,
.overlay-card-right {
  background-color: rgba(255, 255, 255, 0.05); /* transparent white overlay */
  backdrop-filter: blur(4px); /* optional: adds frosted effect */
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.accordion-button {
  color: #fff;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(255, 255, 255, 0.1);
}

.accordion-item {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.accordion-button:focus {
  box-shadow: none;
}

/*** Process End ***/

/* Section background with overlay */
.astrologer-contact-section {
	position:relative;
	background-image: url("../img/fact-bg.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.astrologer-contact-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 background: linear-gradient(rgba(219, 112, 147, 0.9), rgba(199, 21, 133, 0.85));
  z-index: 1;
}

.astrologer-contact-section .content-wrapper {
  position: relative;
  z-index: 2;
}

/* Left: Astrologer details */
.astrologer-details h2 {
  color: #000;
  font-weight: 800;
  font-size: 32px;
  line-height: 1.4;
}

.astrologer-details p {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 15px;
  color: #fff;
  text-align:justify;
}

.astrologer-details ul {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.8;
  padding-left: 20px;
  color: #fff;
}

.astrologer-details .contact-number {
  margin-top: 15px;
  font-weight: 600;
  font-size: 18px;
  color: #000;
}

/* Right: Contact form */
.contact-card {
  background: #fff;
  border: 2px solid #ff69b4; /* pink accent */
}

.contact-card h3 {
  font-weight: 700;
  color: #800000;
}

.contact-card .form-control {
  border-radius: 8px;
  border: 1px solid #ccc;
}

.btn-submit {
  background: #ff69b4;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #e75480;
}




/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-right: -1px;
}

.testimonial .testimonial-item {
    position: relative;
    margin-top: 35px;
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
}

.testimonial .testimonial-item .testimonial-quote {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    border-radius: 70px;
    color: var(--bs-white);
    background: var(--bs-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    align-items: center;
    background: var(--bs-light);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.testimonial .testimonial-item .testimonial-inner img {
    width: 100px; 
    height: 100px; 
    border-radius: 100px;
    border: 4px solid var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-secondary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact .contact-add-item {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
}

.contact .contact-add-item .contact-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background-color: #8B0000; /* Hindu astrology red */
    padding-top: 4rem;
    color: white;
}

.footer h4 {
    font-size: 1.25rem;
}

.footer p,
.footer a {
    font-size: 0.95rem;
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

/* Footer Buttons Inside Lists */
.footer .btn {
    font-size: 0.95rem;
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

/* Hover Effect for Social Buttons */
.footer .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}

/* Social Media Buttons */
.footer-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

/* Square Style Buttons */
.btn-square {
    width: 40px;
    height: 40px;
    padding: 0;
    text-align: center;
    line-height: 40px;
    border-radius: 0;
}

/* Align text inside button left for contact buttons */
.footer .btn.text-start {
    text-align: left;
}

/* -----------------------------------
   Copyright Footer
----------------------------------- */

.copyright {
    background-color: rgb(226, 169, 0);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.copyright .row {
    justify-content: center;
    text-align: center;
}

/* -----------------------------------
   Responsive Styles
----------------------------------- */

@media (max-width: 767.98px) {
    .footer h2 {
        font-size: 1.5rem;
    }

    .footer-btn {
        justify-content: center;
    }

    .btn-square {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    .footer .btn {
        font-size: 0.9rem;
    }
}

/*** bottom call button ***/
@media (max-width: 767.98px) {
  .mobile-fixed-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #000; /* Same as btn-success */
  }
.btn-success-c {
	background-color: #000;
}
  .mobile-fixed-buttons a {
    height: 60px;
    font-size: 16px;
    border-radius: 0;
  }

  .mobile-bottom-spacer {
    height: 60px; /* Same height as the fixed buttons */
    width: 100%;
  }
}
