/* Custom Styles */

/* Header - Section */

.hero-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hero-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.search-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
}

.dropdown-menu-large {
    width: 500px;
    left: 0;
    right: 0;
    padding: 20px;
}

/* Popular Destination */

.item img {
    border-top-left-radius: 120px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 120px;
    border: 1px solid #007bff;
    padding: 5px;
    background-color: #fff;
}

.destination-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px 20px;
    font-size: 1.2em;
    border-radius: 10px;
    font-weight: bold;
}

/* Get in touch*/
.btn.btn-outline-white {
    border: 2px solid #ffffff;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 30px;
    font-size: 14px;
}

/* Newsletter Section */
#subscribe {
    background: url('https://source.unsplash.com/1600x900/?travel,airplane') no-repeat center center/cover;
    color: #fff;
    padding: 60px 0;
}

#subscribe h2 {
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

#subscribe p {
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

#subscribe .form-control {
    border-radius: 30px;
    padding: 12px;
    border: none;
}

#subscribe .btn-primary {
    border-radius: 30px;
    padding: 12px 20px;
    font-weight: bold;
    background: #ff6f61;
    border: none;
}

#subscribe .btn-primary:hover {
    background: #e63946;
}

/* About-us Section */
.about-hero-section {
    position: relative;
    text-align: center;
    color: white;
}

.about-hero-section video {
    width: 100%;
    height: auto;
    /* filter: brightness(60%); */
}

.about-hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.about-hero-overlay h1 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

/* Feature Section */
.feature-icon {
    font-size: 3rem;
    color: #007bff;
    transition: transform 0.3s ease-in-out;
}

.feature-icon:hover {
    transform: scale(1.2);
}

/* Mission & Vision Section */
.mission-vision {
    background: #f8f9fa;
    padding: 50px 0;
}

.mission-vision .card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.mission-vision .card:hover {
    transform: translateY(-5px);
}

/*contact us*/
.contact-section {
    padding: 60px 0;
}

.contact-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info i {
    font-size: 24px;
    color: #007bff;
}

.contact-form input,
.contact-form textarea {
    border-radius: 5px;
    box-shadow: none;
}

.btn-custom {
    background: #007bff;
    color: #fff;
    border-radius: 5px;
}

.btn-custom:hover {
    background: #0056b3;
}