/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
   
  html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('images/banner.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin: 0;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 20px 0;
}


.hero-content .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: rgb(239, 136, 20) ;
    color: white;
    font-size: 1rem;
    cursor: pointer;
}

.carousel-section-domestic {
    background-color: white; /* Dark Background */
    padding: 40px 40px;
    text-align: left;
    position: relative;
}

.carousel-title-domestic {
    color: #0c1425;
    font-size: 28px;
    margin-bottom: 20px;
}

.carousel-container-domestic {
    overflow: hidden;
    width: 80%;
    margin: auto;
    position: relative;
}

.carousel-track-domestic {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-card-domestic {
    min-width: 300px;
    background-color: #0c1425;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}

.carousel-card-domestic img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.carousel-card-domestic h3, .carousel-card-domestic p {
    margin: 10px 0;
    color: white;
}

.carousel-link-domestic {
    min-width: 300px;
    margin: 10px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none; /* Removes underline */
    display: block; /* Makes the entire card clickable */
    color: inherit; /* Keeps default text color */
    transition: transform 0.3s ease;
}

.carousel-link-domestic:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

.carousel-btn-domestic {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    border-color: black;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s ease;
    z-index: 10;
}

.carousel-btn-domestic:hover {
    background-color: white;
}

#prevBtn {
    left: 10px;
}

#nextBtn {
    right: 10px;
}

/* international section */
.carousel-section {
    background-color: #0c1425; /* Dark Background */
    padding: 40px 40px;
    text-align: left;
    position: relative;
}

.carousel-title {
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
}

.carousel-container {
    overflow: hidden;
    width: 80%;
    margin: auto;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-card {
    min-width: 300px;
    margin: 10px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.carousel-card h3, .carousel-card p {
    margin: 10px 0;
    color: black;
}

.carousel-link {
    min-width: 300px;
    margin: 10px;
    background-color: #0c1425;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none; /* Removes underline */
    display: block; /* Makes the entire card clickable */
    color: inherit; /* Keeps default text color */
    transition: transform 0.3s ease;
}

.carousel-link:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: white;
}

#prevBtn1 {
    left: 10px;
}

#nextBtn1 {
    right: 10px;
}







  
  