/*


/* about section */
.highlights-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    gap: 20px;
    background-color: #f9f9f9;
  }

  .highlight-item {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    flex: 1 1 300px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .highlight-icon {
    font-size: 40px;
    color: #007bff;
  }

  .highlight-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
  }

  .highlight-description {
    font-size: 14px;
    color: #666;
  }

  @media (max-width: 768px) {
    .highlight-item {
      max-width: 100%;
    }
  }

/*why--choose-us*/

.why-us {
    background-color: #f9f9f9;
}

.content-column {
   

    opacity: 0;
    transform: translateX(180px);
    transition: opacity 1s ease, transform 1s ease;
    padding-left: 180px;
  
  
}
@media (max-width: 768px) {
    .content-column {
        padding-left: 30px; /* Less movement for smaller devices */
    }
  
    
  }
  


  .content-column.animate-visible {
    opacity: 1;
    transform: translateY(0);

  }
 
  
  /* Styling for content-column */
  .content-column .heading-primary {
    font-size: 2.5rem;
  }
  
  .feature-list {
    margin-top: 20px;
  }
  
  .feature-item {
    margin-bottom: 15px;
  }
  
  /* Adjust space between the image and content */
  .image-column {
    padding-right: 30px; /* Add space to the right side of the image */
  }
  
  /* Style the feature-title */
  .feature-title {
    font-size: 1.5rem;
  }
  
  .feature-description {
    font-size: 1rem;
  }
  
  

  /*slider-images-in-gallery*/
  .carousel {
    position: relative;
}

.custom-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px;
    width: 40px;
    height: 40px;
}
.custom-carousel-control:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.carousel-control-prev {
    left: -50px;
}

.carousel-control-next {
    right: -50px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgb(8, 16, 239); /* White arrow */
    width: 30px;
    height: 30px;
}

@media (max-width: 767px) {
    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }
}

/*countries*/
.section-container {
    margin: 50px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
  }

  .section-container.animate {
    opacity: 1;
    transform: translateY(0);
  }

  .heading-primary {
    color: #007BFF;
    font-size: 2rem;
  }

  .text-content {
    margin-bottom: 20px;
  }

  .countries-list h3 {
    margin-top: 20px;
  }

  .countries-list ul {
    list-style-type: none;
    padding-left: 0;
  }

  .countries-list ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
  }

  .countries-list ul li::before {
    content: "•";
    color: #007BFF;
    position: absolute;
    left: 0;
  }

  .image-container img {
    width: 100%;
    max-width: 800px;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
  }

  .image-container img.animate {
    transform: scale(1);
    opacity: 1;
  }

  /*
footer*/
.footer-container {
   
    color: #ffffff;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
  }

  .footer-container h5 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    text-transform: uppercase;
  }

  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 8px;
    display: inline-block;
    transition: color 0.3s ease;
  }

  .footer-links a:hover {
    color: #ffd700;
  }

  .social-icons a {
    margin: 0 10px;
    font-size: 1.5rem;
    color: #ffffff;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .social-icons a:hover {
    transform: scale(1.2);
    color: #ffd700;
  }

  .footer-divider {
    height: 1px;
    background-color: #ffffff;
    opacity: 0.3;
    margin: 20px 0;
  }

  .footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.8);
  }

  @media (max-width: 768px) {
    .footer-container {
      text-align: center;
    }

    .social-icons {
      margin-top: 20px;
    }
  }


  /* team section*/

  /* General Styling */
.our-team {
    background-color: #f8f9fa;
  }
  
  .our-team h2 {
    font-weight: bold;
  }
  
  .team-card {
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .team-card i {
    display: block;
    margin-bottom: 15px;
  }
  
  .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Optional rounded corners for the image */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for the image */
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .row.align-items-center {
      flex-direction: column;
    }
  
    .team-card {
      text-align: center;
    }
  
    .img-fluid {
      margin-bottom: 20px;
    }
  }
  


  /* contact section*/
  .contact-us .contact-card {
    border: none;
    border-radius: 8px;
    max-width: 90%;
    margin: 0 auto;
    padding: 1rem 1rem;
  }
  
  .contact-us .contact-card h6 {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
  
  .contact-us .contact-card i {
    font-size: 1.5rem;
    color: #007bff;
  }
  
  .contact-us .contact-card p {
    font-size: 0.9rem;
    margin: 0;
  }
  
  .contact-us .form-label {
    font-weight: bold;
    font-size: 0.9rem;
  }
  
  .contact-us .form-control {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
  
  .contact-us .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    font-size: 0.9rem;
    padding: 0.4rem;
  }
  
  .contact-us .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
  }
  
  @media (max-width: 768px) {
    .contact-us .contact-card {
      max-width: 100%;
    }
  }



/*hero---section--*/



.hero {
    width: 100%;
    min-height: 70vh;
    position: relative;
    padding:40px 0 20px 0;
    display: flex;
    align-items: center;
  }
  
  .hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
  }
  
  .hero p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 5px 0 30px 0;
    font-size: 20px;
    font-weight: 400;
  }
  
  .hero .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 12px 28px;
    border-radius: 50px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  }
  
  .hero .btn-get-started:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  }
  
  .hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: var(--default-color);
    font-weight: 600;
  }
  
  .hero .btn-watch-video i {
    color: var(--accent-color);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
  }
  
  .hero .btn-watch-video:hover {
    color: var(--accent-color);
  }
  
  .hero .btn-watch-video:hover i {
    color: color-mix(in srgb, var(--accent-color), transparent 15%);
  }
  
  .hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
  }
  
  @media (max-width: 640px) {
    .hero h1 {
      font-size: 28px;
      line-height: 36px;
    }
  
    .hero p {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
    }
  
    .hero .btn-get-started,
    .hero .btn-watch-video {
      font-size: 13px;
    }
  }
  
  @keyframes up-down {
    0% {
      transform: translateY(10px);
    }
  
    100% {
      transform: translateY(-10px);
    }
  }
  
  