  @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
            color: #fff;
            line-height: 1.6;
        }

        :root {
            --primary-orange: #f28d1f;
            --dark-gray: #222;
            --light-gray: #f8f9fa;
            --text-gray: #666;
            --white: #fff;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            --border-radius: 12px;

            /* Desktop carousel positioning */
            --item1-transform: translateX(-100%) translateY(-5%) scale(1.5);
            --item1-filter: blur(30px);
            --item1-zIndex: 11;
            --item1-opacity: 0;

            --item2-transform: translateX(0);
            --item2-filter: blur(0px);
            --item2-zIndex: 10;
            --item2-opacity: 1;

            --item3-transform: translate(50%,10%) scale(0.8);
            --item3-filter: blur(10px);
            --item3-zIndex: 9;
            --item3-opacity: 1;

            --item4-transform: translate(90%,20%) scale(0.5);
            --item4-filter: blur(30px);
            --item4-zIndex: 8;
            --item4-opacity: 1;

            --item5-transform: translate(120%,30%) scale(0.3);
            --item5-filter: blur(40px);
            --item5-zIndex: 7;
            --item5-opacity: 0;
        }

        /* Responsive CSS Variables for different screen sizes */
        @media screen and (max-width: 991px) {
            :root {
                --item3-transform: translate(45%,8%) scale(0.75);
                --item4-transform: translate(80%,16%) scale(0.55);
                --item5-transform: translate(110%,24%) scale(0.35);
            }
        }

        @media screen and (max-width: 768px) {
            :root {
                --item3-transform: translate(40%,6%) scale(0.7);
                --item3-filter: blur(8px);
                --item4-transform: translate(75%,12%) scale(0.5);
                --item4-filter: blur(25px);
                --item5-transform: translate(100%,18%) scale(0.3);
                --item5-filter: blur(35px);
            }
        }

        @media screen and (max-width: 480px) {
            :root {
                --item1-transform: translateX(-120%) translateY(-3%) scale(1.2);
                --item1-filter: blur(25px);

                --item3-transform: translate(35%,4%) scale(0.65);
                --item3-filter: blur(6px);
                --item4-transform: translate(65%,8%) scale(0.45);
                --item4-filter: blur(20px);
                --item5-transform: translate(90%,12%) scale(0.25);
                --item5-filter: blur(30px);
            }
        }

        @media screen and (max-width: 360px) {
            :root {
                --item1-transform: translateX(-130%) translateY(-2%) scale(1);
                --item1-filter: blur(20px);

                --item3-transform: translate(30%,3%) scale(0.6);
                --item3-filter: blur(5px);
                --item4-transform: translate(60%,6%) scale(0.4);
                --item4-filter: blur(18px);
                --item5-transform: translate(85%,9%) scale(0.2);
                --item5-filter: blur(25px);
            }
        }

/* Entrance animations from left */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromLeftFar {
    0% {
        transform: translateX(-200px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromLeftSlow {
    0% {
        transform: translateX(-150px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Timeline sequential animation */
@keyframes timelineSequential {
    0% {
        transform: translateY(-50px) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translateY(-10px) scale(0.95);
        opacity: 0.7;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Animation classes for JavaScript triggers */
.slide-in-left {
    animation: slideInFromLeft 0.8s ease-out forwards;
}

.slide-in-left-far {
    animation: slideInFromLeftFar 1s ease-out forwards;
}

.slide-in-left-slow {
    animation: slideInFromLeftSlow 1.2s ease-out forwards;
}

.timeline-animate {
    animation: timelineSequential 0.6s ease-out forwards;
}

/* Initial hidden states */
.animate-on-scroll {
    opacity: 0;
    transform: translateX(-100px);
}

.timeline-item.animate-on-scroll {
    opacity: 0;
    transform: translateY(-50px) scale(0.8);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.ouac-logo-container {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.ouac-logo {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    animation: glow 3s ease-in-out infinite alternate;
}

.ouac-logo-container {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    overflow: hidden;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    animation: pulse 2s infinite ease-in-out;
}

.ouac-logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    }
}

/* Content Sections */
.section {
    padding: 80px 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--light-gray);
}

.section h2 {
    font-size: 2.5rem;
    color: var(--primary-orange);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-orange), #ff8e53);
}

.program-overview {
    background: var(--white);
    color: var(--dark-gray);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.overview-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-orange);
}

.overview-card h3 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.overview-card p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
}
/* Phases Section */
.phases {
    background: var(--light-gray);
    color: var(--dark-gray);
}

.phases-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.phases-container p {
    
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #666;
}

.phase-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary-orange);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.phase-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(242, 141, 31, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.phase-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.phase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(242, 141, 31, 0.2);
}

.phase-number {
    background: var(--primary-orange);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.phase-card h3 {
    color: var(--primary-orange);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.beneficiaries {
    font-size: 1.1rem;
    color: var(--primary-orange);
    font-weight: bold;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Background Section */
.background {
    background: var(--white);
    color: var(--dark-gray);
}

.timeline {
    position: relative;
    margin-top: 50px;
}

.timeline p{

    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-orange), #ff8e53);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    position: relative;
    margin: 50px 0;
    width: 50%;
    /* Initial state for animation */
    opacity: 0;
    transform: translateY(-50px) scale(0.8);
    transition: all 0.6s ease;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-left: 30px;
    padding-right: 0;
    margin-left: 50%;
}

/* Sequential animation delays for timeline items */
.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }
.timeline-item:nth-child(7) { animation-delay: 0.7s; }
.timeline-item:nth-child(8) { animation-delay: 0.8s; }

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 400px;
    box-shadow: var(--shadow);
    border: 1px solid #e9ecef;
}

.timeline-year {
    background: var(--primary-orange);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: inline-block;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-orange);
    border: 4px solid var(--white);
    border-radius: 50%;
    top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .logo {
        width: 250px;
    }

    .section h2 {
        font-size: 2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-item:nth-child(even) {
        margin-left: 0;
        padding-left: 50px;
    }

    .timeline-dot {
        left: 20px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bounce-in {
    animation: bounceIn 1s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Film strip decorative elements - removed top strip */
@keyframes filmRoll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.film-project-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
}

.project-header-area {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.project-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 20px;
    position: relative;
}

.project-main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), #e67e00);
    border-radius: 2px;
}

.project-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-weight: 400;
}

.project-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.project-info {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.project-header {
    background: linear-gradient(135deg, var(--primary-orange), #e67e00);
    color: var(--white);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.project-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100px;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(15deg);
}

.project-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    color: #000;
}

.project-logline {
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.project-content {
    padding: 40px;
}

.film-content-section {
    margin-bottom: 40px;
}

.film-content-section:last-child {
    margin-bottom: 0;
}

.content-section-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
}

.content-section-label::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-orange);
}

.synopsis-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    text-align: justify;
}

.production-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.production-item {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.production-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(242, 141, 31, 0.2);
}

.production-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-orange);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.production-value {
    font-size: 1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.visual-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mockup-container {
    background: linear-gradient(135deg, var(--light-gray), #f0f0f0);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(242, 141, 31, 0.05) 0%, transparent 70%);
}

.mockup-placeholder img {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.director-statement {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 40px;
    border: 1px solid #eee;
    position: relative;
}

.director-statement::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-orange);
    opacity: 0.3;
    font-family: serif;
}

.statement-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
    padding-left: 40px;
}

.director-credit {
    text-align: right;
    font-weight: 600;
    color: var(--primary-orange);
    font-size: 1.1rem;
}

.floating-elements {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-orange), #e67e00);
    border-radius: 50%;
    opacity: 0.05;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.floating-elements:nth-child(2) {
    top: 60%;
    left: 5%;
    width: 40px;
    height: 40px;
    animation-delay: -2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@media (max-width: 1024px) {
    .project-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .project-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 60px 15px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .project-title {
        font-size: 1.8rem;
    }
    
    .production-grid {
        grid-template-columns: 1fr;
    }
    
    .project-header,
    .project-content,
    .director-statement {
        padding: 25px;
    }
}

/* JavaScript trigger classes for scroll animations */
.animate-left-entrance {
    animation: slideInFromLeft 0.8s ease-out forwards;
}

.animate-timeline-item {
    animation: timelineSequential 0.6s ease-out forwards;
}