@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@keyframes shake {
  0% {
    transform: translate(1px, 0);
  }
  25% {
    transform: translate(-1px, 0);
  }
  50% {
    transform: translate(1px, 0);
  }
  75% {
    transform: translate(-1px, 0);
  }
  100% {
    transform: translate(1px, 0);
  }
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
header .navbar {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
header .navbar .offcanvas {
  width: 100%;
  background-color: #0F1A30;
}
header .navbar .offcanvas-body .navbar-nav {
  line-height: 30px;
}
header .navbar .offcanvas-body .navbar-nav .nav-item .nav-link {
  color: #FFFFFF;
  text-transform: uppercase;
}
header .navbar .offcanvas-body .navbar-nav .nav-item:hover .nav-link {
  color: #000000;
}
header .navbar .offcanvas-body .navbar-nav .nav-item:hover .nav-link::after {
  content: "";
  display: block;
  border-bottom: 2px solid #B99F55;
}
header .icon-circle {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #007bff;
  /* Bootstrap Primary Color */
  color: #fff;
}
header .active::after {
  content: "";
  display: block;
  border-bottom: 2px solid #B99F55;
  color: #000000;
}

#homeHero {
  position: relative;
  top: 0;
  width: 100%;
  height: 100vh;
}
#homeHero .homehero-content {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: inherit;
  color: #fff;
  z-index: 2;
}
#homeHero .homehero-content h1 {
  font-weight: 700;
}
#homeHero .btn-primary {
  background-color: #0F1A30;
  border-color: #FFFFFF;
}
#homeHero .btn-primary:hover {
  border-color: #B99F55;
}
#homeHero a {
  color: #FFFFFF;
  text-decoration: none;
  text-transform: uppercase;
}
#homeHero a:hover {
  color: #B99F55 !important;
}
#homeHero .position-relative {
  position: relative;
}
#homeHero .floating-img {
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 10;
  animation: float 3s ease-in-out infinite;
}
#homeHero .floating-left-bottom {
  bottom: 15px;
  left: -15px;
}
#homeHero .floating-top-right {
  top: 75px;
  right: -15px;
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

#hero {
  position: relative;
  top: 0;
  width: 100%;
  height: 400px;
}
#hero .hero-content {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
#hero h2 {
  color: #FFFFFF;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0;
  white-space: nowrap;
  font-family: "Prompt";
}
#hero p {
  color: #FFFFFF;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  white-space: nowrap;
  font-family: "Jost";
}
#hero img,
#hero video {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

#specialSection {
  position: relative;
  top: 0;
  width: 100%;
  height: 420px;
}
#specialSection .hero-content {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
#specialSection .hero-content h3 {
  font-weight: 600;
}
#specialSection .specialSection-content {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
#specialSection img,
#specialSection video {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
#specialSection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
#specialSection .transparent-card {
  position: relative;
  color: white;
  border: none;
  background-color: transparent;
  border-radius: 1rem;
}
#specialSection .transparent-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 1;
  border-radius: 1rem;
}
#specialSection .transparent-card .card-body {
  position: relative;
  z-index: 2;
  border-radius: 1rem;
}

#approach .custom-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
#approach .custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-image: url("../images/arrow-up-bold-duotone.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
#approach img:hover {
  animation: shake 0.5s;
}

#about img:hover {
  animation: shake 0.5s;
}

#solutions {
  background-color: #FCFCFC;
}
#solutions .card-header {
  border-bottom: 0;
  background-color: #fff;
  padding: 0%;
}
#solutions .card-img-container {
  width: 96%;
  overflow: hidden;
  position: relative;
  margin: 2%;
  border-radius: 5px;
}
#solutions .card-img-top {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
#solutions .card:hover .card-img-top {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
#solutions .custom-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
#solutions .custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-image: url("../images/check-mark.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

#contact .btn-primary {
  background-color: #004F70;
  border-color: #004F70;
  border-radius: 0;
}
#contact .btn-primary:hover {
  background-color: #0F1A30;
  color: #FFFFFF;
}
#contact img:hover {
  animation: shake 0.5s;
}

#homeInfo img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}
#homeInfo p {
  color: #0A466C;
  font-weight: 600;
}
#homeInfo img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
  transition: transform 0.2s ease;
}
#homeInfo img:hover {
  animation: shake 0.5s;
}

#homeDescription h1 {
  color: #0F1A30;
  font-weight: 700;
}
#homeDescription h5 {
  color: #0098B9;
}

#homeExpertise {
  background-color: rgba(0, 79, 112, 0.0392156863);
}
#homeExpertise .card {
  border-radius: 0;
}
#homeExpertise .card-body h5 {
  color: #000000 !important;
  font-weight: 600;
}
#homeExpertise h1 {
  color: #0F1A30;
  font-weight: 700;
}
#homeExpertise h5 {
  color: #0098B9;
}
#homeExpertise .card-header {
  padding: 0%;
}
#homeExpertise .card-img-container {
  width: 96%;
  overflow: hidden;
  position: relative;
  margin: 2%;
  border-radius: 5px;
}
#homeExpertise .card-img-top {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
#homeExpertise .card:hover .card-img-top {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
#homeExpertise .top-icon {
  width: 40px;
  height: auto;
  margin-top: -20px;
  margin-left: 80%;
}

#tailoredSolutions .card {
  border-radius: 2rem;
}
#tailoredSolutions .card-body {
  background-color: #0A466C;
  border-radius: 1rem;
}
#tailoredSolutions .card-body h5 {
  color: #FFFFFF !important;
  font-weight: 600;
}
#tailoredSolutions h1 {
  color: #0F1A30;
  font-weight: 700;
}
#tailoredSolutions h5 {
  color: #0098B9;
}
#tailoredSolutions .card:hover .card-body {
  background-color: #0F1A30;
}
#tailoredSolutions .title-icon {
  margin-right: 1rem;
}

#imageGallery img {
  transition: transform 0.3s ease;
  width: 100%;
}
#imageGallery img:hover {
  transform: scale(0.95);
  transform-origin: center;
}

#testaonials h1 {
  color: #0F1A30;
  font-weight: 700;
}
#testaonials h5 {
  color: #0098B9;
}

footer {
  background-color: #0F1A30;
  color: #FFFFFF;
}
footer .address-section {
  padding: 50px 0 0 0;
}
footer .address-section h6 {
  font-style: normal;
  font-weight: 500;
  line-height: 26.4px;
  margin: 0;
  margin-bottom: 15px;
  font-size: 22px;
  color: #FFFFFF;
}
footer .address-section p {
  margin: 0;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  color: rgb(255, 255, 255);
}
footer .address-section ul {
  margin: 0;
}
footer .address-section ul li {
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
  font-size: 15px;
}
footer .address-section ul li a {
  color: #FFFFFF;
  text-decoration: none;
}
footer .address-section #footer-social-list li a {
  display: flex;
  width: 37px;
  height: 37px;
  padding: 15px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 1px solid rgb(255, 255, 255);
  background: #B99F55;
  color: rgb(255, 255, 255);
}
footer .address-section #footer-social-list li i {
  color: #ffffff;
}
footer .address-section #footer-contact-list li a {
  color: #E1E1E1;
  font-family: Prompt;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
}
footer .address-section .contact-address {
  display: flex;
  align-items: center;
}
footer .address-section .contact-address div {
  color: #ffffff;
}
footer .address-section .contact-icon {
  width: 20px;
  height: 20px;
  padding: 8px;
  background-color: #ffffff;
  border-radius: 50px;
  margin-right: 10px;
  box-sizing: content-box;
  vertical-align: middle;
}
footer .all-rights p {
  color: rgb(225, 225, 225);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
}
footer .all-rights p a {
  color: #FFFFFF;
  text-decoration: none;
}
footer hr {
  margin: 1rem 0 0 0 !important;
  opacity: 0.5;
}
footer .address-spacing {
  line-height: 25px;
}/*# sourceMappingURL=style.css.map */