/* Removes default browser spacing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main body style */
body {
    font-family: 'Montserrat', sans-serif;
    color: white;
    overflow-x: hidden;
}

.slide-content h1{
    font-family: 'Montserrat', sans-serif;
    letter-spacing:2px;
}

/* Full screen hero slider */
.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    background-image:
        linear-gradient(to right, rgba(2, 7, 45, 0.95), rgba(2, 7, 45, 0.35), rgba(0, 0, 0, 0.35)),
        url("assets/poster_1.jpg");
    background-size: cover;
    background-position: center;
    transition: background-image 0.8s ease-in-out;
}

/* Dark bottom overlay */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 4, 25, 0.9), transparent 55%);
    z-index: 1;
}

/* Header navigation */
.navbar {
    width: 100%;
    height: 85px;
    padding: 0 50px;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo image */
.logo img {
    width: 55px;
    height: auto;
}

/* Menu container */
.menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Menu links */
.menu a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    position: relative;
    padding-bottom: 14px;
}

/* Yellow line under menu on hover */
.menu a::after {
    content: "";
    width: 0;
    height: 3px;
    background: #ffc233;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}

/* Yellow line when cursor moves on menu */
.menu a:hover::after,
.menu a.active::after {
    width: 100%;
}

/* Mobile menu button hidden in desktop */
.menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
}

/* Movie text content */
.slide-content {
    position: relative;
    z-index: 3;
    max-width: 620px;
    padding-left: 37px;
    margin-top: 130px;
}

/* Genre text */
.genre {
    color: #ffc233;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Movie title */
.slide-content h1 {
    font-size: 80px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 25px;
}

/* Rating, year and duration */
.movie-info {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 16px;
    margin-bottom: 28px;
}

/* Star color */
.movie-info span:first-child {
    color: #ffc233;
}

/* Description paragraph */
.description {
    font-size: 18px;
    line-height: 1.65;
    color: #f1f1f1;
    margin-bottom: 30px;
}

/* Button wrapper */
.buttons {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Watch now button */
.watch-btn {
    border: none;
    padding: 17px 30px;
    border-radius: 14px;
    background: linear-gradient(135deg, #5865f2, #9b4df4);
    color: white;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
}

/* Play icon inside button */
.watch-btn span {
    margin-left: 8px;
    border: 1px solid white;
    border-radius: 50%;
    padding: 4px 7px;
}

/* Right side next button */
.next-btn {
    position: absolute;
    right: 38px;
    top: 42%;
    z-index: 4;
    width: 56px;
    height: 86px;
    border: none;
    background: #dca637;
    color: white;
    font-size: 58px;
    cursor: pointer;
}

/* Bottom slider controls */
.slider-bottom {
    position: absolute;
    right: 38px;
    bottom: 25px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 32px;
}

/* Current slide number */
#currentSlide {
    font-size: 18px;
}

/* Progress line container */
.progress {
    width: 205px;
    height: 2px;
    background: rgba(255, 255, 255, 0.35);
}

/* Yellow progress animation */
.progress-fill {
    width: 0%;
    height: 100%;
    background: #ffc233;
}

/* Music mute button */
.music-btn {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: white;
    font-size: 20px;
    cursor: pointer;
    backdrop-filter: blur(5px);
}


/* Popular section main area */
.popular-section {
    background: #000;
    padding: 40px 30px 70px;
    color: white;
}

/* Title and view all row */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
}

/* Section title */
.section-header h2 {
    font-size: 24px;
    font-weight: 900;
}

/* View all link */
.section-header a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
}

/* Slider outside wrapper */
.popular-wrapper {
    position: relative;
}

/* Horizontal movie cards */
.popular-slider {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

/* Hide scrollbar in Chrome */
.popular-slider::-webkit-scrollbar {
    display: none;
}

/* Each card */
.movie-card {
    min-width: 250px;
    max-width: 250px;
    transition: transform 0.35s ease;
}

/* Poster zoom when hover */
.movie-card:hover {
    transform: translateY(-8px);
}

/* Poster image box */
.poster {
    width: 100%;
    height: 402px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #222;
    cursor: pointer;
}

/* Poster image */
.poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

/* Image zoom on hover */
.movie-card:hover .poster img {
    transform: scale(1.08);
}

/* Rating pill */
.rating {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(20, 20, 25, 0.7);
    color: #ffd23f;
    padding: 8px 13px;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 800;
}

/* Heart button */
.heart {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 39px;
    height: 39px;
    border: none;
    border-radius: 50%;
    background: rgba(20, 20, 25, 0.65);
    color: white;
    font-size: 25px;
    cursor: pointer;
}

/* Movie title */
.movie-card h3 {
    font-size: 20px;
    margin-top: 17px;
    margin-bottom: 12px;
}

/* Movie details */
.movie-card p {
    font-size: 16px;
    color: #cfcfcf;
    margin-bottom: 10px;
}

/* Slider arrow common style */
.popular-arrow {
    position: absolute;
    top: 115px;
    z-index: 5;
    width: 56px;
    height: 108px;
    border: none;
    border-radius: 10px;
      /* Before hover transparent */
    background: rgba(255, 255, 255, 0.08);
    /* Smooth transition */
    transition: all 0.35s ease;
    color: white;
    font-size: 58px;
    cursor: pointer;
    /* Initially hidden little bit */
    opacity: 0;
}

/* =========================================
   LEFT ARROW POSITION
========================================= */
.popular-arrow.left {
    left: 8px;
    top: 115px;
    width: 56px;
    height: 108px;
    border-radius: 8px;
    background: #dca637;
    color: white;
    font-size: 58px;
}

/* =========================================
   SHOW BUTTON WHEN WRAPPER HOVER
========================================= */
.popular-wrapper:hover .popular-arrow {
    opacity: 1;
}

/* =========================================
   GOLD COLOR AFTER HOVER
========================================= */
.popular-arrow:hover {
    background: #dca637;
    transform: scale(1.05);
}

/* =========================================
   RIGHT ARROW POSITION
========================================= */
.popular-arrow.right {
    right: 8px;
    top: 115px;
    width: 56px;
    height: 108px;
    border-radius: 8px;
    background: #dca637;
    color: white;
    font-size: 58px;
}

/* Upcoming section */
.upcoming-section {
    background: #000;
    padding: 20px 40px 90px;
    color: white;
}

/* Upcoming slider wrapper */
.upcoming-wrapper {
    position: relative;
}

/* Upcoming horizontal slider */
.upcoming-slider {
    display: flex;
    gap: 36px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

/* Hide scrollbar */
.upcoming-slider::-webkit-scrollbar {
    display: none;
}

/* Upcoming single card */
.upcoming-card {
    min-width: 228px;
    max-width: 228px;
    background: #050505;
    border-radius: 14px;
    padding: 10px;
    transition: transform 0.35s ease;
}

/* Card hover */
.upcoming-card:hover {
    transform: translateY(-8px);
}

/* Poster box */
.upcoming-poster {
    height: 398px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

/* Poster image */
.upcoming-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

/* Poster zoom on hover */
.upcoming-card:hover img {
    transform: scale(1.08);
}

/* Coming soon badge */
.upcoming-poster span {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ffce38;
    color: #000;
    padding: 9px 15px;
    border-radius: 18px;
    font-size: 11px;
    font-weight: 900;
}

/* Movie title */
.upcoming-card h3 {
    font-size: 18px;
    margin-top: 14px;
    margin-bottom: 8px;
}

/* Movie text */
.upcoming-card p {
    font-size: 14px;
    color: #cfcfcf;
    margin-bottom: 8px;
}

/* Upcoming arrows */
.upcoming-arrow {
    position: absolute;
    top: 160px;
    z-index: 5;
    width: 50px;
    height: 96px;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 50px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: all 0.35s ease;
}

/* Show arrows on hover */
.upcoming-wrapper:hover .upcoming-arrow {
    opacity: 1;
}

/* Gold arrow hover */
.upcoming-arrow:hover {
    background: #dca637;
}

/* Left arrow position */
.upcoming-arrow.left {
    left: -14px;
}

/* Right arrow position */
.upcoming-arrow.right {
    right: -14px;
}

/* Footer main section */
.footer {
    background: #000;
    color: white;
    padding: 55px 65px 20px;
    position: relative;
    border-top: 1px solid rgba(220, 166, 55, 0.25);
}

/* Footer columns */
.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Footer logo */
.footer-logo {
    width: 75px;
    margin-bottom: 18px;
}

/* Footer heading */
.footer-box h3 {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

/* Footer paragraph */
.footer-box p {
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Footer links */
.footer-box a {
    display: block;
    color: #cfcfcf;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 12px;
}

/* Footer link hover */
.footer-box a:hover {
    color: #ffc233;
}

/* Social icons row */
.footer-icons {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

/* Social icon circle */
.footer-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

/* Footer bottom line */
.footer-bottom {
    border-top: 1px solid rgba(220, 166, 55, 0.45);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    color: #bfbfbf;
}

/* Back to top button */
.back-top {
    position: absolute;
    right: 28px;
    bottom: 20px;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: #f1f1f1;
    color: #111;
    font-size: 28px;
    cursor: pointer;
}

/* Popup full screen wrapper */
.video-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

/* Show popup when JS adds active class */
.video-popup.active {
    display: block;
}

/* Dark popup background */
.popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

/* Popup box */
.popup-box {
    position: relative;
    width: 85%;
    max-width: 950px;
    max-height: 90vh;
    overflow-y: auto;
    margin: 40px auto;
    background: #050505;
    border-radius: 18px;
    padding: 20px;
    z-index: 2;
}

.video-popup.active .popup-box {
    animation: popupReveal 0.32s ease both;
}

@keyframes popupReveal {

    from {
        opacity: 0;
        transform: translateY(22px) scale(0.96);
    }

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

/* Popup close button */
.popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #dca637;
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 3;
}

/* YouTube video frame */
.popup-box iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 14px;
}

/* Popup content */
.popup-content {
    padding: 22px 5px 5px;
}

/* Popup title */
.popup-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* Popup small headings */
.popup-content h3 {
    font-size: 20px;
    margin: 20px 0 10px;
    color: #ffc233;
}

/* Popup paragraph */
.popup-content p {
    color: #cfcfcf;
    line-height: 1.7;
}

/* =========================================
   YOUTUBE SUBSCRIBE SECTION
========================================= */

.subscribe-section {
    background: #000;
    padding: 20px 30px 20px;
}

/* Subscribe container */
.subscribe-box {
    background: linear-gradient(135deg, #f2f1a2, #d88b35);
    border-radius: 28px;
    padding: 32px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow:
        0 0 35px rgba(255, 196, 0, 0.28);
}

/* Left content */
.subscribe-content h2 {
    font-size: 38px;
    line-height: 1.05;
    color: #000;
    margin-bottom: 18px;
    font-weight: 900;
}

/* Description */
.subscribe-content p {
    max-width: 500px;
    color: #111;
    font-size: 17px;
    line-height: 1.6;
}

/* Right action area */
.subscribe-action {
    display: flex;
    align-items: center;
}

/* YouTube button */
.youtube-btn {
    background: #7a2f0d;
    color: white;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 800;
    transition: all 0.35s ease;
    box-shadow:
        0 8px 20px rgba(0,0,0,0.25);
}

/* Button hover */
.youtube-btn:hover {
    background: #a53f12;
    transform: translateY(-4px);
}


/* About hero main section */
.about-hero {
    width: 100%;
    height: 550px;
    position: relative;
    overflow: hidden;
    background: #000;
}

/* Moving background image */
.about-bg-move {
    position: absolute;
    inset: 0;

    background-image: url("assets/about-bg.jpg");
    background-size: cover;
    background-position: center bottom;

    animation: moveAboutBg 18s linear infinite;
    z-index: 1;
}

/* Background moving bottom to top */
@keyframes moveAboutBg {
    0% {
        background-position: center bottom;
    }

    100% {
        background-position: center top;
    }
}

.about-dark-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.92)),
        rgba(0,0,0,0.45);
    z-index: 2;
}

/* Keep navbar above background */
.about-hero .navbar {
    position: relative;
    z-index: 5;
}

/* About hero center content */
.about-hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
    padding-top: 40px;
}

/* About title */
.about-hero-content h1 {
    font-size: 54px;
    font-weight: 900;
    margin-bottom: 22px;
}

/* About description */
.about-hero-content p {
    font-size: 20px;
    line-height: 1.55;
    color: #f1f1f1;
    margin-bottom: 55px;
}

/* =========================================
   EXPLORE BUTTON
========================================= */

.explore-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 110px;
    background: #fff4d7;
    color: #444070;
    border: 5px solid #f3bd35;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    font-weight: 900;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow:
        0 0 28px rgba(255, 195, 51, 0.75);
}

/* Button hover scale */
.explore-btn:hover {
    transform: scale(1.06);
    box-shadow:
        0 0 45px rgba(255, 195, 51, 0.95);
}

/* =========================================
   GLOW PARTICLES
========================================= */

.explore-btn::before,
.explore-btn::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background: #ffc233;
    border-radius: 50%;
    opacity: 0;
    box-shadow:
        0 0 12px #ffc233,
        0 0 25px #ffc233;
    transition: all 0.4s ease;
}

/* Top particle */
.explore-btn::before {
    top: 20px;
    left: 35px;
}

/* Bottom particle */
.explore-btn::after {
    bottom: 20px;
    right: 35px;
}

/* Show particles on hover */
.explore-btn:hover::before {
    opacity: 1;
    transform:
        translate(-18px, -18px)
        scale(1.2);
}

.explore-btn:hover::after {
    opacity: 1;
    transform:
        translate(18px, 18px)
        scale(1.2);
}

/* =========================================
   3D POSTER WALL
========================================= */

.poster-wall {
    position: absolute;
    inset: -250px 0 0 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transform: perspective(900px) rotateX(62deg);
    transform-origin: center top;
    /* Infinite smooth movement */
    animation: posterLoop 18s linear infinite;
}

/* Poster row */
.poster-row {
    display: flex;
    justify-content: center;
    gap: 14px;
}

/* Poster images */
.poster-row img {
    width: 120px;
    height: 175px;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0.75;
    filter: brightness(0.75);
}

/* Infinite loop animation */
@keyframes posterLoop {

    0% {
        transform:
            perspective(900px)
            rotateX(62deg)
            translateY(0);
    }

    100% {
        transform:
            perspective(900px)
            rotateX(62deg)
            translateY(-189px);
    }
}

/* Strong dark overlay */
.about-dark-overlay {
    position: absolute;
    inset: 0;
    background:
    linear-gradient(to bottom, rgba(0,0,0,0.08), rgba(0,0,0,0.72)),
    linear-gradient(to right, rgba(0,0,0,0.35), rgba(0,0,0,0.10), rgba(0,0,0,0.35));
    z-index: 2;
}

/* Particle wrapper */
.explore-particles i {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ffc233;
    border-radius: 50%;
    opacity: 0;
    box-shadow:
        0 0 12px #ffc233;

    transition: all 0.45s ease;
}

/* Particle positions */
.explore-particles i:nth-child(1) {
    top: 10px;
    left: 25px;
}

.explore-particles i:nth-child(2) {
    top: 25px;
    right: 20px;
}

.explore-particles i:nth-child(3) {
    bottom: 15px;
    left: 18px;
}

.explore-particles i:nth-child(4) {
    bottom: 20px;
    right: 28px;
}

.explore-particles i:nth-child(5) {
    top: 50%;
    left: 50%;
}

/* Animate particles on hover */
.explore-btn:hover .explore-particles i {
    opacity: 1;
}

/* Individual movements */
.explore-btn:hover .explore-particles i:nth-child(1) {
    transform: translate(-18px, -18px);
}

.explore-btn:hover .explore-particles i:nth-child(2) {
    transform: translate(20px, -14px);
}

.explore-btn:hover .explore-particles i:nth-child(3) {
    transform: translate(-20px, 18px);
}

.explore-btn:hover .explore-particles i:nth-child(4) {
    transform: translate(18px, 20px);
}

.explore-btn:hover .explore-particles i:nth-child(5) {
    transform: scale(0);
}


.about-details {
    background: #000;
    color: white;
    padding: 40px 90px 70px;
}

.about-detail-row,
.founder-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    /* Bring content upward */
    align-items: flex-start;
    margin-bottom: 90px;
}

.about-detail-text h2,
.founder-text h2 {
    color: #ffc233;
    font-size: 30px;
    margin-bottom: 14px;
    padding-top: 100px;
}

.about-detail-text p,
.founder-text p {
    color: #f1f1f1;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 14px;
}

.about-detail-text ul {
    list-style: none;
    margin: 25px 0;
}

.about-detail-text li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 14px;
}

.about-detail-text li::before {
    content: "★";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: #ffc233;
    color: #000;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 13px;
    font-weight: 900;
    box-shadow:
        0 0 12px rgba(255, 194, 51, 0.75);
}

.learn-btn {
    display: inline-block;
    background: #ffc233;
    color: #000;
    padding: 13px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
}

.about-detail-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 14px;
}

.founder-image {
    margin-top: 55px;
}

.founder-image img {
    width: 75%;
    height: 600px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 0 25px rgba(255, 194, 51, 0.45);
}

.founder-text h3 {
    font-size: 18px;
    margin-bottom: 22px;
}


/* =========================================
   ACHIEVEMENTS SECTION
========================================= */

.achievements-section {
    background: #000;
    padding: 45px 70px;
    text-align: center;
}

/* Section title */
.achievements-section h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 900;
}

/* Grid layout */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Achievement card */
.achievement-card {
    background: #050505;
    border: 1px solid rgba(255, 194, 51, 0.28);
    border-radius: 24px;
    padding: 35px 18px;
    transition: all 0.35s ease;
    text-decoration: none;
}

/* Card hover */
.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 0 30px rgba(255, 194, 51, 0.18);
}

/* Icon */
.achievement-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

/* Number */
.achievement-card h3 {
    color: #ffc233;
    font-size: 38px;
    margin-bottom: 14px;
    font-weight: 900;
}

/* Text */
.achievement-card p {
    color: #d8d8d8;
    font-size: 16px;
    line-height: 1.5;
}

/* =========================================
   TIMELINE SECTION
========================================= */

.timeline-section {
    background: #000;
    padding: 45px 70px;
    text-align: center;
}

/* Small subtitle */
.timeline-subtitle {
    display: inline-block;
    color: #ffc233;
    font-size: 15px;
    letter-spacing: 5px;
    font-weight: 700;
    margin-bottom: 18px;
}

/* Main title */
.timeline-section h2 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 18px;
    font-weight: 900;
}

/* Description */
.timeline-description {
    color: #bdbdbd;
    font-size: 15px;
    margin-bottom: 40px;
}

/* Timeline container */
.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 1050px;
    margin: 0 auto;
}

/* Timeline item */
.timeline-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 35px;
    align-items: center;
}

/* Year section */
.timeline-year {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

/* Year text */
.timeline-year span {
    color: #ffc233;
    font-size: 30px;
    font-weight: 900;
}

/* Timeline glowing dot */
.timeline-dot {
    width: 18px;
    height: 18px;
    background: #ffc233;
    border-radius: 50%;
    box-shadow:
        0 0 14px rgba(255, 194, 51, 0.85),
        0 0 28px rgba(255, 194, 51, 0.45);
}

/* Timeline content box */
.timeline-content {
    background: #050505;
    border: 1px solid rgba(255, 194, 51, 0.28);
    border-radius: 24px;
    padding: 24px 24px;
    text-align: left;
    transition: all 0.35s ease;
}

/* Hover glow effect */
.timeline-content:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 194, 51, 0.75);
    box-shadow:
        0 0 18px rgba(255, 194, 51, 0.22),
        0 0 35px rgba(255, 194, 51, 0.12);
}

/* Glow dot with card hover */
.timeline-item:hover .timeline-dot {
    box-shadow:
        0 0 18px rgba(255, 194, 51, 1),
        0 0 38px rgba(255, 194, 51, 0.65);
}

/* Timeline heading */
.timeline-content h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 800;
}

/* Timeline paragraph */
.timeline-content p {
    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.7;
}



/* Strength and network section */
.strength-network-section {
    background: #000;
    color: white;
    padding: 60px 90px 80px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    overflow: hidden;
}

/* Small yellow section text */
.small-title {
    color: #ffc233;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 4px;
}

/* Main headings */
.strength-area h2,
.network-area h2 {
    font-size: 42px;
    margin-top: 12px;
    margin-bottom: 35px;
}

/* Orbit wrapper */
.orbit-box {
    width: 560px;
    height: 470px;
    position: relative;
}

/* Orbit circular line */
.orbit-line {
    position: absolute;
    left: 130px;
    top: 95px;
    width: 310px;
    height: 310px;
    border: 1px dashed rgba(255, 194, 51, 0.25);
    border-radius: 50%;
    animation: orbitSpin 18s linear infinite;
}

/* Center strength circle */
.center-strength {
    position: absolute;
    left: 215px;
    top: 165px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #050505;
    border: 1px solid rgba(255, 194, 51, 0.28);
    box-shadow: 0 0 35px rgba(255, 194, 51, 0.18);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: softPulse 3s ease-in-out infinite;
}

.center-strength h3 {
    font-size: 22px;
    text-align: center;
}

.center-strength p {
    font-size: 11px;
    color: #d8d8d8;
    line-height: 1.6;
    text-align: center;
    width: 110px;
    margin-top: 8px;
}

/* Strength cards */
.strength-card {
    position: absolute;
    width: 168px;
    height: 105px;
    background: rgba(10, 10, 10, 0.86);
    border: 1px solid rgba(255, 194, 51, 0.25);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 0 18px rgba(255, 194, 51, 0.12);
    animation: floatCard 4s ease-in-out infinite;
}

.strength-card span {
    width: 42px;
    height: 42px;
    background: #ffc233;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.strength-card h4 {
    font-size: 14px;
    text-align: center;
    line-height: 1.25;
}

/* Card positions */
.card-1 { left: 40px; top: 95px; }
.card-2 { left: 285px; top: 40px; animation-delay: .4s; }
.card-3 { right: 0; top: 190px; animation-delay: .8s; }
.card-4 { left: 270px; bottom: 5px; animation-delay: 1.2s; }
.card-5 { left: 40px; bottom: 80px; animation-delay: 1.6s; }

/* Moving particles */
.orbit-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ffc233;
    border-radius: 50%;
    box-shadow: 0 0 14px #ffc233;
    animation: particleMove 6s linear infinite;
}

.particle-1 { left: 130px; top: 60px; }
.particle-2 { right: 40px; top: 140px; animation-delay: 2s; }
.particle-3 { left: 240px; bottom: 20px; animation-delay: 4s; }

/* Network grid */
.network-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Network cards */
.network-card {
    min-height: 190px;
    background: #050505;
    border: 1px solid rgba(255, 194, 51, 0.28);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.35s ease;
}

.network-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(255, 194, 51, 0.18);
}

.network-card img {
    width: 80px;
    height: 55px;
    object-fit: contain;
    margin-bottom: 22px;
}

.network-card h3 {
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 10px;
}

.network-card p {
    color: #cfcfcf;
    font-size: 14px;
}

/* Animations */
@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes softPulse {
    0%, 100% {
        box-shadow: 0 0 25px rgba(255, 194, 51, 0.16);
    }
    50% {
        box-shadow: 0 0 42px rgba(255, 194, 51, 0.35);
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes particleMove {
    0% {
        transform: translate(0, 0);
        opacity: 0.3;
    }
    50% {
        transform: translate(35px, -30px);
        opacity: 1;
    }
    100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }
}



/* =========================================
   NETWORK HOVER CONTENT
========================================= */

/* Needed for hover overlay */
.network-card {
    position: relative;
    overflow: hidden;
}

/* Normal visible content */
.network-normal {
    transition: opacity 0.35s ease;
}

/* Hover hidden content */
.network-hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

/* Hover text */
.network-hover h4 {
    color: #fff;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 700;
}

/* Hide logo content on hover */
.network-card:hover .network-normal {
    opacity: 0;
}

/* Show wording on hover */
.network-card:hover .network-hover {
    opacity: 1;
}



/* =========================================
   FILMS PAGE HERO SECTION
========================================= */

/* Main hero area */
.film-hero {
    width: 100%;
    min-height: 760px;

    /* Dark cinematic background */
    background:
        radial-gradient(
            circle at top center,
            rgba(255, 194, 51, 0.16),
            transparent 32%
        ),
        linear-gradient(to bottom, #050505, #000);

    position: relative;
    overflow: hidden;
}

.film-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 46%, transparent 58%);
    transform: translateX(-120%);
    animation: filmLightSweep 7s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}


/* Bottom fade overlay */
.film-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 210px;
    height: 170px;
    background:
        linear-gradient(
            to top,
            #000 5%,
            rgba(0, 0, 0, 0.82),
            transparent
        );

    z-index: 2;
    pointer-events: none;
}


/* Navbar always above posters */
.film-hero .navbar {
    position: relative;
    z-index: 10;
}


/* Hero content wrapper */
.film-hero-inner {
    position: relative;
    z-index: 3;
    padding-top: 35px;
}


/* =========================================
   MOVING POSTER AREA
========================================= */
/* Outside wrapper */
.film-poster-marquee {
    width: 100%;
    overflow: hidden;
    padding: 25px 0 70px;
}


/* Moving track */
.film-poster-track {
    display: flex;
    gap: 26px;
    width: max-content;
    /* Infinite animation */
    animation: filmPosterMove 26s linear infinite;
    will-change: transform;
}


/* Pause animation when hover */
.film-poster-track:hover {
    animation-play-state: paused;
}


/* Poster image */
.film-poster-track img {
    width: 198px;
    height: 378px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow:
        0 28px 35px rgba(0, 0, 0, 0.85),
        0 0 28px rgba(255, 194, 51, 0.08);
    filter: brightness(0.82);
    animation: posterFloat 5.5s ease-in-out infinite;
    transition:
        transform 0.35s ease,
        filter 0.35s ease,
        box-shadow 0.35s ease;
}


/* Alternate posters move little down */
.film-poster-track img:nth-child(even) {
    transform: translateY(18px);
    animation-delay: -2.2s;
}


/* Poster hover effect */
.film-poster-track img:hover {

    filter: brightness(1);

    transform:
        translateY(-12px)
        scale(1.04);

    box-shadow:
        0 35px 45px rgba(0, 0, 0, 0.95),
        0 0 35px rgba(255, 194, 51, 0.35);
}


/* Hover fix for even cards */
.film-poster-track img:nth-child(even):hover {

    transform:
        translateY(4px)
        scale(1.04);
}


/* =========================================
   POSTER MOVING ANIMATION
========================================= */

@keyframes filmPosterMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes filmLightSweep {

    0%,
    35% {
        transform: translateX(-120%);
        opacity: 0;
    }

    48% {
        opacity: 1;
    }

    70%,
    100% {
        transform: translateX(120%);
        opacity: 0;
    }
}

@keyframes posterFloat {

    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -10px;
    }
}

@keyframes heroTextReveal {

    from {
        opacity: 0;
        transform: translateY(28px);
    }

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


/* =========================================
   HERO TEXT CONTENT
========================================= */
.films-hero-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 10px 20px 0;
    animation: heroTextReveal 0.9s ease both;
    animation-delay: 0.25s;
}


/* Description */
.films-hero-content p {
    color: #e9e9e9;
    font-size: 20px;
    line-height: 1.75;
    font-weight: 600;
    margin-bottom: 30px;
}


/* Explore button */
.films-explore-btn {

    position: relative;
    display: inline-block;
    background:
        linear-gradient(
            135deg,
            #ffd34d,
            #f59a2f
        );

    color: #000;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 13px;
    font-size: 17px;
    font-weight: 900;
    box-shadow:
        0 0 25px rgba(255, 194, 51, 0.28);

    transition: all 0.35s ease;
    overflow: hidden;
}

.films-explore-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.65), transparent);
    transform: translateX(-130%);
    transition: transform 0.6s ease;
}


/* Button hover */
.films-explore-btn:hover {
    transform: translateY(-5px);
    box-shadow:
        0 0 35px rgba(255, 194, 51, 0.55);
}

.films-explore-btn:hover::after {
    transform: translateX(130%);
}


/* =========================================
   FILMS CATALOGUE SECTION
========================================= */

.films-catalogue {
    background: #000;
    padding: 30px 90px 65px;
}

/* Filter button row */
.film-filter-buttons {
    background: #050505;
    display: flex;
    justify-content: center;
    gap: 14px;
    padding: 18px 20px;
    margin-bottom: 28px;
}

/* Filter buttons */
.filter-btn {
    border: 1px solid rgba(255, 194, 51, 0.45);
    background: transparent;
    color: #fff;
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Active and hover button */
.filter-btn.active,
.filter-btn:hover {
    background: #ffc233;
    color: #000;
    box-shadow: 0 0 22px rgba(255, 194, 51, 0.32);
    transform: translateY(-2px);
}

/* Movie grid */
.films-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

/* Single movie card */
.film-grid-card {
    height: 285px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #111;
    opacity: 0;
    transform: translateY(24px) scale(0.97);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease,
        box-shadow 0.35s ease;
}

.film-grid-card.reveal-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.film-grid-card:hover {
    box-shadow:
        0 20px 35px rgba(0, 0, 0, 0.65),
        0 0 24px rgba(255, 194, 51, 0.18);
}

/* Poster image */
.film-grid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.45s ease;
}

/* Hover dark overlay */
.film-card-overlay {
    position: absolute;
    inset: 0;
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.2));
    transition: all 0.35s ease;
}

/* Show overlay on hover */
.film-grid-card:hover .film-card-overlay {
    opacity: 1;
}

/* Zoom image on hover */
.film-grid-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.55);
}

/* Play button center */
.film-play-btn {
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    background: transparent;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.35s ease, color 0.35s ease;
}

.film-grid-card:hover .film-play-btn {
    color: #ffc233;
    transform: translate(-50%, -50%) scale(1.18);
}

/* Category tag */
.film-tag {
    width: fit-content;
    background: #ffc233;
    color: #000;
    padding: 7px 11px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 10px;
}

/* Movie title */
.film-card-overlay h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 7px;
}

/* Movie info */
.film-card-overlay p {
    color: #dcdcdc;
    font-size: 13px;
    font-weight: 700;
}

/* Hide cards after filter */
.film-grid-card.hide {
    display: none !important;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .film-poster-track {
        animation: none;
    }

    .film-grid-card {
        opacity: 1;
        transform: none;
    }
}
/* =========================================
   FILM PAGINATION
========================================= */

.film-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    position: relative;
}

.film-pagination button {
    min-width: 38px;
    height: 38px;
    border: 1px solid #ffc233;
    background: transparent;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.film-pagination button:hover {
    background: #ffc233;
    color: #000;
}

.film-pagination button.active {
    background: #ffc233;
    color: #000;
    border-color: #ffc233;
    font-weight: 700;
}

.page-dots {
    color: #ffc233;
    font-size: 18px;
    padding: 0 5px;
}

.page-next {
    font-size: 22px !important;
    line-height: 1;
}

/* Page Count */

.page-count {
    position: absolute;
    right: 0;
    color: #fff;              /* White */
    font-size: 16px;
    font-weight: 700;         /* Bold */
    letter-spacing: 0.5px;
}

/* Optional Yellow Version */

/*
.page-count{
    position:absolute;
    right:0;
    color:#ffc233;
    font-size:16px;
    font-weight:700;
}
*/


/* =========================================
   COMMON INNER PAGE HERO
========================================= */

.page-hero {
    width: 100%;
    min-height: 620px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.9)),
        radial-gradient(circle at top center, rgba(255,194,51,0.22), transparent 38%),
        url("assets/cinematic.jpg");
    background-size: cover;
    background-position: center;
}

.page-hero .navbar {
    position: relative;
    z-index: 5;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding: 120px 22px 0;
}

.page-subtitle {
    display: inline-block;
    color: #ffc233;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.page-hero-content h1 {
    font-size: 66px;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 22px;
}

.page-hero-content p {
    color: #e0e0e0;
    font-size: 19px;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto 34px;
}

.page-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    height: 58px;
    border-radius: 40px;
    background: linear-gradient(135deg, #ffd34d, #f59a2f);
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 900;
    box-shadow: 0 0 28px rgba(255, 194, 51, 0.28);
    transition: all 0.35s ease;
}

.page-hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 38px rgba(255, 194, 51, 0.5);
}


/* =========================================
   SERVICES CATEGORIES SECTION
========================================= */
/* Section title */
.service-section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.service-section-title span {
    color: #ffc233;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 4px;
}

.service-section-title h2 {
    font-size: 44px;
    font-weight: 900;
    margin: 16px 0;
}

.service-section-title p {
    color: #cfcfcf;
    font-size: 16px;
    line-height: 1.8;
}

/* =========================================
   PARTNER LOGO MARQUEE SECTION
========================================= */

.partner-logo-section {
    background: #000;
    padding: 55px 0 70px;
    overflow: hidden;
}

.partner-logo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partner-logo-marquee::before,
.partner-logo-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 130px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partner-logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, #000, transparent);
}

.partner-logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, #000, transparent);
}

.partner-logo-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: partnerLogoMove 24s linear infinite;
}

.partner-logo-track:hover {
    animation-play-state: paused;
}

.partner-logo-card {
    width: 190px;
    height: 115px;
    border: 1px solid rgba(255, 194, 51, 0.28);
    border-radius: 20px;
    background: rgba(255,255,255,0.035);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    transition: all 0.35s ease;
}

.partner-logo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 194, 51, 0.8);
    box-shadow: 0 0 26px rgba(255, 194, 51, 0.22);
}

.partner-logo-card img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(1) brightness(0.9);
    transition: all 0.35s ease;
}

.partner-logo-card:hover img {
    filter: grayscale(0) brightness(1.1);
}

@keyframes partnerLogoMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =========================================
   SERVICE SHOWCASE SECTION
========================================= */

.service-categories {
    background: #000000;
    color: #fff;
    padding: 70px 90px 80px;
}

.service-showcase {
    display: grid;
    grid-template-columns: 0.9fr 1.4fr;
    gap: 70px;
    align-items: start;
}

.service-poster-area h2 {
    font-size: 44px;
    font-weight: 900;
    margin: 16px 0;
    color: #ffc233
}

.service-poster-collage {
    position: relative;
    height: 520px;
}

.service-poster-collage img {
    position: absolute;
    width: 135px;
    height: 205px;
    object-fit: cover;
    border-radius: 7px;
    box-shadow: 0 18px 35px rgba(0,0,0,0.45);
    transition: all 0.35s ease;
}

.service-poster-collage img:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 0 28px rgba(255,194,51,0.28);
}

.service-poster-collage img:nth-child(1) {
    left: 0;
    top: 45px;
}

.service-poster-collage img:nth-child(2) {
    left: 165px;
    top: 0;
}

.service-poster-collage img:nth-child(3) {
    left: 335px;
    top: 45px;
}

.service-poster-collage img:nth-child(4) {
    left: 0;
    top: 300px;
}

.service-poster-collage img:nth-child(5) {
    left: 165px;
    top: 255px;
}

.service-poster-collage img:nth-child(6) {
    left: 335px;
    top: 300px;
}

/* Third row posters */

.service-poster-collage img:nth-child(7) {
    left: 0;
    top: 555px;
}

.service-poster-collage img:nth-child(8) {
    left: 165px;
    top: 510px;
}

.service-poster-collage img:nth-child(9) {
    left: 335px;
    top: 555px;
}


/* Fourth row posters */

.service-poster-collage img:nth-child(10) {
    left: 0;
    top: 780px;
}

.service-poster-collage img:nth-child(11) {
    left: 165px;
    top: 735px;
}

.service-poster-collage img:nth-child(12) {
    left: 335px;
    top: 780px;
}

.service-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 65px;
    padding-top: 25px;
}

.service-list-item {
    max-width: 300px;
}

.service-line-icon {
    color: #ffc233;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 18px;
}

.service-list-item h3 {
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 13px;
}

.service-list-item p {
    color: #bfc2d4;
    font-size: 13px;
    line-height: 1.75;
}

/* =========================================
   MOVIE SEARCH
========================================= */
.movie-search-box{
    width:100%;
    max-width:500px;
    margin:0 auto 35px;
    display:flex;
    align-items:center;
    overflow:hidden;
    border:1px solid rgba(255,194,51,0.3);
    border-radius:50px;
    background:#0a0a0a;
}

.movie-search-box input{
    flex:1;
    height:55px;
    border:none;
    outline:none;
    background:transparent;
    color:#fff;
    padding:0 20px;
    font-size:15px;
}

.movie-search-box input::placeholder{
    color:#999;
}

.movie-search-box button{
    width:60px;
    height:55px;
    border:none;
    background:#ffc233;
    color:#000;
    font-size:18px;
    cursor:pointer;
    font-weight:700;
    transition:0.3s;
}

.movie-search-box button:hover{
    background:#ffd65c;
}




/* =========================================
   NEWS PAGE HERO
========================================= */

.news-hero {
    width: 100%;
    height: 85px;
    background: #000;
}



