body {
  font-family: 'Inter', sans-serif;
}
.conditions_details_page {
    width: 100%;
  }
  .blog_breadcomb {
    color: black;
}
.bold_color {
  color: #0046ad;
}
.list {
    list-style: none;
    color: black;
    text-decoration: none;
}
  
  .bold {
    font-weight: 600;
  }
  .no_list{
    list-style: none;
  }
  .condition_main_hero {
    padding: 30px 0;
    background: linear-gradient(268.47deg, #1462F3 26.56%, #559AF3 100%);
    color: white;
  }
  
  .condition_hero_content {
    margin: 0 90px;
  }
  
  .condition_hero_content h1 {
    font-weight: 400;
  }
  
  .condition_breadcomb {
    color: white;
  }
  
  .margin_30px {
    margin-left: 30px;
  }
  .margin_50px {
    margin-left: 50px;
  }
  /* Second Hero Section */
  .conditions_second_hero_common {
    width: 100%;
    background-color: #EDEDED;
    padding: 30px 0;
  }
  
  .condition_second_hero_flexbox {
    padding: 20px 0;
    display: flex;
    width: 80%;
    margin: auto;
    justify-content: space-between;
  }
  
  .heading h1 {
    color: #004590;
    font-weight: 400;
    font-size: 24px;
  }
  
  .condition_second_hero_bottom {
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: center;
  }
  
  .links {
    list-style: none;
    text-decoration: none;
    margin: 10px;
  }
  
  /* Styles for the search box */
  .searchbox {
    display: flex;
    width: 400px;
    border: 1px solid #0B5DB1;
    border-radius: 5px;
    overflow: hidden;
  }
  
  
  .searchInput {
    flex: 1;
    padding: 10px;
    border: none;
    font-size: 14px;
    outline: none;
    color: #6c757d;
  }
  
  .searchInput::placeholder {
    color: #6c757d;
  }
  
  
  .searchButton {
    padding: 10px 20px;
    background-color: #0B5DB1;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 14px;
  }
  
  .searchButton:hover {
    background-color: #094a8a;
  }
  
  
  
  
  
  
  
  /* Main container for the page content */
  .conditions_main_content {
    display: flex;
    padding: 20px;
  }
  
  .condition_main_content_flexbox {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  
  /* Main content styles */
  .main_conditions_content {
    flex: 3;
    padding: 20px;
    border-radius: 8px;
  
  }
 
  .conditions_main_content img{
      width:100%;
      max-width:800px;
      margin-top:50px;
      margin-bottom:50px;
  }
  
  
  
  /* Image holder */
  .image_holder {
  overflow: hidden;
  border-radius: 30px;
  display: inline-block;  /* ensure radius applies */
  max-width: 800px;       /* optional: limit width */
  height: auto;
  position: relative;
}
  
  .image_holder img {
    width: 100%;
    max-width:800px;
    border-radius: 30px; /* ensure image corners match parent */
  transition: transform 0.3s ease-in-out;
  }
  
  .image_holder:hover img {
  transform: scale(1.05); /* scale inside box */
}
  
  /* Share section styling */
  .share_section {
    width: 100%;
    text-align: right;
    position: relative;
    margin: 5px 0;
    display: flex;
    align-items: center;
    float: right;
    justify-content: space-between;
  }
  
  .share_section span {
    margin-right: 10px;
    font-weight: 300;
  }
  
  .share_section i {
    margin: 10px;
    padding: 10px;
    background-color: darkblue;
    color: white;
    border-radius: 100px;
  }
  /*Share New style */
  .share_class {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  flex-direction: row;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.share_class span {
  white-space: nowrap;
  font-weight: 500;
  margin-right: 8px;
}

.share_class a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.share_class i {
  font-size: 18px;
  background-color: #001f7f;
  color: white;
  padding: 8px;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.share_class i:hover {
  background-color: #0046ad;
}

/* Mobile Optimization */
@media screen and (max-width: 576px) {
  .share_section {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .share_class {
    gap: 12px;
    overflow-x: auto;
  }

  .share_class i {
    padding: 10px;
    font-size: 20px;
  }
}

  
  /*Share New style end*/
  
  /* Main Content */
  .condition_content {
    width: 100%;
  }
  
  .condition_content_top h1 {
    font-size: 40px;
    font-weight: 500;
    color: darkblue;
  }
  
  .condition_content_top h2 {
    font-size: 30px;
    font-weight: 500;
    color: darkblue;
  }
  
  .condition_content_top p {
    margin-top: 10px;
    color: #6c757d;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 30px;
   
  }
  .condition_content_top li{
    margin-top: 10px;
    color: #6c757d;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 30px;
  }
  .condition_content_top h3{
    font-size: 30px;
    font-weight: 500;
    color: darkblue;
    margin-top: 20px;
  }
  
  /* Sidebar styles */
  
  .sidebar_content {
    flex: 1.3;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
  
  }
  
  .sidebar_heading h2 {
    font-size: 18px;
    border-bottom: 2px solid #0b5db1;
    padding-bottom: 10px;
    font-weight: 400;
    color: #004590
  }
  
  /* Tags section */
  .tags {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .tags li {
    background-color: #e9ecef;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 14px;
    color: #495057;
  }
  
  /* Recommended blogs section */
  .recommended_blogs {
    margin-top: 30px;
    padding: 10px;
    background-color: white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
    margin-bottom: 30px;
  }
  
  .recommended_blogs h2 {
    font-size: 18px;
    border-bottom: 2px solid #0b5db1;
    padding-bottom: 10px;
    font-weight: 400;
    color: #004590;
  }
  
  .blog_item {
    display: flex;
    align-items: center;
    margin-top: 15px;
  }
  
  .blog_item img {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    margin-right: 10px;
  }
  
  .blog_item p {
    font-size: 14px;
    color: #495057;
    margin: 0;
  }
  
  
/* Contact Section Fixed */
.conditions_contatc_details {
  padding: 40px 20px;
  position: -webkit-sticky;
  position: sticky;
  top: 210px;
  z-index: 100;
  background: url("/Images/Contact/contact.jpg") no-repeat center;
  background-size: cover;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: visible;
  max-width: 300px;
}



.conditions_contatc_details::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(158deg, rgba(7, 33, 105, 0.9) 45%, rgba(49, 161, 239, 0.9) 90%);
  border-radius: 16px;
  z-index: -1;
}

.conditions_contatc_details h2 {
  color: white;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.conditions_contatc_details h3 {
  color: white;
  font-size: 20px;
  margin: 0;
}

.calling_btn {
  border: none;
  padding: 14px 24px;
  text-transform: capitalize;
  border-radius: 50px;
  cursor: pointer;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  background: rgb(5, 172, 8);
  box-shadow: 0 8px 15px rgba(5, 172, 8, 0.3);
  margin-top: 20px;
  transition: all 0.3s ease;
}

.calling_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(5, 172, 8, 0.4);
}
  /* Recommended Blogs Main  */
  .recommended_blogs_main {
    padding: 50px 20px;
    width: 80%;
    margin: auto;
  }
  
  .recommended_blogs_main h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #004590;
    border-bottom: 3px solid #123456;
    display: inline-block;
    padding-bottom: 5px;
  }
  
  .blogs_container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  
  .blog_card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    width: 30%;
  
  }
  
  .blog_card:hover {
    transform: translateY(-5px);
  }
  
  .blog_card:hover .image_holde img {
    transform: scale(1);
    transition: all 0.3s ease-in-out;
  }
  
  .blog_image {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .blog_content {
    padding: 15px;
  }
  
  .blog_date {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }
  
  .blog_date i {
    margin-right: 5px;
  }
  
  .blog_content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
  }
  
  .read_more_btn {
    background-color: darkblue;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .read_more_btn:hover {
    background-color: #0056b3;
  }
  
  
  
  /* Show case Design  */
  .show_case {
    background: linear-gradient(90deg, #0046ad, #005fdb);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: #fff;
    position: relative;
    margin: 20px auto;
    max-width: 1200px;
    z-index: 1;
    margin-bottom: 20px;
  }
  
  .show_case::before {
    background-image: url('/Images/Conditions/dots.png');
    content: '';
    height: 170px;
    position: absolute;
    left: 3px;
    top: 12px;
    width: 360px;
    z-index: -1;
  }
  
  .show_case h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .show_case p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .appointment_btn,
  .call_btn {
    background-color: #fff;
    color: #0046ad;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .appointment_btn:hover,
  .call_btn:hover {
    background-color: #f0f0f0;
  }
  
  .call_btn {
    color: #0046ad;
  }
  
  
  
  /* Responsive styles */
  @media screen and (max-width: 1200px) {
    .condition_hero_content,
    .condition_second_hero_flexbox,
    .condition_main_content_flexbox,
    .recommended_blogs_main,
    .show_case {
      width: 90%;
      margin: auto;
    }
  }
  
  @media screen and (max-width: 992px) {
    .condition_main_content_flexbox {
      flex-direction: column;
      width: 100%;
    }
  
  
    .main_conditions_content,
    .sidebar_content {
      width: 100%;
    }
  
    .blogs_container {
      flex-direction: column;
      width: 100%;
    }
  
    .blog_card {
      width: 100%;
     
    }
    .show_case{
      margin-bottom: 50px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .condition_second_hero_flexbox {
      flex-direction: column;
      align-items: center;
    }
  
    .searchbox {
      width: 100%;
      margin-top: 20px;
    }
  
    .condition_second_hero_bottom {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .links {
      margin: 5px;
    }
  
    .buttons {
      flex-direction: column;
      align-items: center;
    }
  
    .appointment_btn,
    .call_btn {
      width: 100%;
      margin-bottom: 10px;
    }
  }
  
  @media screen and (max-width: 576px) {
    .condition_hero_content {
      margin: 0 20px;
    }
  
    .condition_content_top h1 {
      font-size: 28px;
    }
  
    .condition_content_top h2 {
      font-size: 24px;
    }
  
    .show_case h2 {
      font-size: 24px;
    }
  
    .show_case p {
      font-size: 16px;
    }
  
    .show_case::before {
      display: none;
    }
  }