@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
  --primary: #07c8f1;
  --primary-dark: #0394b4;
  --primary-light: #eff8fa;
  --primary-light1: #e6eff2;
  --secondary: #72eb36;
  --secondary-dark: #3eb105;
  --secondary-light: #ebfde2;
  --dark: #333333;
  --grey: #444444;
  --light: #f5f5f5;
  --light1: #f8f8f8;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

::selection {
  background-color: var(--primary);
  color: #ffffff;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-dark) var(--light);
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  /* font-family: "Inter", sans-serif; */
  /* font-family: "Barlow", sans-serif; */
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: var(--dark);
  overflow-x: hidden;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-optical-sizing: auto;
  font-style: normal;
  font-family: "Outfit", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  color: #666;
}

.full-img {
  width: 100%;
}

.f20 {
  font-size: 20px;
}

.f18 {
  font-size: 18px;
}

.f16 {
  font-size: 16px;
}

.f14 {
  font-size: 14px;
}

.f12 {
  font-size: 12px;
}

.light-bg {
  background-color: var(--light);
}

.container-fluid {
  padding: 0 100px;
}

.secondary-color-dark {
  color: var(--secondary-dark) !important;
}

.secondary-color {
  color: var(--secondary) !important;
}

.primary-color {
  color: var(--primary) !important;
}

.primary-color-dark {
  color: var(--primary-dark) !important;
}

header {
  padding: 10px 0;
  position: relative;
  z-index: 100;
  border-bottom: solid 0px #e5e5e5;
  /* background-color: var(--light); */
  background-color: var(--primary-light1);
}

.header-bg-color {
  background-color: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  animation: headerSlideDown 0.95s ease forwards;
  padding: 5px 0;
}

@keyframes headerSlideDown {
  0% {
    margin-top: -100px;
  }

  100% {
    margin-top: 0;
  }
}

.logo img {
  width: 100%;
  max-width: 100px;
}

.menu {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.menu li {
  display: inline;
  margin: 0 10px;
}

.menu li a {
  color: var(--dark);
  transition: all 0.4s;
  font-weight: 400;
  font-size: 18px;
  padding: 5px;
}

.menu li a:hover {
  color: var(--primary);
}

.header-right {
  display: none;
}

.right-menu {
  margin-top: 10px;
  text-align: right;
}

.right-menu li {
  display: inline;
  margin-right: 40px;
}

.right-menu li:last-child {
  margin-right: 0;
}

.contact-btn {
  color: var(--dark);
  font-weight: 500;
  padding: 6px 15px 7px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: space-around;
  gap: 4px;
  border-radius: 30px;
  background-color: var(--white);
  position: relative;
  transition: all 0.4s;
}

.contact-btn i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: solid 1px var(--dark);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -webkit-text-stroke: 0.5px;
  margin-right: 8px;
  background-color: var(--white);
  overflow: hidden;
}

.contact-btn::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  border-radius: 30px;
  background-color: var(--primary);
  z-index: 1;
  transition: all 0.4s;
  left: 0;
}

.contact-btn span {
  position: relative;
  z-index: 2;
}

.contact-btn:hover::after {
  width: 100%;
}

.contact-btn:hover {
  color: var(--white);
}

.contact-btn:hover span i {
  color: var(--primary);
  border: solid 1px var(--primary);
}

.call-btn {
  color: var(--dark);
  font-weight: 500;
}

.call-btn span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-dark);
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.inner-sec {
  padding: 40px 0;
}

.banner {
  width: 100%;
  display: flex;
  /* flex-direction: row-reverse; */
  justify-content: space-between;
  align-items: center;
  height: 600px;
  position: relative;
  overflow: hidden;
}

.banner-left {
  width: 49.8%;
  height: 600px;
  background-color: #139ab9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 30px 30px 30px 30px;
  overflow: hidden;
}

.banner-right {
  width: 50.2%;
  height: 600px;
  position: relative;
  overflow: hidden;
}

.carousel-item {
  width: 100%;
  height: 600px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

/* .banner-img-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #01191f31;
} */

.banner-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-bottom-shap {
  position: absolute;
  bottom: -10px;
  width: 100%;
  left: 0;
  right: 0;
  background: url(../images/shape-4.png) repeat-x;
  height: 32px;
  z-index: 99;
  opacity: 1;
}

.hero-img {
  height: calc(60vh);
  padding-top: 5px;
}

.banner h1 {
  font-size: 42px;
  color: var(--white);
  font-weight: 700;
}

.banner h2 {
  font-size: 40px;
  color: var(--secondary);
  font-weight: 700;
}

.banner p {
  color: #fff;
  font-size: 20px;
  margin-top: 20px;
}

.slider-link {
  padding: 10px 25px;
  border-radius: 5px;
  background-color: var(--white);
  color: var(--dark);
  font-size: 18px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: block;
}

.slider-link::before {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  transition: ease 0.4s;
  border-radius: 5px;
  background-color: var(--secondary);
  z-index: 10;
}

.slider-link span {
  z-index: 20;
  position: relative;
}

.slider-link:hover {
  color: var(--dark);
}

.slider-link:hover::before {
  width: 100%;
}

.abt-img {
  width: 90%;
  height: 580px;
  position: relative;
}

.abt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.abt-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 20px;
  top: 20px;
  right: 0;
  bottom: 0;
  background-color: var(--primary-light1);
  z-index: -1;
}

.abt-cont {
  width: 100%;
  min-height: 580px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}

.sub-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--secondary-dark);
}

.title {
  font-size: 30px;
  font-weight: 600;
  color: var(--primary-dark);
}
.link-btn {
  padding: 10px 25px;
  border-radius: 5px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 18px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.link-btn::before {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  transition: ease 0.4s;
  border-radius: 5px;
  background-color: var(--secondary);
  z-index: 10;
}
.link-btn span {
  z-index: 20;
  position: relative;
}
.link-btn:hover {
  color: var(--dark);
}
.link-btn:hover::before {
  width: 100%;
}

.staffing-banner {
  width: 100%;
  min-height: 400px;
  position: relative;
  z-index: 2;
}

.staffing-banner::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  left: 0;
  right: 0;
  top: 0;
  background-color: var(--primary-dark);
  z-index: -1;
}

.staffing-box {
  width: 100%;
  min-height: 500px;
  background-color: var(--white);
  padding: 15px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.staffing-box img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.staffing-box h1 {
  font-size: 24px;
  color: var(--primary-dark);
  font-weight: 500;
  margin-top: 15px;
}

.staffing-box h2 {
  font-size: 18px;
  color: var(--dark);
  line-height: 24px;
}

.link-btn-simple {
  color: var(--primary);
  padding: 7px 10px;
  border: solid 1px var(--primary);
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.3s;
}

.link-btn-simple:hover {
  background-color: var(--primary);
  color: #fff;
}

.staffing-box-2 {
  width: 100%;
  min-height: 250px;
  padding: 15px 25px;
  position: relative;
  background-color: var(--light);
  border: solid 1px #e8e8e8;
}

.staffing-box-2::before {
  content: "";
  position: absolute;
  width: 40%;
  height: 40%;
  right: -4px;
  top: -4px;
  background-color: var(--primary);
  z-index: -1;
  opacity: 0;
}

.staffing-box-2::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 40%;
  left: -4px;
  bottom: -4px;
  background-color: var(--primary);
  z-index: -1;
  opacity: 0;
}

.staffing-icon {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  background-color: var(--secondary-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.1) 0px 8px 16px -8px;
}

.staffing-icon img {
  filter: invert();
  width: 50px;
}

.ser-box {
  width: 100%;
  height: 310px;
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
}

.ser-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}

.ser-box:hover img {
  transform: scale(1.1);
}

.ser-title {
  position: absolute;
  width: 90%;
  height: 45px;
  background-color: rgba(255, 255, 255, 1);
  left: 0;
  right: 0;
  bottom: 20px;
  margin: auto;
  /* border-radius: 5px; */
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px);
  transition: all 0.4s;
  color: var(--primary-dark);
}

.ser-title h4 {
  font-size: 20px;
  margin-bottom: 0;
}

.ser-box:hover .ser-title {
  background-color: var(--secondary-dark);
  color: var(--white);
  width: 100%;
}

.cta-sec {
  width: 100%;
  background-color: var(--primary-dark);
  min-height: 200px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cta-sec h2 a {
  color: var(--secondary);
}

.inner-banner {
  width: 100%;
  height: 450px;
  position: relative;
}

.inner-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-banner-cont {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(7, 200, 241, 0.2);
  /* background-color: rgba(0, 0, 0, 0.5); */
  display: flex;
  justify-content: center;
  align-items: center;
}

.inner-banner-cont h1 {
  color: var(--white);
  font-weight: 600;
}

.color-primary {
  color: var(--primary);
}

.color-primary-dark {
  color: var(--primary-dark);
}

.color-secondary {
  color: var(--secondary);
}

.color-secondary-dark {
  color: var(--secondary-dark);
}

.list {
  color: #666;
  margin-top: 10px;
  margin-left: 10px;
}

.list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}

.list li::before {
  position: absolute;
  content: "";
  top: 8px;
  left: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--secondary-dark);
}

.services-sec-one {
  width: 100%;
  min-height: 350px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.contact-box {
  width: 100%;
  border-radius: 10px;
  border: solid 1px #19616433;
  background-color: #f0f8fa;
  min-height: 220px;
  margin-bottom: 20px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.contact-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
}

.contact-box a {
  color: var(--dark);
}

/* ====== Footer CSS ====== */

footer {
  width: 100%;
  padding: 40px 0px 20px 0;
  background-color: #001d24;
}

.f-logo img {
  width: 100%;
  max-width: 120px;
  margin-bottom: 20px;
}

footer h4 {
  color: #fff;
}

.fc-list,
.f-list {
  margin-top: 20px;
}

.f-list li {
  position: relative;
  margin-bottom: 15px;
  color: #cccccc;
  padding-left: 12px;
}

.f-list li::before {
  width: 5px;
  height: 5px;
  border-radius: 50px;
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  background-color: var(--secondary);
}

.f-list li a {
  color: #cccccc;
  transition: all 0.3s;
}

.f-list li a:hover {
  color: #ffffff;
}

.fc-list li {
  position: relative;
  padding-left: 27px;
  margin-bottom: 20px;
  color: #cccccc;
}

.fc-list li a {
  color: #cccccc;
  transition: all 0.3s;
}

.fc-list li a:hover {
  color: #fff;
}

.fc-list li i {
  position: absolute;
  left: 0;
  top: 0px;
  color: var(--secondary);
}

footer p {
  color: #cccccc;
}

.btm-footer {
  width: 100%;
  background-color: #000607;
}

.btm-footer p {
  padding: 10px 0;
  margin-bottom: 0;
  color: #c8c8c8;
  font-size: 14px;
}

.btm-footer a {
  color: var(--primary);
}
