/* Reset and Base */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 2px solid red; */
}

:root {
  --gold: #C1994F;
  --offwhite: #F4EEE2;
  --black: #181715;
  --white: #ffffff;
}

/* Prevent horizontal scroll from animations */
html, body {
  overflow-x: hidden;
}

/* Services section smoother animations */
.Services .row > div {
  will-change: transform;
}

/* Doctor section smoother animations */
.doctor-card {
  will-change: transform;
}


/* Headings use Playfair Display */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* Paragraphs stay Poppins */
p {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}

/* Buttons use Poppins too */
button, .btn, .derma-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.navbar-wrapper {
  border-bottom: 1px solid #eee;
}

/* Common Logo & Icons */
.social-icons a {
  color: #6a38d2;
  margin-right: 10px;
  font-size: 16px;
  text-decoration: none;
}

.logo img,
.tablet-logo {
  height: 100px;
}

.top-links a {
  color: #6a38d2;
  margin-left: 20px;
  font-size: 14px;
  text-decoration: none;
}

/* Desktop & Tablet: hide mobile-only parts */
@media (min-width: 768px) {
  .tablet-header,
  #mobileMenu {
    display: none !important;
  }

  .main-nav .nav-link {
  font-weight: 410;        
  font-size: 18px;        
  letter-spacing: 0.5px;   
  padding: 0 15px;         
}

}

/* Mobile Only Styles */
@media (max-width: 767.98px) {
  .logo {
    display: none !important;
  }

  .top-links,
  .container-fluid.d-md-flex {
    display: none !important;
  }

  .tablet-header {
    display: flex !important;
  }

  .tablet-logo {
    height: 65px;
  }

  .navbar-toggler {
    border: none;
    background: none;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath stroke='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    background-size: contain;
    width: 30px;
    height: 30px;
  }

  .mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 9999;
    padding-top: 60px;
    transition: left 0.3s ease-in-out;
  }

  .mobile-nav-overlay.show {
    left: 0;
  }

  .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
  }

  .navbar-nav .nav-link {
    text-align: center;
    padding: 12px;
    font-size: 16px;
  }
}

/* hero-section start */
  .hero-section {
      display: flex;
      flex-direction: column-reverse;
      align-items: center;
      justify-content: space-between !important;
      padding: 0px 20px !important;
      background: linear-gradient(to right, var(--offwhite) 0%, var(--gold) 100%);
       /* background: linear-gradient(to right, #F9F6F1, #EFE7DD); */
      gap: 40px !important;
    }

    @media (min-width: 768px) {
      .hero-section {
        flex-direction: row;
        justify-content: space-between;
        padding: 100px 60px;
         gap: 60px;
      }
      
    }


    .hero-content {
      max-width: 600px;
     
       text-align: right; 
    margin-left: auto; 
    }

    @media (min-width: 768px) {
      .hero-content {
        text-align: left;
      }
    }

    .hero-title {
      font-size: 4rem;
      font-weight: bold;
      color: #1c1c1c;
      margin-bottom: 30px;
    }

    .hero-buttons .btn {
      padding: 12px 24px;
      font-weight: 500;
      border-radius: 6px;
      margin-right: 15px;
      transition: all 0.3s ease;
    }

   /* Hero Buttons in Theme Colors */
.btn-primary-custom {
  background-color: var(--gold);
  color: var(--black);
  border: none;
}

.btn-primary-custom:hover {
  background-color: #a88235; /* darker gold hover */
  color: var(--white);
}

.btn-secondary-custom {
  background-color: var(--black);
  color: var(--white);
  border: none;
}

.btn-secondary-custom:hover {
  background-color: #000; /* pure black on hover */
  color: var(--gold);
}

   .hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}

.hero-image-wrapper img.leaf {
  width: 105%;
  position: relative;
  z-index: 1;
}

.hero-image-wrapper img.girl {
  width: 65%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

@media (min-width: 1440px) {
  .hero-section {
    justify-content: space-between;
    padding: 100px 100px;
    max-width: 1440px;
    margin: 0 auto;
  }

  .hero-image-wrapper {
    margin-left: auto;
    margin-right: 0;
    max-width: 550px;
    display: flex;
    justify-content: flex-end;
  }

  .hero-image-wrapper img.girl {
    left: auto;
    right: 0;
    transform: none;
  }
}


    @media (max-width: 767px) {
      .hero-title {
        font-size: 2.2rem;
      }

      .hero-buttons {
        justify-content: center;
      }

      .hero-image-wrapper img.leaf {
        bottom: -20px;
      }
    }

    /* end of .hero-section */


  /* .feature-box start   */
  
/* .feature-section {
  background-color: var(--offwhite); 
} */

   .feature-box {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
  background-color: var(--white);
}

.feature-box:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-color: var(--gold); /* subtle gold highlight on hover */
}

.feature-icon {
  font-size: 3rem;
  color: var(--black); /* default black */
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.feature-box:hover .feature-icon {
  color: var(--gold); /* gold on hover */
}

.feature-box h5 {
  color: var(--black);
  font-weight: bold;
  margin-bottom: 10px;
}

.feature-box:hover h5 {
  color: var(--gold);
}

.feature-box p {
  color: #555;
  font-size: 15px;
  margin: 0;
    }


/* start .service-box section */

.Services {
  overflow-x: hidden;
}

.Services .row {
  margin-left: 0;
  margin-right: 0;
}


.section-heading {
  text-align: left;
  padding-left: 20px;
  margin-bottom: 2rem;
  margin-left: 45px;
}

.section-heading p {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-heading h2 {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
   color: var(--black);
}

/* Add spacing around the image grid row */
.image-grid-row {
  padding: 0 50px;
}


.overlay-text-box {
  top: 65% !important; 
  padding: 20px 16px 20px 85px !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  max-width: 85%;
  z-index: 2;
border-right: 5px solid var(--gold); /* gold accent stripe */
}

@media (min-width: 768px) {
  .overlay-text-box {
    left: 10%;
  }
}

@media (max-width: 767.98px) {
  .overlay-text-box {
    left: 5%;
    top: 70% !important;
  }
}

@media (max-width: 1024px) {
  .img-fluid {
    height: 350px !important; 
  }

  .overlay-text-box {
    top: 60% !important;
    padding: 10px 12px 10px 30px !important;
    max-width: 90%;
  }
}

@media (max-width: 767.98px) {
  .img-fluid {
    height: 260px !important; 
  }

  .overlay-text-box {
    top: 65% !important;
    padding: 8px 12px 8px 25px !important;
    max-width: 100%;
  }
}


 /* end of .service-box section */


 /* start of about-ut section */
.about-us-section {
  background-color: var(--offwhite); /* Soft light background */
  color: var(--black);
  padding: 250px 20px 60px; /* Top space for video */
  position: relative;
  overflow: hidden;
}

.about-video-wrapper {
  position: relative;
  margin-bottom: -160px;
  display: flex;
  justify-content: center;
  z-index: 1;
}

.about-video {
  width: 100%;
  max-width: 1300px;
  height: 500px;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
}

.about-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

.about-left {
  flex: 1;
}

.section-subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold); /* gold accent only here */
  margin-bottom: 15px;
  display: inline-block;
}

.about-title {
  font-size: 2.4rem;
  line-height: 1.3;
  font-weight: 600;
  color: var(--black);
}

.about-title span {
  color: var(--gold);
}

.about-right {
  flex: 1;
}

.about-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555; 
}

.about-tiles {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.tile {
  flex: 1 1 200px;
 background-color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 500;
  border-left: 4px solid var(--gold);
}

.about-btn {
  display: inline-block;
  background-color: var(--black);
   color: var(--white);
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.about-btn:hover {
 background-color: var(--gold);
  color: var(--black);
}

@media (min-width: 1024px) {
  .section-subtitle {
    font-size: 1.1rem; 
    letter-spacing: 1.5px;
  }

  .about-title {
    font-size: 3.4rem !important; 
    line-height: 1.3;
  }

  .about-text {
    font-size: 1.15rem; 
    line-height: 1.7;
  }

  .tile {
    font-size: 1.05rem; 
    padding: 15px 25px; 
  }

  .about-btn {
    font-size: 1.05rem; 
    padding: 14px 35px;
  }
}


/* Responsive */
@media (min-width: 768px) {
  .about-content-wrapper {
    flex-direction: row;
    gap: 60px;
  }

  .about-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 767px) {
  .about-title {
    font-size: 2rem;
  }

  .about-text {
    font-size: 0.95rem;
  }
}

/* end of .about-us-section */

.skin-health-section {
  padding: 0px 0;
 background-color: rgb(244, 225, 193); 
}

.skin-health-image img {
  width: 100%;
  height: 110%;
  display: block;
}

.skin-health-content {
  background-color: rgb(244, 225, 193); 
  color: var(--black);
  padding: 113px 30px;
 
}

.skin-health-content h2 {
  font-size: 35px;
  color: var(--black);
  line-height: 1.4;
}

.skin-health-content h2 span {
  color: var(--black); /* subtle highlight */
  font-weight: 500;
  font-size: 45px;
}

.skin-health-content h2 strong {
  color: var(--black);
  font-weight: bold;
  font-size: 38px;
}

.skin-health-content p {
  font-size: 20px;
  margin: 20px 0;
   color: var(--black);
}

/* .onimage{
  margin-left: -120px;
} */

.skin-health-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.skin-health-stats h3 {
  font-size: 40px;
  color: var(--black);
  margin: 0;

}

.skin-health-stats span {
  font-size: 18px;
 color: var(--gold);
}

.skin-health-stats p {
  font-size: 14px;
   color: #090909;
  margin: 10px 0 0;
}


@media (min-width: 1024px) {
  .onimage {
    margin-left: -200px;
  }
}

@media (min-width: 1024px) {
  .skin-health-content {
    padding: 130px 50px; /* little more breathing space for large screens */
  }

  .skin-health-content h2 {
    font-size: 48px; /* was 35px */
    line-height: 1.3;
  }

  .skin-health-content h2 span {
    font-size: 55px; /* was 45px */
  }

  .skin-health-content h2 strong {
    font-size: 50px; /* was 38px */
  }

  .skin-health-content p {
    font-size: 22px; /* was 20px */
    line-height: 1.6;
  }

  .skin-health-stats h3 {
    font-size: 50px; /* was 40px */
  }

  .skin-health-stats span {
    font-size: 20px; /* slightly bigger */
  }

  .skin-health-stats p {
    font-size: 16px; /* was 14px */
  }
}



/* Responsive */
@media (max-width: 768px) {
  .skin-health-content {
    margin-top: 20px;
  }

  .skin-text{
  font-size: 14px;
}

  .skin-health-stats {
    gap: 20px;
  }
}

/* doctors section start */

.text-primary{
  color: var(--gold) !important;
}

.doctor-card {
 background-color: #FAF9F6; 
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  width: 260px; /* increased from 200px */
  gap: 10px;
   position: relative;
  overflow: visible;  
}

.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
   height: calc(100% - 50px); 
 background: linear-gradient(rgba(193, 153, 79, 0.7), rgba(193, 153, 79, 0));
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.doctor-card:hover .hover-overlay {
  opacity: 1;
}

.social-icons a {
  margin: 0 10px;
 color: #660000;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: var(--gold);
}


.doctor-image-wrapper {
  background: #fff;
  padding: 20px; /* increased padding */
  position: relative;
  border-radius: 10px;
}

.doctor-image-wrapper img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.doctor-info {
  position: absolute;
  bottom: -36px;
  left: 0;
 background-color: #FDF6EC;
  padding: 18px 35px;
  border-radius: 0 10px 10px 0;
  max-width: 95%;
  margin-left: 3px;
  color: #000 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.doctor-info h5 {
  color: #C1994F; /* gold name */
}

.doctor-info p {
  color: #6C6C6C; /* muted gray subtitle */
}


/* end of doctors section */


.derma-section {
  padding: 0;
   overflow-x: hidden;
}

.derma-card {
  position: relative;
  height: 320px;
  width: 100%;
   overflow-x: hidden;
}

.derma-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: 100%;
}

.derma-text {
  position: absolute;
  top: 20%;
  left: 30px;
  color: #fff;
  z-index: 2;
  max-width: 60%;
}

.derma-text h2 {
  font-size: 41px;
  margin: 0 0 10px;
}



.Cosmetic-text{
  position: absolute;
  top: 20%;
  left: 30px;
  color: #000000;
  z-index: 2;
  max-width: 60%;
}

.Cosmetic-text h2 {
  font-size: 40px;
  margin: 0 0 10px;
}

.derma-text, .Cosmetic-text p {
  font-size: 14px;
  margin-bottom: 15px;
  margin-top: 19px;
}

.derma-btn {
  padding: 10px 20px;
  background-color: #ffd6f9;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  color: #333;
  margin-top: 14px;
}

.derma-btn.dark {
  background-color: #333;
  color: #fff;
}

@media (max-width: 768px) {
  .derma-card { height: auto; }
  .derma-img { height: auto; }

  .derma-text { top: 20px; left: 20px; max-width: 80%; }
  .Cosmetic-text { top: 20px; left: 20px; max-width: 80%; }

  /* Only h2, not the whole container */
  .derma-text h2 {
    font-size: 20px;       /* smaller on mobile */
    line-height: 1.25;     /* tighter lines to reduce height */
    margin: 0;
  }

  .derma-text p {
    font-size: 14px;
    margin: 8px 0 10px;
  }

   .Cosmetic-text {
    padding-left: 10px;  
    padding-right: 10px; 
    max-width: 85%;      
  }

  .Cosmetic-text h2 {
    font-size: 20px;     
    line-height: 1.3;    
    margin: 0 0 8px 0;   
    white-space: normal; 
  }

  .Cosmetic-text p {
    font-size: 14px;
    line-height: 1.4;    
    margin: 0 0 12px 0; 
    max-width: 90%;     
  }

  .derma-btn { padding: 8px 14px; font-size: 14px; }
}




 .CTABox{
  margin-bottom: -100px !important;
   padding: 50px 30px !important; 
  position: relative;
  z-index: 10;
 }

.CTABoxrow {
   background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
  padding: 40px 20px !important;
}

.cta-box {
  background-color: #124E66;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
}

.cta-icon {
  width: 60px;
  height: 60px;
  font-size: 24px;
}
.bg-icon{
  background-color: var(--gold);
  color: var(--offwhite);
}

 /* footer start */

 .footer{
  padding-top: 160px !important;
   background: url('../images/footer-bg.png') no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 1;
 }

 .footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--offwhite) !important;
  z-index: -1;
}

 /* end of footer */

 /*my updated code or css here Pratik */
 /*our services updated css here */
 
 .scroll-wrapper {
  overflow: hidden;
  white-space: nowrap;
}

.scroll-content {
  display: flex;
  flex-wrap: nowrap !important;
  animation: scroll-left 30s linear infinite;
}

.scroll-content > div {
  flex: 0 0 auto; /* prevent shrinking */
}
/*hover stop sathi */
.scroll-content:hover {
  animation-play-state: paused; /* ✅ stop scrolling on hover */
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/*hover effect for box*/
.Service-box {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}
.service-box img {
  transition: opacity 0.4s ease;
}

/* Keep title & subtitle always visible at the top */

.overlay-text-box {
  width: 250px;                /* fixed width for all boxes */
  height: 90px;               /* fixed height for all boxes */
  top: 50%;                    /* vertical center */
  left: 0;                      /* start at left edge */
  transform: translateY(-50%);  /* vertical centering */
  background: rgba(255, 255, 255, 0.85);
  border-radius: 0;
  z-index: 5;
  padding: 0 !important;        /* remove any padding added by Bootstrap */
  box-sizing: border-box;
}

.overlay-text-left {
  text-align: left !important;  /* force text start from left */
  margin: 0;
  padding: 5px 10px;            /* optional small padding inside box */
}




.service-box .hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 27, 53, 0.5);
  color: #fff;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  font-size: 14px;
  line-height: 1.6;
  box-sizing: border-box;
  display: flex;
  align-items: center;      /* ✅ center vertically */
  justify-content: center;  /* ✅ center horizontally */
  text-align: center;       /* ✅ center text */
  white-space: normal;      /* ✅ wrap text */
   z-index: 2;   /* ✅ sits below .overlay-text-box */
}


.service-box:hover img {
  opacity: 0.6; /* fade image */
}

.service-box:hover .hover-overlay {
  opacity: 1;
  visibility: visible;
}
.service-box:hover .overlay-text-box {
  opacity: 0;
  visibility: hidden;
}

/*contact section sathi*/
/* Contact Section */
/* Contact Section */
.contact-section {
  padding: 10px 20px;
  background: #fff;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
  animation: fadeUp 1.2s ease;
}

.contact-header h2 {
  font-size: 2.5rem;
  color:  #c89b3c;
  margin-bottom: 10px;
}

.contact-header p {
  color: #666;
  max-width: 600px;
  margin: auto;
  font-size: 1.1rem;
}

/* Wrapper */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  align-items: start;
}

/* Form */
.contact-form {
  background: #fafafa;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  animation: fadeLeft 1.2s ease;
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  background: transparent;
  transition: 0.3s ease;
}

.form-group label {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
  transition: 0.3s ease;
}

/* Floating Label */
.form-group input:focus,
.form-group input:valid,
.form-group textarea:focus,
.form-group textarea:valid {
  border-color: #c89b3c; /* golden accent */
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
  top: -10px;
  left: 10px;
  font-size: 0.8rem;
  color: #c89b3c;
  background: #fff;
  padding: 0 6px;
  border-radius: 4px;
}

/* Button */
.contact-btn {
  width: 100%;
  background: linear-gradient(135deg, #c89b3c, #b4842c);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(200, 155, 60, 0.5);
}

/* Contact Info */
.contact-info {
  animation: fadeRight 1.2s ease;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #c89b3c;
}

.contact-info p {
  margin: 10px 0;
  color: #555;
}

.map-container {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

/* Animations */
@keyframes fadeUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeLeft {
  from { transform: translateX(-40px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeRight {
  from { transform: translateX(40px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

/*services button */
.btn-outline-primary {
  color: #c89b3c !important;
  border-color: #c89b3c !important;
}

.btn-outline-primary:hover {
  background-color: #c89b3c !important;
  color: #fff !important;
}
/*box border blue to this color*/
/* force a left stripe same thickness as Bootstrap border-5 (.5rem) and gold color */
/* Force gold left stripe for the service card (overrides Bootstrap) */
.service-card.custom-border-gold {
  border-left: .5rem solid #c89b3c !important;
  border-top: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
}

/* Extra overrides in case Bootstrap border utility classes still exist */
.service-card.border-start,
.service-card.border-5,
.service-card.border-primary,
.service-card.custom-border-gold.border-primary {
  border-left: .5rem solid #c89b3c !important;
}

/* Ensure the icon color matches the stripe */
.service-card .service-icon i {
  color: #c89b3c !important;
}

/* Make outline-primary buttons use the gold color too */
.btn-outline-primary {
  color: #c89b3c !important;
  border-color: #c89b3c !important;
}
.btn-outline-primary:hover {
  background-color: #c89b3c !important;
  color: #fff !important;
}


/*123456 change color sathi*/
/* h4.fw-bold.mb-3 {
  color: inherit; 
}

h4.fw-bold.mb-3::first-letter {
  color: #c89b3c; 
} */
.number-badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;               /* circle size */
  height: 36px;
  border-radius: 50%;
  background-color: #c89b3c; /* your gold color */
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
  margin-right: 10px;        /* space between number and text */
  vertical-align: middle;    /* keeps aligned with text */
}
 /*our signature services explore buttone */
 .custom-btn {
  background-color: #c89b3c !important;
  border-color: #c89b3c !important;
  color: #fff !important;
  transition: all 0.3s ease;
}

.custom-btn:hover {
  background-color: #a67f2d !important; /* darker gold */
  border-color: #a67f2d !important;
  color: #fff !important;
}

/*hover effect for treatment process */
.custom-circle {
    background-color: #c89b3c;
    transition: background-color 0.3s;
}

.custom-circle:hover {
    background-color: #a67b2f; /* slightly darker on hover */
}
/*book your consultation css */
.clickable-circle:hover {
    cursor: pointer;
    opacity: 0.8; /* subtle hover effect */
}

.clickable-text {
    text-decoration: none; /* remove underline */
    color: inherit; /* keep original color */
}

.clickable-text:hover {
    text-decoration: none; /* still no underline on hover */
    cursor: pointer;
}

/*start your journey today */
.clickable-circle:hover {
    cursor: pointer;
    opacity: 0.8; /* subtle hover effect */
    text-decoration: none;
    color: inherit;
}

.clickable-text {
    text-decoration: none; /* remove underline */
    color: inherit;
}

.clickable-text:hover {
    text-decoration: none; /* keep no underline */
    color: #0a58ca; /* optional: color change on hover */
    cursor: pointer;
}

/*learn more and see more button hover effect */
.derma-btn:hover {
    background-color: #c89b3c; /* change to your desired hover color */
    color: #fff; /* optional: change text color on hover */
    transform: scale(1.05); /* subtle zoom effect */
    transition: all 0.2s ease;
    cursor: pointer;
}