  /* Card Design */
  .card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
  }

  .hospital-image img {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
  }

  .card-body {
    padding: 6px 10px;
  }

  .timing {
    font-size: 14px;
    color: #666;
  }

  h4 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
  }

  .rating {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
  }

  .da-star-rating {
    font-size: 18px;
    color: gold;
    margin-right: 5px;
  }

  .review-count {
    font-size: 14px;
    color: #4995d7;
    font-weight: bold;
  }

  .address {
    font-size: 14px;
    color: #444;
  }

  /* Services */
  .services {
    margin-top: 10px;
  }

  .tag {
    display: inline-block;
    background: #e0e7ff;
    color: #333;
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 15px;
    margin: 3px;
  }

  .tag.more {
    background: #ddd;
  }

  /* CTA Buttons */
  .cta-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
  }

  .visit-btn, .book-btn {
    flex: 1;
    padding: 10px;
    font-size: 14px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
  }

  .visit-btn {
    background: #4995d7;
    color: white;
    margin-right: 10px;
  }

  .book-btn {
    background: #2c3074;
    color: white;
  }
  .fsize {
    font-size: 13px !important;
    line-height: 23px;
    font-weight: 400;
}
.fsize.map{
padding-bottom: inherit;
}
a:hover {
	color: #ffffff
}
.visit-btn:hover{
background: #2c3074
}
.book-btn:hover{
background: #4995d7
}
p.fsize{
    margin: 0px;
}
p.fsize a{
  color: #575757;
}
p.fsize a:hover{
  color: #4995d7;
}
.card-header {
    background: #2c3074;
    color: white;
    font-weight: bold;
    text-align: left;
    padding: 10px 15px;
    margin-bottom: 10px;
}
.buttons {
  display: flex;
  justify-content: center; /* Center buttons horizontally */
  gap: 15px; /* Add space between buttons */
  margin-bottom: 20px; /* Add spacing between buttons and heading */
}


.custom-btn {
  background-color: #232C74; /* Default blue */
  color: white;
  border: none;
  border-radius: 25px; /* Rounded corners */
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.custom-btn:hover {
  background-color: #23c8de; /* Hover color */
}

.custom-btn:active {
  background-color: #1aa5b8; /* Slightly darker shade when clicked */
}

.active-btn {
  background-color: #23c8de !important;
  color: white !important;
}
.innerpage_content {
   
    padding: 30px;
}
@media (max-width: 768px) {
  .innerpage_content {
   
    padding: 15px;
}
}
.our_ser.main-title {
  font-size: 40px;
  font-weight: 500;
  color: #0d1b57; /* Dark blue */
  padding-bottom: 45px;
}
@media (max-width: 768px) {
  .our_ser.main-title {
    font-size: 30px;
    font-weight: 600;
    color: #0d1b57; /* Dark blue */
  }
}
.our_ser {
    font-size: 24px;
   
    color: #0d1b57; /* Dark blue */
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.custom-btn {
    background-color: #1b2677; /* Deep blue */
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 14px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.custom-btn:hover {
    background-color: #23c8de; /* Slightly darker on hover */
}

.state-btn {
    min-width: 120px;
}



.details.active {
    display: block;
}

@media (max-width: 768px) {
    .buttons {
        flex-wrap: wrap;
        gap: 10px;
    }

    .custom-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}
.vbox.card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.vbox .card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 5px; /* Adjust as needed */
}

.cta-buttons {
  margin-top: auto;
}

form {
  max-width: 500px;
  margin: auto;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

input, textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

input:focus, textarea:focus {
  border-color: #00c4ff;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 196, 255, 0.5);
}

button {
  width: 100%;
  background: #00c4ff;
  color: white;
  padding: 12px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #009acb;
}

.captcha {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.captcha input {
  width: 40%;
}

.contact-details {
  font-size: 16px;
  margin-top: 20px;
  color: #333;
}

.contact-details strong {
  font-weight: bold;
}
.row.clearfix.form_section{
background: #2c3074;
padding: 20px;
border-radius: 10px;
box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
}
@media (max-width: 768px) {
  .row.clearfix.form_section{
    background: #2c3074;
    padding: 0px;
    border-radius: 5px;
    box-shadow: none;
    }
}
.contact-section {
 
  color: #fff;  /* White text */
  font-size: 18px;
}

.contact-section h4 {
  font-weight: bold;
  
  margin-bottom: 10px;
}

.contact-section p {
  margin: 0;
  color: #ffffff;  /* Ensure text is visible */
}

.contact-section a {
  color: #00c4ff;  /* Highlight links */
  text-decoration: none;
  font-weight: bold;
}

.contact-section a:hover {
  text-decoration: underline;
}
.form-group input[type=submit].enquiry_fields{
  margin-top: 40px
}
.fsize h3{
  font-size: 28px !important;
  padding-bottom: 0px;
  padding-top: 15px;
}
h2 .pb-3{
  font-size: 32px
}
.pb-3{
  padding-bottom: 0px !important  ;
}

@media (max-width: 768px) {
  .che-head{
    font-size: 22px;
  }
}
#hiddenContent {
  display: none;
}
.read-more-btn {
  cursor: pointer;
  color: blue;
  border: none;
  background: none;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  color: #2c3074;
  padding: 0px;
  text-decoration: underline;
}
button:hover{
background: none;
}
.mark{
  margin-right: 8px !important;
}
.innerpage_content.fsize.padspace.top{
  padding-top: 70px !important;
}
.fsize svg{
  fill: #2c3074;
}
  .booking-text a:hover {
    color: #000;
  }