:root {
  --primary-color: #d9e7f0;
  --secondary-color: #074a79;
  --success: #0e78be;
  --white: #fff;
  --black: #000;
  /* fonts */
}

/* General settings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  scroll-padding-top: 80px;
} */

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}
section {
  padding: 50px 0;
}
/* section {
  min-height: 100vh;
  padding: 50px 0;
} */
a {
  text-decoration: none;
}
h1 {
  font-size: 45px;
}
h4,
h3,
h1 {
  font-family: "Poppins", sans-serif;
}
main {
  margin: 0;
  padding: 0;
}

/* Header Style */
.navbar-brand img {
  width: 144px;
  height: 50px;
}
.navbar-toggler {
  border: unset !important;
  color: var(--secondary-color);
}
.navbar-toggler:focus {
  border: unset !important;
  box-shadow: unset !important;
}
.navbar-toggler:hover {
  background-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
  transition: all 0.5s;
}
.nav-link {
  color: var(--black);
  font-size: 16px;
  margin: 0 15px;
  font-weight: 600;
}
.navbar-nav .show > .nav-link,
.navbar-nav .nav-link.active {
  color: var(--success) !important;
}
.nav-link .active,
.nav-link:hover {
  color: var(--success) !important;
  transition: all 0.5s;
}
.header-btn {
  background: var(--secondary-color);
  border-radius: 10px;
  padding: 5px 23px !important;
  color: var(--white) !important;
  margin-top: 6px;
  cursor: pointer;
  text-align: center;
  font-size: 16px;
}
.header-btn:hover {
  color: var(--secondary-color) !important;
  background-color: var(--primary-color);
  transition: all 0.5s;
}
.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
  transition: all 0.5s;
  /* border-bottom: 2px double var(--primary-color); */
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
/* banner style */
/* #videoWrapper {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

#videoWrapper video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: -100;

  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

#videoWrapper .caption {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

#videoWrapper .caption .contents {
  width: 50%;
  color: var(--white);
  text-align: center;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.8);
} */

/* service style */
.service-area .header__center {
  width: 85%;
  margin: auto;
  font-size: 2rem;
  font-weight: bold;
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  grid-column-gap: 1.2rem;
  align-items: center;
}

.service-area .header__center::before,
.service-area .header__center::after {
  content: "";
  display: block;
  height: 2px;
  background-color: currentColor;
}
.service-area__card {
  border-radius: 20px;
  border: 1px solid var(--secondary-color);
  padding: 30px;
  margin: 60px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-area__card:hover {
  background-color: #d9e7f073;
  transition: all 0.5s;
}
.service-area__card .service-icon {
  position: absolute;
  background-color: var(--secondary-color);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  top: -70px;
  /* left: 100px; */
}

.service-area__card:hover .service-icon {
  background-color: #0e78be;
  transition: all 0.5s;
}
.service-area__card .service-icon img {
  width: 48px;
  height: 50px;
  background-color: transparent;
}
.service-area__card h4 {
  font-weight: bold;
  padding-top: 20px;
}
.service-area__card h6 {
  font-weight: bold;
  padding-top: 30px;
}
.service-area__card p {
  font-size: 13px;
  margin-top: 10px;
  font-weight: 600;
}
.service-area__menu ul li {
  font-size: 13px;
  margin-top: 15px;
  font-weight: 600;
}
.service-area .header__center {
  width: 100%;
  margin: auto;
  font-size: 2rem;
  font-weight: bold;
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  grid-column-gap: 1.2rem;
  align-items: center;
}

.service-area.header__center::before,
.service-area .header__center::after {
  content: "";
  display: block;
  height: 2px;
  background-color: currentColor;
}
.sercive-card {
  margin-bottom: 40px;
}
.sercive-card img {
  width: 75px;
  margin-bottom: 15px;
  /* height: 60px; */
}
.sercive-title a {
  text-decoration: none;
  color: var(--black);
}
.sercive-title a:hover {
  text-decoration: none;
  color: var(--secondary-color);
  transition: all 0.5s;
}
.sercive-card h4 {
  font-weight: bold;
}
/* about style */
.about-area {
  background-color: var(--primary-color);
}
.about-area__card {
  background-color: var(--white);
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 15px;
  height: 150px;
}
.about-area__card img {
  width: 110px;
}
.about-area__card h6 {
  font-weight: bold;
  font-size: 10px;
  color: #000;
}
.about-area__card:hover h6 {
  color: var(--success);
}
.about-area .header__center {
  width: 90%;
  margin: auto;
  font-size: 2rem;
  font-weight: bold;
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  grid-column-gap: 1.2rem;
  align-items: center;
}

.about-area .header__center::before,
.about-area .header__center::after {
  content: "";
  display: block;
  height: 2px;
  background-color: currentColor;
}
.text-muted {
  color: #010001b0 !important;
}
.about-area p {
  font-weight: 600;
  font-size: 16px;
  color: #010001b0;
}
/* why-us style */
.why-us {
  background: url(../images/whyusSection/whyus.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: auto;
}
.why-us h2 {
  font-weight: 600;
}
.why-us__menu ul {
  list-style-type: none;
  padding-left: 0;
}
.why-us__menu ul li {
  font-size: 20px;
  margin-bottom: 20px;
}
.why-us__menu ul li::before {
  content: ">";
  font-size: 30px;
  margin-right: 6px;
}

/* contact style */

.contact-area .header__center {
  width: 100%;
  margin: auto;
  font-size: 2rem;
  font-weight: bold;
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  grid-column-gap: 1.2rem;
  align-items: center;
}

.contact-area .header__center::before,
.contact-area .header__center::after {
  content: "";
  display: block;
  height: 2px;
  background-color: currentColor;
}
.contact-area p {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 40px;
}
.contact-info {
  background-image: url(../images/contactUs/CONTACTUS@2x.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  overflow-x: hidden;
}
.contact-info i {
  color: var(--white);
}
.contact-info__item span,
.contact-info__item a {
  display: block;
  color: var(--white);
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 18px;
}
.contact-info__item {
  position: relative;
}

.contact-info__item::after {
  content: "";
  position: absolute;
  top: 41px;
  right: -10px;
  width: 2px;
  height: 50%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}
.contact-info__item:last-child::after {
  content: "";
  position: absolute;
  top: unset;
  right: unset;
  width: unset;
  height: unset;
  background-color: unset;
}

.contact-info__item .icon {
  background-color: var(--white);
  color: var(--secondary-color);
  padding: 5px;
  border-radius: 50%;
  font-size: 15px;
}
.text-left {
  text-align: left;
  padding-left: 26px;
}
.contact-info__item i {
  font-size: 30px;
  margin-bottom: 20px;
}
/* client style */
.client-group {
}
/* .client-group img {
  height: 10vh !important;
} */
.client-group-2 img {
  height: 90px !important;
}
.client-group-3 img {
  max-width: 100%;
}
.client-group-4 img {
  max-width: 100%;

  height: auto;
}
.client-group__border {
  padding: 1px;
  background-image: url("../images/Clients/Line 6.png");
  background-repeat: no-repeat;
  width: 80%;
  background-position: center center;
  margin: 10px auto;
}

/* footer style */
.footer {
  background-image: url(../images/footer/footer.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.footer img {
  width: 250px;
}
.social-icon {
  margin-top: 30px;
  cursor: pointer;
}
.footer-menu {
  list-style: none;
  cursor: pointer;
  font-size: 16px;
  margin: 30px 0;
  padding: 0;
}
.footer-menu li {
  padding-left: 0;
  margin: 12px 0;
}
.footer-menu li a {
  padding-left: 10px;
  color: var(--primary-color);
  font-weight: 600;
}

.footer-bottom span {
  font-weight: 600;
}
.footer-bottom img {
  width: 40px;
  margin-right: 10px;
}
/* new style for video */
.bg-video-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  background: url(../images/video/background.jpg) no-repeat center center/cover;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.overlay {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  /* background-image: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.7) 50%
  ); */
  background-color: rgba(7, 74, 121, 0.7);
  background-size: 3px 3px;
  z-index: 2;
}
.img {
  width: 50%;
  height: 50%;
}
/* Adjust the line for smaller screens */
@media (max-width: 900px) {
  .contact-info__item {
    padding: 20px;
    margin: auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
  }
  .contact-info__item::after {
    top: auto;
    bottom: -5px; /* Adjust to position the line under the column */
    width: 100%; /* Make the line span the full width of the column */
    height: 2px; /* Adjust the height of the line */
    right: 0; /* Align the line to the right edge */
  }
}
