
/*** Spinner Start ***/
#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: 48px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
/* Topbar background */
.topbar-bar {
  background-color:#FF0000;
}

.topbar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #25d366, #128c7e); /* WhatsApp green */
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  width: auto; /* default desktop */
}

.topbar-btn:hover {
  background: linear-gradient(90deg, #128c7e, #25d366);
  transform: scale(1.05);
}

@media (max-width: 767.98px) {
  .topbar-btn {
    width: 100%;              /* full width on mobile */
    font-size: 14px;
    padding: 12px 14px;
    text-align: center;
    white-space: nowrap;      /* prevent text from breaking */
  }
}



/* Marquee text */
.text-wrapper {
  overflow: hidden;
  white-space: nowrap;
}
.new-text {
  display: inline-block;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  animation: swingText 8s ease-in-out infinite;
}

@keyframes swingText {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(-50%); }
  50%  { transform: translateX(0); }
  75%  { transform: translateX(50%); }
  100% { transform: translateX(0); }
}

/* Responsive fixes */
@media (max-width: 767.98px) {
  .topbar-btn {
    width: 100px;
    font-size: 13px;
    padding: 6px 12px;
  }

  .topbar-bar .row {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .marquee-wrapper {
    font-size: 14px;
    text-align: center;
  }
}

.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);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Topbar Start ***/ 
.animated-whatsapp-button {
  background-color: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.animated-whatsapp-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.5);
}

/* Optional: Slight margin control on small screens */
@media (max-width: 576px) {
  .animated-whatsapp-button {
    font-size: 14px;
    padding: 8px 16px;
    width: 100%;
    max-width: 90%;
  }

  .p-3 {
    padding: 0.5rem !important;
  }
}

.animated-whatsapp-button {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #25d366, #1ebe57);
  color: white;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.3s ease;
}

/* Glow + hover pop */
.animated-whatsapp-button:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
}

/* Light shimmer effect */
.animated-whatsapp-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  animation: light-sweep 2.5s infinite;
  z-index: 2;
  pointer-events: none;
  transform: skewX(-20deg);
  opacity: 0.8;
}

@keyframes light-sweep {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}


.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}
/*** Navbar End ***/


/*** 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;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}

.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;
    }
}

/*** Marquee Text ***/
.marquee-container {
  width: 100%;                  /* full width */
  overflow: hidden;
  background: #ff0000;          /* background color (change as you like) */
  color: #fff;
  padding: 8px 0;
}

.marquee-text {
  display: inline-block;
  white-space: nowrap;
  font-weight: 600;
  font-size: 16px;
  animation: marqueeMove 10s linear infinite;
}

@keyframes marqueeMove {
  from { transform: translateX(100%); }
  to   { transform: translateX(-100%); }
}

/* Responsive fix */
@media (max-width: 767.98px) {
  .marquee-text {
    font-size: 14px;
  }
}

/*** Marquee Text End ***/

/*** Carousel Hero Header End ***/
.astrology-features {
  background-color: #FF0000;
  padding: 60px 0;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  transition: transform 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #FF9100;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}



/*** About Start ***/
.about-img-animate {
  border-color: #FF0000 !important;
  max-width: 100%;
  height: auto;
}


/* Section Title Styling */
.about .section-about-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-primary);
  font-size: 1.2rem;
}

.about .section-about-title::before {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: -50px;
  border: 1px solid var(--bs-primary);
}

/* Heading & Title Color */
.about h1,
.about .section-about-title {
  color: #000;
}

/* Paragraph and Icon Text Colors */
.about p {
  color: #000 !important;
}

.about i.fa,
.about i.fab {
  color: #fff !important;
}

/* Buttons Base Style */
.about .btn {
  font-weight: 600;
  font-size: 1rem;
  text-transform: capitalize;
  padding: 10px 20px;
  border-radius: 25px;
}

/* Pulse Animation for Buttons */
@keyframes heartbeatPulse {
  0% {
    transform: scale(1);
    background-color: #000;
  }
  50% {
    transform: scale(1.05);
    background-color: #000;
  }
  100% {
    transform: scale(1);
    background-color: #000;
  }
}

/* Button Base */
.about .btn-call,
.about .btn-whatsapp {
  color: #fff !important;
  animation: heartbeatPulse 2s infinite;
  transition: all 0.3s ease;
  border: none;
}

/* Button Icons */
.about .btn-call i,
.about .btn-whatsapp i {
  color: #fff !important;
}

/* Call Button Hover - Yellow */
.about .btn-call:hover {
  background-color: #FF0000 !important;
  color: #fff !important;
}

/* WhatsApp Button Hover - Green */
.about .btn-whatsapp:hover {
  background-color: #FF0000 !important;
  color: #fff !important;
}

/* Fix Bootstrap Hover Conflicts */
.about .btn-primary:hover,
.about .btn-success:hover {
  background-color: #FBC50B !important;
  color: unset !important;
  opacity: 1 !important;
  box-shadow: none !important;
}

/*** Responsive Fixes ***/
@media (max-width: 768px) {
  .about {
    padding: 40px 15px;
    text-align: center;
  }

  .about .section-about-title {
    font-size: 1rem;
  }

  .about h1 {
    font-size: 1.8rem;
  }

  .about .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .about .about-img-animate {
    margin-bottom: 20px;
  }
}

/*** About End ***/

/*** video frame***/
.video-section {
  width: 100%;
  background: #000;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.responsive-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  cursor: pointer;
}

/* Play overlay */
.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.play-icon {
  font-size: 72px;
  color: #fff;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  padding: 22px 30px;
}

/* Hide overlay ONLY while playing */
.video-wrapper.playing .play-overlay {
  opacity: 0;
  pointer-events: none;
}

/*** video end ***/

/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.feature .feature-item:hover {
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item .feature-icon {
    color: var(--bs-primary);
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    color: var(--bs-white);
}
.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--bs-white);
}

.feature .feature-item:hover a.btn {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.feature .feature-item:hover a.btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Feature End ***/

.bg-color{
	background-color:#740147;
}
.text-H{
	text-align:center;
	color: #ffffff;
	font-size:18px;
}

.text-P{
	content:justify;
	color:#ffffff;
}

.text-pp{
	text-align:justify;
	font-size:17px;
	
}
.text-d{
	color:white;
}
.pulse-animation {
  animation: pulse 1.5s infinite;
  transition: transform 0.3s ease;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(255, 193, 7, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}


/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: transparent;
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}


/*** Service End ***/

/*** award start ***/
/* =========================
   AWARDS SECTION
========================= */

.award-section {
  max-width: 1300px;
  margin: 40px auto;
  padding: 20px;
  box-sizing: border-box;
}

/* Heading + arrows */
.award-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Arrows */
.arrows {
  display: flex;
  gap: 8px;
}

.arrows button {
  width: 38px;
  height: 38px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

/* =========================
   DESKTOP VIEW
========================= */
.award-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Award image */
.award-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  background: #fff;
}

/* Desktop → NO carousel */
@media (min-width: 992px) {
  .award-wrapper {
    overflow: visible;
  }

  .arrows {
    display: none;
  }
}

/* =========================
   MOBILE & TABLET (CAROUSEL)
========================= */
@media (max-width: 991px) {
  .award-wrapper {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
  }

  .award-wrapper img {
    min-width: 100%;
    height: 500px;
  }

  .arrows {
    display: flex;
  }
}


/*** Blog Start ***/
.text-NPS{
	color:#ffffff;
	font-size:25px;
	text-align:center;
	font-weight:750;
}
.Prime-F{
	color:#ffffff;
	font-size:55px;
	text-align:center;
	font-weight:800;
}

.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}
/*** Blog End ***/
/*** Content ***/
.keywords-slider-wrapper {
  width: 100%;
  overflow: hidden;
}

.keywords-slider {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  animation: scroll-left 30s linear infinite;
}

.keyword-btn {
  padding: 10px 20px;
  border: 1px solid #000;
  border-radius: 8px;
  background: transparent;
  color: #FF0000;
  white-space: nowrap;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s;
}

.keyword-btn:hover {
  transform: scale(1.1);
  background: rgba(0, 123, 255, 0.1);
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Base styling for paragraphs */
.pc {
    font-size: 1.1rem; 
    line-height: 1.7; 
    color: #000;
    margin-bottom: 1.5rem; 
	text-align:justify;
}


/*** Content End ***/
.feedback-section {
  max-width: 1300px;
  margin: 40px auto;
  padding: 20px;
}

.feedback-title {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

/* Desktop: 4 in one row */
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feedback-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
}

/* Tablet: 2 per row */
@media (max-width: 991px) {
  .feedback-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: one by one */
@media (max-width: 576px) {
  .feedback-grid {
    grid-template-columns: 1fr;
  }
}

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}
.text-New{
	color:#740147;
	font-size:22px;
	text-align:center;
	font-weight:850;
}
.display-txt{
	color:#740147;
	font-size:55px;
	text-align:center;
	font-weight:850;
}
.txt-n{
	color:black;
	font-size:16px;
	text-align:justify;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Testimonial End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
	text-align:justify;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}


.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}
/*** Footer End ***/

.fw-hhh {
  color: #ffffff;
  font-size: 32px;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.3;
  word-wrap: break-word;
  word-break: break-word;
  padding: 0 15px;
  max-width: 100%;
  margin: 0 auto;
}

/* Tablet */
@media (min-width: 768px) {
  .fw-hhh {
    font-size: 40px;
  }
}

/* Desktop */
@media (min-width: 992px) {
  .fw-hhh {
    font-size: 55px;
  }
}


.mb-lc{
	color:#FF9100;
	font-size:25px;
	font-weight:850;
	text-decoration:uppercase;
}
/* Footer background */
.footer-bg{background:#740147}

/* Link appearance + hover */
.footer-bg a{
  color:#fff;
  text-decoration:none;
  transition:color .3s ease;
}
.footer-bg a:hover{color:#ffd86b}

/* Arrow icon & text gap stays via .fa */

.footer-bg ul li{margin-bottom:.35rem}

/* Social icon boxed style */
.social-box{
  width:40px;height:40px;
  display:flex;align-items:center;justify-content:center;
  border:2px solid #fff;
  border-radius:8px;
  transition:all .3s ease;
}
.social-box:hover{
  background:#fff;color:#740147;
  transform:translateY(-3px);
}

/* WhatsApp pulse button */
.pulse-btn{
  animation:pulseGlow 1.6s infinite;
}
@keyframes pulseGlow{
  0%{box-shadow:0 0 0 0 rgba(40,167,69,.7);}
  70%{box-shadow:0 0 0 15px rgba(40,167,69,0);}
  100%{box-shadow:0 0 0 0 rgba(40,167,69,0);}
}


/*** copyright Start ***/
.copyright {
    background:#FF9100;
    border-top: 1px solid rgba(255, 255, 255, .08);
}
/*** copyright end ***/

/* Ensure no bottom space on mobile */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Mobile button bar */
.mobile-bottom-buttons-last {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  height: 60px;
  background-color: #fff;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
}

.mobile-bottom-spacer {
  height: 60px;
  width: 100%;
}

/* Button style */
.mobile-bottom-buttons-last .btn-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
}

.btn-whatsapp-bottom {
  background: green;
}

.btn-call-bottom {
  background: #FF0000;
}

.btn-bottom i {
  font-size: 18px;
  background-color: #fff;
  color: #ff8800;
  border-radius: 50%;
  padding: 6px;
  margin-bottom: 4px;
}

.btn-bottom span {
  font-size: 12px;
  line-height: 1;
}

/* Hover */
.btn-bottom::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  top: 0;
  left: -100%;
  transition: all 0.4s ease-in-out;
}

.btn-bottom:hover::after {
  left: 0;
}

.btn-bottom:hover {
  transform: scale(1.03);
}

/* Heartbeat effect */
.heartbeat-icon {
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

/* Hide for desktop */
@media (min-width: 768px) {
  .mobile-bottom-buttons-last,
  .mobile-bottom-spacer {
    display: none !important;
  }
}

/*** whastapp bottom ***/
@media (max-width: 767.98px) {
  .mobile-fixed-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #198754; /* Same as btn-success */
  }

  .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%;
  }
}