body {
    font-family: 'Kanit', sans-serif;
    background-color: #070707;
    margin: 0;
    padding: 0;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.glass-card-dark {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.orange-glow {
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.4);
}

#hero-slider .splide,
#hero-slider .splide__track,
#hero-slider .splide__list {
    height: 100% !important;
}

#hero-slider .splide__slide {
    height: 80vh !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* Scroll Reveal Animations */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Global Custom Arrows (Moople Style) */

.splide__arrow svg {
    fill: #e0e0e0 !important;
}
.moople-prev,
.moople-next {
    position: static !important;
    transform: none !important;
    width: 48px !important;
    height: 48px !important;
    background: #724218 !important;
    border: 1px solid #F08A31 !important;
    border-radius: 50% !important;
    color: rgba(255, 255, 255, 0.6) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    opacity: 1 !important;
}

.moople-prev:hover,
.moople-next:hover {
    background: #f97316 !important;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}

.moople-prev:disabled,
.moople-next:disabled {
    opacity: 0.2 !important;
    background: #1a1a1a !important;
}

/* Position Arrows for Specific Sliders */
#moople-info,
#testimonials,
#placement,
#career {
    position: relative;
}

#moople-info .splide__arrows,
#testimonials .splide__arrows,
#placement .splide__arrows,
#career .splide__arrows {
    position: absolute;
    top: -85px;
    right: 2rem;
    display: flex;
    gap: 12px;
    z-index: 30;
}

/* Ensure arrows are visible on mobile */
@media (max-width: 768px) {

    #moople-info .splide__arrows,
    #testimonials .splide__arrows,
    #placement .splide__arrows {
        top: -60px;
        right: 1rem;
    }

    .moople-prev,
    .moople-next {
        width: 40px !important;
        height: 40px !important;
    }
}

/* Gallery & Showcase Styles */
.gallery-filter-btn {
    padding: 10px 24px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #999;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.gallery-filter-btn.active {
    background: #F08A31;
    color: #fff;
    border-color: #F08A31;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
    transform: translateY(-2px);
}

.gallery-item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    /* background: #111; */
}

/* Lighthouse Effect (Spotlight Hover) */
.lighthouse-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), transparent 0%, rgba(0, 0, 0, 0.85) 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 10;
    pointer-events: none;
}

.gallery-item:hover .lighthouse-overlay {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox Styles */
#galleryLightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
}

#galleryLightbox.active {
    display: flex !important;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 5px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#galleryLightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: #f97316;
    transform: rotate(90deg);
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10000;
}

.lightbox-nav-btn:hover {
    background: #f97316;
    border-color: #f97316;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}

.lightbox-nav-btn.prev-btn {
    left: 40px;
}

.lightbox-nav-btn.next-btn {
    right: 40px;
}

@media (max-width: 768px) {
    .lightbox-nav-btn {
        width: 45px;
        height: 45px;
        background: rgba(0, 0, 0, 0.5);
    }

    .lightbox-nav-btn.prev-btn {
        left: 10px;
    }

    .lightbox-nav-btn.next-btn {
        right: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}


.faq-item.active .faq-trigger {
    background: rgba(240, 138, 49, 0.08);
    border-color: rgba(240, 138, 49, 0.3);
}

.faq-item.active .faq-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .faq-minus {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-item.active .faq-content {
    max-height: 500px;
}

/* Rotate Icons in Accordion */
.faq-item.active .faq-icon,
.faq-item.active .dropdown-icon {
    transform: rotate(45deg);
}

.faq-icon,
.dropdown-icon {
    transition: transform 0.3s ease;
}

/* Ensure icons are always centered and visible */
.faq-plus,
.faq-minus {
    top: 50%;
    left: 50%;
    margin-top: -7px;
    /* Half of text-sm height */
    margin-left: -7px;
    /* Half of text-sm width */
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 0.5s ease-out forwards;
}