 :root {
      --primary-color: #128bc7; /* 🔁 Change this to match your logo */
      --text-color: #333;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
    }
.navbar-brand img {
  height: 70px !important; /* You can try 50, 60, or even 70 */
}
    /* Top Info Bar */
    .top-bar {
      background-color: var(--primary-color);
      color: white;
      font-size: 14px;
      padding: 6px 0;
    }

    .top-bar i {
      margin-right: 5px;
    }

    .top-bar .social-icons a {
      color: white;
      margin-left: 10px;
    }

    /* Main Navbar */
    .main-navbar {
      background-color: white;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .navbar-brand img {
      height: 40px;
    }

    .nav-link {
      color: var(--text-color) !important;
      font-weight: 500;
      margin-right: 15px;
    }

    .nav-link:hover {
      color: var(--primary-color) !important;
    }

    .dropdown-menu {
      border-radius: 10px;
      border: none;
      padding: 10px 0;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .dropdown-item {
      font-weight: 500;
      padding: 8px 20px;
    }

    .dropdown-item:hover {
      background-color: #f9f9f9;
      color: var(--primary-color);
    }

    .btn-appointment {
      background-color: var(--primary-color);
      color: white;
      padding: 8px 25px;
      border-radius: 30px;
      font-weight: 600;
      transition: background 0.3s ease;
    }

    .btn-appointment:hover {
      background-color: #0b567b;
      color: #ffff;
    }

    /* Dropdown on hover for large screens */
    @media (min-width: 992px) {
      .dropdown:hover .dropdown-menu {
        display: block;
      }
    }

   .carousel-item {
      min-height: 70vh;
      background-image: url(../images/banner1.jpg); /* 🖼️ Replace with your image path */
      background-size: cover;
      background-position: center;
      position: relative;
      color: white;
    }

    .carousel-caption-left {
      position: absolute;
      top: 50%;
      left: 8%;
      transform: translateY(-50%);
      text-align: left;
      max-width: 500px;
    }

    .carousel-caption-left h1 {
      font-size: 3rem;
      font-weight: 700;
    }

    .carousel-caption-left p {
      font-size: 1.2rem;
      margin-top: 1rem;
    }

    .carousel-caption-left .btn {
      margin-top: 1.5rem;
      padding: 12px 28px;
      font-size: 1rem;
    }

    @media (max-width: 768px) {
      .carousel-caption-left h1 {
        font-size: 2rem;
      }
      .carousel-caption-left {
        left: 5%;
        right: 5%;
      }
    }


.eyecare-benefits-section {
    background-color: #f8f8f8; /* Ensures the background of the section matches body if needed */
}

/* Custom styling for the main container card (like the white box in your image) */
.benefits-card-container {
    background-color: #fff;
    /* Already has shadow and rounded corners from Bootstrap classes */
}

.benefits-title {
    color: #0b567b; /* Orange color for the title */
    font-weight: 700;
}

.benefits-description {
    color: #666;
}

.benefit-item {
    border: 1px solid #eee; /* Subtle border for cards */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15) !important; /* !important to override Bootstrap's default shadow */
}

.icon-wrapper {
    color: #0b567b; /* Orange color for icons */
}

/* Optional: Adjust card title/text size if default Bootstrap sizes aren't perfect */
.benefit-item .card-title {
    font-size: 1.4em;
}

.benefit-item .card-text {
    font-size: 0.95em;
}

.card-blue {
  background-color: #128bc7; /* Custom blue */

}
.card{
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* x, y, blur, color */
}

.hover-fill-card .card-body {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: transparent;
}

.hover-fill-card .card-body::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background-color: #ffffff; /* 👈 Your fill color */
  z-index: -1;
  transition: height 0.4s ease;
}

.hover-fill-card:hover .card-body::before {
  height: 100%;
}
.hover-fill-card:hover .card-body h5 span,
.hover-fill-card:hover .card-body p {
  color: #0b567b !important;
}


.great{
  color: #128bc7;
}

.bookform{
  background-color: #128bc7;
}

  .text-orange {
    color: #128bc7;
  }
  .bg-orange {
    background-color: #128bc7;
  }
  .border-orange {
    border-color: #128bc7 !important;
  }
  .btn-orange {
    background-color: #128bc7;
  }
  .btn-orange:hover {
    background-color: #128bc7;
  }


  .service-card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }
    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    .service-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .service-card .btn {
      border-radius: 50px;
    }
    
    
