
        body {
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth;
        }

        .topbar {
            background-color: #000;
            color: #fff;
            font-size: 14px;
            padding: 5px 20px;
        }

        .navbar-brand {
            font-weight: 600;
            font-size: 22px;
        }

        .carousel-caption {
            /* background-color: rgba(0, 0, 0, 0.5); */
            border-radius: 10px;
            padding: 30px;
        }

        .section-padding {
            padding: 60px 0;
        }

        .appointment-btn {
            background-color: #198754;
            color: white;
        }

        .info-box {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 25px;
            border-radius: 10px;
        }

        footer {
            background-color: #111;
            color: #ffffff;
        }
   
        #home .carousel,
        #home .carousel-image-wrapper {
            height: 100vh;
            max-height: 100vh;
        }

        #home .carousel-image-wrapper img {
            height: 100%;
            object-fit: cover;
            /* filter: brightness(0.1); */
        }

        #home .carousel-caption {
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
        }

        @media (max-width: 768px) {
            #home .carousel-caption .row {
                flex-direction: column;
            }

            #home .carousel-caption .col-md-6 {
                text-align: center;
            }
        }





         .nav-hover {
  transition: all 0.3s ease-in-out;
}

.nav-hover:hover {
  background-color: #dc3545;  /* light red background */
  color: #ffffff !important;  /* white text */
  border-radius: 6px;         /* optional: adds subtle rounding */
}

.navbar-nav .nav-link.active {
  background-color: #ffc107; /* highlight active link */
  color: #000 !important;
  border-radius: 6px;         /* match style */
}

   
/* ---------------------------------footer */

  .footer-link {
    color: #fffbfb;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .footer-link:hover {
    color: #fff;
    text-decoration: underline;
    padding-left: 5px;
  }

  .social-icon {
    color: white;
    background-color: #0dcaf0;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .social-icon:hover {
    background-color: #0a95ba;
    transform: scale(1.1);
  }


/* top to bottom button */
#backToTopBtn {
  position: fixed;
  bottom: 70px;
  right: 20px;
  z-index: 99;
  background-color: #0dcaf0;
  color: white;
  border: none;
  outline: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 20px;
  display: none;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#backToTopBtn:hover {
  background-color: #0aa1bf;
  transform: scale(1.1);
}

/* social icon */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-size: 18px;
  color: white;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.social-icon.facebook { background-color: #3b5998; }
.social-icon.instagram { background-color: #e1306c; }
.social-icon.twitter { background-color: #1da1f2; }
.social-icon.whatsapp { background-color: #25D366; }

.social-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* whatsapp */
  .fixed-bottom-left {
      position: fixed;
      bottom: 20px;
      left: 20px;
      z-index: 1050;
    }
    .fixed-bottom-right {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1050;
    }

    /* contact */
   
  #contact i {
    font-size: 1.2rem;
  }

  #contact a {
    text-decoration: none;
    color: #333;
  }

  #contact a:hover {
    color: #0d6efd;
  }

  #contact .card {
    background-color: #ffffff;
    border-radius: 0.75rem;
  }

/* testimonials */
.testimonial-bg {
  background-image: url('../assets/contact2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  color: #fff;
  z-index: 1;
}

.testimonial-bg .overlay {
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 0;
}
/* services */
.service-card img {
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  transition: transform 0.4s ease;
}
.service-card:hover img {
  transform: scale(1.05);
}
.service-card {
  transition: box-shadow 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}


/* appointment */


#appointment-landing {
  min-height: 200px;
  background: transparent;
}

.appointment-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
              url('../assets/appointment-bg.jpg') center/cover no-repeat;
  z-index: 1;
  animation: zoomBG 15s ease-in-out infinite alternate;
}

#appointment-landing .container {
  z-index: 2;
}

@keyframes zoomBG {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}



.gradient-breadcrumb {
  background: linear-gradient(90deg, #ffffff, #ffffff);
  padding: 5px 15px;
  border-radius: 10px;
  color: rgb(0, 0, 0);
}

.gradient-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgb(83, 5, 172);
  content: "›";
  padding: 0 10px;
}

.gradient-breadcrumb .breadcrumb-item a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: 500;
}

.gradient-breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}

.gradient-breadcrumb .breadcrumb-item i {
  margin-right: 5px;
}


/* section heading */

/* Custom Cursor Base Style */
body {
  cursor: none;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

/* Inner dot */
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: #0d6efd; /* Bootstrap Primary Blue */
  border-radius: 50%;
}

/* Outer ring */
.cursor-ring {
  width: 30px;
  height: 30px;
  border: 2px solid #0d6efd;
  border-radius: 50%;
  transition: all 0.15s ease-out;
  mix-blend-mode: difference;
}

/* Hover effect */
.cursor-dot.hover,
.cursor-ring.hover {
  transform: translate(-50%, -50%) scale(1.5);
  background-color: #c3ff1f;
  border-color: #0d6efd;
}

