@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
  --primary-color: #134763;
  --secondary-color: #ed1c24;
  --bg-light: #eef3f2;
  --bg-white: #fff;
  --bg-lite_red: #fff3f3;
  --primary-font: "DM Sans", sans-serif;
  --dark-text: #222222;
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
  margin: 0px;
  padding-top: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: var(--primary-font) !important;
  background: var(--bg-light);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  scroll-padding-top: 100px !important;
}

.main_banner {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.425), rgba(0, 0, 0, 0)), url(../images/banner_img.webp);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  padding: 4rem 0px;
  display: flex;
  justify-content: center;
  align-items: end;
  -webkit-animation: animateBackground infinite ease-in-out 55s;
  animation: animateBackground infinite ease-in-out 55s;
}

@-webkit-keyframes animateBackground {
  0% {
    background-size: 100% auto;
  }

  50% {
    background-size: 150% auto;
  }

  100% {
    background-size: 100% auto;
  }
}

.main_banner_content {
  display: flex;
  justify-content: space-between;
  align-items: end;
  height: 100%;
  gap: 4rem
}

.banner_heading {
  font-size: 65px;
  font-weight: 100;
  color: var(--bg-white);
}

.banner_heading .bold-text {
  font-size: 70px;
  font-weight: 500;
}

.banner_text p {
  color: var(--bg-white);
  font-size: 16px;
  width: 60%;
}

.banner_counter {
  width: auto;
  border-bottom: 1px solid #ffffff88;
  width: 300px;
}

.banner_counter .main_heading {
  font-size: 45px;
  font-weight: 300;
  color: var(--bg-white);
  margin-bottom: 0px;
}

.banner_counter .para {
  color: var(--bg-white);
  width: 100%;
}

a {
  text-decoration: none !important;
  color: inherit !important;
}

ul,
li {
  list-style: none !important;
  padding: 0px;
  margin: 0px;
}

img {
  pointer-events: none;
  cursor: default;
}

/* ========================== */
.header_nav {
  height: 100px;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 1000;
  box-shadow: 0px 4px 15px 1px #0000000a;
  background: #ffffff0a;
  backdrop-filter: blur(5px);
}

.header_nav.affix {
  background: var(--primary-color);
}

.nav_items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.navbar ul {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 0px;
}

.nav_links {
  margin-right: 2rem;
}

.navbar ul li a {
  color: #fff !important;
  font-size: 15px;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
}

/* ========== IT NAV ===========*/
.it_nav {
  background: #ffffff;
}

.it_nav.affix {
  background: #fff;
}

.it_nav .navbar ul li a {
  color: #000 !important;
}

.it_nav.affix .navbar ul li a {
  color: #000 !important;
}

.it_nav .primary_white_btn {
  border: 1px solid var(--primary-color) !important;
}

.it_nav.affix .primary_white_btn {
  border: 1px solid var(--primary-color) !important;
}

.it_nav .toggle_icon span {
  background-color: #000;
}

/* ========== IT NAV ===========*/


/* .home-nav .navbar ul li a {
  color: var(--primary-color) !important;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--secondary-font);
  display: flex;
  align-items: center;
} */

.affix .navbar ul li a {
  color: #fff !important;
  font-size: 15px;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.nav-side {
  display: flex;
  align-items: center;
  /* gap: 4rem; */
  gap: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  display: none;
}

.toggle_icon span {
  display: block;
  background-color: #ffffff;
  height: 2px;
  width: 25px;
  margin-bottom: 5px;
  cursor: pointer;
}

.toggle_icon span:nth-child(2) {
  width: 18px;
  margin: 0 0px 5px auto;
}

.toggle_icon span:last-child {
  margin-bottom: 0;
  /* width: 20px; */
  margin: 0 0 0 auto;
}


.side_menu_bg {
  background-color: #c70008;
  color: #fff;
  width: 50%;
  position: fixed;
  right: 0;
  top: 0px;
  height: 100vh;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: all ease 0.4s;
  opacity: 0;
}

.side_menu_active {
  transform: translateX(0%);
  opacity: 1;
}


.side_menu ul {
  list-style: none;
  font-size: 25px;
  line-height: 1.5;
  padding-left: 0;
}

.side_menu ul li a {
  font-weight: 300;
  color: #fff;
}

.side_menu_adrs ul {
  list-style: none;
  padding: 0;
  display: inline-flex;
  gap: 11px;
}


.close {
  position: absolute;
  right: 10%;
  top: 8%;
  cursor: pointer;
}

.close span {
  display: block;
  height: 1.44px;
  width: 30px;
  background-color: #ffffff;
  margin-bottom: 0.5rem;
}

.close span:first-child {
  transform: rotate(45deg);
  margin: -1px;
}

.close span:last-child {
  transform: rotate(-45deg);
}

.side_menu_adrs .social_links {
  list-style: none;
  padding: 0;
  display: inline-flex;
  gap: 25px;
}

.side_menu_adrs .social_links li i {
  font-size: 25px;
  color: #ffffff;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.side_menu_adrs .social_links li i:hover {
  color: #fff;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

/* ------Dropdown-------- */


.menu-item-has-children {
  position: relative;
}

.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px 0;
  z-index: 1000;
}

.sub-menu .menu-item {
  padding: 0;
}

.sub-menu .menu-link {
  padding: 8px 20px;
  display: block;
  text-transform: none;
  font-size: 16px;
  color: #333 !important;
  white-space: nowrap;
}

.affix .sub-menu .menu-link {
  padding: 8px 20px;
  display: block;
  text-transform: none;
  font-size: 16px;
  color: var(--primary-color) !important;
  white-space: nowrap;
}

.sub-menu .menu-link:hover {
  color: var(--secondary-color-dark) !important;
}

.dropdown-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 11px;
  margin-left: 3px;
  color: #fff;
}

/* .home-nav .dropdown-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 11px;
  margin-left: 3px;
  color: var(--primary-color);
} */

.affix .dropdown-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 11px;
  margin-left: 3px;
  color: #fff !important;
}


@media only screen and (min-width: 768px) {
  .navbar {
    align-items: start !important;
    padding-top: 10px !important;
  }

  .menu {
    position: relative;
    top: 10px;
    width: auto;
    height: auto;
    padding: 0rem;
    margin-left: auto;
    background: none;
    box-shadow: none;
    height: 200px;
  }

  .menu-item-has-children {
    position: relative;
  }

  .menu-item-has-children .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 7px;
    padding: 10px 0;
    z-index: 1000;
  }

  .menu-item-has-children.active .sub-menu {
    display: block;
  }

  .menu-item-has-children.active .dropdown-arrow {
    transform: rotate(-90deg);
  }

  @media (hover: hover) {
    .menu-item-has-children:hover .sub-menu {
      display: block;
    }

    .menu-item-has-children:hover .dropdown-arrow {
      transform: rotate(-90deg);
    }
  }

  .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 2rem;
    margin: 0 auto;
  }

  .menu-link {
    text-transform: capitalize;
  }

  .menu-block {
    margin-left: 2rem;
  }

}

@media only screen and (max-width: 991px) {
  .header_nav {
    background: #ffffff1c;
  }

  .it_nav {
    background: #ffffff;
  }

}

/*  ================ Buttons ================ */

.primary_white_btn {
  background: var(--bg-white);
  color: var(--primary-color);
  border: 1px solid #fff;
  border-radius: 13px;
  padding: 10px 20px;
  font-family: 600;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.primary_white_btn:hover {
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.affix .primary_white_btn:hover {
  border: 1px solid var(--bg-white);
}

.secondary_white_btn {
  background: transparent;
  backdrop-filter: blur(3px);
  color: var(--bg-white);
  border: 1px solid var(--bg-white);
  border-radius: 13px;
  padding: 10px 20px;
  font-family: 500;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.primary_blue_btn {
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
  border-radius: 13px;
  padding: 10px 20px;
  font-family: 600;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.primary_blue_btn:hover {
  background: #eeeeee;
  color: var(--primary-color);
  border: 1px solid #fff;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.secondary_blue_btn {
  background: transparent;
  backdrop-filter: blur(3px);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 13px;
  padding: 10px 20px;
  font-family: 600;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

/*  ================ Buttons ================ */
.about_section {
  padding: 6rem 0px;
  background: var(--bg-white);
}

h3.peset-control-heading {
  font-size: 47px;
  font-weight: 500;
}

.master_heading {
  font-size: 40px;
  font-weight: 500;
  color: var(--dark-text);
}

.master_heading span {
  font-size: 43px;
  font-weight: 500;
  color: var(--dark-text);
}

.main_heading {
  font-size: 41px;
  font-weight: 500;
  color: var(--dark-text);
  margin-bottom: 30px
}

.facility-managemnet {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.pest-control {
  margin-bottom: 46px;
}

.para {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-text);
}

.button_flex {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.about_img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.about_content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%
}

/* ================ Core Values ================ */
.core_values {
  padding: 4rem 0px;
  background: var(--bg-light);
}

.core_values_content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%
}

.core_values_img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%
}

.core_box {
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100% - 20px);
  margin-bottom: 10px;
  gap: 20px;
  /* cursor: pointer; */
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.core_content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.core_box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.core_box:hover img {
  animation: 1s kd-jello;
}

@keyframes kd-jello {
  0% {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

/* ------------------------------ */

.business_vertical_section {
  padding: 4rem 0px;
  background: var(--bg-white);
}

.about_busi_vertical {
  background: var(--bg-light);
}

.vertical_box {
  padding: 25px;
  background: var(--bg-white);
  border-radius: 20px;
  height: calc(100% - 20px);
  margin-bottom: 20px;
  gap: 20px;
  cursor: pointer;
  border: 1px solid #D5D5D5;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.vertical_box:hover {
  border: 1px solid var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.vertical_box img {
  margin-bottom: 10px;
}

.vertical_box h4 {
  font-size: 25px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.vertical_box:hover img {
  animation: 1s kd-jello;
}

/* ------------------------------ */

.success_section {
  padding: 4rem 0px;
  background: var(--bg-lite_red);
}

.sucess_image {
  border-radius: 30px;
  overflow: hidden;
}

.sucess_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.sucess_image:hover img {
  transform: scale(1.1) rotate(5deg);
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.success_content {
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.count_flex {
  display: flex;
  gap: 30px;
  align-items: center;
  width: 85%;
}

.count_heading {
  font-size: 50px;
  font-weight: 400;
  color: var(--dark-text);
}

/* our process */

.our-process {
  padding: 5rem 0px;
  /* background-color: var(--bg-light); */
}

.process-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.process-img img {
  border-radius: 21px;
  width: 100%;
}

/* ------------------------------ */

.why_choose_section {
  padding: 4rem 0px;
  background: var(--bg-white);
}

.choose_box {
  padding: 25px;
  background: var(--bg-light);
  border-radius: 20px;
  height: calc(100% - 20px);
  margin-bottom: 20px;
  gap: 20px;
  cursor: pointer;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.choose_box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
}

.choose_box img {
  margin-bottom: 10px;
}

.choose_box h5 {
  font-size: 22px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.choose_box:hover img {
  animation: 1s kd-jello;
}

/* ------------------------------ */

.contact_banner_section {
  padding: 3rem 0px;
  background: url(../images/contact_banner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 1;
}

.contact_banner_content {
  color: var(--bg-white);
}

.contact_banner_content .main_heading {
  color: var(--bg-white);
  font-weight: 300;
  font-size: 60px;
}

.contact_banner_content p {
  color: var(--bg-white);
}

/* ------------Footer--------------- */

footer {
  padding-top: 3rem;
  background: #c70008;
}

.footer_logo {
  margin: 15px 0px 20px 0px;
}

.footer_logo img {
  height: 40px;
}

.footer_logo .para {
  font-size: 14px;
  margin-top: 15px;
  color: var(--bg-white);
  width: 80%;
}

.footer_menu {
  padding-left: 0px;
}

.footer_menu li {
  margin-bottom: 10px;
  color: #ffffffe8 !important;
  font-size: 14px;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  display: flex;
}

.footer_box {
  margin-top: 20px;
}

.footer_box h5 {
  font-size: 18px;
  color: var(--bg-white);
}


.footer_menu li:hover {
  color: var(--bg-white) !important;
  padding-left: 5px;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.footer_menu li img {
  filter: brightness(0) invert(1);
  height: 18px;
  width: 18px;
  margin-right: 10px;
}


.footer_menu .para {
  color: var(--bg-white);
}

.smallp {
  font-size: 12.5px;
  color: var(--bg-white);
}

.email_flex {
  display: flex;
  gap: 5px;
  width: 95%;
}

.email_flex input {
  width: 100%;
  padding: 10px 15px;
  border-radius: 10px;
  border: 1px solid #fff;
  background: transparent;
  color: var(--bg-white);
}

.email_flex input::placeholder {
  color: rgba(255, 255, 255, 0.877);
}

.footer_bottom {
  margin-top: 2rem;
  padding: 1.5rem 0px 1.5rem 0rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ffffff4d;
}

.copy {
  display: flex;
  gap: 30px;
}

.footer_bottom p {
  margin-bottom: 0px;
  color: var(--bg-white);
  font-size: 13px;
}

.footer_bottom p img {
  width: 20px;
  height: 20px;
}

footer .social_links ul {
  display: flex;
  gap: 20px;
  margin-bottom: 0px;
}

footer .social_links ul li {
  cursor: pointer;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  color: var(--bg-white);
}

footer .social_links ul li:hover {
  transform: translateY(-5px);
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}


/* =============== About Page ================= */

.inner_banner {
  height: 50vh;
  padding: 4rem 0px;
  display: flex;
  justify-content: center;
  align-items: end;
  -webkit-animation: animateBackground infinite ease-in-out 55s;
  animation: animateBackground infinite ease-in-out 55s;
}

.about_inner_banner {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.897), rgba(0, 0, 0, 0)), url(../images/about_us_banner.webp);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.manpower_inner_banner {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.425), rgba(0, 0, 0, 0)), url(../images/manpower_banner.webp);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.healthcare_inner_banner {
  background: linear-gradient(0deg, rgb(0, 0, 0), rgba(0, 0, 0, 0)), url(../images/healthcare_banner.webp);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hospitality_inner_banner {
  background: linear-gradient(0deg, rgb(0, 0, 0), rgba(0, 0, 0, 0)), url(../images/hospitality_banner.webp);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.pest_inner_banner {
  background: linear-gradient(0deg, rgb(0, 0, 0), rgba(0, 0, 0, 0)), url(../images/pest_control_banner.webp);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}


.outsource_inner_banner {
  background: linear-gradient(0deg, rgb(0, 0, 0), rgba(0, 0, 0, 0)), url(../images/outsource_banner.webp);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.cleaning_inner_banner {
  background: linear-gradient(0deg, rgb(0, 0, 0), rgba(0, 0, 0, 0)), url(../images/cleaning_banner.webp);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.nursing_inner_banner {
  background: linear-gradient(0deg, rgb(0, 0, 0), rgba(0, 0, 0, 0)), url(../images/nursing_banner.webp);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.facility_inner_banner {
  background: linear-gradient(0deg, rgb(0, 0, 0), rgba(0, 0, 0, 0)), url(../images/facility_banner.webp);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.contact_inner_banner {
  background: linear-gradient(0deg, rgb(0, 0, 0), rgba(0, 0, 0, 0)), url(../images/contact_us_banner.webp);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.blogs_inner_banner {
  background: linear-gradient(0deg, rgb(0, 0, 0), rgba(0, 0, 0, 0)), url(../images/blogs_banner.webp);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.it_inner_banner {
  background: linear-gradient(0deg, rgb(0, 0, 0), rgba(0, 0, 0, 0)), url(../images/it_banner.webp);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.mission_vision {
  padding: 5rem 0px;
  background: var(--bg-lite_red);
}

.mission_vision_text {
  display: flex;
  align-items: center;
  height: 100%;
}

.mission_point {
  display: flex;
  gap: 10px;
  align-items: start;
  margin-bottom: 15px;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  cursor: pointer;
}

.mission_point p {
  margin-bottom: 0px;
}

.mission_point:hover {
  transform: translateY(-3px);
}

.mission_point:hover img {
  animation: 1s kd-jello;
}

.mission_point img {
  margin-top: 2px;
}

.mission_vision .about_img img {
  filter: drop-shadow(0px 5px 15px #13476328);
}

.vision1 .about_img img {
  filter: drop-shadow(0px 5px 15px #13476328);
  width: 100%;
}

/* ------------------- Manpower ------------------- */

.sevice_about_img {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.sevice_about_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.sevice_about_img:hover img {
  transform: scale(1.1);
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}


.manpower_about_content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-left: 2rem;
}

.vertical_services_section {
  padding: 4rem 0;
  background: var(--bg-lite_red);
}

.services_text {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 10px 10px 10px 2rem;
  background: var(--bg-white);
  border-radius: 30px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-medium);
}

.services_point {
  display: flex;
  gap: 10px;
  align-items: start;
  margin-bottom: 15px;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  cursor: pointer;
}

.services_point img {
  margin-top: 5px;
}

.services_point p {
  margin-bottom: 0px;
}

.services_point span {
  font-weight: 500;
  color: #000;
}

.services_point:hover {
  transform: translateY(-3px);
}

.services_point:hover img {
  animation: 1s kd-jello;
}

.services_image {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.services_image:hover img {
  transform: scale(1.1);
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.service_align {
  display: flex;
  align-items: center;
  height: 100%;
}

.back-light-blue {
  background-color: var(--bg-light);
}

.back-light-white {
  /* background-color: var(--bg-white); */
  background-color: var(--bg-lite_red);
}

.back-light-red {
  /* background-color: var(--bg-lite_red); */
}

.manpower_oil_gas {
  padding: 4rem 0px;
}

.manpower_oil_gas .main_heading {
  width: 50%;
  margin: 0px auto;
  text-align: center;
}

.manpower_oil_gas .para {
  width: 75%;
  margin: 0px auto;
  text-align: center;
  margin-bottom: 30px;
}

.why-choose-box {
  text-align: center;
  padding: 50px;
  position: relative;
  height: 100%;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.why-choose-box p {
  font-size: 15px;
  color: #777;
}

.why-choose-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-large);
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.why-choose-box:hover img {
  animation: 1s kd-jello;
}

.feature-icon {
  margin-bottom: 15px;
}


/* Vertical line between features */
.border-vertical {
  border-left: 1px solid #eaeaea;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

/* Horizontal line between rows */
.border-horizontal {
  border-top: 1px solid #eaeaea;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .border-vertical {
    display: none;
  }

  .border-horizontal {
    display: none;
  }
}

.oil_key_roles {
  padding: 4rem 0;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}

.role-item {
  background: white;
  padding: 1.1rem;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.role-item:hover {
  transform: translateY(-5px);
}

.role-item i {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.role-item span {
  display: block;
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
}

@media (max-width: 768px) {
  .roles-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }

  .role-item {
    padding: 1rem;
  }

  .role-item i {
    font-size: 2rem;
  }

  .role-item span {
    font-size: 1rem;
  }
}


/* ================================ */
.why_choose_faq {
  padding: 4rem 0;
}

.why_choose_faq p {
  overflow: hidden;
  padding-top: 20px;
}

.why_choose_faq .para {
  padding-top: 0px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.fas {
  transform: rotatez(0deg);
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.open {
  p {
    max-height: 1000px;
  }

  .fas {
    transform: rotatez(-180deg);
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
  }
}

.container-faq {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 .75rem;
}

.why_choose_faq .title {
  color: #2B2732;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.why_choose_faq .item {
  max-height: 65px;
  overflow: hidden;
  background: linear-gradient(to right, #ffdfe0 0% 25%, #ff989c 80%);
  color: #493B60;
  background-size: 100%;

  &.open {
    max-height: 1000px;
    background-size: 200%;
  }
}

.why_choose_faq .item:first-child {
  border-radius: 20px 20px 0px 0px;
}

.why_choose_faq .item:last-child {
  border-radius: 0px 0px 20px 20px;
}

.healthcare_serv_box {
  height: 195px;
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  margin-bottom: 25px;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.healthcare_serv_box:hover {
  cursor: pointer;
  box-shadow: var(--shadow-medium);
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.healthcare_serv_box img {
  width: 100%;
  object-fit: cover;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.healthcare_serv_box:hover img {
  transform: scale(1.1);
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.service_box_text {
  position: absolute;
  bottom: 10px;
  left: 50%;
  right: 0px;
  transform: translateX(-50%);
  background: var(--bg-white);
  padding: 12px;
  width: 96.5%;
  background: linear-gradient(to right, #ffdfe0 0% 25%, #ff989c 80%);
  border-radius: 15px;
  overflow: hidden;
  height: 45px;
  transition: all 0.4s ease 0s;
}

.healthcare_serv_box h5 {
  font-size: 17px;
  font-weight: 600;
  text-align: center;

}

.healthcare_serv_box p {
  opacity: 0;
  transition: all 0.4s ease 0s;
  transform: translateY(100%);
}

.healthcare_serv_box:hover .service_box_text {
  height: auto;
  transition: all 0.4s ease 0s;
}

.healthcare_serv_box:hover p {
  opacity: 1;
  transition: all 0.4s ease 0s;
  transform: translateY(0%);
}

.health_benefts {
  padding: 4rem 0;
}

.health_benefts .why-choose-box {
  padding: 20px;
}

.health_benefts .why-choose-box h5 {
  font-size: 17px;
}

.health_benefts .why-choose-box img {
  width: 40px;
}

.health_benefts_text {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}


.nurse-recruitment {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.nurse-recruitment img {
  width: 100%;
  border-radius: 19px;
}

.healthcare-service {
  padding: 5rem 0px;
}

.healthcare-heading {
  font-size: 40px;
  font-weight: 500;
  color: var(--dark-text);
  margin-bottom: 30px;
}

.healthcare-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.healthcare-img img {
  border-radius: 20px;
}



/* ====================== Practitioners Section ===================== */
.practitioners-section {
  padding: 5rem 0;
}

.practitioner-card {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 1rem;
  height: calc(100% - 20px);
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  margin-bottom: 20px;
}

.practitioner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.practitioner-card h4 {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 600;
  /* margin-bottom: 1rem; */
  margin-bottom: 0px;
  position: relative;
  /* padding-bottom: 0.75rem; */
}

/* .practitioner-card h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
} */

/* .practitioner-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
} */

/* Responsive adjustments */
@media (max-width: 991px) {
  .practitioner-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .practitioners-section {
    padding: 3rem 0;
  }

  .practitioner-card {
    padding: 1.5rem;
  }
}

.contact_page_section {
  padding: 4rem 0;
}

.contact_title {
  display: flex;
  align-items: center;
  height: 100%;
}

.contact_title h2 {
  font-size: 70px;
  font-weight: 600;
}

.contact_title .para {
  font-size: 20px;
}

.contact_title iframe {
  border-radius: 20px;
}

.contact_from {
  padding: 3rem 2rem;
  background: var(--bg-white);
  border-radius: 30px;
  box-shadow: var(--shadow-large);
}

.input_flex {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.input_flex label {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
}

.input_flex input {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #aeaeae;
  width: 100%;
}

.input_flex textarea {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #aeaeae;
  width: 100%;
}

.contact_from .primary_blue_btn {
  width: 100%;
  padding: 13px;
}

.contact_details_section {
  padding: 1rem 0px;
}

.contact_details_section .why-choose-box {
  padding: 15px 20px;
}

.contact_details_section .social_links {
  list-style: none;
  padding: 0;
  display: inline-flex;
  gap: 25px;
  margin-top: 10px;
}

.contact_details_section .social_links ul {
  display: flex;
  gap: 25px;
  padding-left: 0px;
}

.contact_details_section .social_links li i {
  font-size: 25px;
  color: var(--secondary-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.contact_details_section .social_links li i:hover {
  color: var(--primary-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

/* ================================ */
.it_tabs_section {
  padding: 4rem 0;
}

.tabset>input[type="radio"] {
  position: absolute;
  left: -200vw;
}

/* Tab styles with animations */
.tabset>label {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  margin-right: 10px;
  cursor: pointer;
  font-weight: 500;
  color: #666;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.tabset>input[type="radio"]:checked+label {
  color: var(--primary-color);
  border-bottom: 3px solid #fff;
}

.tab-panels {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.tab-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  visibility: hidden;
}

.tab-panel.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* Image animation */
.it_tab_img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.it_tab_img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.it_tab_img:hover img {
  transform: scale(1.05);
}

/* Active tab content animation */
.tab-panel.active .it_tab_img {
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tabset .tab-panel {
  display: none;
}

.tabset>input:first-child:checked~.tab-panels>.tab-panel:first-child,
.tabset>input:nth-child(3):checked~.tab-panels>.tab-panel:nth-child(2),
.tabset>input:nth-child(5):checked~.tab-panels>.tab-panel:nth-child(3),
.tabset>input:nth-child(7):checked~.tab-panels>.tab-panel:nth-child(4),
.tabset>input:nth-child(9):checked~.tab-panels>.tab-panel:nth-child(5),
.tabset>input:nth-child(11):checked~.tab-panels>.tab-panel:nth-child(6) {
  display: block;
}

/*
 Styling
*/

.tabset>label {
  position: relative;
  display: inline-block;
  padding: 15px 15px 15px;
  border: 1px solid transparent;
  border-bottom: 0;
  cursor: pointer;
  font-weight: 600;
}

/* .tabset > label::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 10px;
  width: 22px;
  height: 4px;
  background: #8d8d8d;
} */

input:focus-visible+label {
  outline: 2px solid var(--primary-color);
  border-radius: 3px;
}

.tabset>label:hover,
.tabset>input:focus+label,
.tabset>input:checked+label {
  color: var(--primary-color);
}

.tabset>label:hover::after,
.tabset>input:focus+label::after,
.tabset>input:checked+label::after {
  background: var(--primary-color);
}

.tabset>input:checked+label {
  border-color: #ccc;
  border-bottom: 1px solid #fff;
  margin-bottom: -1px;
  border-radius: 10px;
}

.tab-panel {
  padding: 30px 0;
  border-top: 1px solid #ccc;
}

/*
 Demo purposes only
*/
*,
*:before,
*:after {
  box-sizing: border-box;
}


.tabs_width {
  max-width: 65em;
  margin: 0 auto;
}

.tab_inner_content {
  display: flex;
  align-items: center;
  height: 100%;
}

.it_tab_img {
  display: flex;
  align-items: center;
  height: 250px;
  overflow: hidden;
  border-radius: 20px;
}

.it_tab_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============= Blogs ============= */
.blogs_section {
  padding: 4rem 0;
  background: var(--bg-white);
}

.blog_card {
  background: var(--bg-light);
  border-radius: 20px;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
  padding: 10px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

/* .blog_card:hover{
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
} */
.blog_card .blog_img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 15px;
}

.blog_card .blog_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.blog_card:hover .blog_img img {
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.blog_card .blog_content {
  padding: 1rem 10px;
}

.blog_card .blog_content .blog_title {
  font-size: 20px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog_card .blog_content p {
  font-size: 15px;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}

.admin_flex {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: flex-start;
}

.admin_name,
.admin_date,
.admin_category {
  font-size: 13px !important;
  color: #888888 !important;
}

/* ==================== */
.blog_details_section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.blog_details_section .blog_img {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 20px;
}

.blog_details_section .blog_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.blog_details_section .blog_img:hover img {
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.blog_details_content {
  max-width: 1000px;
  margin: auto;
}

.blog_details_content .blog_title {
  color: var(--primary-color);
}

.blog_details_content .admin_name,
.blog_details_content .admin_date,
.blog_details_content .admin_category {
  font-size: 15px !important;

}

.blog_details_content .blog_para {
  color: var(--primary-color);
}


/* ========= Floating Buttons ============= */

/* Base */
.btn-floating:hover img {
  margin-bottom: -3px
}

.btn-floating {
    position: fixed;
    right: 25px;
    overflow: hidden;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 0;
    z-index: 9999;
    color: white;
    transition: all 0.3s ease 0s;
}

.btn-floating:hover {
    width: auto;
    padding: 0 20px;
    cursor: pointer;
}

.btn-floating span {
    font-size: 16px;
    margin-left: 5px;
    transition: all 0.3s ease 0s;
    line-height: 0px;
    display: none;
}

.btn-floating:hover span {
      transition: all 0.3s ease 0s;
    display: inline-block;
}

/* Phone */
.btn-floating.phone {
    bottom: 85px;
    background-color: #287eff;
}

.btn-floating.phone:hover {
    background-color: #005BE0;
    transition: all 0.3s ease 0s;
}

/* WhatsApp */
.btn-floating.whatsapp {
    background-color: #25D366;
    bottom: 25px;
}

.btn-floating.whatsapp:hover {
    background-color: #2b9c1c;
    transition: all 0.3s ease 0s;
}
