body {
    font-family: 'Poppins', sans-serif;
}

.text-red {
    color: #ED1C24;
}

.main-header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
}

.navbar-nav .nav-link:hover {
    color: #ED1C24;
}

.hero-section {
    background: url('img/plane-banner.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 120px 0;
    text-align: center;
    position: relative;
    height: 90vh;
    align-content: center;
}

.hero-section h1 span {
    color: #ED1C24;
}

.search-box {
    max-width: 700px;
    margin: 30px auto 0;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.section-title {
    text-align: center;
    margin: 60px 0 30px;
    font-size: 2rem;
}

.main-footer {
    background: #222;
    color: #ccc;
    padding: 50px 0;
}

.main-footer h6 {
    color: #ED1C24;
}

.footer-links li a {
    color: #ccc;
    text-decoration: none;
}

.footer-links li a:hover {
    color: #ED1C24;
}

.newsletter input {
    border: none;
    border-radius: 0;
    border-bottom: 2px solid #ED1C24;
}

.btn-red {
    background-color: #ED1C24;
    color: #fff;
    border: none;
}

.btn-red:hover {
    background-color: #c9131b;
}

.section-title {
    font-weight: 600;
    font-size: 2rem;
}

.bg-light {
    background-color: #f9f9f9;
}

.trending-destinations {
    background: #fff;
    overflow: hidden;
}

.section-title {
    font-weight: bold;
    font-size: 2rem;
}

.swiper-slide.destination-slide {
    width: 260px;
    transition: transform 0.5s ease;
    transform-origin: center bottom;
}

.destination-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.destination-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.destination-card .info {
    padding: 15px;
}

.destination-card .btn {
    background-color: #ED1C24;
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
}

/* Arch rotation logic */
.trendingSwiper .swiper-slide-prev {
    transform: rotate(-10deg) translateY(20px) scale(0.9);
    opacity: 0.7;
}

.trendingSwiper .swiper-slide-next {
    transform: rotate(10deg) translateY(20px) scale(0.9);
    opacity: 0.7;
}

.trendingSwiper .swiper-slide-active {
    transform: rotate(0deg) translateY(0px) scale(1.1);
    z-index: 5;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-card {
    background: linear-gradient(to right, #0E4D92, #00BFA6);
    color: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.why-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.why-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.why-card h5 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.95rem;
    line-height: 1.5;
}
.deal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.deal-card {
    background: linear-gradient(to right, #0E4D92, #00BFA6);
    color: white;
    padding: 20px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    text-align: center;
}

.deal-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(to right, #00BFA6, #0E4D92);
}
.main-footer {
    background: #222;
    color: #ccc;
    padding: 50px 0;
}