

.margin-top{
  margin-top: 120px;
}

.button-jobs {
  background-color: #1a75ff;
  color: white;
  border: 1px solid #1a75ff;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button-jobs:hover {
  background-color: transparent;
  color: black;
  border: 1px solid #1a75ff;
}

.border-icon{
  border: 1.5px solid #1a75ff;
  border-radius: 100%;
}


.gallery-card { 
  transition: transform 0.3s ease;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery-card:hover {
  transform: translateY(-5px);
}

.gallery-card img {
  height: 250px;
  object-fit: cover;
}

.card-body {
  padding: 1rem;
}

.card-title {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.card-text {
  color: #666;
  font-size: 0.9rem;
}



.director-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.director-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.director-image {
  position: relative;
  overflow: hidden;
}

.director-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.director-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(24, 49, 158, 0.9);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.director-card:hover .director-overlay {
  opacity: 1;
}

.director-details {
  color: #fff;
  text-align: center;
  padding: 20px;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.director-card:hover .director-details {
  transform: translateY(0);
}

.director-details h5 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}

.director-details .position {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.director-details .bio {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  margin-top: 15px;
}

.social-links a {
  color: #fff;
  font-size: 20px;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #e6e6e6;
}

.director-info {
  padding: 20px;
  text-align: center;
}

.director-info h5 {
  margin: 0;
  font-size: 20px;
  color: #333;
}

.director-info p {
  margin: 5px 0 0;
  color: #666;
}

@media (max-width: 991px) {
  .director-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .director-image img {
    height: 350px;
  }
}














.page-title {
    position: relative;
    height: 300px;
    width: 100%;
    background-image: url('{{ asset("images/about-header.jpg") }}');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 82, 204, 0.85), rgba(0, 82, 204, 0.75));
}

.page-title-inner {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.page-title-inner h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-title-inner p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}





.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 100px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 100;
  }
  
  .whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
    background-color: #20ba5a;
  }
  
  .whatsapp-btn i {
    margin-top: 2px;
  }



  .logo-ft {
    height: 100px;
    width: auto;
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center; 
}
  
  .logo-ft .logo-lf {
    width: 100%;
    height: 100%; 
}
 

  .sw-click{
    display: none !important;
  }

 
.box-image-p { 
    height: 500px;
    width: 100%;
    overflow: hidden;  
}

.col-image {
    width: 100%; /* Make the image responsive */
    height: 100%; /* Fill the container height */
    object-fit: cover; /* Ensure the image covers the entire container without distortion */
    display: block; /* Removes space below the image */
}


.custom-padding-home-ab{
  padding-left: 15px;
  padding-right: 15px;
}
  

.hero-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider-container {
  width: 100%;
  position: relative;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100vh; /* Full viewport height */
  max-height: 1080px; /* Cap height for ultra-large screens */
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide-content {
  position: relative;
  height: 100%;
}

.image-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image fills the container */
  object-position: center top; /* Adjust focus to the top */
}

.text-content {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 50px;
}

.text-wrapper {
  max-width: 600px;
  margin-left: 5%;
  padding: 20px;
}

.text-content h2 {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: white;
}

.text-content p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}
 

.slide-btn {
  font-size: 1.1em;
  border: 1px solid #1a75ff;
  padding: 12px 30px;  
  position: relative; 
  color: white; 
  cursor: pointer; 
  background-color: #1a75ff; 
  text-transform: capitalize;
  border-radius: 100px;
}

.eligi-btn {
  font-size: 1.1em;
  border: 1px solid #ff811a;
  padding: 12px 30px;  
  position: relative;  
  cursor: pointer; 
  background-color: #ff811a; 
  text-transform: capitalize;
  border-radius: 100px;
}

.eligi-btn:hover {
  background-color:#000000;
  border: 1px solid #000000;
}

.slide-link-btn {
  color: white;
  text-decoration: none;
}

.slide-link-btn:hover {
  color: rgb(255, 255, 255);
}

.slide-btn:hover {
  background-color:#000000;
  border: 1px solid #000000;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  color: white;
  padding: 15px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.3s;
  z-index: 10;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.prev-btn:hover,
.next-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}

.dots {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .slider {
      height: 500px;
  }

  .text-wrapper {
      max-width: 100%;
      margin: 0;
      padding: 15px;
  }

  .text-content h2 {
      font-size: 1.8em;
  }

  .text-content p {
      font-size: 1em;
  }

  .slide-btn {
      padding: 10px 20px;
      font-size: 1em;
  }
}

@media (max-width: 480px) {
  .slider {
      height: 400px;
  }

  .text-content h2 {
      font-size: 1.5em;
  }

  .text-content p {
      font-size: 0.9em;
      margin-bottom: 15px;
  }
}

/* Large Screen Adjustments */
@media (min-width: 2560px) {
  .slider {
      height: 900px; /* Adjust height for 4K screens */
  }

  .text-content h2 {
      font-size: 3em;
  }

  .text-content p {
      font-size: 1.2em;
  }
}


 


.feat-p{
  font-size: 1.1rem;
}

.link-cat-job:hover{
  color: white !important;
}




.title-partner{
  color: #000000 !important;
  font-size: 2rem !important;
}

.tf-iconbox .box-content p {
  text-transform: none !important;
}


.wd-popup-form .content { 
  width: 500px;
  height: 500px; 
}




.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}


.job-child-email-link{
  color: black;  
  font-weight: 600;
}
.job-child-email-link:hover{
  color: #1a75ff;  
}


.job-child-phone-link{
  color: black;  
  font-weight: 600;
}
.job-child-phone-link:hover{
  color: #1a75ff;  
}
 


 


.call-contact{
  color: white;
}

.call-contact:hover{
  color: white;
}



.logo-auth{
  height: 150px !important;
  width: 100% !important;
}

.form-candidate button, .btn-pri, .wd-meta-select-job button.btn-pri {
  border-radius: 100px !important;
}

.banner-contact-v1 a {
  border-radius: 100px !important;
}
 
/* Hide the popup on mobile */
@media (max-width: 767px) {
  .wd-popup-form {
      display: none !important; /* Completely hide the popup */
  }
}







.carousel-item {
  position: relative;
  text-align: center;
}

.carousel-item img {
  height: 70vh;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 10; 
  padding: 20px;
  border-radius: 10px;
  text-align: center; /* Ensure text is centered */
  width: 90%; /* Responsive width */
  max-width: 600px; /* Maximum width */
}


.carousel-caption h3,
.carousel-caption .btn {
  color: white !important;
  text-align: center; /* Ensure text is centered */
  display: block; /* Allow full-width centering */
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: bold;
}

.carousel-caption h2 {
  font-size: 2rem;
  font-weight: normal;
}

.carousel-caption .btn {
  margin: 15px auto; /* Center button */
  display: inline-block; /* Allows centering */
}

/* Mobile Styles */
@media (max-width: 767px) {
  .carousel-caption {
      width: 90%;
      padding: 15px;
  }

  .carousel-caption h1 {
      font-size: 1.8rem;
  }

  .carousel-caption h2 {
      font-size: 1.3rem;
  }

  .carousel-caption .btn {
      font-size: 1rem;
  }
}
 


.custom-gap { 
  margin-left: 25px; 
}
 


.swiper-container-home-gallery {
  position: relative;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.swiper-wrapper-home-gallery {
  display: flex;
  animation: scroll 20s linear infinite;
}

.swiper-slide-home-gallery {
  flex: 0 0 auto;
  width: 300px;
  height: auto;
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center; 
  overflow: hidden; 
}

.swiper-slide-home-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@keyframes scroll {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-100%);
  }
}

.swiper-wrapper-home-gallery:hover {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .swiper-slide-home-gallery {
      width: 250px;
  }
}

@media (max-width: 576px) {
  .swiper-slide-home-gallery {
      width: 250px;
  }
}
 
 