* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
:root {
  --theme-color1: #0b3b5e;
  --theme-color2: #ff6d2e;
  --theme-color3: #ebf1f5;
  --theme-color4: #7c858c;
  --bg-theme-color1: #0b3b5e;
  --bg-theme-color2: #ff6d2e;
  --bg-theme-color3: #ebf1f5;
  --bg-theme-color4: #7c858c;
  --border-theme-color1: #0b3b5e;
  --border-theme-color2: #ff6d2e;
  --border-theme-color3: #ebf1f5;
  --border-theme-color4: #7c858c;
}
ul {
  padding: 0;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.primary-btn {
  position: relative;
  font-size: 0.8125rem; /* 13px */
  line-height: 1.5625rem; /* 25px */
  color: #ffffff;
  padding: 0.625rem 2rem;
  font-weight: 600;
  background: var(--bg-theme-color2);
  letter-spacing: 0.1em;
  overflow: hidden;
  text-transform: uppercase;
  display: inline-block;
  z-index: 1;
  border: none;
  transition: all 0.5s;
  border-radius: 3.125rem;
}
.primary-btn:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: var(--bg-theme-color1);
  z-index: -1;
  transform: scale(0, 1);
  transform-origin: top right;
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.primary-btn:hover:before {
  transform: scale(1, 1);
  transform-origin: bottom left;
}
.primary-btn:hover {
  color: #ffffff;
  box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
  border: none;
}
.sec-title {
  margin-bottom: 1.5625rem; /* 25px */
}
.sub-title {
  position: relative;
  display: block;
  font-size: 0.875rem; /* 14px */
  color: var(--theme-color4);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 0.625rem; /* 10px */
  padding-top: 0.625rem; /* 10px */
}
.sub-title::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 2.625rem; /* 42px */
  background: var(--bg-theme-color2);
  content: "";
}
.sec-title h2 {
  position: relative;
  line-height: 1.2em;
  color: var(--theme-color1);
  font-size: 3.125rem; /* 50px */
  font-weight: 700;
}
/* scroll-to-top  */

#scroll-to-top {
  line-height: 2.5rem; /* 40px */
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  margin: 0 auto;
  font-size: 1rem; /* 16px */
  box-shadow: 0 0 5px rgb(0 0 0 / 10%);
}

/* navbar  */
.navbar {
  z-index: 99999999999999999999999;
}
/* carousel  */
.carousel-bg {
  background: linear-gradient(rgba(51, 91, 131, 0.6), rgba(51, 91, 131, 0.6)),
    url("../assets/img/bg/bg-1.jpg");
  height: 100vh;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 3.75rem; /* 60px */
  background-position: center;
  animation: carouselAnimation 10s infinite;
}
.carousel-caption {
  right: 0%;
  top: 20%;
  text-align: left;
}

.carousel-inner {
  text-align: left;
}
.carousel-content p {
  font-size: 1.125rem; /* 18px */
  line-height: 2.25rem; /* 36px */
}
@keyframes carouselAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/* services section start  */
.service-section {
  position: relative;
  /* margin-top: -100px; */
  /* background: url("../assets/img/pattern-1.png"); */
  /* height: 668px; */
  /* background-repeat: no-repeat; */
  /* object-fit: cover; */
  height: 100%;
  background-color: var(--bg-theme-color1);
  width: 100%;
}

.service-section .card {
  position: relative;
  background: #ffffff;
  padding: 5rem 1.25rem 1.25rem; /* 80px 20px 20px */
  text-align: center;
  transition: all 300ms ease;
  margin-top: -3.125rem; /* -50px */
  transition: all 0.5s;
  z-index: 155;
}

.card-icon i {
  position: absolute;
  left: 50%;
  top: -3.4375rem; /* -55px */
  margin-left: -3.4375rem; /* -55px */
  height: 6.875rem; /* 110px */
  width: 6.875rem; /* 110px */
  background: var(--bg-theme-color2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.375rem; /* 54px */
  border-radius: 50%;
  transition: all 300ms ease;
  z-index: 1;
}

.service-section .card:hover .card-icon i {
  background: var(--bg-theme-color2);
}
.service-section .card .img-box {
  overflow: hidden;
  transition: 0.5s all;
}
.service-section .card img {
  transition: 0.5s all;
  object-fit: cover;
}
.service-section .card:hover {
  transform: translateY(-1.25rem); /* -20px */
  box-shadow: 0 10px 20px rgb(0 0 0 / 40%);
}
/*
.service-section .card img:hover {
  transform: scale(1, 1.15);
} */
.service-section .card p {
  font-size: 1rem; /* 16px */
  line-height: 2rem; /* 32px */
  color: #7c858c;
  padding: 0 1.25rem;
  margin-bottom: 1.25rem; /* 20px */
}
.service-section .services-text p {
  font-size: 1.125rem; /* 18px */
  color: #8fa1ae;
  font-weight: 400;
  text-align: center;
  margin-top: 1.25rem; /* 20px */
}
.service-section .services-text p strong {
  border-bottom: 2px solid var(--border-theme-color2);
}

/* about section start  */
.about-section {
  position: relative;
  padding: 7.5rem 0 4.375rem; /* 120px 0 70px */
  padding-bottom: 3.125rem; /* 50px */
}
.about-section .about-banner {
  background-image: url(../assets/img/about/about-1.jpg);
  background-position: center;
  background-size: cover;
  object-fit: cover;
  height: 90vh;
  position: relative;
}
.about-section .about-banner .about-expert-info {
  background: var(--bg-theme-color2);
  clip-path: polygon(0 0, 100% 14%, 100% 100%, 0% 100%);
  width: 12.5rem; /* 200px */
  height: 9.375rem; /* 150px */
  position: absolute;
  left: 0;
  top: 3.125rem; /* 50px */
}
.about-section .about-banner .about-banner-img {
  background: #fff;
  position: absolute;
  left: 1.25rem; /* 20px */
  bottom: -3.125rem; /* -50px */
}
.about-section .about-banner .about-banner-img::after {
  content: "";
  position: absolute;
  background: #ff6d2e;
  height: 0.625rem; /* 10px */
  width: 60%;
  right: -12.25rem; /* -196px */
  bottom: 0px;
}
.about-section .about-banner .about-banner-img img {
  padding: 1.25rem; /* 20px */
}
.about-section .about-content {
  position: relative;
  z-index: 9;
}
.about-section .about-content .about-info {
  position: absolute;
  background: #fff;
  top: 3.125rem; /* 50px */
  left: -6.25rem; /* -100px */
}
.about-section .about-info p {
  color: #7c858c;
}
.about-section .about-info .blockquote p {
  color: var(--theme-color2);
  padding-left: 1.25rem; /* 20px */
  border-left: 0.3125rem solid var(--border-theme-color1); /* 5px */
}
.about-section .about-info .youtube-btn {
  position: relative;
}
.about-section .about-info ul li {
  color: var(--theme-color1);
  font-size: 1.25rem; /* 20px */
  line-height: 1.5625rem; /* 25px */
  font-weight: bold;
}
.about-section .about-info ul li i {
  color: var(--theme-color2);
  font-size: 1.75rem; /* 28px */
  line-height: 1.875rem; /* 30px */
}
.about-section .about-info .youtube-btn i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--bg-theme-color2);
  height: 4.375rem; /* 70px */
  background: #fff;
  width: 4.375rem; /* 70px */
  line-height: 4.375rem; /* 70px */
  border-radius: 50%;
  text-align: center;
}

.wrapper {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-main {
  position: relative;
  display: inline-block;
}

.video {
  height: 3.125rem; /* 50px */
  width: 3.125rem; /* 50px */
  line-height: 3.125rem; /* 50px */
  text-align: center;
  border-radius: 100%;
  background: transparent;
  color: #fff;
  display: inline-block;
  background: #fff;
  z-index: 999;
}

@keyframes waves {
  0% {
    transform: scale(0.2, 0.2);
    opacity: 0;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    transform: scale(0.9, 0.9);
    opacity: 0;
  }
}

.waves {
  position: absolute;
  width: 9.375rem; /* 150px */
  height: 9.375rem; /* 150px */
  background: #fff;
  opacity: 0;
  border-radius: 100%;
  right: -3.125rem; /* -50px */
  bottom: -3.125rem; /* -50px */
  z-index: -1;
  animation: waves 3s ease-in-out infinite;
}
.wave-1 {
  animation-delay: 0s;
}
.wave-2 {
  animation-delay: 1s;
}
.wave-3 {
  animation-delay: 2s;
}
/* work section start  */
.work-area {
  position: relative;
  padding: 7.5rem 0 4.375rem; /* 120px 0 70px */
}
.work-area .sub-title::before {
  position: absolute;
  left: 50%;
  top: 0;
  height: 2px;
  width: 2.625rem; /* 42px */
  background: var(--bg-theme-color2);
  content: "";
}
.work-block {
  position: relative;
  margin-bottom: 3.125rem; /* 50px */
  margin-top: 3.125rem; /* 50px */
  z-index: 1;
  text-align: center;
}

.work-card-icon {
  background: #fff;
  position: absolute;
  width: 6.25rem; /* 100px */
  height: 6.25rem; /* 100px */
  display: flex;
  justify-content: center;
  align-items: center;
  top: -3.125rem; /* -50px */
  box-shadow: 0 5px 20px rgb(0 0 0 / 10%);
  left: 50%;
  font-size: 3.375rem; /* 54px */
  transition: all 300ms ease;
  margin-left: -3.125rem; /* -50px */
  color: var(--bg-theme-color2);
  transition: all 0.5s;
}
.work-card-icon::after {
  position: absolute;
  left: 50%;
  margin-left: -0.625rem; /* -10px */
  bottom: -0.625rem; /* -10px */
  border-left: 0.625rem solid transparent; /* 10px */
  border-right: 0.625rem solid transparent; /* 10px */
  border-top: 0.625rem solid #ffffff; /* 10px */
  content: "";
  transition: all 300ms ease;
}
.work-card-body {
  position: relative;
  background: var(--bg-theme-color3);
  padding: 5.3125rem 1.875rem 1.875rem; /* 85px 30px 30px */
  margin-bottom: 2.5rem; /* 40px */
  transition: all 500ms ease;
}
.work-card-body::after {
  position: absolute;
  left: 50%;
  margin-left: -1.25rem; /* -20px */
  bottom: -1.25rem; /* -20px */
  border-left: 1.25rem solid transparent; /* 20px */
  border-right: 1.25rem solid transparent; /* 20px */
  border-top: 1.25rem solid var(--border-theme-color3); /* 20px */
  content: "";
  transition: all 300ms ease;
}
.work-block h4 {
  position: relative;
  color: var(--theme-color1);
  font-size: 1.5rem; /* 24px */
  line-height: 2.25rem; /* 36px */
  font-weight: 700;
  margin-bottom: 0.9375rem; /* 15px */
}
.work-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem; /* 14px */
  line-height: 1.5625rem; /* 25px */
  color: #ffffff;
  font-weight: 600;
  background: var(--bg-theme-color1);
  letter-spacing: 0.05em;
  overflow: hidden;
  text-transform: uppercase;
}
.work-btn .count {
  position: relative;
  padding: 0.9375rem 0.625rem;
  width: 3.4375rem; /* 55px */
}
.work-btn .count span {
  position: relative;
  color: #ffffff;
  z-index: 1;
}
.work-btn .count::after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--bg-theme-color2);
  content: "";
  transition: all 500ms ease;
}
.work-btn .work-btn-title {
  display: inline-block;
  padding: 0.9375rem 2.1875rem; /* 15px 35px */
  position: relative;
  z-index: 2;
  color: #fff;
  transition: all 0.5s;
}

.work-card:hover .work-card-icon {
  background: var(--bg-theme-color2);
  color: #fff;
}
.work-card:hover .work-card-icon::after {
  border-top: 0.625rem solid var(--border-theme-color2); /* 10px */
}
.work-card:hover .work-card-body {
  background: var(--bg-theme-color1);
  color: rgb(211, 210, 210);
}
.work-card:hover .work-card-body h4 {
  color: #fff;
}
.work-card:hover .count::after {
  background: var(--bg-theme-color1);
}
.work-card:hover .work-btn-title {
  background: var(--bg-theme-color2);
  color: #fff;
}

/* fun fact section start  */
.fact-section {
  position: relative;
  padding: 7.5rem 0 0;
}
.fact-section .bg-image {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 7.5rem; /* 120px */
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-position: center top;
  background: linear-gradient(rgba(51, 91, 131, 0.8), rgba(51, 91, 131, 0.8)),
    url(../assets/img/bg/1.png);
}

.fact-card {
  position: relative;
}
.fact-card:hover .fact-icon-card {
  transform: scale(0.8);
  background-color: var(--bg-theme-color3);
}
.fact-icon-card {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 10rem; /* 160px */
  width: 12.5rem; /* 200px */
  background-color: #fff;
  border-top: 0.25rem solid var(--border-theme-color2); /* 4px */
  transition: all 300ms ease;
  margin: 0 auto -3.75rem; /* -60px */
  z-index: 1;
}
.fact-icon-card img {
  display: inline-block;
  height: auto;
  max-width: 100%;
  padding: 1.875rem; /* 30px */
}
.fact-card-body {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 3.75rem 3.125rem 2.25rem; /* 60px 50px 36px */
  padding-right: 1.875rem; /* 30px */
  border-top: 0.25rem solid var(--border-theme-color2); /* 4px */
  box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
}
.fact-card-body .cont-box {
  font-size: 3.75rem; /* 60px */
  color: var(--theme-color1);
  font-weight: 700;
  line-height: 1em;
  margin-right: 1.25rem; /* 20px */
  text-transform: uppercase;
}
.fact-card-body span {
  font-size: 3.75rem; /* 60px */
  color: var(--theme-color1);
  font-weight: 700;
  line-height: 1em;
}
.fact-card-body h4 {
  display: inline-block;
  font-size: 1rem; /* 16px */
  line-height: 1.5625em; /* 25px */
  color: #7c858c;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
/* project section start  */
.project-area {
  position: relative;
  z-index: 1;
}
.project-area .sub-title::before {
  position: absolute;
  left: 50%;
  top: 0;
  height: 2px;
  width: 2.625rem; /* 42px */
  background: var(--bg-theme-color2);
  content: "";
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 1.125rem; /* 18px */
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-block {
  position: relative;
}
.project-block .inner-box {
  position: relative;
  padding: 0 0px 1.875rem; /* 30px */
}
.project-block .image-box {
  position: relative;
  overflow: hidden;
  transition: all 300ms ease;
}
.project-block .image {
  position: relative;
  margin-bottom: 0px;
}
.project-block .image::before {
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}
.project-block .image a {
  display: block;
  width: 100%;
}
.project-block .image img {
  width: 100%;
  transition: all 300ms ease;
}
.project-block .image img {
  width: 100%;
  transition: all 300ms ease;
}
.project-block .content-box {
  position: relative;
  margin-top: -3.125rem; /* -50px */
  padding-left: 2.8125rem; /* 45px */
}
.project-block .content-box .inner {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
  padding: 1.125rem 3.125rem 1.4375rem 1.875rem; /* 18px 50px 23px 30px */
}
.project-block .content-box .inner .title {
  font-size: 0.75rem; /* 12px */
  line-height: 2rem; /* 30px */
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--theme-color2);
}
.project-block .content-box .inner h4 {
  display: block;
  font-size: 1.25rem; /* 20px */
  color: var(--theme-color1);
  font-weight: 700;
  margin-bottom: 0.3125rem; /* 5px */
}
.project-block .content-box .inner h4 a {
  color: var(--theme-color1);
  transition: all 300ms ease;
}
.project-block .content-box .inner .icon {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 3.125rem; /* 50px */
  color: #fff;
  font-size: 1.125rem; /* 18px */
  background-color: var(--bg-theme-color1);
  transition: all 300ms ease;
}
.inner-box .content-box h4 a:hover {
  color: var(--bg-theme-color2);
}
.inner-box:hover .content-box .inner .icon {
  background-color: var(--bg-theme-color2);
}
/* team-section start  */
.team-section .card-title {
  color: var(--bg-theme-color1);
}
.team-section .designation {
  color: var(--bg-theme-color2);
  text-transform: uppercase;
}
.team-section .card-text {
  color: #7c858c;
}
.social-link {
  margin-top: 1.25rem; /* 20px */
}
.social-link li {
  display: inline-block;
}
.social-link li a {
  display: flex;
  background: #07304d;
  height: 2.5rem; /* 40px */
  width: 2.5rem; /* 40px */
  line-height: 2.5rem; /* 40px */
  text-align: center;
  font-size: 0.9375rem; /* 15px */
  border-radius: 50%;
  color: var(--bg-theme-color3);
  transition: all 0.5s;
}
.social-link li a:hover {
  background: var(--bg-theme-color2);
}
/* faqs section start  */
.faqs {
  background: linear-gradient(
      rgba(234, 240, 244, 0.9),
      rgba(234, 240, 244, 0.9)
    ),
    url(../assets/img/1.png);
}
.faq-block {
  margin-bottom: 2.5rem; /* 40px */
  position: relative;
}
.faq-block .faq-content {
  padding-left: 4.375rem; /* 70px */
  position: relative;
}
.faq-block .faq-icon {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem; /* 50px */
  width: 2.5rem; /* 50px */
  color: #fff;
  background-color: var(--bg-theme-color2);
  border-radius: 50%;
  font-size: 0.875rem; /* 14px */
  transition: all 300ms ease;
}
.faq-block .faq-content h4 {
  font-size: 1.125rem; /* 18px */
  line-height: 1.2em;
  color: var(--theme-color1);
  font-weight: 700;
  margin-bottom: 0.625rem; /* 10px */
}
.faq-block .faq-content p {
  font-size: 1rem; /* 16px */
  line-height: 1.875rem; /* 30px */
  color: var(--theme-color4);
  width: 75%;
}
.faq-block:hover .faq-icon {
  background-color: var(--bg-theme-color1);
}
.accordion-button:not(.collapsed) {
  color: var(--bg-theme-color2);
}
.accordion-button {
  font-size: 1.125rem; /* 18px */
  line-height: 1.5625rem; /* 25px */
  color: var(--theme-color1);
  font-weight: 700;
  transition: all 500ms ease;
  border-bottom: 1px solid var(--border-theme-color3);
}
.accordion-body {
  padding: 2rem 1rem;
  display: block;
  font-size: 1rem; /* 16px */
  line-height: 1.875rem; /* 30px */
  color: #7c858c;
  margin-bottom: 0;
}
.accordion-button:not(.collapsed)::after {
  background: url(../assets/icons/minus-solid.svg);
  color: var(--bg-theme-color1);
}
.accordion-button::after {
  background: url(../assets/icons/plus-solid.svg);
  color: var(--bg-theme-color2);
}

/* quote section start  */
.quote {
  background: url(../assets/img/bg/3.jpg);
  height: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
}
.quote-form {
  position: relative;
  padding: 3.4375rem 3.75rem 3.75rem;
  background-color: #ffffff;
  overflow: hidden;
  margin-left: 1.25rem; /* 20px */
  margin-right: 1.25rem; /* 20px */
}
.quote-form h4 {
  font-size: 1.25rem; /* 20px */
  color: var(--theme-color1);
  font-weight: 700;
  margin-bottom: 1.875rem; /* 30px */
}
.quote-form form label {
  font-size: 0.75rem; /* 12px */
  line-height: 1.25rem; /* 20px */
  color: var(--theme-color4);
  font-weight: 600;
  display: block;
  margin-bottom: 0.625rem; /* 10px */
}
.quote-form form select {
  position: relative;
  display: block;
  height: 3.75rem; /* 60px */
  width: 100%;
  font-size: 0.875rem; /* 14px */
  color: var(--theme-color1);
  line-height: 1.875rem; /* 30px */
  font-weight: 400;
  padding: 0.875rem 1.25rem; /* 14px 20px */
  border: 1px solid #dfe8ee;
  color: #7c858c;
  transition: all 300ms ease;
}

.quote-form form .form-control {
  position: relative;
  display: block;
  height: 3.75rem; /* 60px */
  width: 100%;
  font-size: 0.875rem; /* 14px */
  color: var(--theme-color1);
  line-height: 1.875rem; /* 30px */
  font-weight: 400;
  padding: 0.875rem 1.25rem; /* 14px 20px */
  border: 1px solid #dfe8ee;
  color: #7c858c;
}
/* .quote-form form select option{
 background: var(--bg-theme-color1);
} */

.quote-content {
  position: relative;
  max-width: 19.375rem; /* 310px */
  padding-left: 3.75rem; /* 60px */
  padding-top: 3.4375rem; /* 55px */
  padding-right: 2.5rem; /* 40px */
}
.quote-youtube-btn {
  position: relative;
  padding: 3.125rem 0px;
}
.quote-youtube-btn .wrapper {
  display: inline-block;
  position: absolute;
  top: 0px;
  left: 20%;
  transform: translate(-50%, -50%);
}
.quote-youtube-btn i {
  color: var(--bg-theme-color2);
}
.quote .logo-icon {
  display: block;
  margin-bottom: 0.625rem; /* 10px */
}
.quote .logo-icon img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  width: auto;
}
.quote-content p {
  font-size: 0.875rem; /* 14px */
  line-height: 1.625rem; /* 26px */
  text-decoration: underline;
  color: #ffffff;
  opacity: 0.7;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1.25rem; /* 20px */
}
.quote-content h2 {
  font-size: 1.5rem; /* 24px */
  line-height: 2.25rem; /* 36px */
  font-weight: 700;
  color: #ffffff;
}
/* client box  */
.client-box {
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
}
.client-box a {
  position: relative;
}
.client-box img {
  display: inline-block;
  max-width: 100%;
  width: auto;
  height: auto;
  opacity: 0.3;
  transition: all 0.3s ease;
}
.client-box img:hover {
  opacity: 1;
}
/* call-to-action */
.call-to-action-box {
  background: var(--bg-theme-color2);
  position: relative;
}
.call-to-action-box::before {
  position: absolute;
  left: 0.9375rem; /* 15px */
  right: 0.9375rem; /* 15px */
  bottom: -0.9375rem; /* -15px */
  height: 0.9375rem; /* 15px */
  background-color: rgba(255, 255, 255, 0.1);
  content: "";
}
.call-to-action-box h2 {
  font-size: 2.25rem; /* 36px */
  line-height: 1.2em;
  color: var(--bg-theme-color3);
  font-weight: 700;
}
.call-to-action-box .primary-btn {
  background: var(--bg-theme-color1);
}
.call-to-action-box .primary-btn:before {
  background-color: var(--bg-theme-color3);
}
.call-to-action-box .primary-btn:hover {
  color: var(--bg-theme-color1);
}

/* big footer  */
.big-footer {
  background: linear-gradient(rgba(11, 59, 94, 0.9), rgba(11, 59, 94, 0.9)),
    url(../assets/img/bg/5.jpg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  padding: 11.25rem 0 4.375rem; /* 180px 0 70px */
  margin-top: -3.75rem; /* -60px */
  object-fit: cover;
}
.big-footer img {
  width: auto;
  margin-bottom: 1.25rem; /* 20px */
}
.big-footer p {
  position: relative;
  font-size: 1rem; /* 16px */
  line-height: 1.875rem; /* 30px */
  color: #8fa1ae;
  margin-bottom: 1.25rem; /* 20px */
}
.footer-from .primary-btn {
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--bg-theme-color2);
}

.footer-from .primary-btn:hover {
  border: 1px solid var(--bg-theme-color2);
}

.big-footer h5 {
  color: var(--bg-theme-color3);
  font-size: 1.25rem; /* 20px */
  font-weight: 700;
  margin-bottom: 1.875rem; /* 30px */
  position: relative;
  display: inline-block;
}
.big-footer .user-link li {
  position: relative;
  font-size: 1rem; /* 16px */
  line-height: 1.5rem; /* 24px */
  font-weight: 400;
  margin-bottom: 0.875rem; /* 14px */
}
.big-footer .user-link li a {
  position: relative;
  display: inline-block;
  transition: all 300ms ease;
  color: #8fa1ae;
}
.big-footer .user-link li a::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--bg-theme-color2);
  content: "";
  transition: all 300ms ease;
}
.big-footer .user-link li a:hover {
  color: #ffffff;
}
.big-footer .user-link li a:hover::before {
  width: 100%;
}
.big-footer .contact-list {
  position: relative;
}
.big-footer .contact-list li {
  position: relative;
  display: block;
  font-size: 1rem; /* 16px */
  line-height: 1.375rem; /* 22px */
  color: #8fa1ae;
  font-weight: 400;
  padding-left: 1.875rem; /* 30px */
  margin-bottom: 1.25rem; /* 20px */
}
.big-footer .contact-list li i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.125rem; /* 18px */
  width: 1.25rem; /* 20px */
  text-align: center;
  line-height: 1.5625rem; /* 25px */
  color: var(--theme-color2);
}
.big-footer .contact-list li strong {
  display: block;
  font-size: 1.125rem; /* 18px */
  line-height: 1.375rem; /* 22px */
  color: #ffffff;
  font-weight: 700;
}
.big-footer .contact-list li a {
  color: #8fa1ae;
  transition: all 300ms ease;
}
.big-footer .contact-list li a:hover {
  color: var(--bg-theme-color3);
}
.footer-bottom {
  background: #07304d;
  padding: 2.1875rem 0px; /* 35px 0 */
}
.footer-bottom .copyright-text p {
  position: relative;
  font-size: 1rem; /* 16px */
  line-height: 1.5625rem; /* 25px */
  font-weight: 400;
  color: #8fa1ae;
}
.footer-bottom .copyright-text a {
  transition: all 300ms ease;
  color: #8fa1ae;
}
.footer-bottom .copyright-text a:hover {
  color: var(--bg-theme-color3);
}
/* all pages banner  */

.banner {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../assets/img/bg/1.png);
  height: 21.875rem; /* 350px */
  width: 100%;
  margin-top: 3.75rem; /* 60px */
  background-size: cover;
  background-position: top center;
  object-fit: cover;
  position: relative;
}

.banner .banner-info h1 {
  font-size: 4rem; /* 64px */
  color: #ffffff;
  margin-bottom: 1.0625rem; /* 17px */
}
.breadcrumb-item a {
  color: var(--bg-theme-color2);
}
.breadcrumb-item.active,
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--bg-theme-color3);
}

/* -------------services pages -------------- */

.services-bg {
  background: transparent;
}
/* -------------contact pages -------------- */

.contact-details h2 {
  position: relative;
  line-height: 1.2em;
  font-size: 3.125rem; /* 50px */
  font-weight: 700;
}
.contact-touch-list {
  position: relative;
}
.contact-touch-list li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.625rem 0px;
}
.contact-touch-list li .icon {
  height: 5rem; /* 80px */
  width: 5rem; /* 80px */
  background-color: var(--theme-color1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
}
.contact-touch-list li .icon i {
  color: var(--bg-theme-color3);
  font-size: 1.5625rem; /* 25px */
  transition: all 500ms ease;
}
.contact-touch-list li .text {
  color: #07304d;
  margin-left: 1.875rem; /* 30px */
}
.contact-touch-list li h6 {
  color: var(--theme-color1);
  font-weight: bold;
}
.contact-touch-list li a {
  color: #07304d;
  font-size: 1rem; /* 16px */
  transition: all 300ms ease;
}
.contact-touch-list li:hover .icon {
  background: var(--bg-theme-color2);
}
 .location iframe{
  width: 100%;
  height: 31.25rem; /* 500px */
 }

.top-info-bar {
  background-color: #07304d; /* Blue background */
  color: #ffffff; /* White text */
}

.top-info-bar a {
  color: #ffffff; /* White text for links */
  text-decoration: none; /* Remove underline */
  font-size: 0.875rem; /* Adjust font size */
}

.top-info-bar a:hover {
  text-decoration: underline; /* Add underline on hover */
}

.infobar-social-link {
  margin-left: 1.25rem; /* 20px */
  color: inherit; /* Ensures the color matches the parent element */
  text-decoration: none; /* Removes underline */
}

.infobar-social-link:hover {
  color: #ffffff; /* Optional: Change color on hover */
}

.btn {
  border-radius: 3.125rem; /* 50px → 3.125rem */
}

.quote-link {
  position: relative;
  font-size: 0.8125rem; /* 13px */
  color: #ffffff;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  background: var(--bg-theme-color1);
  letter-spacing: 0.1em;
  overflow: hidden;
  text-transform: uppercase;
  display: inline-block;
  z-index: 1;
  border: none;
  transition: all 0.5s;
  border-radius: 3.125rem;
  margin-left: 0.625rem; /* 10px */
}
.quote-link:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: var(--bg-theme-color2);
  z-index: -1;
  transform: scale(0, 1);
  transform-origin: top right;
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.quote-link:hover:before {
  transform: scale(1, 1);
  transform-origin: bottom left;
}
.quote-link:hover {
  color: #ffffff;
  box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
  border: none;
}

.btn-white {
  position: relative;
  font-size: 0.8125rem; /* 13px */
  color: #07304d;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  background: #ffffff;
  letter-spacing: 0.1em;
  overflow: hidden;
  text-transform: uppercase;
  display: inline-block;
  z-index: 1;
  border: none;
  transition: all 0.5s;
  border-radius: 3.125rem;
  margin-left: 0.625rem; /* 10px */
}
.btn-white:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: var(--bg-theme-color2);
  z-index: -1;
  transform: scale(0, 1);
  transform-origin: top right;
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.btn-white:hover:before {
  transform: scale(1, 1);
  transform-origin: bottom left;
}
.btn-white:hover {
  color: #ffffff;
  box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
  border: none;
}

::placeholder {
  color: #7c858c; /* Change to your desired color */
  font-size: 0.875rem; /* Change to your desired font size */
}

.air-freight-details {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url(../assets/img/service/top-service-1.jpg);
  background-position: center;
  background-size: cover;
  object-fit: cover;
  overflow: hidden;
  max-height: 0; /* Initially hidden */
  transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
  padding: 0; /* Ensure padding collapses when hidden */
}

.ocean-freight-details {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url(../assets/img/service/top-service-2.jpg);
  background-position: center;
  background-size: cover;
  object-fit: cover;
  overflow: hidden;
  max-height: 0; /* Initially hidden */
  transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
  padding: 0; /* Ensure padding collapses when hidden */
}

.project-cargo-details {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url(../assets/img/service/top-service-3.jpg);
  background-position: center;
  background-size: cover;
  object-fit: cover;
  overflow: hidden;
  max-height: 0; /* Initially hidden */
  transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
  padding: 0; /* Ensure padding collapses when hidden */
}

.air-freight-details::before,
.ocean-freight-details::before,
.project-cargo-details::before {
  content: "";
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
  z-index: 1; /* Ensure the overlay is above the background image */
}

.air-freight-details .container,
.ocean-freight-details .container,
.project-cargo-details .container {
  position: relative;
  z-index: 2; /* Ensure the text is above the overlay */
}

/* Section Title */
.section-title {
  font-size: 2.625rem; /* Match the heading size */
  font-weight: 700;
  color: #fff; /* Match the theme color */
  margin-bottom: 1rem;
}

/* Section Text */
.section-text {
  font-size: 1.125rem; /* 18px → 1.125rem */
  line-height: 1.8;
  color: #fff; /* Match the body text color */
  margin-bottom: 1rem;
  width: 45%;
}

/* Section Subtitle */
.section-subtitle {
  font-size: 1.125rem; /* 18px → 1.125rem */
  font-weight: 600;
  color: #fff; /* Match the theme color */
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Section List */
.section-list {
  margin-bottom: 2.5rem; /* 40px → 2.5rem */
  padding-left: 1.5rem;
}

.section-list li {
  margin-bottom: 0.3125rem; /* 5px → 0.3125rem */
  font-size: 1.125rem; /* 18px → 1.125rem */
  line-height: 1.8;
}

body {
  font-size: 1rem; /* base font size */
}

h1 {
  font-size: 2.5rem; /* 40px → 2.5rem */
}
h2 {
  font-size: 2rem; /* 32px → 2rem */
}
h3 {
  font-size: 1.5rem; /* 24px → 1.5rem */
}
h4 {
  font-size: 1.25rem; /* 20px → 1.25rem */
}
h5 {
  font-size: 1.125rem; /* 18px → 1.125rem */
}
h6 {
  font-size: 1rem; /* 16px → 1rem */
}

.container {
  max-width: 100vw;
  padding-left: 1rem;
  padding-right: 1rem;
}