@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

.gradient-text {
    background: linear-gradient(90deg, #ff4655, #ff7a59);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-image{width: 500px !important;}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }

}

.marquee-animate {
    animation: scroll-left 100s linear infinite;
}

.marquee-container {
    overflow: hidden;
    width: 100%;
}

.marquee-content {
    display: flex;
    width: fit-content;
}

.marquee-item {
    white-space: nowrap;
    padding-right: 50px;
    font-family: helvetica;

    font-size: 120px;
    line-height: 1.2em;
    color: transparent;
    -webkit-text-stroke: 2px #ff4a17;

}

.marquee-container {
    overflow: hidden;
    width: 100%;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.marquee-container::-webkit-scrollbar {
    display: none;
}

.text-blue-600 {
    color: transparent !important;
    font-size: 120px !important;
}

/*Accordion styles*/

.arrow {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #ff5722;
    transition: transform 0.3s ease;
}

.arrow.open {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 1000px;
}

/*Why us Slider csss*/

.slide {
    display: none;
}

.slide.active {
    display: block;
}

/* Desktop dropdown - CSS only hover */
.dropdown-parent:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Hide checkbox input */
input[type="checkbox"] {
    display: none !important;
}

/* Mobile menu hidden by default */
.mobile-menu {
    display: none;
}

/* Mobile menu shown when checkbox is checked */
input[type="checkbox"]:checked+label+.mobile-menu,
#mobileMenuCheck:checked+label+.mobile-menu {
    display: block;
}

/* Mobile submenu hidden by default */
.mobile-submenu {
    display: none;
}

/* Mobile submenu shown when its checkbox is checked */
#workshopsCheck:checked+label+.mobile-submenu {
    display: block;
}

/* Rotate arrow when submenu is checked */
#workshopsCheck:checked~.workshops-arrow {
    transform: rotate(180deg);
}

.workshops-arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Hamburger X animation */
.hamburger-icon {
    display: block;
}

.close-icon {
    display: none;
}

#mobileMenuCheck:checked~label .hamburger-icon {
    display: none;
}

#mobileMenuCheck:checked~label .close-icon {
    display: block;
}

/* Marquee Animation */
@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Smooth scrolling marquee */
.marquee-scroll {
    animation: scroll-marquee 30s linear infinite;
}



/* Marquee container */
.marquee-container {
    overflow: hidden;
    width: 100%;
    background-color: #1a1a1a;
}

/* Remove scrollbar */
.marquee-container::-webkit-scrollbar {
    display: none;
}

.marquee-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Image hover effect */
.marquee-item {
    transition: all 0.3s ease;
}

.marquee-item:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* Grayscale effect */
.marquee-item img {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.marquee-item:hover img {
    filter: grayscale(0%);
}



.active-tab {
    background: linear-gradient(135deg, #ff4655, #ff7a59);
}

/* Tab button styles */
.tab-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: rgba(255, 107, 53, 0.2);
    border: 2px solid transparent;
}

.tab-button:hover {
    background-color: rgba(255, 107, 53, 0.3);
    border-color: #FF6B35;
}

.tab-button.active-tab {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    border-color: #FF6B35;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

/* Fade in animation for content */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Card container */
.portfolio-card {
    position: relative;
    overflow: hidden;
    background: #000;
    aspect-ratio: 1;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Content overlay - hidden by default */


.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* On hover, slide up the content */
.portfolio-card:hover .card-overlay {
    transform: translateY(0);
}

/* Zoom image on hover */
.portfolio-card:hover img {
    transform: scale(1.1);
}

/* Title styling */
.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

/* Description styling */
.card-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 12px;
}

/* Category tag */
.card-category {
    display: inline-block;
    background: rgba(255, 107, 53, 0.8);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hover effect for category */
.portfolio-card:hover .card-category {
    background: #FF6B35;
}

.carousel-header {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 32px;
}
.carousel-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
}
.carousel-header p {
    color: #cbd5e1; /* gray-300 */
    margin: 0;
    font-size: 0.95rem;
}

.carousel-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
    min-height: 100vh;
    align-items: center;
}

.carousel-wrapper {
    width: 100%;
    max-width: 1600px;
    position: relative;
}

/* Carousel container with proper centering */
.carousel-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    margin-bottom: 40px;
    width: 100%;
    overflow: visible;
}

/* Left image - smaller */
.carousel-side-left {
    flex: 0 0 150px;
    width: 150px;
    height: 200px;
    opacity: 0.5;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    order: 1;
}

/* Center image - focused/large */
.carousel-center {
    flex: 0 0 350px;
    width: 350px;
    height: 450px;
    z-index: 10;
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    order: 2;
}

/* Right image - smaller */
.carousel-side-right {
    flex: 0 0 150px;
    width: 150px;
    height: 200px;
    opacity: 0.5;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    order: 3;
}

/* Slide card styling */
.carousel-slide {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.carousel-center .carousel-slide {
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4);
}

/* Slide image */
.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease, opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
}

.slide-image.fade-out {
    opacity: 0;
}

.carousel-slide:hover .slide-image {
    transform: scale(1.08);
}

/* Text overlay */
.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.slide-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    position: relative;
    z-index: 1;
    margin: 0;
}

.carousel-slide:hover .slide-overlay {
    transform: translateY(0);
}

.slide-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.75) 0%, rgba(255, 140, 66, 0.7) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px 20px 0 0;
    z-index: -1;
}

.slide-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.slide-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: gap 0.3s ease;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.slide-link:hover {
    gap: 10px;
}

.slide-link::after {
    content: '—';
    transition: transform 0.3s ease;
}

.slide-link:hover::after {
    transform: translateX(3px);
}

/* Navigation buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.carousel-nav:hover {
    background: #FF6B35;
    border-color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

/* Custom scrollbar styling for the right content block */
                .scroll-area::-webkit-scrollbar {
                    width: 8px;
                }

                .scroll-area::-webkit-scrollbar-track {
                    background: rgba(24, 24, 27, 0.9);
                    /* zinc-900-ish */
                    border-radius: 999px;
                }

                .scroll-area::-webkit-scrollbar-thumb {
                    background: #f97316;
                    /* orange-500 */
                    border-radius: 999px;
                }

                .scroll-area::-webkit-scrollbar-thumb:hover {
                    background: #fb923c;
                    /* orange-400 */
                }

@media (max-width: 1200px) {
    .carousel-side-left {
        width: 130px;
        height: 170px;
    }

    .carousel-center {
        width: 300px;
        height: 380px;
    }

    .carousel-side-right {
        width: 130px;
        height: 170px;
    }

    .carousel-main {
        gap: 25px;
    }

    @media (max-width: 768px) {
        .carousel-container {
            padding: 40px 15px;
        }

        .carousel-nav {
            width: 36px;
            height: 36px;
            font-size: 14px;
        }

        .carousel-nav.prev {
            left: 8px;
        }

        .carousel-nav.next {
            right: 8px;
        }

        .carousel-main {
            gap: 15px;
            margin-bottom: 25px;
        }

        .carousel-side-left {
            width: 90px;
            height: 120px;
            flex: 0 0 90px;
        }

        .carousel-center {
            width: 180px;
            height: 240px;
            flex: 0 0 180px;
        }

        .carousel-side-right {
            width: 90px;
            height: 120px;
            flex: 0 0 90px;
        }

        .slide-title {
            font-size: 14px;
            margin-bottom: 6px;
        }

        .slide-description {
            font-size: 11px;
            line-height: 1.3;
        }

        .slide-overlay {
            padding: 15px;
        }

        .carousel-header h2 {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .carousel-header p {
            font-size: 12px;
        }
    }

        @media (max-width: 480px) {
            .carousel-container {
                padding: 30px 10px;
                min-height: auto;
            }

            .carousel-header {
                margin-bottom: 25px;
            }

            .carousel-header h2 {
                font-size: 20px;
                margin-bottom: 6px;
            }

            .carousel-header p {
                font-size: 11px;
            }

            .carousel-main {
                gap: 10px;
                margin-bottom: 20px;
            }

            .carousel-nav {
                width: 32px;
                height: 32px;
                font-size: 12px;
            }

            .carousel-nav.prev {
                left: 5px;
            }

            .carousel-nav.next {
                right: 5px;
            }

            .carousel-side-left {
                width: 70px;
                height: 95px;
                flex: 0 0 70px;
            }

            .carousel-center {
                width: 140px;
                height: 190px;
                flex: 0 0 140px;
            }

            .carousel-side-right {
                width: 70px;
                height: 95px;
                flex: 0 0 70px;
            }

            .slide-title {
                font-size: 12px;
                margin-bottom: 4px;
            }

            .slide-description {
                font-size: 10px;
                line-height: 1.2;
            }

            .slide-overlay {
                padding: 10px;
            }

            .carousel-indicators {
                gap: 8px;
            }

            .indicator {
                width: 10px;
                height: 10px;
            }

            .indicator.active {
                width: 24px;
            }

            /* Carousel indicators */
            .carousel-indicators {
                display: flex;
                justify-content: center;
                gap: 12px;
                padding: 0;
                margin-top: 20px;
            }

            .indicator {
                width: 12px;
                height: 12px;
                border-radius: 50%;
                background: rgba(255, 107, 53, 0.3);
                border: 2px solid rgba(255, 107, 53, 0.6);
                cursor: pointer;
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .indicator.active {
                background: #FF6B35;
                border-color: #FF6B35;
                width: 32px;
                border-radius: 6px;
                box-shadow: 0 0 12px rgba(255, 107, 53, 0.4);
            }

            .indicator:hover {
                background: rgba(255, 107, 53, 0.6);
                border-color: #FF6B35;
                transform: scale(1.1);
            }

            .carousel-header {
                text-align: center;
                margin-bottom: 40px;
                color: white;
            }

            .carousel-header h2 {
                font-size: 36px;
                font-weight: 700;
                margin-bottom: 12px;
                letter-spacing: -0.5px;
            }

            .carousel-header p {
                font-size: 16px;
                color: rgba(255, 255, 255, 0.6);
                max-width: 500px;
                margin: 0 auto;
                line-height: 1.6;
            }
        }

            @media (max-width: 768px) {
                .carousel-header h2 {
                    font-size: 28px;
                }

                .carousel-header p {
                    font-size: 14px;
                }

                
            }
    }
