
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 60px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    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-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-primary-outline-0 {
    border: 0;
    color: var(--bs-white) !important;
}

.btn-light-outline-0 {
    border: 0;
    color: var(--bs-primary) !important;
}

.btn-primary-outline-0:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

.btn-light-outline-0:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

/*** Topbar Start ***/
.sticky-top {
    transition: 0.5s;
    background: var(--bs-white);
}

.topbar {
    padding: 10px 0;
    background: var(--bs-secondary) !important;
}

/*** Topbar End ***/

/*** Navbar Start ***/
.mobile-logo {
  max-width: 80px;
  height: auto;
}

/* Hide on desktop, show on mobile */
@media (min-width: 992px) {
  .mobile-logo {
    display: none;
  }
}


.topbar-bar {
  background: #740147; /* Dark green */
  color: #fff;
  font-size: 14px;
}


.marquee-text {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  line-height: 1.6;
  word-wrap: break-word;
  white-space: normal;   /* allow wrapping */
  padding: 8px 12px;
}

/* Tablet */
@media (max-width: 768px) {
  .marquee-text {
    font-size: 15px;
    padding: 6px 10px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .marquee-text {
    font-size: 14px;
    line-height: 1.4;
    padding: 5px 8px;
  }
}

.col-12.col-lg-3.d-flex {
  background: #FF9100;
  padding: 6px 12px;
  border-radius: 50px;  /* fully rounded pill */
  position: relative;
  z-index: 2;
}
/* Buttons */
.topbar-btn {
  background: #ffffff;
  color: #006400;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  padding: 4px 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.topbar-btn:hover {
  background: #004d00;
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .marquee-text {
    font-size: 13px;
  }

  .topbar-btn {
    font-size: 13px;
    padding: 3px 10px;
  }
}

/*** Navbar End ***/

/*** Header ***/
/* Force equal height on desktop */
header .row {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch; /* Both columns same height */
}

header .col-md-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0; /* No extra gaps */
}

/* Left image: cover full height of column */
header .col-md-6:first-child img {
  width: 100%;
  height: 100%;       /* Fill column height */
  object-fit: cover;  /* Crop nicely */
  display: block;
}

/* Right side image responsive */
header .col-md-6:last-child img {
  width: 100%;
  height: auto;
  display: block;
}
/* Desktop fix */
@media (min-width: 992px) {
  header .col-md-6 {
    height: 100%;       /* keep both same height */
    overflow: hidden;   /* prevent overlap */
  }

  header .col-md-6:first-child img {
    width: 100%;
    height: 100%;       /* fill its half */
    object-fit: cover;  /* crop to fit */
    display: block;
  }

  header .col-md-6:last-child img {
    width: 100%;
    height: auto;       /* natural height for gif */
    display: block;
  }
}

/* Mobile fallback */
@media (max-width: 768px) {
  header .row {
    flex-direction: column;
  }
  header .col-md-6 {
    width: 100%;
    max-width: 100%;
  }
  header .col-md-6:first-child img {
    height: auto; /* Back to normal scaling on mobile */
  }
}


.custom-btn {
  background:#FF9100;
  color: #000;
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 8px;
  line-height:1;
  text-align: center;
  transition: all 0.3s ease;
}

.custom-btn:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
}

.whatsapp-buttons {
  width: 100%;
  max-width: 500px; /* keeps buttons neat on large screens */
}

/* Mobile: stack all 3 buttons */
@media (max-width: 576px) {
  .whatsapp-buttons .d-flex {
    flex-direction: column;
  }
}


.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;
}

/*** Header End ***/
.marquee-container {
  width: 100%;
  overflow: hidden;
  background: #FF9100;
  color: #000000;
  padding: 8px 0;
  position: relative;
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: marquee 15s linear infinite;
}

.marquee span {
  font-size: 16px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/*** 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;
    }
}
/*** Carousel Hero Header End ***/

/*** Services Start ***/
.services .services-item {
    transition: 0.5s;
}

.services .services-item:hover {
    background: #740147 !important;
    border-color: #740147 !important;
}

.services .services-item:hover .services-content p,
.services .services-item:hover .services-content h3 {
    color: var(--bs-white);
    transition: 0.5s;
}

.services .services-item:hover .services-content a.btn {
    background: var(--bs-white);
    color: #740147 !important;
}

.services .services-item:hover .services-content a.btn:hover {
    color: var(--bs-white) !important;
}

.services .services-item .services-img {
    overflow: hidden;
}

.services .services-item .services-img img {
    transition: 0.5s;
}

.services .services-item .services-img img:hover {
    transform: scale(1.3);
}
/*** Services End ***/



/*** About Start ***/

.about img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* For large screens keep equal height */
@media (min-width: 992px) {
  .about img {
    height: 100%;
  }
}

/* Center CTA buttons only on mobile */
@media (max-width: 576px) {
  .about .d-flex {
    justify-content: center !important;
  }
  .about .d-flex a {
    flex: 0 0 auto; /* prevents full width stretch */
    margin: 5px;
  }
}

/*** About End ***/


/*** Pricing Start ***/
.pricing {
    background-color:#FF9100;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.pricing .pricing-item {
    color: var(--bs-white);
}

.pricing .pricing-item .pricing-content {
    background: rgba(255, 255, 255, 0.4);
}

.pricing .owl-carousel.pricing-carousel {
    position: relative;
}

.pricing .owl-carousel.pricing-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-white);

}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev,
.pricing .owl-carousel.pricing-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev:hover,
.pricing .owl-carousel.pricing-carousel .owl-nav .owl-next:hover {
    color: var(--bs-primary);
}
/*** Pricing End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.team .team-item .team-text {
    background: var(--bs-primary);
}

.team .team-item .team-social {
    position: absolute;
    top: -180px; 
    left: 20px; 
    opacity: 0;
    transition: 0.5s;
}

.team .team-item:hover .team-social {
    top: 20px; 
    left: 20px;
    opacity: 1;
}

.team .team-item .team-img {
    position: relative;
    width: 100%;
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: 0.5s ease;
}

.team .team-item:hover .team-img::after {
    bottom: 0;
    height: 100%;
}

.team .team-item .team-text {
    transition: 0.5s;
}

.team .team-item:hover .team-text {
    background: var(--bs-secondary);
}
/*** Team End ***/

/*** testimonial Start ***/
.testimonial {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/testimonial-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial .testimonial-item {
    background: rgba(0, 0, 0, 0.4);
}

.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-white);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-primary);
}
/*** testimonial end ***/

/*** Contact Start ***/
.contact {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/appointment-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact .contact-form {
    background: rgba(255, 255, 255, 0.6);
}
/*** Contact End ***/

/*** footer start ***/
.footer {
    background: #740147;
}

.footer .footer-item a,
.footer .footer-item p {
    color: var(--bs-white);
    line-height: 40px;
    font-size: 17px;
    transition: 0.5s;
	text-align:justify;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary) !important;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #FF9100 !important;
}
/*** copyright end ***/

@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%;
  }
}