@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none !important;
}

:root {
  --theme-primary: #e58030;
  --theme-secondry: #09335b;
  --theme-title: #585858;
  --white: #fff;
}

body {
  font-family: "Inter", sans-serif;
}

.headernav {
  background: var(--theme-secondry);
}

.headernav li {
  color: #fff;
  padding: 10px;
}

.headernav .navright li a {
  color: #fff;
}

.headernav .navright li a:hover {
  color: var(--theme-primary);
}
.fixed-top {
  top: 45px !important;
}
.navbarheader.navbar-scroll {
  background-color: #fff; /* Set your desired background color */
}
.mainmenu {
  /* background: #000; */
}

.mainmenu ul li a {
  font-size: 17px;
  border-radius: 20px;
  font-weight: 600;
  padding: 6px 10px;
}

.mainmenu ul li a:hover {
  background-color: var(--theme-primary);
  color: #fff !important;
}

.btn-signup {
  background-color: var(--theme-secondry);
  color: var(--white);
}

.btn-signup:hover {
  background-color: var(--theme-primary);
  color: #fff;
}

.banner {
  background: rgb(255, 255, 255);
  background: linear-gradient(
    148deg,
    rgba(255, 255, 255, 1) 50%,
    rgba(224, 157, 104, 1) 100%
  );
  border-end-end-radius: 40px;
  padding-top: 150px;
}

.bannercontent {
  margin-top: 60px;
}

.bannercontent h1 {
  animation: fade-in 1s ease-in-out;
  color: var(--theme-secondry);
  font-weight: 700;

  font-size: 50px;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.bannercontent span.title_description2 {
  animation: fade-in 500ms ease-in-out;
  color: var(--theme-primary);
  font-size: 16px;
  text-align: left;
  font-weight: 550;
  display: block;
}

.bannercontent span.title_description {
  animation: fade-in 500ms ease-in-out;
  color: var(--theme-primary);
  font-size: 16px;
  text-align: right;
  padding-right: 8%;
  font-weight: 550;
  display: block;
}

.bannercontent h2 {
  animation: fade-in 500ms ease-in-out;
  margin-top: 30px;
  color: var(--theme-secondry);
  font-weight: 700;
  font-size: 24px;
  border: 1px solid#7eacda69;

  border-radius: 14px;
  padding: 5px 10px;
  display: inline-block;
  margin-bottom: 30px;
  margin-top: 60px;
}

.bannercontent h2 span {
  animation: fade-in 500ms ease-in-out;
  color: var(--theme-primary);
  font-weight: 700;
  font-size: 26px;
}

.bannercontent p {
  font-size: 14px;
}

.btn_callback {
  animation: fade-in 500ms ease-in-out;
  margin-top: 30px;
  display: inline-block;
  background: var(--theme-secondry);
  color: #fff;
  padding: 10px 30px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0px 4px 20px 0px #00000040;
}

.btn_callback:hover {
  background: rgb(229, 128, 48);
  color: #fff;
}

.btn_callback i {
  font-weight: 600;
  padding-left: 15px;
}

.bannerimg {
  animation: fade-in 1s ease-in-out;
  margin-top: 40px;
}

.whowearesection {
  margin-top: 40px;
  margin-bottom: 40px;
}

.whoweare {
  background: rgba(9, 51, 91, 0.03);
  padding: 40px 30px;
  border-radius: 40px;
}

.whoweare .whoweareimg img {
  border-radius: 40px;
}

.whowearecontent h3 {
  text-align: center;
  font-weight: 800;
  color: var(--theme-title);
}

.whowearecontent h3 span {
  color: var(--theme-primary);
}

.whowearecontent ul li {
  line-height: 35px;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  padding-left: 30px;
}

.whowearecontent ul li::before {
  content: "\F66B";
  font-family: "Bootstrap-icons";
  color: #555;
  /* Color of the bullet point */
  position: absolute;
  left: 0px;
  /* top: 50%; */
  /* transform: translateY(50%); */
}

.whychooseus {
  margin-top: 60px;
}

.whychooseus .whychooseustitle h4 {
  text-align: left;
  font-weight: 800;
  color: var(--theme-title);
  font-size: 35px;
  margin-bottom: 40px;
}

.whychooseus .whychooseustitle h4 span {
  color: var(--theme-primary);
}

.whychooseuscontent {
  border: 1px solid #585858;
  border-radius: 50px;
  padding: 25px 35px;
  margin-bottom: 40px;
  height: 205px;
}

/* Responsive Why Choose Us section */
@media (max-width: 992px) {
  .whychooseus .whychooseustitle h4 {
    font-size: 32px;
    margin-bottom: 35px;
  }

  .whychooseuscontent {
    height: 190px;
    padding: 20px 30px;
  }

  .whychooseuscontent .whychooseusheading {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .whychooseus {
    margin-top: 40px;
    padding: 0 15px;
  }

  .whychooseus .whychooseustitle h4 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
  }

  .whychooseuscontent {
    height: auto;
    min-height: 180px;
    padding: 18px 25px;
    margin-bottom: 25px;
    border-radius: 30px;
  }

  .whychooseuscontent .whychooseusheading {
    font-size: 18px;
    margin-left: 10px;
  }

  .whychooseuscontent .whychooseusimg img {
    width: 60px;
  }

  .whychooseuscontent .whychooseusimg1 img {
    width: 140px;
  }
}

@media (max-width: 576px) {
  .whychooseus .whychooseustitle h4 {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .whychooseuscontent {
    height: auto;
    min-height: 160px;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 25px;
  }

  .whychooseuscontent .whychooseusheading {
    font-size: 16px;
    margin-left: 8px;
  }

  .whychooseuscontent p {
    font-size: 13px;
    padding-top: 10px;
  }
}

@media (max-width: 480px) {
  .whychooseus .whychooseustitle h4 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .whychooseuscontent {
    height: auto;
    min-height: 140px;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 20px;
  }

  .whychooseuscontent .whychooseusheading {
    font-size: 14px;
    margin-left: 6px;
  }

  .whychooseuscontent p {
    font-size: 12px;
    padding-top: 8px;
  }

  .whychooseuscontent .whychooseusimg img {
    width: 50px;
  }

  .whychooseuscontent .whychooseusimg1 img {
    width: 120px;
  }
}

.whychooseuscontent p {
  font-size: 14px;
  padding-top: 15px;
  font-weight: 400;
}

.whychooseuscontent .whychooseusheading {
  font-size: 24px;
  margin-left: 15px;
  font-weight: 600;
}

.whychooseuscontent .whychooseusimg img {
  width: 75px;
}

.whychooseuscontent .whychooseusimg1 img {
  width: 170px;
}

.ourservices {
  margin-top: 50px;
}

.ourservicestitle h5 {
  text-align: center;
  color: var(--theme-primary);
  font-weight: 650;
  font-size: 35px;
}

.ourservicestitle span {
  color: var(--theme-secondry);
  font-size: 20px;

  font-weight: 700;
  text-align: center;
  display: block;
}

.ourservicecontent-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.ourservicecontent-link:hover {
  text-decoration: none;
  color: inherit;
}

.ourservicecontent {
  text-align: center;
  margin: 0px 50px;
  margin-bottom: 50px;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #dedede;
  box-shadow: 0px 0px 10px #dedede;
  transition: 0.8s;
  cursor: pointer;
}

.ourservicecontent:hover,
.ourservicecontent-link:hover .ourservicecontent {
  transform: scale(1.05);
  /* border: 1px solid #dedede;
    box-shadow: 0px 0px 10px #dedede; */
}

.ourservicecontent:hover .knowmore_btn,
.ourservicecontent-link:hover .knowmore_btn {
  color: var(--theme-primary);
}

.ourservicecontent p {
  font-size: 20px;
  font-weight: 600;
  padding-top: 15px;
  height: 75px;
}

.ourservicecontent .knowmore_btn {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  position: relative;
}
.ourservicecontent .knowmore_btn::after {
  position: absolute;
  font-family: "bootstrap-icons";
  /* font-weight: 900; */
  content: "\F135";
  top: -8px;
  font-size: 25px;
}

.contactbg {
  padding: 50px 0;
  background-size: cover !important;
}

.contactbg::before {
  content: "";
  background-color: #000;
}

.contactcontent {
  margin-top: 100px;
}
.contactcontent p {
  color: #fff;
  font-size: 5px;
  font-weight: 600;
  text-transform: capitalize;
}

.contactcontent h5 {
  color: #fff;
  font-size: 65px;
  font-weight: 600;
  text-transform: capitalize;
}

.contactcontent h5 span {
  color: var(--theme-primary);
  font-size: 65px;
  font-weight: 600;
  text-transform: capitalize;
}

.contactcontent p {
  color: #fff;
  font-weight: 400;
  font-size: 22px;
}

.contactform {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  margin: 0px 30px;
  margin-top: 60px;
}

.contactform h5 {
  font-size: 25px;
  font-weight: 600;
  font-family: sans-serif;
  color: var(--theme-secondry);
  margin-bottom: 30px;
}

.contactform label {
  display: block;
  margin-bottom: 10px;
}

.contactform .customform {
  border: none;
  width: 100%;
  border-bottom: 2px solid #c3c3c3;
  margin-bottom: 20px;
  background: transparent;
  padding: 8px 0;
  /* color: #f1f1f1; */
}

.contactform .customform:focus-visible {
  /* border: none !important; */
  outline: none;
  border-bottom: 2px solid var(--theme-primary);
  /* border-bottom: 2px solid #000; */
}

.contactform .customform::placeholder {
  color: #d2d0d0;
}

.contactform select.customform {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
  padding-right: 30px;
  cursor: pointer;
}

.contactform select.customform option {
  background: #fff;
  color: #333;
  padding: 8px;
}

.contactform .callback_btn {
  background: var(--theme-primary);
  color: #fff;
  padding: 10px 20px;
  border: none;

  width: 100%;
  border-radius: 20px;
  margin-bottom: 20px;
}

.contactform .callback_btn:hover {
  background-color: var(--theme-secondry);
  color: #fff;
}

.contactform .callback_btn:disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
}

.contactform .callback_btn.loading {
  position: relative;
  color: transparent;
}

.contactform .callback_btn.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid #fff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-success-message {
  background-color: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #c3e6cb;
  margin-bottom: 20px;
  text-align: center;
}

.form-error-message {
  background-color: #f8d7da;
  color: #721c24;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #f5c6cb;
  margin-bottom: 20px;
  text-align: center;
}

.callback-form-container .text-center {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 2px solid #28a745;
}

.callback-form-container .text-center p {
  color: #155724;
  font-weight: 600;
  margin-bottom: 15px;
}

.callback-form-container .text-center .btn {
  background-color: var(--theme-primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.callback-form-container .text-center .btn:hover {
  background-color: var(--theme-secondry);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.testimonials {
  margin-top: 50px;
  margin-bottom: 80px;
}

.testimonialstitle h6 {
  color: #000;
  font-size: 30px;
}

.testimonialslider .item {
  margin: 0 20px;
}

.testimonialslider .item img {
  width: 80px !important;
  height: 80px !important;
  border-radius: 50px;
  border: 1px solid #fff;
  box-shadow: 0 0 5px #b6b6b6;
  /* padding: 5px; */
}

.testimonialslider .item .designation {
  padding-left: 20px;
}

.testimonialslider .item .designation i {
  color: #dddddd;
  font-size: 35px;
}

.testimonialslider .item .designation p {
  font-size: 18px;
  font-weight: 600;
}

.testimonialslider {
  position: relative;
}

.testimonialslider .owl-nav {
  position: absolute;
  right: 0;
  top: -90px;
}

.testimonialslider .owl-nav .owl-prev,
.testimonialslider .owl-nav .owl-next {
  border: 1px solid #cdcdcd !important;
  width: 40px;
  height: 40px;
  font-size: 25px !important;
  border-radius: 20px;
}

.testimonialslider .owl-nav .owl-prev:hover,
.testimonialslider .owl-nav .owl-next:hover {
  background-color: var(--theme-primary);
  color: #fff;
}

.footer-one {
  background: var(--theme-secondry);
}

.footer-one .footer-top {
  margin: 0;
  padding: 45px 0 30px 0;
}

.footer-one .footer-bottom .copyright {
  border-top: 1px solid #e5e7eb;
  margin: 0;
  padding: 15px 0;
}

.footer-one .copyright-menu1 {
  margin-top: 30px;
}

.footer-one .copyright-menu .policy-menu li {
  display: inline;
  padding-left: 20px;
  padding-right: 20px;
  border-right: 2px solid #fff;
}

.footer-one .copyright-menu .socialmedia {
  margin-bottom: 20px;
  display: block;
}

.footer-one .copyright-menu .socialmedia li {
  display: inline;
  padding-left: 20px;
  padding-right: 20px;
  /* border-right: 2px solid #fff; */
}

.footer-one .copyright-menu .socialmedia li a {
  color: #fff;
  background-color: var(--theme-primary);
  padding: 10px 12px;
  border-radius: 20px;
}

.footer-one .copyright-menu .socialmedia li a:hover {
  color: #000;
}

.footer-one .copyright-menu .policy-menu li:last-child {
  border-right: none;
}

.footer-one .copyright-menu ul li a {
  color: #fff;
  font-size: 15px;
}

.footer-one .copyright-menu ul li a:hover {
  color: var(--theme-primary);
}

.footer.footer-one .footer-bottom .copyright .copyright-text p {
  color: #fff;
  font-size: 13px;
}

.footer-one .footer-bottom .copyright .policy-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
}

.footer-one .footer-bottom .copyright .policy-menu li {
  display: inline;
  margin-right: 25px;
  color: #fff;
  font-weight: 500;
}

.footer-one .footer-bottom .copyright .policy-menu li::after {
  font-size: 15px;
  color: #fff;
  content: "|";
  font-weight: 500;
  position: relative;
  left: 15px;
}

.footer-one .footer-bottom .copyright .policy-menu li:last-child::after {
  content: "";
}

.footer-one .footer-bottom .copyright .policy-menu li a {
  color: #fff;
}

/* about us section */
.mt-105 {
  margin-top: 105px;
}
.breadcrumb {
  background-color: #09335b;
  color: #fff;
  text-align: center;
  padding: 45px 0;
}
.aboutus {
  margin-top: 100px;
  margin-bottom: 20px;
}
.abtitle {
  text-align: center;
}
.abtitle p {
  font-size: 20px;
  font-size: 16px;
  margin-bottom: 0;
  color: #e58030;
  font-weight: 600;
}
.abtitle h1 {
  font-size: 40px;
  font-weight: 700;
}
.abtitle span {
  font-size: 16px;
}
.abcontent {
  box-shadow: 0 0 10px #dedede;
  padding: 60px 50px;
  border-radius: 30px 0px 0 30px;
  border-right: 5px solid #e27e26;
  margin-bottom: 40px;
  margin-top: 40px;
  height: 360px;
}
.abcontent img {
  margin-bottom: 20px;
}
.abcontent h2 {
  font-weight: 600;
}

.story {
  margin-top: 100px;
  margin-bottom: 80px;
}
.stitle {
  text-align: center;
}
.stitle p {
  font-size: 20px;
  font-size: 16px;
  margin-bottom: 0;
  color: #e58030;
  font-weight: 600;
}
.stitle h3 {
  font-size: 40px;
  font-weight: 700;
}
.scontent {
  text-align: center;
}

.mobile-float-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--theme-primary);
  color: #fff;
  -webkit-text-fill-color: #fff;
  border-radius: 12px;
  padding-inline: 20px;
  padding-block: 10px;
  font-size: 16px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 111111111111;
}
.hidev {
  visibility: hidden;
}

.content {
  max-height: 100px;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.content.expanded {
  max-height: none;
}

.toggle-btn {
  cursor: pointer;
  color: var(--theme-primary);
  /* text-decoration: underline; */
  background: none;
  border: none;
}

.ambulance_service {
  margin-top: 40px;
  margin-bottom: 40px;
  background-color: #09335b;
  padding: 40px 0;
  position: relative;
  z-index: -1;
}

.ambulance_service .ambulance_content h2 {
  color: #fff;
  font-weight: 600;
  font-size: 36px;
  margin-bottom: 25px;
  line-height: 1.3;
  padding: 0 15px;
}
.ambulance_service .ambulance_content p {
  color: #fff;
  padding: 10px 15px 15px 15px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 10px;
}
.ambulance_service .ambulance_content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.ambulance_service .ambulance_content ul li {
  position: relative;
  color: #fff;
  padding: 8px 15px 12px 35px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 12px;
}

.ambulance_service .ambulance_content ul li::before {
  content: "\F285";
  font-family: "Bootstrap-icons";
  color: var(--theme-primary);
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 14px;
  font-weight: 600;
}

.ambulance_service .ambulance_content ul li span {
  position: absolute;
  padding-left: 12px;
  padding-top: 8px;
  z-index: 1111;
  left: 0;
  top: 0;
}
.ambulance_service .ambulance_content span::before {
  content: url("../images/ambulance_vector.svg");
  position: absolute;
  /* background: url('../images/ambulance_vector.svg'); */
  width: 35px;
  height: 35px;
  left: 1px;
  z-index: -1;
}

/* Enhanced responsive ambulance service section */
@media (max-width: 1200px) {
  .ambulance_service .ambulance_content h2 {
    font-size: 34px;
  }

  .ambulance_service .ambulance_content p,
  .ambulance_service .ambulance_content ul li {
    font-size: 17px;
  }
}

@media (max-width: 992px) {
  .ambulance_service {
    margin-top: 35px;
    margin-bottom: 35px;
    padding: 35px 0;
  }

  .ambulance_service .ambulance_content h2 {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .ambulance_service .ambulance_content p,
  .ambulance_service .ambulance_content ul li {
    font-size: 16px;
    padding-bottom: 12px;
    padding-top: 6px;
  }

  .ambulance_service .ambulance_content ul li {
    padding-left: 40px;
  }
}

@media (max-width: 768px) {
  .ambulance_service {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 30px 0;
  }

  .ambulance_service .ambulance_content {
    text-align: left;
    padding: 0 15px;
  }

  .ambulance_service .ambulance_content h2 {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
  }

  .ambulance_service .ambulance_content p,
  .ambulance_service .ambulance_content ul li {
    font-size: 18px;
    padding-bottom: 15px;
    padding-top: 10px;
    text-align: left;
    line-height: 1.7;
  }

  .ambulance_service .ambulance_content ul li {
    padding-left: 35px;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .ambulance_service {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px 0;
  }

  .ambulance_service .ambulance_content {
    padding: 0 10px;
  }

  .ambulance_service .ambulance_content h2 {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
  }

  .ambulance_service .ambulance_content p,
  .ambulance_service .ambulance_content ul li {
    font-size: 16px;
    padding-bottom: 10px;
    padding-top: 8px;
    text-align: left;
    line-height: 1.6;
  }

  .ambulance_service .ambulance_content ul li {
    padding-left: 35px;
    margin-bottom: 12px;
  }

  .ambulance_service .ambulance_content span::before {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .ambulance_service {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px 0;
  }

  .ambulance_service .ambulance_content {
    padding: 0 3px;
  }

  .ambulance_service .ambulance_content h2 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .ambulance_service .ambulance_content p,
  .ambulance_service .ambulance_content ul li {
    font-size: 12px;
    padding-bottom: 2px;
    padding-top: 1px;
  }

  .ambulance_service .ambulance_content ul li {
    padding-left: 20px;
  }

  .ambulance_service .ambulance_content span::before {
    width: 16px;
    height: 16px;
  }
}

.servicessection {
  margin-top: 60px;
  padding: 20px 0;
}

/* Enhanced Service Image Styling - All service pages */
.servicesimg {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-bottom: 20px;
}

.servicesimg img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.servicesimg img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Medical Equipment Header Image Styling */
.servicesimg.medical_equ img {
  max-width: 85%;
  height: auto;
}

/* Responsive adjustments for all service images */
@media (max-width: 1200px) {
  .servicessection {
    margin-top: 50px;
  }

  .servicesimg img {
    max-width: 95%;
  }

  .servicesimg.medical_equ img {
    max-width: 80%;
  }
}

@media (max-width: 992px) {
  .servicessection {
    margin-top: 40px;
  }

  .servicesimg {
    padding: 15px;
    margin-bottom: 25px;
  }

  .servicesimg img {
    max-width: 90%;
    border-radius: 15px;
  }

  .servicesimg.medical_equ img {
    max-width: 70%;
  }
}

@media (max-width: 768px) {
  .servicessection {
    margin-top: 30px;
    padding: 15px 0;
  }

  .servicesimg {
    padding: 10px;
    margin-bottom: 20px;
  }

  .servicesimg img {
    max-width: 85%;
    border-radius: 12px;
  }

  .servicesimg.medical_equ img {
    max-width: 65%;
  }
}

@media (max-width: 576px) {
  .servicessection {
    margin-top: 10px;
    padding: 5px 0;
  }

  .servicesimg {
    padding: 0;
    margin-bottom: 5px;
  }

  .servicesimg img {
    max-width: 100%;
    width: 100%;
    border-radius: 8px;
  }

  .servicesimg.medical_equ img {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .servicessection {
    margin-top: 5px;
    padding: 2px 0;
  }

  .servicesimg {
    padding: 0;
    margin-bottom: 3px;
  }

  .servicesimg img {
    max-width: 100%;
    width: 100%;
    border-radius: 6px;
  }

  .servicesimg.medical_equ img {
    max-width: 100%;
    width: 100%;
  }
}
.weprovide {
  margin-top: 60px;
  margin-bottom: 40px;
}

/* Enhanced responsive weprovide section */
@media (max-width: 1200px) {
  .weprovide {
    margin-top: 55px;
    margin-bottom: 35px;
  }
}

@media (max-width: 992px) {
  .weprovide {
    margin-top: 50px;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .weprovide {
    margin-top: 40px;
    margin-bottom: 25px;
    padding: 0 15px;
  }
}

@media (max-width: 576px) {
  .weprovide {
    margin-top: 20px;
    margin-bottom: 15px;
    padding: 0 5px;
  }
}

@media (max-width: 480px) {
  .weprovide {
    margin-top: 15px;
    margin-bottom: 10px;
    padding: 0 3px;
  }
}

.servicessection .servicescontent .contenttitle {
  font-size: 16px;
  background: #09335b;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  margin-bottom: 15px;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.servicessection .servicescontent .subtitlecontent {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 600;
  color: #09335b;
  line-height: 1.2;
  margin-bottom: 20px;
}

.servicessection .servicescontent p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #444;
  font-weight: 400;
}

.servicessection .servicescontent ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.servicessection .servicescontent ul li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  font-weight: 400;
}

.servicessection .servicescontent ul li::before {
  content: "\F285";
  font-family: "Bootstrap-icons";
  color: var(--theme-primary);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 14px;
  font-weight: 600;
}

/* Enhanced responsive text styling for service content */
@media (max-width: 1200px) {
  .servicessection .servicescontent .contenttitle {
    font-size: 15px;
    padding: 7px 18px;
    margin-bottom: 12px;
  }

  .servicessection .servicescontent .subtitlecontent {
    font-size: 38px;
    margin-bottom: 18px;
  }

  .servicessection .servicescontent p {
    font-size: 15px;
    margin-bottom: 12px;
  }
}

@media (max-width: 992px) {
  .servicessection .servicescontent .contenttitle {
    font-size: 14px;
    padding: 6px 16px;
    margin-bottom: 10px;
  }

  .servicessection .servicescontent .subtitlecontent {
    font-size: 34px;
    margin-bottom: 15px;
  }

  .servicessection .servicescontent p {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .servicessection .servicescontent {
    padding: 0 15px;
  }

  .servicessection .servicescontent .contenttitle {
    font-size: 16px;
    padding: 8px 18px;
    margin-bottom: 12px;
  }

  .servicessection .servicescontent .subtitlecontent {
    font-size: 32px;
    margin-bottom: 18px;
    text-align: center;
  }

  .servicessection .servicescontent p {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: left;
    padding: 0 10px;
    line-height: 1.7;
  }

  .servicessection .servicescontent ul li {
    text-align: left;
    font-size: 18px;
    line-height: 1.7;
    padding-left: 35px;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .servicessection .servicescontent {
    padding: 0 10px;
  }

  .servicessection .servicescontent .contenttitle {
    font-size: 16px;
    padding: 8px 18px;
    margin-bottom: 12px;
  }

  .servicessection .servicescontent .subtitlecontent {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .servicessection .servicescontent p {
    font-size: 22px;
    margin-bottom: 18px;
    padding: 0 5px;
    line-height: 1.8;
    text-align: left;
    font-weight: 400;
  }

  .servicessection .servicescontent ul li {
    font-size: 20px;
    line-height: 1.7;
    padding-left: 35px;
    margin-bottom: 15px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .servicessection .servicescontent {
    padding: 0 8px;
  }

  .servicessection .servicescontent .contenttitle {
    font-size: 13px;
    padding: 5px 14px;
    margin-bottom: 6px;
  }

  .servicessection .servicescontent .subtitlecontent {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .servicessection .servicescontent p {
    font-size: 14px;
    margin-bottom: 6px;
    padding: 0 3px;
    line-height: 1.4;
  }
}

/* Enhanced Responsive services section */
@media (max-width: 1200px) {
  .servicessection .servicescontent .subtitlecontent {
    font-size: 38px;
  }

  .servicessection .servicescontent p {
    font-size: 15px;
    line-height: 1.6;
  }
}

@media (max-width: 992px) {
  .servicessection .servicescontent .subtitlecontent {
    font-size: 34px;
    margin-bottom: 15px;
  }

  .servicessection .servicescontent p {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .servicessection .servicescontent .callbackbtn {
    margin-top: 25px;
  }
}

@media (max-width: 768px) {
  .servicessection .servicescontent {
    padding: 0 10px;
  }

  .servicessection .servicescontent .subtitlecontent {
    font-size: 30px;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .servicessection .servicescontent p {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.5;
  }

  .servicessection .servicescontent .callbackbtn {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .servicessection .servicescontent {
    padding: 0 3px;
    text-align: center;
  }

  .servicessection .servicescontent .subtitlecontent {
    font-size: 24px;
    margin-bottom: 6px;
  }

  .servicessection .servicescontent p {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .servicessection .servicescontent .callbackbtn {
    margin-top: 12px;
    padding: 8px 16px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .servicessection .servicescontent {
    padding: 0 2px;
  }

  .servicessection .servicescontent .subtitlecontent {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .servicessection .servicescontent p {
    font-size: 11px;
    margin-bottom: 4px;
  }

  .servicessection .servicescontent .callbackbtn {
    margin-top: 8px;
    padding: 6px 12px;
    font-size: 11px;
  }
}
.servicessection .servicescontent .callbackbtn {
  background: #e58a43;
  color: #fff;
  padding: 10px 16px;
  border: none;
  text-transform: uppercase;
  border-radius: 40px;
  font-weight: 600;
  box-shadow: 0px 2px 6px #e58a43;
  margin-top: 30px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.servicessection .servicescontent .callbackbtn:hover {
  background: var(--theme-secondry);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0px 4px 8px rgba(229, 138, 67, 0.4);
}
.servicessection .servicescontent .callbackbtn i {
  margin-left: 10px;
  background: #ffffff45;
  border-radius: 13px;
  width: 22px;
  height: 22px;
  display: inline-block;
  margin-top: 2px;
}
.weprovide .we_provide_section_title {
  font-size: 27px;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  color: #09335b;
}

/* Enhanced responsive weprovide section title */
@media (max-width: 1200px) {
  .weprovide .we_provide_section_title {
    font-size: 25px;
    margin-bottom: 18px;
  }
}

@media (max-width: 992px) {
  .weprovide .we_provide_section_title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}

@media (max-width: 768px) {
  .weprovide .we_provide_section_title {
    font-size: 22px;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .weprovide .we_provide_section_title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .weprovide .we_provide_section_title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.weprovide .weprobox {
  background: #09335b;
  color: #fff;
  padding: 20px 25px;
  border-radius: 16px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(9, 51, 91, 0.1);
}

.weprovide .weprobox:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(9, 51, 91, 0.2);
}

.weprovide .weprobox .title {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
}
.weprovide .weprobox ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  line-height: 1.5;
  font-size: 14px;
}
.weprovide .weprobox ul li::before {
  content: "\F287";
  font-family: "Bootstrap-icons";
  position: absolute;
  font-size: 8px;
  left: 0;
  padding-top: 6px;
  color: #e58030;
}

.weprovide .weprobox p {
  margin-bottom: 12px;
  line-height: 1.5;
  font-size: 14px;
}

/* Enhanced responsive weprobox heights */
.weprovide .weproheight {
  min-height: 200px;
}
.weprovide .weproheight1 {
  min-height: 220px;
}
.weprovide .weproheight2 {
  min-height: 280px;
}

/* Responsive adjustments for weprobox */
@media (max-width: 1200px) {
  .weprovide .weprobox {
    padding: 18px 22px;
    margin-bottom: 22px;
  }

  .weprovide .weprobox .title {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .weprovide .weproheight {
    min-height: 190px;
  }
  .weprovide .weproheight1 {
    min-height: 210px;
  }
  .weprovide .weproheight2 {
    min-height: 270px;
  }
}

@media (max-width: 992px) {
  .weprovide .weprobox {
    padding: 16px 20px;
    margin-bottom: 20px;
  }

  .weprovide .weprobox .title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .weprovide .weprobox ul li,
  .weprovide .weprobox p {
    font-size: 13px;
  }

  .weprovide .weproheight {
    min-height: 180px;
  }
  .weprovide .weproheight1 {
    min-height: 200px;
  }
  .weprovide .weproheight2 {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .weprovide .weprobox {
    padding: 18px 20px;
    margin-bottom: 20px;
    border-radius: 12px;
  }

  .weprovide .weprobox .title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .weprovide .weprobox ul li,
  .weprovide .weprobox p {
    font-size: 14px;
    line-height: 1.5;
  }

  .weprovide .weprobox ul li {
    padding-left: 20px;
    margin-bottom: 8px;
  }

  .weprovide .weproheight,
  .weprovide .weproheight1,
  .weprovide .weproheight2 {
    min-height: auto;
    height: auto;
  }
}

@media (max-width: 576px) {
  .weprovide .weprobox {
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 10px;
  }

  .weprovide .weprobox .title {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .weprovide .weprobox ul li,
  .weprovide .weprobox p {
    font-size: 11px;
  }

  .weprovide .weprobox ul li {
    padding-left: 16px;
    margin-bottom: 4px;
  }
}

@media (max-width: 480px) {
  .weprovide .weprobox {
    padding: 10px 12px;
    margin-bottom: 12px;
  }

  .weprovide .weprobox .title {
    font-size: 13px;
    margin-bottom: 5px;
  }

  .weprovide .weprobox ul li,
  .weprovide .weprobox p {
    font-size: 10px;
  }

  .weprovide .weprobox ul li {
    padding-left: 14px;
    margin-bottom: 3px;
  }
}
/* .floatingmenu{
    
} */
.floatingmenu .fbtn {
  /* position: fixed; */
  position: absolute;
  top: 45%;
  left: -124px;
  transform: rotate(-90deg);
  background: #09335b;
  color: #fff;
  padding: 10px;
  border-radius: 12px 13px 0px 0px;
}
.sideform {
  position: fixed;
  top: 20%;
  /* right: 0; */
  right: -401px;
  background-color: #fff;
  padding: 25px 35px;
  border-radius: 15px;
  border: 1px solid #585858;
  transition: right 0.3s ease;
  z-index: 11;
}
.sideform .title {
  font-size: 24px;
  color: #09335b;
  font-weight: 600;
}
.sideform p {
  font-size: 12px;
}
.sideform .callbackbtn {
  background: #09335b;
  color: #fff;
  padding: 5px 10px;
  border-radius: 10px;
}
.icutop {
  margin-top: 40px !important;
}
.team_work {
  margin-top: 40px;
  margin-bottom: 40px;
}

.team_work .teamtitle {
  font-size: 36px;
  font-weight: 600;
  color: #09335b;
  margin-bottom: 25px;
  line-height: 1.3;
  padding: 0 15px;
  text-align: center;
}
.team_work .team_content ul li {
  position: relative;
  padding: 12px 15px 15px 35px;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 12px;
  font-weight: 400;
  color: #444;
}

/* Enhanced responsive team work text styling */
@media (max-width: 1200px) {
  .team_work .teamtitle {
    font-size: 34px;
    margin-bottom: 22px;
  }

  .team_work .team_content ul li {
    font-size: 17px;
    padding: 10px 12px 12px 32px;
    margin-bottom: 10px;
  }
}

@media (max-width: 992px) {
  .team_work .teamtitle {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .team_work .team_content ul li {
    font-size: 16px;
    padding: 8px 10px 10px 30px;
    margin-bottom: 8px;
  }
}

@media (max-width: 768px) {
  .team_work .teamtitle {
    font-size: 30px;
    margin-bottom: 22px;
    padding: 0 10px;
  }

  .team_work .team_content {
    padding: 0 10px;
  }

  .team_work .team_content ul li {
    font-size: 18px;
    padding: 10px 12px 15px 35px;
    margin-bottom: 15px;
    text-align: left;
    line-height: 1.7;
  }
}

@media (max-width: 576px) {
  .team_work .teamtitle {
    font-size: 20px;
    margin-bottom: 12px;
    padding: 0 8px;
  }

  .team_work .team_content {
    padding: 0 8px;
  }

  .team_work .team_content ul li {
    font-size: 13px;
    padding: 4px 6px 6px 22px;
    margin-bottom: 4px;
  }
}

@media (max-width: 480px) {
  .team_work .teamtitle {
    font-size: 18px;
    margin-bottom: 10px;
    padding: 0 6px;
  }

  .team_work .team_content {
    padding: 0 6px;
  }

  .team_work .team_content ul li {
    font-size: 12px;
    padding: 3px 4px 4px 18px;
    margin-bottom: 3px;
  }
}
.team_work .team_content ul li::before {
  content: "\F287";
  font-family: "Bootstrap-icons";
  color: #e27e27;
  position: absolute;
  left: 0px;
  /* top: 50%; */
  /* transform: translateY(50%); */
}

/* Enhanced responsive team_work section */
@media (max-width: 1200px) {
  .team_work .teamtitle {
    font-size: 34px;
  }

  .team_work .team_content ul li {
    font-size: 17px;
    padding-bottom: 22px;
  }
}

@media (max-width: 992px) {
  .team_work {
    margin-top: 35px;
    margin-bottom: 35px;
  }

  .team_work .teamtitle {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .team_work .team_content ul li {
    font-size: 16px;
    padding-bottom: 20px;
    padding-left: 28px;
  }
}

@media (max-width: 768px) {
  .team_work {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .team_work .teamtitle {
    font-size: 26px;
    margin-bottom: 15px;
    text-align: center;
  }

  .team_work .team_content {
    text-align: center;
    padding: 0 15px;
  }

  .team_work .team_content ul li {
    font-size: 15px;
    padding-bottom: 18px;
    padding-left: 25px;
  }
}

@media (max-width: 576px) {
  .team_work {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .team_work .teamtitle {
    font-size: 24px;
    margin-bottom: 15px;
    padding: 0 8px;
  }

  .team_work .team_content {
    padding: 0 10px;
  }

  .team_work .team_content ul li {
    font-size: 16px;
    padding: 8px 10px 12px 35px;
    margin-bottom: 12px;
    text-align: left;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .team_work {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .team_work .teamtitle {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .team_work .team_content {
    padding: 0 3px;
  }

  .team_work .team_content ul li {
    font-size: 12px;
    padding-bottom: 6px;
    padding-left: 15px;
  }
}

.team_work .team_step1 {
  padding: 40px 60px 0px 60px;
  position: relative;
}
.team_work .team_step1::before {
  content: "";
  position: absolute;
  background: url(../images/step1.svg);
  background-size: contain !important;
  background-repeat: no-repeat !important;
  width: 100%;
  height: 279px;
  left: 0;
  top: 0;
}
.team_work .team_step2 {
  padding: 40px 60px 0px 60px;
  position: relative;
}
.team_work .team_step2::before {
  content: "";
  position: absolute;
  background: url(../images/step2.svg);
  background-size: contain !important;
  background-repeat: no-repeat !important;
  width: 100%;
  height: 279px;
  left: 20px;
  top: -20px;
}
.team_work .team_step3 {
  padding: 40px 60px 0px 60px;
  position: relative;
}
.team_work .team_step3::before {
  content: "";
  position: absolute;
  background: url(../images/step3.svg);
  background-size: contain !important;
  background-repeat: no-repeat !important;
  width: 97%;
  height: 279px;
  left: 0px;
  top: 15px;
}

.team_work .team_step4 {
  padding: 40px 60px 0px 60px;
  position: relative;
}
.team_work .team_step4::before {
  content: "";
  position: absolute;
  background: url(../images/step4.svg);
  background-size: contain !important;
  background-repeat: no-repeat !important;
  width: 100%;
  height: 279px;
  left: 20px;
  top: 10px;
}
.team_work .team_step5 {
  padding: 0px 60px 0px 60px;
  position: relative;
}
.team_work .team_step5::before {
  content: "";
  position: absolute;
  background: url(../images/step5.svg);
  background-size: contain !important;
  background-repeat: no-repeat !important;
  width: 50px;
  height: 279px;
  left: 10px;
  top: 10px;
}
.team_work .team_steps p {
  font-size: 20px;
}
.our_equipment {
  margin-top: 60px;
}
.our_equipment .our_equipment_title {
  text-align: center;
  color: #e58030;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Responsive title adjustments */
@media (max-width: 992px) {
  .our_equipment .our_equipment_title {
    font-size: 36px;
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  .our_equipment .our_equipment_title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .our_equipment .our_equipment_title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .our_equipment .our_equipment_title {
    font-size: 24px;
    margin-bottom: 15px;
  }
}

.our_equipment .our_equipment_content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 20px #d5d5d5;
  padding: 10px 30px;
  margin: 0 60px;
  text-align: center;
  margin-top: 20px;
}
.our_equipment .our_equipment_content .product_title {
  font-weight: 600;
  color: #000;
  padding-top: 10px;
  text-transform: uppercase;
  font-size: 15px;
}
.our_equipment .our_equipment_content_href {
  text-align: center;
  padding-top: 10px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 20px;
}

/* Modern Equipment Card Styles - Compact Version */
.equipment_card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.equipment_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.equipment_card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--theme-primary),
    var(--theme-secondry)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.equipment_card:hover::before {
  transform: scaleX(1);
}

.equipment_image {
  padding: 25px 20px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.equipment_image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(229, 128, 48, 0.03) 0%,
    rgba(9, 51, 91, 0.03) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.equipment_card:hover .equipment_image::after {
  opacity: 1;
}

.equipment_image img {
  max-height: 180px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.equipment_card:hover .equipment_image img {
  transform: scale(1.03);
}

.equipment_content {
  padding: 12px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.equipment_title {
  font-size: 16px;
  font-weight: 700;
  color: var(--theme-secondry);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.2;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.equipment_card:hover .equipment_title {
  color: var(--theme-primary);
}

.equipment_description {
  font-size: 13px;
  color: #666;
  line-height: 1.2;
  margin-bottom: 0;
  flex-grow: 1;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.equipment_action {
  margin-top: -5px;
}

.know_more_btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--theme-primary), #f39c5a);
  color: #fff;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(229, 128, 48, 0.25);
  position: relative;
  overflow: hidden;
  width: fit-content;
}

.know_more_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.4s ease;
}

.equipment_card:hover .know_more_btn::before {
  left: 100%;
}

.know_more_btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
  font-size: 13px;
}

.equipment_card:hover .know_more_btn {
  background: linear-gradient(135deg, var(--theme-secondry), #1a4a73);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(9, 51, 91, 0.3);
}

.equipment_card:hover .know_more_btn i {
  transform: translateX(2px);
}

/* Responsive adjustments for equipment cards */
@media (max-width: 992px) {
  .equipment_card {
    margin-bottom: 15px;
  }

  .equipment_image {
    padding: 18px 12px 12px;
  }

  .equipment_image img {
    max-height: 120px;
  }

  .equipment_content {
    padding: 15px;
  }

  .equipment_title {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .equipment_description {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .know_more_btn {
    padding: 8px 14px;
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .equipment_card {
    margin-bottom: 15px;
  }

  .equipment_image {
    padding: 15px 10px 10px;
  }

  .equipment_image img {
    max-height: 100px;
  }

  .equipment_content {
    padding: 12px;
  }

  .equipment_title {
    font-size: 14px;
    margin-bottom: 5px;
    -webkit-line-clamp: 1;
  }

  .equipment_description {
    font-size: 11px;
    margin-bottom: 10px;
    -webkit-line-clamp: 1;
  }

  .know_more_btn {
    padding: 9px 15px;
    font-size: 11px;
  }

  .know_more_btn i {
    margin-left: 6px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .our_equipment .our_equipment_title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .equipment_card {
    margin-bottom: 12px;
  }

  .equipment_image {
    padding: 12px 8px 8px;
  }

  .equipment_image img {
    max-height: 60px;
  }

  .equipment_content {
    padding: 10px;
  }

  .equipment_title {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .equipment_description {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .know_more_btn {
    padding: 6px 10px;
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .equipment_image img {
    max-height: 50px;
  }

  .equipment_title {
    font-size: 12px;
  }

  .equipment_description {
    display: none;
  }

  .equipment_content {
    padding: 8px;
  }
}
.mt-100 {
  margin-top: 100px;
}
.breadcrumb {
  background: #09335b;
}
.breadcrumb .breadcrumb-title {
  font-size: 25px;
  font-weight: 600;
}

.our_team {
  margin-top: 40px;
  margin-bottom: 40px;
}
.our_team .our_team_title {
  font-size: 16px;
  text-align: center;
  color: #e58030;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 25px;
}

.our_team .our_team_para {
  font-size: 35px;
  text-align: center;
  font-weight: 600;
}

.our_team .our_team_content {
  text-align: center;
  margin: 30px 100px;
}
.our_team .our_team_content .profile {
  background: #fff;
  padding: 20px 50px;
  border-radius: 50%;
  box-shadow: 0 0 10px #f1f1f1;
}
.our_team .our_team_content .profile img {
  width: 100%;
}
.our_team .our_team_description .profile_title {
  color: #09335b;
  font-weight: 600;
  font-size: 18px;
  padding-top: 10px;
}
.our_team .our_team_description .designation {
  color: #116cc3;
  font-size: 15px;
  margin-top: 1px;
  margin-bottom: 6px;
}
.our_team .our_team_description .designation p {
  font-size: 12px;
}
.our_team .our_team_description .btn_know {
  margin-top: 15px;
  background: #09335b;
  color: #fff;
  padding: 5px 10px;
  border-radius: 16px;
}

/* Enhanced Mobile Menu Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Mobile Menu Enhancements */
.offcanvas {
  transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transform: translateX(-100%);
  visibility: hidden;
}

.offcanvas.show {
  transform: translateX(0);
  visibility: visible;
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease-in-out;
}

.offcanvas .nav-item {
  opacity: 0;
  transform: translateX(-30px);
}

.offcanvas.show .nav-item {
  animation: slideInLeft 0.3s ease-out forwards;
}

/* Prevent body scroll when menu is open */
body.offcanvas-open {
  overflow: hidden;
}

/* Enhanced navbar toggler */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  background: rgba(9, 51, 91, 0.1);
}

.navbar-toggler i {
  transition: transform 0.3s ease;
  font-size: 1.5rem;
  color: var(--theme-secondry);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(229, 128, 48, 0.3);
  outline: none;
}

/* Improved offcanvas styling */
.offcanvas-header {
  background: linear-gradient(
    135deg,
    var(--theme-secondry),
    var(--theme-primary)
  );
  color: white;
  border-bottom: none;
}

.offcanvas-title {
  font-weight: 700;
  font-size: 1.2rem;
}

.btn-close {
  filter: invert(1);
  opacity: 0.8;
}

.btn-close:hover {
  opacity: 1;
}

.offcanvas-body {
  padding: 1.5rem 0;
}

.offcanvas .nav-link {
  padding: 1rem 1.5rem;
  border-radius: 0;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.offcanvas .nav-link:hover {
  background: rgba(9, 51, 91, 0.1);
  border-left-color: var(--theme-primary);
  transform: translateX(5px);
}

.offcanvas .nav-link.active {
  background: rgba(229, 128, 48, 0.1);
  color: var(--theme-primary);
  border-left-color: var(--theme-primary);
  font-weight: 600;
}

.offcanvas .nav-link i {
  width: 20px;
  text-align: center;
}

/* Mobile call button in offcanvas */
.offcanvas .btn-signup {
  background: linear-gradient(
    135deg,
    var(--theme-primary),
    var(--theme-secondry)
  );
  border: none;
  padding: 1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.offcanvas .btn-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 128, 48, 0.3);
}

@media screen and (max-width: 768px) {
  .mobile-float-button {
    display: block;
  }
}

@media (max-width: 580px) {
  .servicessection {
    margin-top: 115px;
  }
  .fixed-top {
    top: 0px !important;
  }
  .banner {
    padding-top: 75px;
  }
  .ourservicecontent .knowmore_btn {
    font-size: 11px;
    /* color: #000;
        font-weight: 500; */
  }

  .mobile-float-button {
    display: block;
  }
  .whowearecontent ul li {
    font-size: 15px;
    line-height: 25px;
  }
  .contactcontent h5 {
    font-size: 29px !important;
  }
  .contactcontent h5 span {
    font-size: 29px !important;
  }

  .whychooseuscontent p {
    font-size: 14px;
    padding-top: 5px;
    font-weight: 400;
  }
  .bannercontent h1 {
    animation: fade-in 1s ease-in-out;
    color: var(--theme-secondry);
    font-weight: 700;
    font-size: 33px;
  }
  .whowearecontent h3 {
    text-align: center;
    font-weight: 800;
    color: var(--theme-title);
    margin-bottom: 10px;
  }
  .abcontent {
    box-shadow: 0 0 10px #dedede;
    padding: 50px 50px;
    border-radius: 30px 0px 0 30px;
    border-right: 5px solid #e27e26;
    margin-bottom: 10px;
    margin-top: 40px;
    height: 340px;
  }

  .nav-pills .nav-link.active,
  .nav-pills .show > .nav-link {
    background-color: var(--theme-primary);
    color: #fff;
  }
  .nav-pills .nav-link:hover,
  .nav-pills .show > .nav-link {
    background-color: var(--theme-primary);
    color: #fff !important;
  }
  .navbar-toggler {
    /* background-color: #000; */
    position: absolute;
    left: 25px;
  }
  .navbar-toggler i {
    font-size: 25px;
  }
  .offcanvas {
    width: 300px !important;
  }
  .offcanvas ul li {
    margin-bottom: 10px;
  }
  .downsideusermenu {
    position: absolute;
    bottom: 15px;
    border-top: 1px solid #000;
    left: 0;
    right: 0;
    padding: 10px 0 0px 10px;
  }
  .downsideusermenu a p {
    color: #000;
    font-weight: 600;
    padding-top: 10px;
  }
  .downsideusermenu a i {
    float: right;
    text-align: right;
    right: 24px;
    position: absolute;
    font-size: 21px;
    color: #000;
  }
  /* .offcanvas-form.show {
        transform: translateX(0);
      } */
  /* .offcanvas, .offcanvas-lg, .offcanvas-md, .offcanvas-sm, .offcanvas-xl, .offcanvas-xxl {
        --bs-offcanvas-zindex: 1045;
        --bs-offcanvas-width: 415px;

      } */
  .logo img {
    width: 140px;
  }
  .bannercontent {
    margin-top: 40px;
  }
  .bannercontent span.title_description2 {
    animation: fade-in 500ms ease-in-out;
    color: var(--theme-primary);
    font-size: 18px;
    text-align: left;
    font-weight: 550;
    display: block;
  }

  .btn_callback {
    animation: fade-in 500ms ease-in-out;
    margin-top: 25px;
    display: inline-block;
    background: var(--theme-secondry);
    color: #fff;
    padding: 10px 30px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0px 4px 20px 0px #00000040;
  }
  .bannercontent h2 {
    animation: fade-in 500ms ease-in-out;
    margin-top: 30px;
    color: var(--theme-secondry);
    font-weight: 500;
    font-size: 18px;
    border: 1px solid#7eacda69;
    border-radius: 14px;
    padding: 5px 10px;
    display: inline-block;
    margin-bottom: 10px;
    margin-top: 25px;
  }
  .bannercontent h2 span {
    animation: fade-in 500ms ease-in-out;
    color: var(--theme-primary);
    font-weight: 500;
    font-size: 18px;
  }
  .bannercontent h1 {
    animation: fade-in 1s ease-in-out;
    color: var(--theme-secondry);
    font-weight: 700;
    font-size: 36px;
  }
  .bannercontent span.title_description {
    animation: fade-in 500ms ease-in-out;
    color: var(--theme-primary);
    font-size: 16px;
    text-align: left;
    /* padding-right: 8%; */
    font-weight: 550;
    display: block;
  }
  .whowearesection {
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .whychooseus .whychooseustitle h4 {
    text-align: left;
    font-weight: 800;
    color: var(--theme-title);
    font-size: 25px;
    margin-bottom: 30px;
  }
  .whychooseuscontent {
    height: 235px;
  }
  .whychooseuscontent .whychooseusimg img {
    width: 70px;
  }
  .whychooseuscontent .whychooseusheading {
    font-size: 20px;
    margin-left: 12px;
    font-weight: 600;
  }
  .contactform {
    box-shadow: 0 0 10px #e2e2e2;
    margin-top: 20px;
    margin: 0px 10px;
  }
  .contactcontent h5 {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    text-transform: capitalize;
  }
  .contactcontent h5 span {
    color: var(--theme-primary);
    font-size: 40px;
    font-weight: 600;
    text-transform: capitalize;
  }
  .contactcontent p {
    color: #fff;
    font-size: 15px;
  }
  .contactcontent {
    margin-top: 0;
  }
  .testimonialstitle h6 {
    color: #000;
    font-size: 27px;
  }
  .testimonialslider .owl-nav {
    position: absolute;
    right: 0;
    top: -120px;
  }
  .ourservicecontent {
    text-align: center;
    margin: 0;
    margin-bottom: 50px;
    padding: 10px;
    border-radius: 20px;
  }
  .ourservicecontent p {
    font-size: 14px;
    font-weight: 600;
    padding-top: 15px;
    height: 50px;
  }
  .ourservicecontent img {
    width: 45px;
  }
  .ourservicestitle h5 {
    text-align: center;
    color: var(--theme-primary);
    font-weight: 650;
    font-size: 29px;
  }
  .ourservicestitle span {
    color: var(--theme-secondry);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    display: block;
  }
  .ourservicecontent .knowmore_btn::after {
    position: absolute;
    font-family: "bootstrap-icons";
    /* font-weight: 900; */
    content: "\F135";
    top: -8px;
    font-size: 20px;
  }
  .footer-one .copyright-menu .policy-menu li {
    display: inline;
    padding-left: 10px;
    padding-right: 10px;
    border-right: 2px solid #fff;
    line-height: 33px;
  }
  .servicessection .servicescontent .subtitlecontent {
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 600;
    color: #09335b;
  }
  .servicessection .servicescontent .contenttitle {
    margin-top: 25px;
  }
  .servicessection .servicescontent .callbackbtn {
    margin-top: 20px;
  }
  .ambulance_service .ambulance_content h2 {
    color: #fff;
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 20px;
  }
  .ambulance_service .ambulance_content p {
    color: #fff;
    padding-bottom: 0px;
    padding-top: 10px;
    font-size: 14px;
    font-weight: 500;
  }
  .ambulance_service .ambulance_content span::before {
    content: url(../images/ambulance_vector.svg);
    position: absolute;
    /* background: url(../images/ambulance_vector.svg); */
    width: 20px;
    height: 20px;
    left: -1px;
    z-index: -1;
    top: 9px;
  }
  .ambulance_service .ambulance_content span {
    position: relative;
    padding-left: 15px;
    padding-top: 20px;
    padding-right: 20px;
    z-index: 1111;
  }
  .team_work .teamtitle {
    font-size: 25px;
    font-weight: 600;
    color: #09335b;
    margin-bottom: 15px;
  }
  .team_work .team_content ul li {
    position: relative;
    padding-left: 30px;
    font-size: 15px;
    padding-bottom: 10px;
    margin-top: 15px;
  }
  .our_equipment .our_equipment_title {
    text-align: center;
    color: #e58030;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 18px;
  }
  .our_team .our_team_para {
    font-size: 24px;
    text-align: center;
    font-weight: 600;
  }
  .mobile_setps ul li {
    padding-left: 35px;
    position: relative;
    padding-bottom: 20px;
    padding-top: 15px;
  }
  .mobile_setps ul li span {
    position: absolute;
    left: 5px;
    color: #fff;
    font-weight: 600;
    margin-top: 6px;
  }
  .mobile_setps ul li span::before {
    content: "";
    position: absolute;
    background: url(../images/ambulance_vector.svg);
    width: 40px;
    height: 40px;
    left: -15px;
    z-index: -1;
    top: -8px;
  }
}

/* Enhanced responsive image styling for all service pages */
.servicesimg img,
.ambulance_img img,
.team_img img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Responsive adjustments for service images */
@media (max-width: 992px) {
  .servicesimg img {
    max-width: 90%;
    margin: 0 auto;
    display: block;
  }

  .ambulance_img img,
  .team_img img {
    max-width: 85%;
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 768px) {
  .servicesimg img {
    max-width: 80%;
    margin: 20px auto;
    display: block;
  }

  .ambulance_img img,
  .team_img img {
    max-width: 75%;
    margin: 15px auto;
    display: block;
  }

  .servicessection .servicescontent {
    text-align: center;
    margin-top: 20px;
  }

  .ambulance_service .ambulance_content,
  .team_work .team_content {
    text-align: center;
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .servicesimg img {
    max-width: 100%;
    width: 100%;
    margin: 5px auto;
    display: block;
  }

  .ambulance_img img,
  .team_img img {
    max-width: 100%;
    width: 100%;
    margin: 5px auto;
    display: block;
  }

  .servicessection .servicescontent .callbackbtn {
    margin-top: 30px;
    width: 100%;
    text-align: center;
    display: block;
  }
}

@media (max-width: 480px) {
  .servicesimg img {
    max-width: 100%;
    width: 100%;
  }

  .ambulance_img img,
  .team_img img {
    max-width: 100%;
    width: 100%;
  }
}

/* Enhanced callback button responsiveness */
.servicessection .servicescontent .callbackbtn {
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .servicessection .servicescontent .callbackbtn {
    margin-top: 25px;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 25px;
  }
}

@media (max-width: 576px) {
  .servicessection .servicescontent .callbackbtn {
    margin-top: 20px;
    padding: 10px 16px;
    font-size: 13px;
    width: auto;
    display: inline-block;
  }
}

/* Enhanced responsive layout for service content */
@media (max-width: 768px) {
  .servicessection .container {
    padding: 0 10px;
  }

  .ambulance_service .container,
  .team_work .container,
  .weprovide .container {
    padding: 0 10px;
  }
}

/* Better spacing for mobile service sections */
@media (max-width: 576px) {
  .servicessection .container {
    padding: 0 2px;
  }

  .ambulance_service {
    padding: 8px 0;
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .ambulance_service .container,
  .team_work .container,
  .weprovide .container {
    padding: 0 2px;
  }

  .team_work {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .weprovide {
    margin-top: 10px;
    margin-bottom: 8px;
  }

  .weprovide .we_provide_section_title {
    font-size: 16px;
    text-align: center;
    margin-bottom: 4px;
  }
}

@media (max-width: 480px) {
  .servicessection .container {
    padding: 0 1px;
  }

  .ambulance_service {
    padding: 5px 0;
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .ambulance_service .container,
  .team_work .container,
  .weprovide .container {
    padding: 0 1px;
  }

  .team_work {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .weprovide {
    margin-top: 8px;
    margin-bottom: 5px;
  }

  .weprovide .we_provide_section_title {
    font-size: 14px;
    margin-bottom: 3px;
  }
}

/* Optimized mobile spacing with proper navbar clearance */
@media (max-width: 576px) {
  .servicessection {
    margin-top: 80px;
    padding: 15px 0;
  }

  .servicessection .container {
    padding: 0 10px;
    margin: 0;
  }

  .servicessection .row {
    margin: 0 -5px;
  }

  .servicessection .col-lg-6,
  .servicessection .col-12 {
    padding: 0 5px;
  }

  .ambulance_service {
    padding: 15px 0;
    margin: 15px 0;
  }

  .ambulance_service .container,
  .team_work .container,
  .weprovide .container {
    padding: 0 10px;
    margin: 0;
  }

  .ambulance_service .row,
  .team_work .row,
  .weprovide .row {
    margin: 0 -5px;
  }

  .team_work {
    margin: 15px 0;
    padding: 15px 0;
  }

  .weprovide {
    margin: 15px 0;
    padding: 15px 0;
  }

  .weprovide .we_provide_section_title {
    font-size: 18px;
    margin: 0 0 10px 0;
    padding: 10px 0;
  }

  .weprovide .weprobox {
    padding: 12px;
    margin-bottom: 12px;
  }

  .servicessection .servicescontent {
    padding: 10px;
    margin: 0;
  }

  .servicessection .servicescontent .subtitlecontent {
    font-size: 22px;
    margin: 0 0 8px 0;
  }

  .servicessection .servicescontent p {
    font-size: 13px;
    margin: 0 0 8px 0;
    padding: 0;
  }

  .servicessection .servicescontent .contenttitle {
    margin: 0 0 8px 0;
  }

  .servicessection .servicescontent .callbackbtn {
    margin-top: 15px;
  }

  .ambulance_service .ambulance_content {
    padding: 10px;
    margin: 0;
  }

  .ambulance_service .ambulance_content h2 {
    font-size: 20px;
    margin: 0 0 8px 0;
    padding: 0;
  }

  .ambulance_service .ambulance_content p {
    padding: 0;
    font-size: 13px;
    margin: 0 0 8px 0;
  }

  .team_work .teamtitle {
    font-size: 20px;
    margin: 0 0 8px 0;
    padding: 10px 0;
  }

  .team_work .team_content {
    padding: 10px;
    margin: 0;
  }

  .team_work .team_content ul {
    margin: 0;
    padding: 0;
  }

  .team_work .team_content ul li {
    font-size: 13px;
    padding: 3px 0 3px 20px;
    margin: 0 0 5px 0;
  }

  .servicesimg {
    padding: 5px;
    margin: 5px 0;
  }

  .ambulance_img,
  .team_img {
    padding: 5px;
    margin: 5px 0;
  }
}

@media (max-width: 480px) {
  .servicessection .servicescontent .subtitlecontent {
    font-size: 18px;
  }

  .servicessection .servicescontent p {
    font-size: 11px;
  }

  .ambulance_service .ambulance_content h2 {
    font-size: 16px;
  }

  .ambulance_service .ambulance_content p {
    font-size: 11px;
  }

  .team_work .teamtitle {
    font-size: 16px;
  }

  .team_work .team_content ul li {
    font-size: 11px;
  }

  .weprovide .we_provide_section_title {
    font-size: 14px;
  }

  .weprovide .weprobox {
    padding: 6px;
    margin-bottom: 6px;
  }
}

@media (max-width: 400px) {
  .servicessection .servicescontent .subtitlecontent {
    font-size: 16px;
  }

  .servicessection .servicescontent p {
    font-size: 10px;
  }

  .ambulance_service .ambulance_content h2 {
    font-size: 14px;
  }

  .ambulance_service .ambulance_content p {
    font-size: 10px;
  }

  .team_work .teamtitle {
    font-size: 14px;
  }

  .team_work .team_content ul li {
    font-size: 10px;
  }

  .weprovide .we_provide_section_title {
    font-size: 12px;
  }

  .weprovide .weprobox {
    padding: 4px;
    margin-bottom: 4px;
  }
}

/* Enhanced mobile callback form */
.callback-form-mobile {
  margin-top: 20px;
}

@media (max-width: 576px) {
  .callback-form-mobile .contactform {
    margin: 0 10px;
    padding: 20px 25px;
  }

  .contactcontent {
    margin-bottom: 20px;
  }
}

/* Pharmacy delivery page specific image styling */
.pharmacy-delivery .servicesimg img,
.pharmacy-delivery .ambulance_img img,
.pharmacy-delivery .team_img img {
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.pharmacy-delivery .servicesimg img:hover,
.pharmacy-delivery .ambulance_img img:hover,
.pharmacy-delivery .team_img img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Apply to all service pages for consistency */
.servicesimg img,
.ambulance_img img,
.team_img img {
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.servicesimg img:hover,
.ambulance_img img:hover,
.team_img img:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
