.card-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: #4b5563; /* gray-700 */
    text-align: center;
    margin-bottom: 0.25rem;
}

.card {
    background-color: #f3f4f6; /* gray-100 */
    border: 1px solid #d1d5db; /* gray-300 */
    padding: 0.5rem;
}

.flight-list {
    font-weight: 600;
    font-size: 0.8rem;
    color: #1f2937; /* gray-800 */
    margin-bottom: 0;
}

.flight-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.price {
    color: #2563eb; /* blue-600 */
}

img {
    width: 100%;
    margin-bottom: 0.25rem;
    height: 150px;
    object-fit: cover;
}

.theading {
        text-align: center;
        border: 1px solid;
}

.text-justify {
    text-align: justify;
}

/* Flight Continent Section */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* so it doesn't block clicks */
    text-transform: uppercase;
}

.card:hover .overlay {
    opacity: 1;
    pointer-events: auto;
}

.hidden {
    display: none;
}


/* Airline Features Section */
.feature-icon {
    font-size: 2.5rem;
    /* color: #00c0ff; */
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: #4a4a4a;
    margin-bottom: 0.25rem;
}

.feature-text {
    font-size: 0.75rem;
    color: #8a8a8a;
    max-width: 220px;
}

.feature-item {
    max-width: 320px;
}

.fs-20 {
    font-size: 20px;
}
