:root {
    --primary: #2d8cf0;
    --accent: #6ab75c;
}

.hero {
    background:
        linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)),
        url('img/Sun-Aqua-Vilu-Reef-Indulge-Maldives-Sandbank.jpg');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
}

.search-box {
    max-width: 600px;
}

.search-btn {
    background: var(--accent);
}

.top-destinations img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
}

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.destination-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
}

.destination-card h5 {
    margin: 0;
    font-weight: 600;
}

.destination-card span {
    font-size: 14px;
    opacity: .8;
}

/* Hover Effect */
.destination-card:hover img {
    transform: scale(1.1);
    transition: .5s;
}

.price {
    color: var(--accent);
    font-weight: bold;
}

.testimonial-card {
    border-radius: 15px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.travelers-point .travel-img {
    width: 180px;
    border-radius: 90px;
    object-fit: cover;
}

.travelers-point .travel-img.tall {
    height: 420px;
}

.travelers-point .travel-img.short {
    height: 300px;
}