* {
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg,
            rgb(224, 242, 255),
            rgb(255, 244, 184));
}

.section-divider {
    border: none;
    height: 0.25rem;
    background-color: rgb(41, 128, 225);
    margin: 1.875rem 0;
    border-radius: 2px;
    width: 100%;
}

.slider_section {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    z-index: 1;
}

.background_slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
}

.slider_text {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 1s forwards 0.3s;
}

.slider_text h2 {
    font-size: 3rem;
    margin-bottom: 0.625rem;
}

.slider_text p {
    font-size: 1.25rem;
}

.explore {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3.125rem;
    padding: 0 1.25rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
        margin-top: -5rem;
    opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 1s forwards 0.5s;
}

.explore .explore_card {
    background-color: white;
    border-radius: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5625rem 1.25rem;
    width: 18.75rem;
    box-sizing: border-box;
    transition: 0.3s;
    opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.8s forwards 0.7s;
}

.explore .explore_card:hover {
    transform: translateY(-10px);
    transition: 1s;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.571);
}

.explore .explore_card h4 {
    margin: 0;
    margin-bottom: 0.625rem;
    font-size: 1.5rem;
    text-align: center;
}

.explore .explore_card p {
    margin: 0;
    margin-bottom: 0.9375rem;
    font-size: 1rem;
    text-align: center;
}

.explore .explore_card a.btn_explore {
    display: inline-block;
    text-decoration: none;
    background-color: rgb(41, 128, 225);
    border-radius: 1.25rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    color: white;
    text-align: center;
    transition: 0.3s;
}

.explore .explore_card a.btn_explore:hover {
    background-color: rgb(17, 52, 176);
}

main h3 {
    text-align: center;
    padding: 4.375rem 1.25rem 2.5rem;
    font-size: 2.625rem;
    color: rgb(24, 37, 110);
    opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 1s forwards 0.9s;
}

.incoming_events_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2.5rem 5rem 6.25rem;
    max-width: 1300px;
    margin: 0 auto;
    justify-items: stretch;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 1.1s;
}
#incoming {
    display: flex;
    justify-content: center;
    gap: 3.75rem;
    padding: 2.5rem 5rem 6.25rem;
    opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 1s forwards 1.1s;
}

.incoming_event {
    background: rgba(255, 255, 255, 0.85);
        border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
        box-shadow: 0 6px 18px rgba(20, 20, 60, 0.06);
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
}

.incoming_event:hover {
    transform: translateY(-8px);
        box-shadow: 0 16px 36px rgba(20, 20, 60, 0.12);
}

.event_image_container {
    position: relative;
    width: 100%;
    height: 200px;
        overflow: hidden;
    }
    
    .event_image_container img {
        width: 100%;
        height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    }
    
    .incoming_event:hover .event_image_container img {
        transform: scale(1.08);
    }
    
    .event_tag {
        position: absolute;
        top: 12px;
        left: 12px;
        background: linear-gradient(135deg, rgb(24, 37, 110), rgb(41, 128, 225));
        color: white;
        padding: 0.4rem 0.8rem;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .event_date {
        position: absolute;
        bottom: 12px;
        right: 12px;
        background: rgba(255, 255, 255, 0.95);
        color: rgb(24, 37, 110);
        padding: 0.5rem 0.9rem;
        border-radius: 8px;
        font-size: 0.85rem;
        font-weight: 600;
}

.incoming_event_details {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
        flex-grow: 1;
}

.incoming_event_details h5 {
    color: rgb(24, 37, 110);
        font-size: 1.15rem;
        margin: 0;
    }
    
    .event_place {
        color: #40507a;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .event_place i {
    color: rgb(24, 37, 110);
    font-size: 0.9rem;
    }
    
    .event_description {
        color: #40507a;
        font-size: 0.9rem;
        line-height: 1.5;
        flex-grow: 1;
    }
    
    .event_footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        margin-top: auto;
        padding-top: 1rem;
        border-top: 1px solid rgba(24, 37, 110, 0.1);
    }
    
    .event_footer.single {
        justify-content: flex-start;
    }
    

.event_price {
    color: rgb(24, 37, 110);
    font-weight: 600;
    font-size: 0.95rem;
}

.see_details_btn {
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, rgb(24, 37, 110), rgb(41, 128, 225));
        padding: 0.6rem 1.2rem;
        border-radius: 8px;
        font-size: 0.85rem;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-block;
}

.see_details_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(24, 37, 110, 0.25);
}

.incoming_event_details p {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.6;
}

main .why_we {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 6.25rem;
    padding: 0 3.125rem;
    min-height: 18.75rem;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 1s forwards 1.5s;
}

main .why_we .reason {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(240, 248, 255) 100%);
    border-radius: 1rem;
    border-left: 4px solid rgb(41, 128, 225);
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    min-width: 15rem;
    flex: 1;
    max-width: 18rem;
}

main .why_we .reason i {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    color: rgb(41, 128, 225);
    transition: 0.3s ease;
}

main .why_we .reason:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.15);
}

main .why_we .reason:hover i {
    color: rgb(255, 102, 0);
    transform: scale(1.15);
}

.feedbacks {
    display: flex;
    flex-direction: row;
    gap: 1.875rem;
    padding: 4.0625rem;
    opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 1s forwards 1.7s;
}

.feedbacks .feedback {
    align-self: flex-start;
    text-decoration: none;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    padding: 0.5rem 1.125rem;
    border-radius: 1.25rem;
    font-size: 1.25rem;
    transition: 0.3s;
    height: auto;
}

.feedbacks .feedback:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.feedbacks .feedback .where {
    padding-bottom: 0.625rem;
    color: rgb(255, 102, 0);
}

.feedbacks .feedback h5 {
    padding-top: 0.9375rem;
    font-size: 1.625rem;
    padding-bottom: 0.625rem;
}

.faq_container {
    max-width: 50rem;
    margin: 3rem auto;
    padding: 0 1.25rem;
    opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 1s forwards 1.9s;
}

.faq_item {
    margin-bottom: 1.25rem;
    border-radius: 0.75rem;
    background-color: white;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
}

.faq_item:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(41, 128, 225, 0.15);
}

.faq_question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(240, 248, 255) 100%);
    cursor: pointer;
    transition: 0.3s ease;
    border-left: 4px solid rgb(41, 128, 225);
    font-weight: 600;
    font-size: 1.0625rem;
    color: rgb(24, 37, 110);
}

.faq_question:hover {
    background: linear-gradient(135deg, rgb(240, 248, 255) 0%, rgb(230, 243, 255) 100%);
}

.faq_question i {
    font-size: 1.25rem;
    color: rgb(41, 128, 225);
    transition: 0.3s ease;
}

.faq_item.active .faq_question {
    background: linear-gradient(135deg, rgb(41, 128, 225) 0%, rgb(24, 37, 110) 100%);
    color: white;
    border-left: 4px solid rgb(255, 102, 0);
}

.faq_item.active .faq_question i {
    color: rgb(255, 102, 0);
    transform: rotate(180deg);
}

.faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq_item.active .faq_answer {
    max-height: 30rem;
}

.faq_answer p {
    padding: 0 1.5rem 1.5rem;
    color: #555;
    font-size: 0.9375rem;
    line-height: 1.8;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.625rem 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    header img {
        width: 3.5rem;
    }

    nav {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    nav a {
        font-size: 0.875rem;
        white-space: normal;
    }

    .slider_section {
        height: 50vh;
    }

    .slider_text h2 {
        font-size: 1.75rem;
    }

    .slider_text p {
        font-size: 0.875rem;
    }

    .explore {
        gap: 1.25rem;
        padding: 0 0.625rem;
        margin-top: -3rem;
    }

    .explore .explore_card {
        width: 100%;
        max-width: 18.75rem;
        padding: 1.25rem;
        margin: 0 auto;
    }

    main h3 {
        font-size: 1.75rem;
        padding: 2.5rem 0.75rem 1.5rem;
    }

                                .incoming_events_container {
                                    padding: 1.5rem 0.75rem 3rem !important;
                                    grid-template-columns: 1fr;
                                    gap: 1.5rem;
                                }
    #incoming {
        flex-direction: column;
        gap: 1.875rem;
        padding: 1.5rem 0.75rem 3rem;
        align-items: center;
    }

    .incoming_event {
        width: 100%;
        max-width: 20rem;
        margin: 0 auto;
    }

    main .why_we {
        gap: 1.5rem;
        padding: 0 0.625rem;
        min-height: auto;
        flex-direction: column;
        align-items: center;
    }

    main .why_we .reason {
        min-width: auto;
        max-width: 100%;
        padding: 1.5rem;
        width: 100%;
    }

    main .why_we .reason i {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .feedbacks {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 0.75rem;
        align-items: center;
    }

    .feedbacks .feedback {
        padding: 1rem;
        font-size: 0.875rem;
        max-width: 20rem;
        width: 100%;
    }

    .feedbacks .feedback h5 {
        font-size: 1.125rem;
    }

    .faq_container {
        margin: 1.5rem auto;
        padding: 0 0.5rem;
        width: 100%;
    }

    .faq_question {
        padding: 1rem;
        font-size: 0.9375rem;
    }

    .faq_question i {
        font-size: 1rem;
    }

    .faq_answer p {
        padding: 0 1rem 1rem;
        font-size: 0.8125rem;
    }

    .newsletter_form {
        flex-direction: column;
    }

    .newsletter_form button {
        width: 100%;
    }

    .section-divider {
        margin: 1rem 0;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.75rem 1.5rem;
    }

    header img {
        width: 4rem;
    }

    nav {
        gap: 1.5rem;
    }

    nav a {
        font-size: 0.9375rem;
    }

    .slider_section {
        height: 60vh;
    }

    .slider_text h2 {
        font-size: 2.25rem;
    }

    .slider_text p {
        font-size: 1rem;
    }

    .explore {
        gap: 1.875rem;
        padding: 0 1rem;
        margin-top: -4rem;
    }

    .explore .explore_card {
        width: 100%;
        max-width: 16.25rem;
    }

    main h3 {
        font-size: 2rem;
        padding: 3rem 1rem 2rem;
    }

                                .incoming_events_container {
                                    padding: 2rem 1rem 4rem !important;
                                    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                                    gap: 2rem;
                                }
    #incoming {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem 4rem;
    }

    .incoming_event {
        width: 100%;
        max-width: 18.75rem;
    }

    main .why_we {
        gap: 2rem;
        padding: 0 1rem;
        flex-direction: column;
        min-height: auto;
    }

    main .why_we .reason {
        min-width: auto;
        max-width: 100%;
        padding: 1.75rem;
    }

    main .why_we .reason i {
        font-size: 3rem;
    }

    .feedbacks {
        flex-direction: column;
        gap: 1.25rem;
        padding: 2rem 1rem;
        align-items: stretch;
    }

    .feedbacks .feedback {
        padding: 1.25rem;
    }

    .faq_question {
        padding: 1.25rem;
        font-size: 1rem;
    }

    .newsletter_form {
        flex-direction: column;
    }

    .newsletter_form button {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    header {
        padding: 0.9375rem 2rem;
    }

    header img {
        width: 4.5rem;
    }

    nav {
        gap: 1.875rem;
    }

    nav a {
        font-size: 0.9375rem;
    }

    .slider_section {
        height: 65vh;
    }

    .slider_text h2 {
        font-size: 2.5rem;
    }

    .slider_text p {
        font-size: 1.125rem;
    }

    .explore {
        gap: 2rem;
        padding: 0 1.5rem;
        margin-top: -4.5rem;
    }

    .explore .explore_card {
        width: 100%;
        max-width: 17.5rem;
    }

    main h3 {
        font-size: 2.25rem;
        padding: 3.5rem 1.5rem 2rem;
    }

                                .incoming_events_container {
                                    padding: 2.5rem 2rem 5rem !important;
                                    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                                }
    #incoming {
        flex-wrap: wrap;
        gap: 2.5rem;
        padding: 2.5rem 2rem 5rem;
        justify-content: center;
    }

    .incoming_event {
        width: 100%;
        max-width: 18.75rem;
    }

    main .why_we {
        gap: 3rem;
        padding: 0 2rem;
        flex-wrap: wrap;
    }

    main .why_we .reason {
        min-width: 13rem;
        max-width: 16rem;
        flex: 1 1 calc(33.333% - 2rem);
    }

    .feedbacks {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 2.5rem 2rem;
    }

    .feedbacks .feedback {
        flex: 1 1 calc(50% - 0.75rem);
        min-width: 15rem;
    }
}

@media (max-width: 1440px) {
    header {
        padding: 0.9375rem 2.5rem;
    }

    nav {
        gap: 2rem;
    }

    .explore {
        gap: 2.5rem;
        padding: 0 2rem;
    }

    .explore .explore_card {
        width: 17.5rem;
    }

    #incoming {
        gap: 3rem;
        padding: 2.5rem 3rem 5rem;
    }

    main .why_we {
        gap: 4rem;
        padding: 0 2.5rem;
    }

    main .why_we .reason {
        min-width: 14rem;
        max-width: 17rem;
    }

    .feedbacks {
        gap: 1.5rem;
        padding: 3rem 2.5rem;
    }
}

@media (min-width: 1441px) {
    header {
        padding: 0.9375rem 4rem;
    }

    nav {
        gap: 2.75rem;
    }

    .explore {
        gap: 3.125rem;
        padding: 0 2rem;
    }

    main .why_we {
        gap: 6.25rem;
        padding: 0 3.125rem;
    }

    .feedbacks {
        gap: 2rem;
        padding: 4.0625rem 3rem;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .slider_section {
        height: 100vh;
    }

    header {
        padding: 0.5rem 1rem;
    }

    header img {
        width: 3rem;
    }

    nav a {
        font-size: 0.75rem;
    }

    .slider_text h2 {
        font-size: 1.5rem;
    }

    .slider_text p {
        font-size: 0.75rem;
    }

    .explore {
        margin-top: -2rem;
    }
}

@media print {
    header, footer, .explore, .feedbacks, .faq_container {
        display: none;
    }

    main {
        padding: 0;
    }

    .slider_section {
        display: none;
    }
}
