
/* Reset some basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Quicksand", Sans-serif;
    background-color: #000;
    color: #fff;
    
  }
  p {
    font-size: 18px;
    font-family: "Quicksand", Sans-serif;
  }
  a{
    text-decoration: none;
    font-family: "Quicksand", Sans-serif;
  }
  ul,li{
    font-size: 18px;
    font-family: "Quicksand", Sans-serif;
  }
  .bg-header{
      background-color: #000;
  }
  span{
    font-size: 18px;
    font-family: "Quicksand", Sans-serif;
  }
  
  
  
  /* Main container styling */
  .container {
    max-width: 1200px; /* Adjust container width */
    margin: 0 auto;
    padding: 0 20px; /* Add some padding on smaller screens */
  }
  
  /* Header styling */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
  }
  
  /* Logo styling */
  .logo {
   height: 70px;
  }
  
  
  
  /* Navigation styling */
  .nav-links {
    display: flex;
    text-transform: uppercase;
    gap: 40px;
    font-size: 16px;
  }  
  
  .nav-links a {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
  }
  
  /* Button styling */
  .quote-btn {
   background-image: linear-gradient(197deg, #fc8624 0%, #863d00 100%);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
  }
  
  /* Mobile Menu Icon */
  .menu-icon {
    display: none;
    color: #fff;
  }
  
  /* Responsive design */
  @media (max-width: 768px) {
    .nav-links {
      display: none; /* Hide the navigation links by default on mobile */
    }
  
    .menu-icon {
      display: block;
          font-size: 2.9em;
          cursor: pointer;
          margin-left: auto;
    }
  
    /* When the menu icon is clicked, display the nav links */
    .nav-links.open {
      display: flex;
      align-items: center;
      flex-direction: column;
      position: absolute;
      top: 100px;
      left: 0;
      width: 100%;
      background-image: linear-gradient(197deg, #fc8624 0%, #863d00 100%);
      padding: 30px 0;
      gap:20px;
    }
  }
  /* .banner-image{
    background-image: url(img/banner-img.webp); 
      background-size: cover;
      background-repeat: no-repeat;
      width: 100%;
     height: 600px;
    
  } */
  .bg-header{
    background-color: #fff;
  }
  .call-action{
    text-decoration: none;
    color: #ffffff;
  }
  .hero-section{
    background-image: url('../img/vidur.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.9;
    margin-top: 100px;
    padding-top: 80px;
  }
  .contact-section {
               
    padding: 40px 0;
}
.contact-box {
    background-color: #1f3b5a;
    color: #fff;
    padding: 20px;
    border-radius: 10px; 
}
.contact-box .form-control, .contact-box .form-select {
    background-color: #f5f9fc;
    border: none;
    margin-bottom: 10px;
}
.btn-submit {
    background-color: #ff6a00;
    border: none;
}
.btn-submit:hover {
    background-color: #e55d00;
}
.call-now {
    color: #ff6a00;
    font-weight: bold;
    font-size: 1.2em;
}
.call-action:hover{
    color: #f5f9fc;
  }

  .doctor-info {
    text-align: center;
}
.doctor-info img {
    /* border-radius: 50%; */
    height: 300px; 
}
.quick-links ul {
    padding-left: 0; 
    list-style-type: none;
    
}
.quick-links ul li {
    margin-bottom: 10px;
    color: white;
}
.contact-icons a img {
    width: 30px;
    margin-right: 10px;
}
footer {
    text-align: center;
    background-color: #e37a20;
    padding: 10px 0;
}

.footer-img{
   
    background-image: url("img/Vidur-2.png");
   
    background-size: cover;
    background-repeat: no-repeat;
}
.about-section {
    padding: 60px;
    text-align: center;
    background-image: linear-gradient(197deg, #FC8624 0%, #863D00 100%);
    color: white;
  }
  .footer-section-4 {
    height: 30px;
    padding-right: 10px;
}
.untitle-image{
  margin-top: 20px;
    height: 100px;
    border-radius: 10px;
}
.text-center.p-3.text-dark.footer-copyright {
    background-color: #e37a20;
}
a.text-white {
    text-decoration: none;
}
.footer-heading{
    font-size: 22px;
    font-weight: bolder;
}
h1.top-heading.mt-5.text-white {
    font-size: 35px;
}


img.rounded {
    height: 380px !important;
    max-width: 100% !important;
}

i.fas.fa-phone-alt.text-dark.me-2 {
  border: 1px solid white;
  border-radius: 50px;
  padding: 10px;
  background-color: white;
}
i.fas.fa-envelope.text-dark.me-2{
  border: 1px solid white;
  border-radius: 50px;
  padding: 10px;
  background-color: white;
}
a.text-light.me-4 {
  text-decoration: none;
}
.banner-content{
  font-size: 22px;
}

.footer-copyright{
  font-size: 20px;
  font-weight: 600;
}
/* Hover effect for service-item */
.service-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
}

/* Optionally change the background color of the content on hover */
.service-content {
  transition: background-color 0.3s ease;
}

.service-item:hover .service-content {
  background-color: #f0f8ff; /* Adjust this color as needed */
}

a.btn.btn-primary.rounded-pill.text-white.py-2.px-4.mb-2 {
  width: 100%;
  background-color: #e37a20;
  border: 1px solid #e37a20;
}

.drvidur{
  font-weight: 600;
text-decoration: none;
color: #e55d00;
}

.about-experience{
  font-size: 20px;
  /* font-weight: 900; */
}
.about-image{
  border-radius: 10px;
}

h3.display-3.mb-4 {
  font-size: 40px;
  font-weight: 500;
  color: #e55d00;
}
h3.sub-title.pe-3.mb-0.pt-4 {
  font-size: 35px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #777;
  margin-bottom: 2rem;
}

.card-icon {
  color: #007bff;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.card-text {
  color: #555;
}

.card:hover {
  transform: translateY(-10px);
  transition: transform 0.3s ease;
}
.card-icon.mb-3.why-choose-icon {
  color: #e37a20;
}

h3.display-3.mb-4.text-center {
  margin-top: 80px;
}
.testimonial-section{
  background-color: #fff2eb;
  padding-top: 2px;
  padding-bottom:20px;
}
.float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 210px;
  right: 10px;
  background-color: hsl(134, 70%, 49%);
  color: #FFF;
  border-radius: 10px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  /* margin-bottom: 10%; */
}

.float2 {
  position: fixed;
  width: 50px;
  height: 50px; 
  bottom: 270px;
  right: 10px;
  background-color: red;
  color: #FFF;
  border-radius: 10px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  /* margin-bottom: 10%; */
}

.float1 {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 150px;
  right: 10px;
  background-color: blue;
  color: #FFF;
  border-radius: 10px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  /* margin-bottom: 10%; */
}
.col-4.text-end {
    margin-left: -22px;
}
.metric {
  font-size: 2.5rem;
  color: #d4af37;
  font-weight: bold;
}
.subtext {
  
  font-weight:800;
  color: #fff;
} 
.consultation-text {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 40px;
}
.call-now {
  background-color: #35c9bd;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
}
.call-now:hover {
  background-color: #2aa596;
  color: #fff;
}
.icon {
  font-size: 1.5rem;
  color: #fff;
}
.increase-size{
  font-size: 30px;
}

 .main-card {
        background: radial-gradient(circle, rgba(252,134,36,1) 30%, rgba(134,61,0,1) 100%);
        color: #fff;
        padding: 30px;
        border-radius: 10px;
        text-align: left;
        height: 100%;
      }
      .main-card h3 {
        font-weight: bold;
        font-size: 1.5rem;
      }
      .main-card .btn {
        background-color: #333;
        color: #fff;
        font-weight: bold;
        border-radius: 5px;
        padding: 10px 20px;
      }
      .main-card .btn:hover {
        background-color: #555;
        color:white;
      }
      .feature-card {
        background-color: #e9ecef;
        padding: 20px;
        border-radius: 10px;
        height: 100%;
      }
      .feature-card h5 {
        color: #863d00;
        font-weight: bold;
        font-size: 1.1rem;
        margin-bottom: 10px;
      }
a.link-safed { 
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}
.opd-banner.bg-dark {
    border-radius: 10px;
} 
img.img-drvidur.img-fluid {
    height: 50px;
}
