body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #FFE5CF;
}
.navbar {
    background-color: #FF885B;
}
.navbar a {
    color: white;
}
header {
    background: url('../images/dunes-2184976_1280.jpg') no-repeat center center/cover;
    height: 100vh;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}
header h1 {
    font-size: 4rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in-out;
}
header p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}
header a {
    background-color: #FF885B;
    padding: 12px 30px;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}
header a:hover {
    background-color: #ff5722;
}
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-50px); }
    100% { opacity: 1; transform: translateY(0); }
}
.section-title {
    margin: 60px 0;
    text-align: center;
    font-weight: bold;
    font-size: 2.5rem;
    color: #FF885B;
    position: relative;
}
.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: #FF885B;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}
.service-card {
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: scale(1.05);
}
footer {
    background-color: #33372C;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 50px;
}
footer p {
    margin: 0;
    font-size: 1rem;
}
.contact-form {
    padding: 40px 20px;
    background-color: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}
.destination img {
    border-radius: 15px;
    transition: transform 0.3s ease;
}
.destination img:hover {
    transform: scale(1.05);
}

/* Testimonial Slider */
#testimonialSlider .carousel-item {
    transition: transform 0.6s ease-in-out;
    transform: translateX(100%);
}
#testimonialSlider .carousel-item-next,
#testimonialSlider .carousel-item-prev {
    display: block;
    transform: translateX(-100%);
}
#testimonialSlider .carousel-item.active {
    transform: translateX(0);
}
.testimonial-slide {
    background-color: #557C56;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 0 15px;
}
.testimonial-slide p {
    font-size: 1.2rem;
    font-style: italic;
}
.testimonial-slide h5 {
    font-weight: bold;
    margin-top: 20px;
}