.hero-section {
  position: relative; /* Make the section relative to position the overlay */
  background-image: url("./assets/france.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 250px;
}

.hero-section::before {
  content: ''; /* Necessary to create the pseudo-element */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Black overlay with transparency */
  z-index: 1; /* Ensure it sits behind content but above the background */
}

.hero-section > * {
  position: relative; /* Ensure that content sits on top of the overlay */
  z-index: 2; /* Content stays above the overlay */
}








/* Section Header */
.section-header {
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  color: #007bff;
  margin-top: 30px;
  animation: fadeIn 2s ease-out;
}

.button {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  /* background-color: var(--clr); */
  background-image: linear-gradient(to top, #48c6ef 0%, #6f86d6 100%);
  color: #fff;
  border-radius: 10rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
}

.button__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: var(--clr);
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.button:hover {
    background-image: linear-gradient(to top, rgb(32, 38, 57) 0%, rgb(63, 76, 119) 100%);
}

.button:hover .button__icon-wrapper {
  color: #000;
}

.button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.button:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

.bg-gray {
  background: rgb(207, 217, 223);
}

/* Card Custom Styling */
.card-custom {
  border: none;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  opacity: 0;
  animation: fadeInUp 1s forwards;
}

.card-custom:nth-child(1) {
  animation-delay: 0.1s;
}

.card-custom:nth-child(2) {
  animation-delay: 0.2s;
}

.card-custom:nth-child(3) {
  animation-delay: 0.3s;
}

.card-custom:nth-child(4) {
  animation-delay: 0.4s;
}

.card-custom:nth-child(5) {
  animation-delay: 0.5s;
}

.card-custom:nth-child(6) {
  animation-delay: 0.6s;
}

.card-custom:nth-child(7) {
  animation-delay: 0.7s;
}

.card-custom:nth-child(8) {
  animation-delay: 0.8s;
}

.card-custom:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Card Header */
.card-header {
  background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  color: rgb(33, 19, 19);
  font-weight: bold;
  font-size: 1rem;
}

/* Card Body */
.card-body {
  padding: 15px;
}

.card-body p {
  font-size: 1rem;
  color: #333;
}

/* Icon Styling */
.card-icon {
  width: 2rem;
  margin-right: 10px;
  vertical-align: middle;
}

/* Fade-in Animation for Section Header */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Slide-up Animation for Cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-header {
    font-size: 1.5rem;
  }

  .card-body p {
    font-size: 1rem;
  }
}

.table-container {
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: white;
  padding: 20px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.table th,
.table td {
  padding: 15px;
  text-align: center;
  vertical-align: middle;
}

.table th {
  background-color: #f8f9fa;
  color: #495057;
  font-weight: 600;
}

.table td {
  color: #6c757d;
}

.total-expenses {
  font-weight: 600;
  color: #28a745;
  background-color: #e9f7e5;
}

.footer {
  text-align: center;
  padding: 15px;
  background-color: #343a40;
  color: white;
  font-size: 1rem;
  margin-top: 50px;
}

@media (max-width: 767px) {
  .header {
    font-size: 1.5rem;
    padding: 15px;
  }

  .table th,
  .table td {
    font-size: 1rem;
    padding: 10px;
  }
}

.visa-card {
  border: none;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: white;

  transition: box-shadow 0.3s ease-in-out;
}
.visa-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.visa-card-header {
  background-image: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
  color: rgb(33, 19, 19);
  font-size: 1rem;
  padding: 10px;
  font-weight: 600;

  border-radius: 8px 0px 8px 0px;
}
.visa-card-body {
  padding: 10px;
  padding-top: 10px;
}
.visa-card-body h5 {
  font-size: 1rem;
  color: #333;
  font-weight: bold;
  margin-top: 10px;
}
.visa-card-body p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
.visa-card-footer {
  text-align: center;
  padding: 8px;
  background-color: #f7f7f7;
  border-radius: 0 0 8px 8px;
  font-size: 0.85rem;
}

.visa-section {
  padding: 30px;
  background: #f4f7fc;
}

.visa-info-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visa-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.visa-icon {
  font-size: 36px;
  color: #007bff;
  margin-right: 20px;
  flex-shrink: 0;
}

.visa-content {
  flex: 1;
}

.visa-title {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.visa-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.visa-details {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #444;
}

.visa-details li {
  margin-bottom: 5px;
}

.visa-note {
  font-size: 14px;
  color: #777;
  margin-top: 10px;
  border-top: 1px solid #eee;
  padding-top: 10px;
}






.custom-scroll-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
  padding: 1rem;
}

.custom-scroll-container::-webkit-scrollbar {
  display: none;
}

.custom-card {
  position: relative;
  flex: 0 0 auto;
  width: 100%; /* Full width for small screens */
  max-width: 300px; /* Restrict width for larger screens */
  border: none;
  overflow: hidden;
 
}

.custom-card img {
  width: 100%;
  height: 150px;
 
  object-fit: cover;
}

.custom-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

@media (min-width: 576px) {
  .custom-card {
    max-width: 250px; /* Slightly smaller for medium screens */
  }
}

@media (min-width: 768px) {
  .custom-card {
    max-width: 280px; /* Adjust for larger screens */
  }
}

@media (min-width: 1200px) {
  .custom-card {
    max-width: 300px; /* Consistent size for large screens */
  }
}



@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 70px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 75s slide infinite linear;
}

.logos-slide img {
  height: 150px;
  margin: 0 40px;
}







