﻿@import url("https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@400;700&display=swap");
body {
  font-family: "Noto Kufi Arabic", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Default Light Mode */
body {
  background-color: white;
  color: black;
  transition: background 0.3s, color 0.3s;
  direction: rtl;
  text-align: right;
}
body a {
  font-family: "Noto Kufi Arabic", sans-serif;
}
body p, body ul, body ol, body li {
  font-family: "Noto Kufi Arabic", sans-serif;
}

.wrapper {
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .wrapper {
    width: 95%;
  }
}

.wrapper2 {
  width: 75%;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .wrapper2 {
    width: 95%;
  }
}
.wrapper2 a {
  text-decoration: none;
  color: black;
}

a {
  text-decoration: none;
}

.detail-service {
  width: 75%;
  margin: 30px auto;
}
@media (max-width: 1000px) {
  .detail-service {
    width: 95%;
  }
}
@media (max-width: 1000px) {
  .detail-service h1 {
    font-size: 25px;
  }
}
.detail-service img {
  width: 100%;
}
.detail-service p {
  color: #323232;
  font-size: 18px;
  line-height: 28px;
}
@media (max-width: 1000px) {
  .detail-service p {
    font-size: 14px;
  }
}

.two-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1000px) {
  .two-grid {
    grid-template-columns: 1fr;
  }
}

.three-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1000px) {
  .three-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1000px) {
  .three-grid.responsive {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .three-grid.responsive {
    grid-template-columns: 1fr;
  }
}

.four-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 1000px) {
  .four-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .four-grid {
    grid-template-columns: 1fr;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  height: 90px;
  z-index: 1000;
}
@media (max-width: 1000px) {
  .navbar {
    height: 70px;
  }
}

.navbar .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  width: 190px;
}
@media (max-width: 1000px) {
  .logo {
    width: 150px;
  }
}

.navbar-right {
  display: flex;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links li a:hover {
  color: #007bff;
}

.contact-button {
  background-color: #06497E;
  color: white;
  padding: 0.1rem 1rem;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: 15px;
}

.contact-button:hover {
  background-color: #0056b3;
}

/* Language dropdown */
.language-dropdown {
  position: relative;
}

.language-button {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
}
.language-button svg {
  width: 25px;
  height: 25px;
}

.dropdown-menu {
  position: absolute;
  top: 35px;
  right: 0;
  background-color: white;
  border: 1px solid #ccc;
  list-style: none;
  padding: 0.5rem 0;
  min-width: 120px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1001;
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #333;
}

.dropdown-menu li a:hover {
  background-color: #f5f5f5;
}

/* Toggle display */
.dropdown-menu.show {
  display: block;
}

/* Hamburger menu - hidden by default */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1000px) {
  .hamburger {
    display: block;
  }
  .navbar-right {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background-color: white;
    display: none;
    flex-direction: column;
    border-top: 1px solid #ddd;
  }
  .navbar-right.active {
    display: flex;
  }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
  .nav-links li {
    width: 100%;
    padding: 0.5rem 0;
  }
}
@media (max-width: 1000px) and (max-width: 1000px) {
  .nav-links li {
    border-bottom: solid 1px #efefef;
  }
}
@media (max-width: 1000px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
  }
}
.button {
  background: #06497E;
  color: white;
  display: inline-block;
  border-radius: 30px;
  padding: 15px 35px;
  margin-top: 30px;
  text-transform: capitalize;
  transition: 0.3s ease-in-out;
}
.button:hover {
  background: none;
  border: solid 1px #06497E;
  transition: 0.3s ease-in-out;
}
.button:hover a {
  color: #06497E;
}
.button:hover svg {
  margin-left: 20px;
  transition: 1s ease-in-out;
}
.button a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: end;
  justify-content: center;
}
.button svg {
  margin-left: 10px;
  transition: 1s ease-in-out;
}
.button svg rect {
  fill: white;
}
.button svg path {
  fill: #248BE7;
}

p {
  font-size: 18px;
  line-height: 28px;
}
@media (max-width: 1000px) {
  p {
    font-size: 14px;
  }
}

.p-title {
  color: #323232;
  font-size: 18px;
  line-height: 28px;
}
@media (max-width: 1000px) {
  .p-title {
    font-size: 14px;
  }
}

.darkBlue {
  color: #06497E;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30px;
  margin-top: 50px;
  position: absolute;
  bottom: -20px;
  transition: 1s ease-in-out;
}

/* Mouse Shape */
.mouse {
  width: 25px;
  height: 45px;
  border: 2px solid #707070;
  border-radius: 50px;
  position: relative;
}

.wheel {
  width: 2px;
  height: 12px;
  background: #707070;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelMove 1.2s infinite;
}

@keyframes wheelMove {
  0% {
    opacity: 1;
    top: 10px;
  }
  50% {
    opacity: 0.3;
    top: 20px;
  }
  100% {
    opacity: 1;
    top: 10px;
  }
}
/* Down Arrows */
.arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8px;
}

.arrows span {
  display: block;
  width: 8px;
  height: 8px;
  border-left: 2px solid #707070;
  border-bottom: 2px solid #707070;
  transform: rotate(-45deg);
  margin: 4px 0;
  animation: arrowBlink 1.5s infinite;
}

.arrows span:nth-child(2) {
  animation-delay: 0.3s;
}

@keyframes arrowBlink {
  0%, 100% {
    opacity: 0.3;
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    opacity: 1;
    transform: translateY(5px) rotate(-45deg);
  }
}
.circle {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.circle .c1 {
  border-radius: 50%;
  width: 400px;
  height: 400px;
  border: solid 40px #06497E;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.circle .c2 {
  border-radius: 50%;
  width: 280px;
  height: 280px;
  border: solid 40px #06497E;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.circle .c3 {
  border-radius: 50%;
  width: 160px;
  height: 160px;
  border: solid 50px #06497E;
  opacity: 0.5;
  background: #06497E;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.swiper {
  height: calc(100vh - 90px);
  width: 100vw; /* Full width */
  margin-top: 90px;
}
@media (max-width: 1000px) {
  .swiper {
    height: calc(100vh - 70px);
    margin-top: 70px;
  }
}

.swiper-slide {
  width: 100vw; /* Ensure each slide is full width */
  /* Ensure each slide is full height */
  background: white;
}

.slide1 {
  background: #F0F0F0;
}
.slide1 .slide1-title {
  padding-top: 100px;
  transition: 1s ease-in-out;
  position: relative;
  left: 100%;
}
@media (max-width: 1000px) {
  .slide1 .slide1-title {
    padding-top: 30px;
  }
}
@media (min-width: 1540px) {
  .slide1 .p-title {
    width: 80%;
  }
}
@media (max-width: 1000px) {
  .slide1 .p-title {
    font-size: 14px;
  }
}
.slide1 .button {
  background: #E43B41;
  margin-top: 40px;
}
.slide1 .button:hover {
  background: none;
  border: solid 1px #E43B41;
}
.slide1 .button:hover a {
  color: #E43B41;
}
.slide1 h1 {
  font-size: 40px;
  margin-bottom: 30px;
  text-transform: capitalize;
  line-height: 60px;
}
@media (min-width: 1540px) {
  .slide1 h1 {
    font-size: 50px;
    line-height: 74px;
  }
}
@media (max-width: 1000px) {
  .slide1 h1 {
    font-size: 30px;
    margin-bottom: 20px;
    text-transform: capitalize;
    line-height: 50px;
  }
}
.slide1 .gary-side {
  background: #F0F0F0;
}
.slide1 .slide1-img {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: calc(100vh - 90px);
  z-index: 2;
  position: relative;
  transition: 1s ease-in-out;
  left: -50%;
}
@media (max-width: 1000px) {
  .slide1 .slide1-img {
    display: none;
  }
}
.slide1 .wrapper {
  width: 80%;
}
@media (max-width: 1000px) {
  .slide1 .wrapper {
    width: 90%;
  }
}
.slide1 .circle {
  bottom: 0;
  left: -100%;
  transition: 1.3s ease-in-out;
}
@media (min-width: 1540px) {
  .slide1 .circle {
    transform: translate(-50%, -50%) scale(2);
  }
}
.slide1 .circle .c1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slide1 .circle .c2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slide1 .circle .c3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slide1 .cover {
  background: red;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slide1.swiper-slide-active .scroll-indicator {
  bottom: 20px;
}
@media (max-width: 1000px) {
  .slide1.swiper-slide-active .scroll-indicator {
    bottom: 7%;
    left: 5%;
  }
}
.slide1.swiper-slide-active .circle {
  bottom: 0;
  left: 50%;
}
@media (max-width: 1000px) {
  .slide1.swiper-slide-active .circle {
    left: 100%;
    bottom: 55px;
    transform: translate(-50%, -50%) scale(1.2);
  }
}
.slide1.swiper-slide-active .slide1-img {
  opacity: 1;
  left: 0;
}
.slide1.swiper-slide-active .slide1-title {
  left: 0;
  transition: 1s ease-in-out;
}

.slide2 {
  position: relative;
}
.slide2 .gray-rect {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 100%;
  background: #F0F0F0;
  z-index: -1;
  transition: 1s ease-in-out;
}
.slide2 .slide2-text {
  position: relative;
  bottom: 100px;
  transition: 1s ease-in-out;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.slide2 p {
  width: 80%;
}
@media (max-width: 1000px) {
  .slide2 p {
    width: 100%;
  }
}
.slide2 h1 {
  font-size: 36px;
  margin-bottom: 30px;
  text-transform: capitalize;
  line-height: 54px;
}
@media (max-width: 1000px) {
  .slide2 h1 {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
.slide2 img {
  width: 85%;
  transition: 1s ease-in-out;
  margin-top: 225px;
}
.slide2 img:hover {
  transition: 1s ease-in-out;
  transform: rotate(-30deg) scale(1.1);
}
.slide2.swiper-slide-active img {
  width: 85%;
  margin-top: 0;
}
@media (max-width: 1000px) {
  .slide2.swiper-slide-active img {
    width: 50%;
    margin-top: -70px;
  }
}
.slide2.swiper-slide-active .slide2-text {
  bottom: 0;
}
.slide2.swiper-slide-active .gray-rect {
  position: absolute;
  top: 50%;
  left: 30%;
}

.slide3 .slide3-bg {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: calc(100vh - 90px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1000px) {
  .slide3 .slide3-bg {
    height: calc(100vh - 70px);
  }
}
.slide3 .slide3-bg .blue-shade {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(6, 73, 126, 0.5);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slide3 .slide3-bg .slide-3-title {
  z-index: 2;
  color: white;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 0;
  margin-bottom: 50px;
  transition: 1s ease-in-out;
}
@media (max-width: 1000px) {
  .slide3 .slide3-bg .slide-3-title {
    display: block;
    margin-top: -70px;
  }
  .slide3 .slide3-bg .slide-3-title h1 {
    margin-bottom: 20px;
  }
}
.slide3 .slide3-bg .slide-3-title a {
  display: flex;
  align-items: center;
  color: white;
}
@media (max-width: 1000px) {
  .slide3 .slide3-bg .slide-3-title a {
    font-weight: bold;
  }
}
.slide3 .slide3-bg .slide-3-title a:hover svg {
  margin-right: 20px;
  transition: 0.3s ease-in-out;
}
.slide3 .slide3-bg .slide-3-title a svg {
  margin-left: 10px;
  rotate: 180deg;
}
.slide3 a {
  text-decoration: none;
}
@media (max-width: 1000px) {
  .slide3 a:nth-child(-n+6) {
    display: none;
  }
  .slide3 a:nth-child(-n+6) .each-service-slide {
    display: none;
  }
}
.slide3 .four-grid {
  grid-gap: 25px;
  margin-top: 150px;
  transition: 1s ease-in-out;
}
.slide3 .each-service-slide {
  border: solid white 1px;
  border-radius: 10px;
  color: white;
  position: relative;
  z-index: 1;
  font-size: 11px;
  text-align: center;
  height: 100px;
  text-transform: capitalize;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 15px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1000px) {
  .slide3 .each-service-slide {
    padding: 0 10px;
    height: 50px;
  }
}
.slide3 .each-service-slide:hover {
  transition: 0.3s ease-in-out;
  scale: 1.1;
  background: white;
  color: #06497E;
}
.slide3.swiper-slide-active .four-grid {
  margin-top: 0;
}
.flex-center {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: calc(100vh - 90px);
}
@media (max-width: 1000px) {
  .flex-center {
    height: calc(100vh - 70px);
  }
}

.slide4 {
  height: calc(100vh - 90px);
}
@media (max-width: 1000px) {
  .slide4 {
    height: calc(100vh - 70px);
  }
}
.slide4 .gray-rect {
  position: absolute;
  top: 50%;
  left: 120%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 100%;
  background: #F0F0F0;
  z-index: -1;
  transition: 1s ease-in-out;
}
.slide4.swiper-slide-active .circle {
  top: 75px;
  left: 0%;
  transition: 1s ease-in-out;
}
@media (min-width: 1540px) {
  .slide4.swiper-slide-active .circle {
    transform: translate(-50%, -50%) scale(2);
  }
}
@media (max-width: 1000px) {
  .slide4.swiper-slide-active .circle {
    scale: 0.7;
    top: -71px;
  }
}
@media (max-width: 1000px) {
  .slide4.swiper-slide-active .slide4-p {
    margin-top: 15px;
  }
}
.slide4.swiper-slide-active .gray-rect {
  left: 100%;
}
@media (min-width: 1540px) {
  .slide4.swiper-slide-active .gray-rect {
    left: 100%;
  }
}
@media (max-width: 1000px) {
  .slide4.swiper-slide-active .gray-rect {
    left: 130%;
  }
}
@media (max-width: 1000px) {
  .slide4.swiper-slide-active .slide4-img {
    margin-top: -70px;
  }
}
.slide4.swiper-slide-active .slide4-img img {
  margin-left: 0;
  transition: 0.3s ease-in-out;
}
.slide4.swiper-slide-active .slide4-img img:hover {
  scale: 1.1;
  transition: 0.3s ease-in-out;
}
.slide4.swiper-slide-active h1 {
  margin-right: 0;
}
.slide4.swiper-slide-active h2 {
  padding-left: 0;
}
.slide4 .button {
  width: 300px;
  text-align: center;
}
.slide4 .circle {
  top: 30px;
  left: -40%;
  transition: 1s ease-in-out;
}
.slide4 h1 {
  font-size: 20px;
  text-transform: uppercase;
  width: 450px;
  transition: 1s ease-in-out;
  margin-right: 100px;
}
@media (max-width: 1000px) {
  .slide4 h1 {
    font-size: 14px;
    width: 100%;
    letter-spacing: 2px;
    display: none;
  }
}
.slide4 h2 {
  font-size: 20px;
  text-transform: uppercase;
  text-align: left;
  width: 450px;
  transition: 1s ease-in-out;
  padding-left: 100px;
}
@media (max-width: 1000px) {
  .slide4 h2 {
    font-size: 14px;
    width: 100%;
    letter-spacing: 2px;
    display: none;
  }
}
.slide4 .slide4-img {
  transition: 1s ease-in-out;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.slide4 .slide4-img img {
  width: 450px;
  border-radius: 10px;
  transition: 1s ease-in-out;
  margin-left: 100px;
  margin-bottom: 15px;
}
@media (min-width: 1537px) {
  .slide4 .slide4-img img {
    width: 600px;
  }
}
@media (max-width: 1000px) {
  .slide4 .slide4-img img {
    width: 70%;
    margin-bottom: 0px;
  }
}
.slide4 .slide4-p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 80%;
  margin-top: 0;
  transition: 1s ease-in-out;
}
@media (max-width: 1000px) {
  .slide4 .slide4-p {
    width: 100%;
  }
}

.slide5 {
  position: relative;
}
.slide5.swiper-slide-active .rightc {
  bottom: 215px;
  left: 4%;
  transform: translate(-50%, -50%) scale(1.6);
  opacity: 0.7;
}
@media (min-width: 1537px) {
  .slide5.swiper-slide-active .rightc {
    transform: translate(-50%, -50%) scale(2);
  }
}
.slide5.swiper-slide-active .leftc {
  left: 98%;
  top: -30px;
}
.slide5.swiper-slide-active .ft {
  margin-top: 0;
}
@media (max-width: 1000px) {
  .slide5.swiper-slide-active .socials {
    margin-top: 20px;
  }
  .slide5.swiper-slide-active .socials svg {
    margin-left: 25px;
  }
}
.slide5.swiper-slide-active .footer-links {
  padding-top: 50px;
}
@media (max-width: 1000px) {
  .slide5.swiper-slide-active .footer-links {
    padding-top: 40px;
  }
}

.footer {
  background: #06497E;
  padding: 150px 0;
  color: white;
  height: calc(100vh - 90px);
  position: relative;
}
@media (max-width: 1000px) {
  .footer {
    padding: 50px 0;
    height: calc(100vh - 70px);
  }
}
.footer .ft {
  margin-top: 100px;
  transition: 1s ease-in-out;
}
@media (max-width: 1000px) {
  .footer .ft {
    grid-template-columns: 1fr !important;
  }
  .footer .ft .socials svg {
    width: 24px;
    height: auto;
  }
  .footer .ft .socials .syh {
    width: 30px;
  }
  .footer .ft svg {
    width: 17px;
    height: 17px;
  }
}
.footer .rightc {
  bottom: 0px;
  left: 10%;
  transform: translate(-50%, -50%) scale(1.4);
  opacity: 0.7;
  transition: 1s ease-in-out;
  z-index: 0;
}
@media (max-width: 1000px) {
  .footer .rightc {
    scale: 0.6;
  }
}
.footer .rightc .c1 {
  border: solid 40px #248BE7;
}
.footer .rightc .c2 {
  border: solid 40px #248BE7;
}
.footer .rightc .c3 {
  border: solid 50px #248BE7;
  background: #248BE7;
  width: 150px;
  height: 150px;
}
.footer .fb {
  position: relative;
  z-index: 2;
}
.footer .leftc {
  left: 130%;
  top: -58px;
  transition: 1s ease-in-out;
}
@media (max-width: 1000px) {
  .footer .leftc {
    display: none;
  }
}
.footer .leftc .c1 {
  border: solid 40px #248BE7;
}
.footer .leftc .c2 {
  border: solid 40px #248BE7;
}
.footer .leftc .c3 {
  border: solid 50px #248BE7;
}
.footer .three-grid {
  width: 70%;
}
@media (max-width: 1000px) {
  .footer .three-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.footer p {
  display: flex;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 24px;
  margin-top: 10px;
}
@media (max-width: 1000px) {
  .footer p {
    font-size: 12px;
    line-height: 20px;
  }
}
.footer p svg {
  margin-left: 15px;
}
@media (max-width: 1000px) {
  .footer p svg {
    margin-left: 8px;
  }
}
.footer p svg:hover {
  fill: #F6A80F;
  scale: 1.2;
  transition: 0.3s ease-in-out;
}
.footer p svg:hover path {
  fill: #F6A80F;
  transition: 0.3s ease-in-out;
}
.footer .footer-links {
  padding-top: 0px;
  width: 70%;
  transition: 1.2s ease-in-out;
}
@media (max-width: 1000px) {
  .footer .footer-links {
    width: 100%;
  }
}
.footer .footer-links h3 {
  text-transform: capitalize;
  font-size: 20px;
  border-bottom: 1px solid #2e6692;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.footer .footer-links .three-grid {
  width: 100%;
}
.footer .footer-links .three-grid a {
  color: white;
  text-decoration: none;
}
.footer .footer-links .three-grid a:hover {
  font-size: 16px;
  transition: 0.3s ease-in-out;
}
.footer .footer-links .three-grid p {
  text-transform: capitalize;
}

.copyright {
  bottom: 5%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 1540px) {
  .copyright {
    bottom: 5%;
  }
}
@media (max-width: 1000px) {
  .copyright {
    bottom: 7%;
  }
}

.header-h1 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.service-box {
  border-radius: 10px;
  background: white;
  overflow: hidden;
  border: solid #B8B8B8 1px;
}
.service-box:hover svg {
  margin-left: 20px;
  transition: 0.3s ease-in-out;
}
.service-box:hover img {
  scale: 1.1;
  transition: 0.3s ease-in-out;
}
.service-box a {
  text-decoration: none;
  color: #06497E;
}
.service-box p {
  padding: 20px 20px;
  padding-top: 20px;
  align-items: center;
  font-size: 14px;
  display: flex;
  padding-top: 0;
}
.service-box p svg {
  transition: 0.3s ease-in-out;
  border: solid 1px;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  margin-left: 10px;
}
.service-box p svg path {
  fill: black;
}
.service-box h3 {
  padding: 20px;
}
.service-box .img-container {
  height: 220px;
  overflow: hidden;
}
.service-box img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  transition: 0.3s ease-in-out;
}

.services {
  grid-gap: 35px;
}

@media (max-width: 1000px) {
  .clamp-text {
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Show only 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.footer-all {
  margin-top: 140px;
}
.footer-all .footer-eclipse {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #06497E;
  border: solid 10px white;
  color: white;
  z-index: 1;
  border-radius: 69px;
  padding: 30px 50px;
  text-align: center;
}
@media (max-width: 1000px) {
  .footer-all .footer-eclipse {
    padding: 20px;
    top: -25px;
  }
}
.footer-all .footer-eclipse h3 {
  font-size: 25px;
  margin-bottom: 15px;
}
@media (max-width: 1000px) {
  .footer-all .footer-eclipse h3 {
    font-size: 14px;
  }
}
@media (max-width: 1000px) {
  .footer-all .footer-eclipse p {
    font-size: 14px;
  }
}
.footer-all .footer .leftc {
  left: 100%;
  top: -25px;
  z-index: 0;
}
.footer-all .footer {
  overflow: hidden;
  padding-top: 50px;
}
@media (max-width: 1000px) {
  .footer-all .footer {
    padding-top: 70px;
    padding-bottom: 100px;
    height: auto;
  }
}
@media (max-width: 1000px) {
  .footer-all .socials {
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .footer-all .socials svg {
    margin-right: 25px;
  }
}
.footer-all .footer .rightc {
  bottom: 84px;
  left: 9%;
}
.footer-all .footer-links {
  padding-top: 100px;
}
@media (max-width: 1000px) {
  .footer-all .footer-links {
    padding-top: 20px;
  }
}
@media (max-width: 1000px) {
  .footer-all .ft {
    margin-top: 0px;
    grid-template-columns: 1fr;
  }
}

.space {
  height: 90px;
}
@media (max-width: 1000px) {
  .space {
    height: 70px;
  }
}

.each-project {
  display: grid;
  grid-template-columns: 1fr 2fr;
  background: #F0F0F0;
  border-radius: 10px;
  margin-bottom: 40px;
}
.each-project a {
  color: #323232;
}
@media (max-width: 1000px) {
  .each-project {
    grid-template-columns: 1fr;
    padding-bottom: 10px;
  }
}
.each-project .pimg {
  width: 100%; /* or set a specific width */
  height: 300px; /* or 100vh or any height you want */
  position: relative;
  overflow: hidden;
}
.each-project .pimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.3s ease-in-out;
  border-radius: 10px;
}
@media (max-width: 1000px) {
  .each-project .pimg img {
    border-radius: 10px 10px 0 0;
  }
}
.each-project .pcontent {
  padding: 30px 40px;
}
@media (max-width: 1000px) {
  .each-project .pcontent {
    padding: 20px 15px;
  }
}
.each-project .pcontent h3 {
  margin-bottom: 20px;
}
.each-project .pcontent h4 {
  margin-top: 35px;
}

.dir {
  direction: ltr;
}
.dir .pcontent {
  text-align: right;
}

img {
  width: 100%;
  border-radius: 10px;
}

.project-detail-head {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  margin-top: 40px;
}
.project-detail-head .pdimg {
  position: relative;
}
.project-detail-head .circle {
  bottom: 0px;
  left: 100%;
  z-index: 0;
}
@media (max-width: 1000px) {
  .project-detail-head .circle {
    left: 20%;
    z-index: 0;
    top: -63%;
    scale: 0.2;
  }
}
.project-detail-head img {
  z-index: 1;
  position: relative;
  object-fit: fill;
  display: block;
}
.project-detail-head h2 {
  color: #06497E;
  font-size: 30px;
  line-height: 50px;
}
@media (max-width: 1000px) {
  .project-detail-head h2 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}

.page-heading {
  background: #F0F0F0;
  height: 500px;
  position: relative;
}
@media (max-width: 1000px) {
  .page-heading {
    height: auto;
  }
}
@media (max-width: 1000px) {
  .page-heading .gs {
    height: 350px;
  }
}
.page-heading .hc {
  position: absolute;
  top: 38%;
  left: 66px;
  transform: translate(-50%, -50%);
  height: auto !important;
  width: 139px !important;
}
.page-heading .heading-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1000px) {
  .page-heading .heading-text {
    top: 160px;
  }
}
.page-heading .heading-text h3 {
  margin-bottom: 20px;
  width: 40%;
}
@media (max-width: 1000px) {
  .page-heading .heading-text h3 {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .page-heading .heading-text h3 {
    margin-bottom: 10px;
  }
}
.page-heading .heading-text h1 {
  color: #06497E;
  border-bottom: solid 1px #d9d9d9;
  text-transform: capitalize;
  margin-bottom: 25px;
  padding-bottom: 15px;
  width: 40%;
}
@media (max-width: 1000px) {
  .page-heading .heading-text h1 {
    width: 100%;
    margin-bottom: 10px;
    font-size: 25px;
    padding-bottom: 10px;
  }
}
.page-heading .heading-text p {
  width: 40%;
}
@media (max-width: 1000px) {
  .page-heading .heading-text p {
    width: 100%;
  }
}
.page-heading .pimg {
  width: 100%; /* or set a specific width */
  height: 500px; /* or 100vh or any height you want */
  position: relative;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .page-heading .pimg {
    height: 300px;
  }
}
.page-heading .pimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.3s ease-in-out;
  border-radius: 0;
}
@media (max-width: 1000px) {
  .page-heading .pimg img {
    border-radius: 10px 10px 0 0;
  }
}

ul {
  padding-right: 15px;
  line-height: 25px;
}

.career-how {
  background: #F0F0F0;
  padding: 30px;
  border-radius: 10px;
  margin-top: 50px;
}
.career-how h2 {
  margin-bottom: 20px;
}

.moth1 {
  text-align: center;
  margin-top: 40px;
  text-transform: uppercase;
}

.container-form {
  background: #F0F0F0;
  padding: 40px;
  border-radius: 5px;
  margin-top: 50px;
}
.container-form h2 {
  margin-bottom: 20px;
}
@media (max-width: 1000px) {
  .container-form {
    padding: 20px;
  }
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: 501;
  margin-bottom: 5px;
}

input, textarea, select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media (max-width: 1000px) {
  .grid-container {
    display: block;
  }
}

.full-width {
  grid-column: span 2;
}

.submit-btn {
  margin: auto;
  color: white;
  border: none;
  padding: 12px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 100px;
  width: 300px;
  transition: 1s ease-in-out;
  display: block;
  background: #06497E;
  margin-top: 20px;
}
.submit-btn input {
  background: #06497E;
  color: white;
  transition: 1s ease-in-out;
  border: none;
}

.submit-btn:hover {
  background: #06497E;
}

.cv-input {
  width: 100%;
  padding: 30px;
  border: 1px #248BE7 dashed;
  border-radius: 5px;
  font-size: 16px;
  text-align: center;
}

.center-h {
  text-align: center;
  margin-top: 30px;
  text-transform: capitalize;
}

.faq {
  margin: 40px auto;
}

.faq-item {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px 20px;
}

.faq-question {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  text-align: right;
  cursor: pointer;
  padding: 10px 0;
  outline: none;
  color: #06497E;
  font-weight: 503;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}

.faq-answer.open {
  max-height: 325px;
  padding: 10px 0;
}

.each-cert {
  display: grid;
  grid-template-columns: 1fr 250px;
  grid-gap: 80px;
  border: solid #B8B8B8 1px;
  border-radius: 10px;
  padding: 30px 40px;
  margin-bottom: 30px;
}
@media (max-width: 1000px) {
  .each-cert {
    grid-template-columns: 1fr;
    padding: 20px;
    grid-gap: 20px;
  }
}
.each-cert h2 {
  color: #06497E;
  margin-bottom: 20px;
  font-size: 20px;
}
.each-cert p {
  font-size: 14px;
}
.each-cert img {
  width: 150px;
}

.privacy p {
  line-height: 45px;
}
.privacy .circle {
  position: absolute;
  top: 40%;
  left: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.overflow {
  overflow: hidden;
}

.about1 {
  background: #F0F0F0;
}
.about1 .heading-text {
  padding-top: 100px;
  left: 50%;
  position: relative;
  transition: 1s ease-in-out;
}
.about1 .heading-text h3 {
  margin-bottom: 20px;
  width: 80%;
}
@media (max-width: 1000px) {
  .about1 .heading-text h3 {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .about1 .heading-text h3 {
    margin-bottom: 10px;
  }
}
.about1 .heading-text h1 {
  color: #06497E;
  border-bottom: solid 1px #d9d9d9;
  text-transform: capitalize;
  margin-bottom: 25px;
  padding-bottom: 15px;
  width: 80%;
}
@media (max-width: 1000px) {
  .about1 .heading-text h1 {
    width: 100%;
    margin-bottom: 10px;
    font-size: 25px;
    padding-bottom: 10px;
  }
}
.about1 .heading-text p {
  width: 90%;
}
@media (max-width: 1000px) {
  .about1 .heading-text p {
    width: 100%;
  }
}
.about1 .gary-side {
  background: #F0F0F0;
}
.about1 .slide1-img {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: calc(100vh - 90px);
  z-index: 2;
  position: relative;
  transition: 1s ease-in-out;
  left: -50%;
}
@media (max-width: 1000px) {
  .about1 .slide1-img {
    display: none;
  }
}
.about1 .wrapper {
  width: 80%;
}
@media (max-width: 1000px) {
  .about1 .wrapper {
    width: 90%;
  }
}
.about1 .circle {
  bottom: 0;
  left: -100%;
  transition: 1.3s ease-in-out;
}
@media (min-width: 1540px) {
  .about1 .circle {
    transform: translate(-50%, -50%) scale(2);
  }
}
.about1 .circle .c1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about1 .circle .c2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about1 .circle .c3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about1.swiper-slide-active .circle {
  bottom: 0;
  left: 50%;
}
@media (max-width: 1000px) {
  .about1.swiper-slide-active .circle {
    left: 100%;
    bottom: 55px;
    transform: translate(-50%, -50%) scale(1.2);
  }
}
.about1.swiper-slide-active .slide1-img {
  opacity: 1;
  left: 0;
}
.about1.swiper-slide-active .heading-text {
  left: 0;
  transition: 1s ease-in-out;
}

.about3 {
  background: white;
  color: white;
}
@media (max-width: 1000px) {
  .about3 {
    background: #06497E;
  }
}
.about3 .circle {
  bottom: 0;
  left: 100%;
}
@media (max-width: 1000px) {
  .about3 .circle {
    left: 100%;
    bottom: 55px;
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.3;
  }
}
.about3 .c1 {
  border: solid 40px #65A3D5;
}
.about3 .c2 {
  border: solid 40px #65A3D5;
}
.about3 .c3 {
  border: solid 50px #65A3D5;
}
.about3 .mv {
  padding: 0 50px;
  background: #06497E;
  height: calc(100vh - 90px);
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
@media (max-width: 1000px) {
  .about3 .mv {
    padding: 0 20px;
    height: auto;
    display: block;
    padding-bottom: 20px;
  }
}
.about3 .mv h1 {
  text-transform: capitalize;
  margin-bottom: 30px;
}
@media (max-width: 1000px) {
  .about3 .mv h1 {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
  }
}
.about3 .mv p {
  line-height: 45px;
  z-index: 3;
  position: relative;
}
@media (max-width: 1000px) {
  .about3 .mv p {
    font-size: 14px;
    line-height: 26px;
    z-index: 3;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.about3 .mv:nth-child(1) {
  border: solid 1px #5683A7;
  bottom: -400px;
  transition: 1s ease-in-out;
}
@media (max-width: 1000px) {
  .about3 .mv:nth-child(1) {
    border: none;
    bottom: 400px;
  }
}
.about3 .mv:nth-child(2) {
  bottom: 400px;
  transition: 1s ease-in-out;
}
.about3 .mvimg {
  height: calc(100vh - 90px);
  bottom: -400px;
  position: relative;
  transition: 2s ease-in-out;
}
@media (max-width: 1000px) {
  .about3 .mvimg {
    height: 200px;
  }
}
.about3 .mvimg img {
  object-fit: cover;
  display: block;
  height: 100%;
}
@media (max-width: 1000px) {
  .about3 .mvimg img {
    margin-top: 20px;
  }
}
.about3.swiper-slide-active .mv {
  transition: 1s ease-in-out;
}
.about3.swiper-slide-active .mv:nth-child(1) {
  transition: 1s ease-in-out;
  bottom: 0px;
}
.about3.swiper-slide-active .mv:nth-child(2) {
  transition: 1s ease-in-out;
  bottom: 0px;
}
.about3.swiper-slide-active .mvimg {
  transition: 1s ease-in-out;
  bottom: 0px;
}

.values {
  grid-gap: 30px;
}
@media (max-width: 1000px) {
  .values {
    grid-gap: 0px;
  }
}
.values .each-value:nth-child(1) {
  margin-top: 400px;
  transition: 0.3s ease-in-out;
}
.values .each-value:nth-child(2) {
  margin-top: 400px;
  transition: 1s ease-in-out;
}
.values .each-value:nth-child(3) {
  margin-top: 400px;
  transition: 2s ease-in-out;
}
.values .each-value:nth-child(4) {
  margin-top: 400px;
  transition: 3s ease-in-out;
}
.values .each-value img {
  width: 50px;
  margin-left: 20px;
}
@media (max-width: 1000px) {
  .values .each-value img {
    width: 30px;
  }
}
.values .each-value h2 {
  display: flex;
  align-items: center;
  font-size: 22px;
  border-bottom: solid #CACACA 1px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  text-transform: capitalize;
}
@media (max-width: 1000px) {
  .values .each-value h2 {
    font-size: 16px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}

.about4 {
  position: relative;
}
@media (max-width: 1000px) {
  .about4 h1 {
    font-size: 22px;
    margin-top: -40px;
  }
}
.about4 .gray-rect {
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 140px;
  background: #F0F0F0;
}
@media (max-width: 1000px) {
  .about4 .gray-rect {
    display: none;
  }
}
.about4 .circle {
  position: absolute;
  top: 12%;
  left: 93%;
}
.about4 .flex-center {
  margin-top: -100px;
}
@media (max-width: 1000px) {
  .about4 .flex-center {
    margin-top: 0px;
  }
}
.about4.swiper-slide-active .each-value:nth-child(1) {
  margin-top: 50px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1000px) {
  .about4.swiper-slide-active .each-value:nth-child(1) {
    margin-top: 10px;
  }
}
.about4.swiper-slide-active .each-value:nth-child(2) {
  margin-top: 50px;
  transition: 1s ease-in-out;
}
@media (max-width: 1000px) {
  .about4.swiper-slide-active .each-value:nth-child(2) {
    margin-top: 10px;
  }
}
.about4.swiper-slide-active .each-value:nth-child(3) {
  margin-top: 50px;
  transition: 2s ease-in-out;
}
@media (max-width: 1000px) {
  .about4.swiper-slide-active .each-value:nth-child(3) {
    margin-top: 10px;
  }
}
.about4.swiper-slide-active .each-value:nth-child(4) {
  margin-top: 50px;
  transition: 3s ease-in-out;
}
@media (max-width: 1000px) {
  .about4.swiper-slide-active .each-value:nth-child(4) {
    margin-top: 10px;
  }
}

@media (max-width: 1000px) {
  .about2.swiper-slide-active img {
    width: 100px;
  }
  .about2 h1 {
    margin-bottom: 0;
  }
  .about2 .p-title {
    line-height: 25px;
  }
}
