*,
*::after,
*::before {
  box-sizing: inherit;
}
:root {
  --clr_primary: #ffffff;
  --clr_dark: #000000;
  --clr_secondary: #009cd4;
  --clr_text_dark_01: #01040c;
  --clr_text_dark_02: #0c2534;
  --clr_text_para_01: #666666;
  --clr_bg_blue_01: #00bfff;
  --clr_border_blue_01: #c4f0ff;
  --clr_border_grey_01: #dadada;

  /* btn */
  --clr_btn_primary: #009cd4;
  --clr_bg_gray_btn: #f3f3f3;
  --clr_dark_text_btn: #313131;

  /* font weight */
  --fw_regular: 400;
  --fw_medium: 500;
  --fw_semibold: 600;
  --fw_bold: 700;

  /* fn-family */
  --custom_fn_primary: "Merriweather", serif;
  --custom_fn_secondary: "TT Interfaces";
  --custom_fn_inter: "Inter", sans-serif;
}

.navbar-light .navbar-nav .active > .nav-link {
  color: #00aeed;
  position: relative;
}
/*.navbar-collapse ul li.active a:after{
 content: "";
 display: block;
 width: 100%;
 height: 2px;
 background: #00AEED;
 right: 0px;
 top: 37px;
 position: absolute;
}*/

/*...commonpart..*/
/*...commonpart..*/

/*...headertop..*/
/*.nav-space{display: flex;justify-content: space-between;}*/
/*.top-part{display: flex;}*/
.header-top {
  /* box-shadow: 0px 0px 15px 1px rgb(0 0 0 / 29%); */
  z-index: 100;
  background: transparent;
  position: absolute;
  width: 100%;
  top: 36px;
}
#site-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 0px;
  background-color: var(--clr_primary);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
#site-header.sticky .container {
  padding: 0;
}
.headnav {
  background: var(--clr_primary);
  border-radius: clamp(8px, 2vw, 16px);
}
.brand_logo img {
  width: 100%;
  max-width: 166px;
  height: 100%;
  object-fit: contain;
}
.navbar-collapse {
  justify-content: center;
}
.login ul {
  display: flex;
  /* gap: 50px; */
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 15px;
  font-weight: var(--fw_bold);
  font-family: var(--custom_fn_primary);
  padding: 0;
  color: var(--clr_dark) !important;
}

a.nav-link,
a.nav-link:after,
a.nav-link:before {
  transition: all .5s;
}
a.nav-link:hover {
  color: var(--clr_secondary) !important;
}
.log-item a::after{
display: none;
}
/* stroke */
.stroke ul li a{
  position: relative;
}
.stroke ul li a:after {
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: var(--clr_secondary);
  height: 3px;
  border-radius: 4px;
}
.stroke ul li a:hover:after {
  width: 100%;
}


.btn_text {
  padding-right: 10px;
}
.login ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.collapse.show {
  visibility: visible;
}
.navbar-collapse .login {
  display: none;
}
.navbar-toggler {
  padding: 6px;
}
.navbar-toggler-icon {
  width: 20px;
  height: 20px;
}
@media only screen and (max-width: 991px) {
  .navbar-toggler.open img {
    display: block;
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(49%) sepia(8%) saturate(12%)
      hue-rotate(5deg) brightness(100%) contrast(86%);
  }
  .navbar-toggler span {
    display: block;
  }
  .navbar-toggler img,
  .navbar-toggler.open span {
    display: none;
  }
  .navbar-toggler.open + .login {
    margin: 15px auto;
  }
  .navbar-collapse.show .login {
    display: block;
  }
  .navbar-collapse .navbar-nav {
    margin-block: 25px;
  }
  .navbar-collapse .login ul {
    margin: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .navbar .login {
    display: none;
  }
  .brand_logo img {
    width: 100%;
    max-width: 120px;
  }
}
/*..banner..*/
.banner_block {
  width: 100%;
  background: url("./../images/banner_bg.png") no-repeat center center;
  background-size: cover;
  position: relative;
  padding-block: clamp(100px, 4vw, 150px);
  z-index: 0;
}
.banner_block::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    269.87deg,
    rgba(255, 255, 255, 0) 28.68%,
    rgba(214, 231, 240, 0.94) 70.41%
  );
  left: 0;
  top: 0;
  z-index: -1;
}
.banner-middle {
  width: 100%;
}
.banner_head {
  margin-bottom: 10px;
}
.banner_head h1 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.2;
  color: var(--clr_text_dark_01);
  font-family: var(--custom_fn_primary);
  font-weight: var(--fw_regular);
}
.banner_detail p {
  font-family: var(--custom_fn_inter);
  font-weight: var(--fw_regular);
  font-size: 16px;
  line-height: 1.6;
  color: var(--clr_text_dark_01);
}
.bannerdata {
  position: relative;
  padding: 100px 30px 0 0px;
  max-width: 645px;
  height: 100%;
  margin-left: auto;
}
.content_chip {
  background-color: var(--clr_primary);
  border-radius: 14px;
  font-family: var(--custom_fn_secondary);
  font-weight: var(--fw_semibold);
  font-size: 15.31px;
  line-height: 0px;
  letter-spacing: 0%;
  padding: 14px;
  width: fit-content;
  text-align: center;
  color: var(--clr_dark);
}

img.img-backbanner {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.banner_btnset .contact_details {
  position: relative;
}
.contact_details::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  border: 1px solid var(--clr_dark);
  left: -16px;
  top: 0;
  opacity: 0.1;
}
.contact_details p,
.contact_details a {
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: var(--fw_bold);
  font-family: var(--custom_fn_secondary);
  color: var(--clr_text_dark_02);
}
.contact_details a.call_no {
  font-size: clamp(18px, 5vw, 24px);
  letter-spacing: 0.8px;
  font-weight: var(--fw_semibold);
}
/* Banner Carousel Styles */
.banner_block .carousel {
  width: 100%;
  height: 100%;
}

.banner_block .carousel-inner {
  width: 100%;
  height: 100%;
}

.banner_block .carousel-item {
  width: 100%;
  height: 100%;
}

/* Carousel Indicators */
.banner_block .carousel-indicators {
  bottom: -44px;
  margin-bottom: 0;
  z-index: 15;
}

.banner_block .carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid var(--clr_primary);
  margin: 0 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.banner_block .carousel-indicators .active {
  background-color: var(--clr_secondary);
  border-color: var(--clr_secondary);
  transform: scale(1.2);
}

/* Carousel Controls */
.banner_block .carousel-control-prev,
.banner_block .carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  border: 2px solid var(--clr_secondary);
  opacity: 0.8;
  transition: all 0.3s ease;
  z-index: 15;
}

.banner_block .carousel-control-prev:hover,
.banner_block .carousel-control-next:hover {
  opacity: 1;
  background-color: var(--clr_secondary);
}

.banner_block .carousel-control-prev {
  left: 30px;
}

.banner_block .carousel-control-next {
  right: 30px;
}

.banner_block .carousel-control-prev-icon,
.banner_block .carousel-control-next-icon {
  width: 20px;
  height: 20px;
  background-size: 100%, 100%;
}

.banner_block .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23009cd4' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='m5.25 0-.75.75 2.5 2.25-2.5 2.25.75.75 3.25-3z'/%3e%3c/svg%3e");
  transform: rotate(180deg);
  position: relative;
    left: 6px;
    top: -1px;
}

.banner_block .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23009cd4' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='m5.25 0-.75.75 2.5 2.25-2.5 2.25.75.75 3.25-3z'/%3e%3c/svg%3e");
  position: relative;
  left: -4px;
  top: 3px;
}

.banner_block .carousel-control-prev:hover .carousel-control-prev-icon,
.banner_block .carousel-control-next:hover .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='m5.25 0-.75.75 2.5 2.25-2.5 2.25.75.75 3.25-3z'/%3e%3c/svg%3e");
}

.banner_block .carousel-control-prev:hover .carousel-control-prev-icon {
  transform: rotate(180deg);
}

/* Fade transition for carousel */
.banner_block .carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

.banner_block .carousel-fade .carousel-item.active,
.banner_block .carousel-fade .carousel-item-next.carousel-item-left,
.banner_block .carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

.banner_block .carousel-fade .active.carousel-item-left,
.banner_block .carousel-fade .active.carousel-item-right {
  opacity: 0;
}

.banner_block .carousel-fade .carousel-item-next,
.banner_block .carousel-fade .carousel-item-prev,
.banner_block .carousel-fade .carousel-item.active,
.banner_block .carousel-fade .active.carousel-item-left,
.banner_block .carousel-fade .active.carousel-item-prev {
  transform: none;
}

/* Responsive adjustments for carousel controls */
@media (max-width: 768px) {
  .banner_block .carousel-control-prev,
  .banner_block .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  
  .banner_block .carousel-control-prev {
    left: 15px;
  }
  
  .banner_block .carousel-control-next {
    right: 15px;
  }
  
  .banner_block .carousel-indicators {
    bottom: 20px;
  }
  
  .banner_block .carousel-indicators li {
    width: 10px;
    height: 10px;
    margin: 0 3px;
  }
}

/* our team */
.our_team_blk {
  width: 100%;
}
.our_team_blk .team_container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(30px, 4vw, 80px);
}
.our_team_blk .team_container .left_img {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  border-radius: clamp(14px, 4vw, 26px);
  overflow: hidden;
  aspect-ratio: 1/2;
}
.our_team_blk .team_container .left_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.right_items h2 {
  font-size: clamp(30px, 5vw, 43px);
  line-height: 1.4;
  color: var(--clr_dark);
  font-family: var(--custom_fn_primary);
  font-weight: var(--fw_regular);
}
.details h3 {
  font-size: clamp(18px, 5vw, 24px);
  line-height: 1.4;
  color: var(--clr_secondary);
  font-family: var(--custom_fn_secondary);
  font-weight: var(--fw_bold);
}
.details p {
  font-family: var(--custom_fn_inter);
  font-weight: var(--fw_regular);
  font-size: 16px;
  line-height: 1.6;
  color: var(--clr_text_dark_01);
  border-bottom: 1px solid #0000003e;
  padding-block-end: clamp(16px, 4vw, 26px);
  margin-block-end: clamp(20px, 4vw, 36px);
}
.team_details p {
  font-family: var(--custom_fn_inter);
  font-weight: var(--fw_regular);
  font-size: 18px;
  line-height: 1.6;
  color: var(--clr_text_para_01);
}
/* consultation */
.our_consultation_blk {
  width: 100%;
  background: var(--clr_secondary);
}
.our_consultation_blk .consultation_container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(30px, 4vw, 80px);
}
.our_consultation_blk .consultation_container::after {
  content: "";
  position: absolute;
  right: 0;
  top: 12%;
  background: url("../images/Subtract.png") no-repeat center center;
  width: 100%;
  max-width: 420px;
  height: 100%;
  max-height: 442px;
  z-index: -1;
}
.bg_blue_chip {
  background: var(--clr_bg_blue_01);
  color: var(--clr_primary);
}
.consultation_container .left_items h2 {
  font-size: clamp(30px, 5vw, 43px);
  line-height: 1.4;
  color: var(--clr_primary);
  font-family: var(--custom_fn_primary);
  font-weight: var(--fw_regular);
  margin-block-start: 24px;
}
.consultation_details ul {
  padding-inline-start: 20px;
}
.consultation_details ul li {
  list-style: disc;
  font-family: var(--custom_fn_inter);
  font-weight: var(--fw_regular);
  font-size: 18px;
  line-height: 1.6;
  color: var(--clr_primary);
}
.consult_right_details {
  position: absolute;
  right: 50px;
  bottom: 0;
  width: 100%;
  max-width: 820px;
  height: 100%;
}
.consult_right_details .right_img {
  width: 100%;
  height: 100%;
}
.consult_right_details .right_img img {
  position: absolute;
  bottom: 0;
}
/* treat */
.our_treat_blk {
  width: 100%;
}
.our_treat_blk::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url("../images/treat_bg.png") no-repeat center center;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.treat_container .left_items h2 {
  font-size: clamp(36px, 5vw, 50px);
  line-height: 1.4;
  color: var(--clr_dark);
  font-family: var(--custom_fn_primary);
  font-weight: var(--fw_regular);
}
.treat_img img {
  width: 100%;
  max-width: 550px;
  height: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: clamp(20px, 4vw, 32px);
}
.img_card {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.img_card .item {
  background: var(--clr_primary);
  border: 1px solid var(--clr_border_grey_01);
  border-radius: 19px;
  padding: 22px 26px 26px;
  width: 208px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: space-between;
}
.img_card .item p {
  font-family: "DM Sans", sans-serif;
  font-weight: var(--fw_medium);
  font-size: 17.78px;
  line-height: 18.3px;
  letter-spacing: -1%;
  color: #575770;
}
.img_card .item h4 {
  font-family: "DM Sans", sans-serif;
  font-weight: var(--fw_medium);
  font-size: clamp(30px, 2vw, 46px);
  line-height: 18.3px;
  letter-spacing: 0%;
  color: #0173d0;
}
.img_card .item:last-child {
  width: 145px;
}
/* accordion */
.accordion {
  width: 100%;
  max-height: 500px;
  overflow-y: auto;
  padding-inline-end: 10px;
}
.accordion-item {
  background: #ffffffad;
  box-shadow: 1px 7px 12.1px -12px #00000040;
  border: 2px solid var(--clr_border_blue_01);
  border-radius: 23px;
  padding: clamp(20px, 4vw, 30px);
  margin-bottom: 15px;
}
.accordion-item:last-child {
  margin-bottom: 0;
}
.accordion-header {
  cursor: pointer;
}
.accordion-header div img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: all 0.2s ease-in-out;
}
.accordion-title span {
  color: #2b2b2b;
  font-family: var(--custom_fn_secondary);
  font-weight: var(--fw_semibold);
  font-size: 20px;
  line-height: 1.6;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.accordion-header.active div img.arrow {
  transform: rotate(180deg);
}
.accordion-content.open {
  /* set a big max-height or compute dynamically */
  max-height: 500px;
  padding: 0 !important;
}
.accordion-content p {
  color: var(--clr_dark);
  padding: 14px 0 0 !important;
  font-family: var(--custom_fn_semibold);
  font-size: 18px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
}
::-webkit-scrollbar {
  width: 12px; /* Mostly for vertical scrollbars */
  height: 12px; /* Mostly for horizontal scrollbars */
}
::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-track {
  /* Background */
  background: transparent;
}

/* service */
.our_service_blk {
  width: 100%;
  background: url("../images/servicebg.png") no-repeat center center;
  background-size: cover;
}
.our_service_blk .content_header {
  margin-inline: auto;
  max-width: 800px;
}
.service_content .content_header h2 {
  font-size: clamp(30px, 5vw, 43px);
  line-height: 1.4;
  color: var(--clr_dark);
  font-family: var(--custom_fn_primary);
  font-weight: var(--fw_regular);
  margin-block-start: 24px;
}
.bg_white_chip {
  background: var(--clr_primary) !important;
  color: var(--clr_dark) !important;
}
.service_grid {
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
}
.service_grid .s_item {
  box-shadow: 1px 7px 12.1px -12px #00000040;
  border-radius: 23px;
  background: #ffffffc5;
  padding: clamp(20px, 4vw, 41px);
  display: flex;
  flex-direction: column;
  gap: 38px;
  justify-content: space-between;
  transition: all 0.6s ease-in-out;
}
.service_grid .s_item:hover {
  transform: scale(1.06);
}
.service_grid .s_item img {
  width: 60px;
  height: 40px;
  object-fit: contain;
}
.service_grid .s_item p {
  font-family: var(--custom_fn_secondary);
  font-weight: var(--fw_semibold);
  font-size: 26px;
  line-height: 1.2;
  color: var(--clr_dark);
}
/*....stories..*/
.stories_blk {
  background: url("../images/stories_bg.png") no-repeat center center;
}

.bg_light_blue_chip {
  background: #e3f1fa;
}
.card_chip span {
  color: #777c86;
  font-family: var(--custom_fn_secondary);
  font-weight: var(--fw_regular);
  font-size: 11px;
  line-height: 1.2;
  padding: 7px 14px;
}
.card_chip span:first-child {
  background-color: #eef0f9;
  border-radius: 14px;
}
.story_card h3{
  color: #1D2E54;
  font-family: var(--custom_fn_secondary);
  font-weight: var(--fw_bold);
  font-size: 19px;
  line-height: 1.4;
  margin-block: 15px;
}
.story_card p{
  color: #4B4B4B;
  font-family: var(--custom_fn_inter);
  font-weight: var(--fw_regular);
  font-size: 13px;
  line-height: 1.4;
  margin-block-end: 15px;
}
/* get in touch */
.get_in_touch h2{
  color: var(--clr_dark);
  font-family: var(--custom_fn_primary);
  font-weight: var(--fw_regular);
  font-size: clamp(16px, 4vw, 23px);
  line-height: 1.4;
}
.get_in_touch h2 span{
  font-size: clamp(30px, 4vw, 55px);
}
.get_in_touch p{
  color: #707070;
  font-family: "DM Sans", sans-serif;;
  font-weight: var(--fw_regular);
  font-size: 18px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-block: 20px 0;
}
.add_icon img{
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(306deg) brightness(101%) contrast(105%);
}
.call_icon img{
  filter: brightness(0) saturate(100%) invert(59%) sepia(69%) saturate(5611%) hue-rotate(168deg) brightness(100%) contrast(101%);
}
.add_content h3{
  color: var(--clr_dark);
  font-family: var(--custom_fn_secondary);
  font-weight: var(--fw_medium);
  font-size: 24px;
  line-height: 1.4;
}
.add_content a{
  font-family: var(--custom_fn_secondary);
  font-weight: var(--fw_medium);
  font-size: 14px;
  text-decoration: underline !important;
  color: var(--clr_secondary);
}
.add_content a:hover{
  color: var(--clr_dark);
}
.add_content_para, .add_content_link{
  font-family: var(--custom_fn_secondary);
  font-weight: var(--fw_regular);
  font-size: 18px;
  line-height: 1.4;
  color: #707070;

}

/*...footer..*/

.footer_details {
  font-family: var(--custom_fn_secondary);
  font-weight: var(--fw_regular);
  font-size: 15x;
  line-height: 1.6;
  color: var(--clr_primary);
}
.input_box {
  font-size: 18px !important;
}
.input_box,
.input_box::placeholder {
  padding-bottom: 14px;
  font-family: var(--custom_fn_secondary);
  font-weight: var(--fw_regular);
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.6;
  color: var(--clr_primary);
}
.input_field button {
  border-radius: 50% !important;
}
.input_field button svg {
  transform: rotate(-45deg);
}
.input_field:hover button {
  transform: scale(1.04);
  background-color: var(--clr_primary);
}
.input_field:hover button svg {
  filter: invert(1);
}
.footer_col h3 {
  font-family: var(--custom_fn_secondary);
  font-weight: var(--fw_regular);
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff75;
  margin-block-end: 10px !important;
}
.col_link a {
  font-family: var(--custom_fn_secondary);
  font-weight: var(--fw_regular);
  font-size: 14x;
  line-height: 1.6;
  color: #467184;
  transition: 0.2s ease-in-out;
  position: relative;
}
.col_link a::after {
  content: "";
  position: absolute;
  left: -14px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #467184;
}
.col_link a:first-child::after {
  display: none;
}
.col_link a:hover {
  color: var(--clr_primary);
}
.footer_col ul li {
  margin-block: 12px;
}
.footer_col ul li a {
  font-family: var(--custom_fn_secondary);
  font-weight: var(--fw_regular);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.2px;
  color: var(--clr_primary);
  transition: 0.2s ease-in-out;
}
.footer_col ul li a:hover {
  color: #467184;
}
.social_icons li a {
  background: #daebff;
  border-radius: 50%;
  transition: 0.2s ease-in-out;
}
.social_icons li a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.social_icons li a:hover {
  background: var(--clr_primary);
}
.social_location a img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  margin-top: 2px;
}
.social_location a p {
  font-family: var(--custom_fn_secondary);
  font-weight: var(--fw_regular);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.2px;
  color: var(--clr_primary);
  transition: 0.2s ease-in-out;
}
.social_location a:hover p {
  color: #467184;
}

/*...footer..*/
@media only screen and (max-width: 1279px) {
  .consult_right_details {
    max-width: 680px;
  }
  .img_card .item {
    width: 180px;
  }
}
@media only screen and (max-width: 1199px) {
  .consult_right_details {
    max-width: 550px;
  }
  .our_consultation_blk .consultation_container::after {
    display: none;
  }
  .img_card .item {
    width: 150px;
  }
}

@media only screen and (max-width: 1023px) {
  .img_card {
    position: absolute;
    bottom: 20px;
    right: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    padding-inline: 15px;
  }
  .img_card .item {
    padding: 20px 14px;
  }
  .get_in_touch, .treat_container h2{
    text-align: center;
  }
}

@media only screen and (max-width: 991px) {
  .consult_right_details {
    position: relative;
    max-width: 550px;
    height: 400px;
    margin: 0 auto;
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .consult_right_details img {
    position: relative !important;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
  }
  .consultation_container .left_items {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 575px) {
  .consult_right_details {
    height: 300px;
  }
  .service_grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
}
@media only screen and (max-width: 479px) {
  .col_link {
    flex-direction: column;
  }
  .col_link a::after {
    display: none;
  }
}
@media only screen and (max-width: 375px) {
  .img_card {
    flex-direction: column;
    justify-content: flex-end;
    bottom: 15px;
  }
  .img_card .item {
    width: 100% !important;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--clr_secondary);
  color: var(--clr_primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 156, 212, 0.3);
}

.back-to-top:hover {
  background-color: var(--clr_primary);
  color: var(--clr_secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 156, 212, 0.4);
}

.back-to-top:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 156, 212, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease-in-out;
}

.back-to-top:hover svg {
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media only screen and (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .back-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
  
  .back-to-top svg {
    width: 18px;
    height: 18px;
  }
}