/* Arabic Fonts */
@import url(https://fonts.googleapis.com/earlyaccess/droidarabickufi.css);

* {
    font-family: 'Cairo';
}
html {
  scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    margin: 0;
    padding: 0;
}

/* Loading screen styles */
.loading-screen2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .loading-screen2 video {
    border-radius: 15px;
  }
  

/* Loading screen styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  
  
  .loader {
    width: 48px;
    height: 48px;
    background: #d36327;
    display: block;
    margin: 20px auto;
    position: relative;
    box-sizing: border-box;
    animation: rotationBack 1s ease-in-out infinite reverse;
  }
  .loader::before {
    content: '';  
    box-sizing: border-box;
    left: 0;
    top: 0;
    transform: rotate(45deg);
    position: absolute;
    width: 48px;
    height: 48px;
    background: #f19b2c;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  }
  .loader::after {
    content: '';  
    box-sizing: border-box;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    background: #FFF;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  }
  @keyframes rotationBack {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(-360deg);
    }
  }
  
  
  
  /* Hide loading screen when JavaScript is loaded */
  .loaded .loading-screen {
    display: none;
  }
  .loader-hidden {
      display: none;
  }
  

/* -- Navbar -- */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    background-color: #f7f7f7;
    transition: background-color 0.3s ease-in-out;
    z-index: 999;
    color: #444443;
  }
  
  .navbar img {
    width: 120px;
    border-radius: 10px;
  }
  
  .logo {
    padding: 5px 5%;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    overflow: hidden;
  }
  
  .menu {
    list-style-type: none;
    margin: 0;
    padding: 0 5%;
    display: flex;
    pointer-events: all;
  }
  
  .menu li {
    position: relative;
    margin-right: 50px;
    border-radius: 50px;
    transition: 0.2s ease-in;
    padding: 5px 20px;
  }
  
  .menu a {
    color: inherit;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
  }
  
  .menu li:hover {
    color: #f19b2c !important;
  }
  
.translate-button {
  color: #444443;
  background: transparent;
  border: none;
  margin: 0 20px;
  border-radius: 20px;
  padding: 5px 20px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: ease-out 0.1s;
}
  
.translate-button:hover {
    background: #eee;
}
  
.hamburger {
    display: none;
    cursor: pointer;
}
.bar {
    display: block;
    width: 30px;
    height: 4px;
    margin: 5px auto;
    border-radius: 50px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: #444443;
}



/* ---  Navbar @media  --- */
@media(max-width: 800px) {
    .menu {
        align-items: center;
        padding: 20px 5px;
    }
    .menu li a {
        color: #fff;
        font-size: 18px;
    }
    .navbar {
        padding: 0;
        justify-content: space-between;
    }
    .navbar .hamburger,
    .navbar img {
        padding: 0 20px;
    }
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1){
        transform: translateY(9px) rotate(44deg);
    }
    .hamburger.active .bar:nth-child(3){
        transform: translateY(-9px) rotate(-44deg);
    }
    .menu.active {
        left: 0;
        opacity: 1;
    }
    .menu {
        top: 95px;
        left: 0;
        padding-right: 0;
        z-index: 99;
        position: fixed;
        left: -110%;
        gap: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: #333;
        width: 100%;
        text-align: center;
        transition: 0.3s;
    }
    .navbar li {
        margin: 16px 0;
    }

    .translate-button {
        color: #fff;
    }
}

@media all and (max-width : 330px) {

	nav ul li {
		display:block;
		width: 94%;
	}

}

/* -- Hero -- */

.hero {
    padding: 0 15px;
    height: 650px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url("img/bg2.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero video {
    max-width: 500px;
    max-height: 400px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000ab; /* this is a transparent black color, you can adjust the opacity by changing the last value (0.5) */
    z-index: 1; /* to make sure the layer is on top of the image */
}

.hero .text {
    max-width: 800px;
    z-index: 9;
}

.hero h1 {
    font-size: 38px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 50px;
}
.hero .text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero .text li {
  display: inline-block;
  margin-right: 5px;
}
.hero .text li:last-child {
  margin-right: 0;
}

.hero .text span {
    margin: 5px;
}

.hero .text li a {
  text-decoration: none;
  color: #c5c6c7;
  margin: 5px;
}

.hero .text li {
  color: #fff;
}

.hero button {
    border: none;
    padding: 5px 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    color: #444443;
    background: #fff;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero button:hover {
    color: #444443;
    background: #fff;
}
  
@keyframes glow {
  0% {
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.8);
  }
  100% {
    box-shadow: 0 0 10px 10px rgba(255, 255, 255, 0);
  }
}

.hero .img1 {
    z-index: 9;
    position: absolute;
    top: 100px;
    left: 5%;
    width: 100px;
    animation: bouncing 2s ease-in-out infinite;
}
.hero .img2 {
    z-index: 9;
    position: absolute;
    transform: scaleX(-1);
    bottom: 100px;
    right: 5%;
    width: 100px;
    animation: bouncing 3s ease-in-out infinite;
}

@keyframes bouncing {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
    100% {
      transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .hero {
        height: 400px;
    }
  .hero img {
    display: none;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero p {
      font-size: 16px;
  }
  .hero button {
      padding: 3px 10px;
      font-size: 14px;
  }
}



/* -- Banner Start -- */

.banner {
    padding: 50px 10px;
    height: 100px;
    position: relative;
    align-items: center;
}
  
.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
  
.bg {
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
  
  .banner-content {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    z-index: 1;
    color: #fff;
    text-align: center;
  }
  
  .content-box {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .content-inner {
    padding: 40px;
    border-radius: 8px;
  }
  
  .stats-row {
    position: absolute;
    top: -150px;
    width: 100%;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .banner img {
      width: 120px;
  }
  
  .stats-item {
    background:  linear-gradient(to bottom,  #f19b2c, #d36327 100%);
    border-radius: 8px;
    width: 350px;
    margin: 20px;
    padding: 20px;
  }
  
  .stats-value {
    font-size: 48px;
    margin: 0;
  }
  
  .stats-label {
    font-size: 18px;
    margin: 0;
  }
  @media (max-width: 1350px) {
    .stats-row {
      position: static;
    }
    .banner {
        height: auto;
        padding: 0;
    }
  }
  
  @media (max-width: 767px) {
    .stats-item {
      flex-basis: 50%;
    }
    .stats-value {
      font-size: 38px;
    }
    .banner img {
        width: 80px;
    }
    .stats-label {
        font-size: 16px;
    }
  }



/* -- About -- */

.about {
    padding: 80px 20px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    max-width: 500px;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 1;
    padding: 20px;
}

.about-content h2 {
    font-size: 32px;
    color: #1c2757;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #444443;
    margin-bottom: 15px;
}

.about-content .certification {
    font-style: italic;
    color: #666;
    border-left: 3px solid #f19b2c;
    padding-left: 15px;
    margin: 20px 0;
}

/* Responsive Design */
@media (max-width: 900px) {
    .about {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }

    .about-image {
        max-width: 100%;
    }

    .about-content .certification {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 30px 15px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 15px;
    }
}



/* -- Services -- */

.services-section {
    background-color: #f9f9f9;
    padding: 80px 20px;
    overflow: hidden;
    text-align: center;
  }
  
  .services-container {
    margin: 0 auto;
    padding: 0;
  }
  
  .services-title {
    position: relative;
    display: inline-block;
    font-size: 26px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
  }

  .services-title h2 {
    position: relative;
    display: inline-block;
    margin: 0;
  }

  .services-title h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #f19b2c;
  }
  
  .services-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
  }

  .service-icon {
    font-size: 2.5rem;
    color: #f19b2c;
    margin-bottom: 1rem;
  }
  
  .service-item {
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    max-width: 350px;
    margin: 20px;
    padding: 40px;
    text-align: left;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
  }
  
  .service-item:hover {
    transform: translateY(-20px);
    box-shadow: 0 12px 18px rgba(0, 0, 0, 0.2);
  }
  
  .service-item img {
    width: 120px;
    margin-bottom: 20px;
  }
  
  .service-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
  }
  
  .service-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .service-details-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #1c2757;
    background-color: transparent;
    border: 2px solid #1c2757;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .service-details-btn:hover {
    background-color: #1c2757;
    color: #fff;
  }

  /* -- Services -- */
  .services-section {
      background-color: #f9f9f9;
      padding: 80px 20px;
      overflow: hidden;
      text-align: center;
  }
  
  .services-container {
      margin: 0 auto;
      padding: 0;
  }
  
  .services-title {
      position: relative;
      display: inline-block;
      font-size: 26px;
      font-weight: 700;
      color: #333;
      text-align: center;
      margin-bottom: 40px;
  }
  
  .services-title h2 {
      position: relative;
      display: inline-block;
      margin: 0;
  }
  
  .services-title h2::before {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 3px;
      background-color: #f19b2c;
  }
  
  .services-grid {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      max-width: 1600px;
      margin: 0 auto;
  }
  
  .service-icon {
      font-size: 2.5rem;
      color: #f19b2c;
      margin-bottom: 1rem;
  }
  
  .service-item {
      background-color: #fff;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      max-width: 350px;
      margin: 20px;
      padding: 40px;
      text-align: left;
      transition: transform 0.5s ease, box-shadow 0.5s ease;
      cursor: pointer;
  }
  
  .service-item:hover {
      transform: translateY(-20px);
      box-shadow: 0 12px 18px rgba(0, 0, 0, 0.2);
  }
  
  .service-item img {
      width: 120px;
      margin-bottom: 20px;
  }
  
  .service-title {
      font-size: 24px;
      font-weight: 600;
      color: #333;
      margin-bottom: 10px;
  }
  
  .service-description {
      font-size: 16px;
      color: #666;
      line-height: 1.6;
      margin-bottom: 20px;
  }
  
  .service-details-btn {
      display: inline-block;
      padding: 10px 20px;
      font-size: 16px;
      font-weight: bold;
      color: #1c2757;
      background-color: transparent;
      border: 2px solid #1c2757;
      border-radius: 5px;
      text-decoration: none;
      transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .service-details-btn:hover {
      background-color: #1c2757;
      color: #fff;
  }
  
  /* Responsive Design - Large Tablets */
  @media (max-width: 1200px) {
      .services-grid {
          flex-wrap: wrap;
          justify-content: center;
          gap: 20px;
      }
      
      .service-item {
          max-width: 300px;
          margin: 15px;
      }
  
      .services-title {
          font-size: 24px;
      }
  }
  
  /* Responsive Design - Tablets */
  @media (max-width: 900px) {
      .services-section {
          padding: 60px 15px;
      }
  
      .services-grid {
          flex-direction: column;
          align-items: center;
      }
  
      .service-item {
          max-width: 100%;
          margin: 15px auto;
          max-width: 250px;
          padding: 30px;
      }
  
      .service-title {
          font-size: 22px;
      }
  
      .service-description {
          font-size: 15px;
      }
  
      .service-details-btn {
          font-size: 15px;
          padding: 8px 16px;
      }
  }
  
  /* Responsive Design - Mobile */
  @media (max-width: 480px) {
      .services-section {
          padding: 40px 10px;
      }
  
      .services-title {
          font-size: 20px;
          margin-bottom: 30px;
      }
  
      .service-item {
          padding: 20px;
          margin: 10px auto;
      }
  
      .service-icon {
          font-size: 2rem;
      }
  
      .service-item img {
          width: 80px;
          margin-bottom: 15px;
      }
  
      .service-title {
          font-size: 18px;
      }
  
      .service-description {
          font-size: 14px;
          line-height: 1.4;
      }
  
      .service-details-btn {
          font-size: 14px;
          padding: 8px 14px;
      }
  
      .service-item:hover {
          transform: translateY(-10px);
      }
  }
  
  /* Responsive Design - Small Mobile */
  @media (max-width: 320px) {
      .services-title {
          font-size: 18px;
      }
  
      .service-item {
          padding: 15px;
      }
  
      .service-title {
          font-size: 16px;
      }
  
      .service-description {
          font-size: 13px;
      }
  
      .service-details-btn {
          font-size: 13px;
          padding: 6px 12px;
      }
  }

/* -- Clients Start -- */


.slider {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  color: #fff;
  text-align: center;
}

.title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 20px;
}

.description {
  font-size: 16px;
}

.description a {
  color: #fff;
  text-decoration: underline;
}
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
  }
  
  .slider-controls button {
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    color: #333;
    font-size: 24px;
    padding: 10px 20px;
    position: relative;
    cursor: pointer;
  }
  
  .slider-controls button:hover {
    background-color: rgba(255, 255, 255, 0.8);
  }
  
  .slider-controls .prev-btn {
    left: 20px;
  }
  
  .slider-controls .next-btn {
    right: 40px;
  }

@media (max-width: 767px) {
  .slide-content {
    width: 80%;
  }
  .slider-controls button {
    font-size: 18px;
    padding: 0px 10px;
  }
  .slider-controls .prev-btn {
    left: -20px;
  }
  .slider-controls .next-btn {
    left: -20px;
  }
  .title {
    font-size: 26px;
  }
  .description {
    font-size: 14px;
  }
}





/* -- Clients Start -- */

.client {
    padding: 50px;
    text-align: center;
    background-size: cover;
    background-attachment: fixed;
    color: #000;
    background: #fff;
}
.slider-container {
    max-width: 1500px;
    padding: 20px 0;
    margin: 0 auto;
    border-radius: 0 150px;
    overflow: hidden;
}
.client-slider {
    padding: 20px;
    max-width: 1300px;
    margin: 0 auto;
}
.client-slider a {
    color: #000;
}
.client .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
    align-items: center;
}
.client h2 {
    position: relative;
    display: inline-block;
    font-size: 42px;
    margin-bottom: 10px;
    color: #283885;
}

.client h2:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #283885;
    bottom: -8px;
    left: 0;
}
.client p {
    font-size: 18px;
}
.client img {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    border: 3px solid #fff;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.507);
}

.client-slider .item {
    padding: 15px;
    justify-content: center;
    margin: 0 10px;
}
.slick-dots li.slick-active button:before {
    color: #022f4b !important;
}

.slick-dots li button:before {
    font-size: 12px !important;
    color: #1c2757 !important;
}

.slick-prev:before,
.slick-next:before {
    color: #1c2757 !important;
}



/* --- book --- */

.book {
  position: relative;
  width: 100%;
}

.book iframe {
  width: 100%;
  height: 800px;
}

.download-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 10px 20px;
  background-color: #1c2fff75;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #283885;
}

/* --- Contact Form Styles --- */

.contact {
    padding: 50px 15px;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
  
.background-border {
    z-index: 9;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
  
.background-wave {
    fill: #246666;
}
  
.contact .text {
    text-align: center;
}
  
.container2 {
    max-width: 650px;
    margin: 0 auto;
    padding: 0 20px;
}
  
.contact h2 {
    position: relative;
    display: inline;
    margin: 30px auto;
    color: #333;
    font-size: 32px;
}
  
.contact p {
    color: #777;
    margin-bottom: 40px;
}
  
.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
  
.form-group {
    margin-bottom: 20px;
}
  
.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}
  
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Cairo', sans-serif;
}
  
.form-group textarea {
    height: 100px;
    resize: vertical;
}
  
.submit-btn {
    background-color: #e96f2d;
    width: 100%;
    color: #fff;
    border: none;
    padding: 8px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Cairo', sans-serif;
}
  
  .submit-btn:hover {
    background-color: #e96f2ddd;
}

.contact-info2 {
    margin: 0 20px;
}

.contact-info2 h3, .contact-info2 p {
  color: #0f0d3f;
}

.contact-info2 i {
  color: #fc5204;
}

.contact-info2 a {
    color: inherit;
}
  
  @media (max-width: 768px) {
    .contact-form {
      padding: 30px;
    }
    .contact h2 {
      font-size: 24px;
    }
    .contact p {
      font-size: 14px;
    }
    .form-group label {
      font-size: 14px;
    }
    .submit-btn {
      padding: 10px 30px;
      font-size: 14px;
    }
    .contact-info2 {
        padding: 15px;
        text-align: center;
    }
    .contact-info2 h3 {
        font-size: 16px;
    }
    .contact-info2 p {
        font-size: 14px;
    }
  }




/* -- Banner2 Start -- */

.banner2 {
    padding: 50px 10px;
    position: relative;
    align-items: center;
    background:  linear-gradient(to bottom,  #f19b2c, #d36327 100%);
    overflow: hidden;
}
.banner2 img {
    width: 80px;
}
  
.banner2-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
  
  .banner2-content {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    z-index: 1;
    color: #fff;
    text-align: center;
  }
  
  
  .stats-row2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .stats-item2 {
    width: 300px;
    padding: 20px;
  }
  
  .stats-value2 {
    font-size: 48px;
    margin: 0;
  }
  
  .stats-label2 {
    font-size: 18px;
    margin-bottom: 0;
  }
  
  @media (max-width: 767px) {
    .stats-item2 {
      flex-basis: 50%;
    }
    .banner2 img {
        width: 80px;
    }
    .stats-label2 {
      font-size: 16px;
    }
  }

/* -- Clients Start -- */

.client {
  position: relative;
  padding: 50px;
  text-align: center;
  background-size: cover;
  background-attachment: fixed;
  color: #000;
  background: #fff;
}

.slider-container {
  padding: 20px 0;
  border-radius: 0;
  overflow: hidden;
}

.client .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-bottom: 20px;
  align-items: center;
}

.client h2 {
  position: relative;
  display: inline-block;
  font-size: 42px;
  margin-bottom: 50px;
  color: #444;
}

.client h2:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #f19b2c;
  bottom: -8px;
  left: 0;
}

.client p {
  font-size: 18px;
}

.client img {
  width: 100%;
  height: 150px;
  border-radius: 10px;
  border: 3px solid #fff;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.507);
}

/* Glide.js styles */
.glide {
  position: relative;
}

.glide__track {
  overflow: hidden;
}

.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}

.glide__slide {
  width: 100%;
  flex-shrink: 0;
  white-space: normal;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.glide__arrows {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
}

.glide__arrow {
  background-color: rgba(255, 255, 255, 0.8) !important;
  border: none;
  color: #283885 !important;
  font-size: 24px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.glide__arrow:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.glide__arrow--left {
  left: 0;
}

.glide__arrow--right {
  right: 0;
}




/* -- Career -- */
.career {
  padding: 50px 10px;
}
.career form {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
}

.career label {
  display: block;
  font-weight: bold;
  color: #1c2757;
  margin-bottom: 10px;
}

.career input, .career textarea, .career select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
}

.career input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #1c2757;
}

.career input[type="radio"] {
  width: auto;
  margin-right: 10px;
}


.group {
  margin-bottom: 20px;
}

.group select {
  width: 100%;
}

.group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}

.group label {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.group input[type="radio"] {
  margin-right: 5px;
  width: auto;
}

.career button[type="submit"] {
  background-color: #1c2757;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.career button[type="submit"]:hover {
  background-color: #283885;
}

@media (max-width: 767px) {
  .career form {
      padding: 20px;
  }
}



/* -- Project.html -- */
.project-container {
  padding: 150px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-content {
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 5px;
  background: #1c2757;
  width: 80%;
  max-width: 1200px;
}
.project-content h2 {
  color: #fff;
}

.project-slider {
  margin-bottom: 20px;
  background: #fff;
}

.project-slider img {
  width: auto;
  max-height: 350px;
  margin: 0 auto;
}

.project-details {
  background: #1c2757;
  color: #fff;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 20px;
}

.project-image {
  flex-basis: 40%;
  margin-right: 20px;
}

.project-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.project-info table {
  width: 100%;
  border-collapse: collapse;
}
.project-info th,
.project-info td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.project-info th {
  width: 30%;
  border-right: 1px solid #ddd;
}

.project-description {
  text-align: justify;
}
@media (max-width: 767px) {
  .project-image {
    flex-basis: 100%;
    margin-right: 20px;
  }
  
}



/* -- Footer -- */
.footer {
  position: relative;
  background: url(img/overlay.png);
  background-position: right;
  color: #fff;
  padding: 60px 20px 30px 20px;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000005e; /* this is a transparent black color, you can adjust the opacity by changing the last value (0.5) */
  z-index: 1; /* to make sure the layer is on top of the image */
}
.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section {
  z-index: 99;
    padding: 0 20px;
}

.footer-section h3 {
    color: #f19b2c;
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 2px;
    background: #f19b2c;
}

.footer-section p, 
.footer-section a {
    color: #fff;
    line-height: 1.8;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-section a:hover {
    color: #f19b2c;
    padding-left: 5px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
    color: #f19b2c;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    background: #f19b2c;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
    background: #fff;
    color: #1c2757;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
}

@media (max-width: 768px) {
  .footer {
    background: #343434;
  }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-info {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}