/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9!important;
    color: #000000;
}

    /* Navigation Bar - Creative Style */
    .hero-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(242, 141, 31, 0.2);
        z-index: 1000;
        transition: all 0.3s ease;
    }

    .hero-nav.scrolled {
        background: rgba(26, 26, 26, 0.98);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    }

    .hero-logo {
        width: 200px;
        height: auto;
        transition: transform 0.3s ease;
    }

    .hero-logo:hover {
        transform: scale(1.05);
    }

    /* Creative Navigation Menu */
    .nav-menu {
        display: flex;
        align-items: center;
        gap: 2rem;
        background: rgba(34, 34, 34, 0.8);
        border-radius: 30px;
        padding: 0.8rem 2rem;
        border: 1px solid rgba(242, 141, 31, 0.3);
        backdrop-filter: blur(10px);
        position: relative;
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(242, 141, 31, 0.1), rgba(26, 20, 6, 0.1));
        border-radius: 30px;
        z-index: -1;
    }

    .nav-menu a {
        position: relative;
        font-size: 1rem;
        font-weight: 500;
        color: var(--white);
        text-decoration: none;
        padding: 0.8rem 1.2rem;
        border-radius: 20px;
        transition: all 0.3s ease;
        z-index: 1;
    }

    .nav-menu a:hover {
        color: var(--goldish-orange);
        background: rgba(242, 141, 31, 0.1);
        transform: translateY(-2px);
    }

    /* Dropdown Styles */
    .dropdown {
        position: relative;
        display: flex;
        align-items: center;
    }

    .nav-link {
        color: white;
        text-decoration: none;
        padding: 0.8rem 1.2rem;
        border-radius: 20px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        color: var(--goldish-orange);
        background: rgba(242, 141, 31, 0.1);
        transform: translateY(-2px);
    }

    .dropdown-toggle {
        background: none;
        border: none;
        color: white;
        font-size: 1rem;
        cursor: pointer;
        padding: 0.8rem;
        margin-left: 0.5rem;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .dropdown-toggle:hover {
        background: rgba(242, 141, 31, 0.2);
        transform: rotate(180deg);
    }

    .dropdown-menu {
        display: none;
        position: absolute;
        top: 120%;
        left: 0;
        background: rgba(34, 34, 34, 0.95);
        backdrop-filter: blur(15px);
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        min-width: 200px;
        border: 1px solid rgba(242, 141, 31, 0.3);
        z-index: 1000;
        flex-direction: column;
        overflow: hidden;
    }

    .dropdown-menu a {
        color: white;
        padding: 1rem 1.5rem;
        display: block;
        text-align: left;
        text-decoration: none;
        transition: all 0.3s ease;
        border-radius: 0;
    }

    .dropdown-menu a:hover {
        background: linear-gradient(45deg, rgba(242, 141, 31, 0.2), rgba(26, 20, 6, 0.2));
        color: var(--goldish-orange);
        transform: translateX(5px);
    }

    .dropdown:hover .dropdown-menu {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Hamburger Menu */
    .hamburger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-around;
        width: 35px;
        height: 30px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 4;
        padding: 5px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .hamburger-menu:hover {
        background: rgba(242, 141, 31, 0.1);
    }

    .hamburger-menu span {
        width: 100%;
        height: 3px;
        background: var(--goldish-orange);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .hamburger-menu.open span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger-menu.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.open span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .nav-menu.hidden {
        transform: translateX(100%);
        display: none;
    }

    .nav-menu.visible {
        transform: translateX(0);
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 20px;
        background: rgba(34, 34, 34, 0.95);
        backdrop-filter: blur(15px);
        border-radius: 15px;
        padding: 1.5rem;
        gap: 1rem;
        width: 250px;
        border: 1px solid rgba(242, 141, 31, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 3;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .hero-nav {
            padding: 1rem;
        }

        .nav-menu {
            display: none;
        }

        .hamburger-menu {
            display: flex;
        }

        .hero-logo {
            width: 160px;
        }

        .dropdown-menu {
            min-width: 180px;
            left: -50px;
        }
    }

    @media (max-width: 480px) {
        .hero-logo {
            width: 140px;
        }
        
        .nav-menu.visible {
            width: 220px;
            right: 10px;
        }
    }




/* Multimedia Academy Section */
.academy-section {
    padding: 4rem 1rem;
    background-color: #f9f9f9;
    text-align: center;
}

.academy-section h2 {
    font-size: 2.5rem;
    color: #f28d1f;
    margin-bottom: 1rem;
}

.academy-section .description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #333;
}

.acad-slider-container {
    position: relative;
    width: 70% !important; /* Constrain width */
    max-width: 1000px; /* Max width of the slider */
    margin: 0 auto 2rem;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.acad-slider {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Smooth sliding animation */
}

.acad-slider img {
    width: 20% !important; /* Each image takes 1/5 of the slider width */
    aspect-ratio: 1 / 1; /* Makes the image square */
    object-fit: cover; /* Fills the square and crops if necessary */
    object-position: top; /* Focuses on the top of the image */
    border-radius: 10px;
    margin: 4px;
}




.enroll-now {
    margin-top: 2rem; 
    margin-bottom: 2rem; 
}

.enroll-now .btn-enroll {
    padding: 0.75rem 2rem;
    margin:8px;
    display: inline-block;
    background: #f28d1f;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.enroll-now .btn-enroll:hover {
    background: #d97718;
}


/* Keyframes for Slider Animation */
@keyframes slide-animation {
    0% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(-100%);
    }
    40% {
        transform: translateX(-200%);
    }
    60% {
        transform: translateX(-300%);
    }
    80% {
        transform: translateX(-400%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .acad-slider-container {
        width: 95%;
    }

    .acad-slider img {
        width: 250px !important;
        height: 300px !important;
        aspect-ratio: unset !important;
        border-radius: 10px;
        margin: 4px;
        object-fit: cover;
    }

    
    

    .academy-section h2 {
        font-size: 2rem;
    }

    .academy-section .description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .acad-slider img {
        width: 200px !important;
        height: 250px !important;
        aspect-ratio: unset !important;
        border-radius: 10px;
        margin: 3px;
        object-fit: cover;
    }

    .academy-section h2 {
        font-size: 1.8rem;
    }

    .academy-section .description {
        font-size: 0.9rem;
    }

    
   
}




/* Film & Tv Section */
.gallery-section {
    padding: 4rem 1rem;
}

.gallery-section h2 {
    margin-top: 60px;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #f28d1f;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card .description {
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: bold;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: url('../icons/play.png') no-repeat center center/contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.video-thumbnail:hover .play-button {
    opacity: 1;
}

.view-more {
    text-align: center;
    margin-top: 2rem;
}

.view-more .btn-view-more {
    padding: 0.75rem 2rem;
    background: #f28d1f;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.view-more .btn-view-more:hover {
    background: #d97718;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr;
    }
}

/* Photography Section */
.photography-section {
    padding: 4rem 1rem;
    background-color: #f9f9f9;
    text-align: center;
}

.photography-section h2 {
    font-size: 2.5rem;
    color: #f28d1f;
    margin-bottom: 1rem;
    z-index: 10; /* Ensure it stays above */
}

.photography-section .description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #333;
    z-index: 10; /* Ensure it stays above */
}

.stacked-cards {
    position: relative;
    width: 100%;
    height: 300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1; /* Below heading */
}

.card {
    position: absolute;
    width: 200px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.5s ease-in-out, z-index 0.3s;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.card:hover {
    transform: translateY(-10px) rotate(3deg);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Book Now Button */
.book-now {
    margin-top: 2rem;
}

.book-now .btn-book {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #f28d1f;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.book-now .btn-book:hover {
    background: #d97718;
}



