@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    background-color: #000;
}

.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #100F0F;
    /* Solid black background as in the image */
    padding: 20px 20px 40px;
    /*! margin-top: 280px; */
}

.title-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
    margin-bottom: 65px;
    height: 600px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff !important;
}

.title {
    position: absolute;
    font-size: 9.1rem;
    /* Adjust based on your design */
    font-weight: bold;
    letter-spacing: 5px;
    font-family: "Inter", sans-serif;
    /*! text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); */
    line-height: 150px;
}

/* Background solid white text */
.title-bg {
    color: #fff;
    /* Solid white fill */
    z-index: 1;
}

/* Stroke/outline text on top */
.title-stroke {
    color: transparent !important;
    /* Transparent fill */
    -webkit-text-stroke: 1px #fff;
    /* Stroke for Webkit browsers (Chrome, Safari) */
    z-index: 3;
    /* Above the character */
}

.character {
    position: absolute;
    z-index: 2;
    /* Between the background text and stroke text */
    bottom: -35px;
    /* Adjust to position the character correctly */
    height: 560px;
    width: 470px;
}

.character img {
    width: 100%;
    /* Adjust based on your image size */
    animation: float 3s ease-in-out infinite;
    height: 100%;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.description {
    font-size: 13px;
    max-width: 435px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    text-align: center;
    margin: auto;
    margin-bottom: 30px;
}

.watch-btn {
    padding: 10px 30px;
    font-size: 13px;
    color: #fff;
    background: none;
    border: 1px dashed #fff;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 430px;
    font-family: 'Inter', sans-serif;
    text-align: center;
    display: block;
    margin: auto;
}

.watch-btn:hover {
    background: #fff;
    color: #000;
    border-style: solid;
}

/* Demo reel section */

.demo-reel-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: #181616;
}

.subtitle {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 10px;
}

.main-title {
    font-size: 39px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.video-container {
    position: relative;
    width: 850px;
    padding: 0;
    margin: auto;
    padding-top: 35px;
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    border: 2px solid #333;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.play-button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.play-button::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 20px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}


#demo-reel-iframe {
    width: 100%;
    height: 500px;
    border: 0;
}

.demo-reel-section .content {
    width: 100%;
}

.demo-reel-section .content .description {
    max-width: 720px;
    padding: 0 40px;
    margin-bottom: 5px;
}


.d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.virtual-production .content {
    /*! width: 720px; */
    padding: 80px 0;
    background: #1E1D1E;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.container {
    margin: auto;
    width: 100%;
    padding: 0 20px;
    overflow: hidden;
}

.content {
    margin: auto;
}

.image-video-btn {
    position: relative;
    left: 0;
    height: 160px;
    display: flex;
    align-items: center;
    width: 100%;
}

.image-video-btn img {
    width: 100%;
    height: 100%;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
}

.image-video-btn a {
    background: #ffffff73;
    position: absolute;
    right: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 115px;
    height: 115px;
    border: 1px solid #fff;
    transition: .4s;
}

.image-video-btn ion-icon {
    font-size: 30px;
    color: #000;
    padding-left: 5px;
}


.img-btn-w {
    /*! position: absolute; */
    width: 100%;
}

.t-right {
    width: 100%;
    display: flex;
    justify-content: right;
    /*! height: 150px; */
    align-items: center;
    font-size: 116px;
    text-transform: uppercase;
    margin-left: 50px;
    font-weight: 600;
    color: #75FB9B !important;
}

.l-image {
    height: 175px;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: right;
}

.l-image img {
    border-top-left-radius: 85px;
    border-bottom-left-radius: 85px;
    width: 100%;
    height: 100%;
}

.t-left {
    font-size: 115px;
    display: flex;
    align-items: center;
    justify-content: left;
    text-transform: uppercase;
    margin-right: 160px;
    font-weight: 600;
}

.m-title h1 {
    font-size: 110px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 125px;
}

.m-title h2 {
    font-size: 48px;
    font-weight: 500;
    text-transform: uppercase;
}


.title-top {
    padding: 0 50px 0px 40px;
}

.sec-contents {
    padding-right: 40px;
    padding: 35px 40px 20px 0px;
}

.l-contents {
    padding-left: 40px;
}

.image-video-btn a:hover {
    background: #fff;
}

.l-text-btn .description {
    font-size: 16px;
    text-align: left;
    max-width: 100%;
}

.l-text-btn .watch-btn {
    width: 80%;
}

.l-text-btn {
    width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: linear-gradient(36deg, #000000b2, #000000ab), url(../imgs/game/smoke-bg.jpg);
    padding: 55px 0 13px;
    margin-top: -40px;
    z-index: -1;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.marquee-content {
    display: inline-flex;
    /* Use inline-flex to keep items in a row */
    animation: marquee 55s linear infinite;
}

.marquee-content span {
    font-size: 80px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin-right: 50px;
}

/* Optional: Highlight some words */
.marquee-content span.highlight {
    color: #00ff00;
    /* Neon green */
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move only half the width to loop seamlessly */
    }
}

/* Pause animation on hover */
.marquee-content:hover {
    animation-play-state: paused;
}

/* Slider Section */

.slider-section {
    padding: 50px 0;
    background-color: #181616;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 680px;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s ease;
    z-index: 2;
}

.btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.btn-left {
    left: 10px;
}

.btn-right {
    right: 10px;
}

.slider-gallery .content {
    width: 100%;
}

.slider-gallery {
    padding: 60px 0px 0px;
}


.hero-section .contents {
    width: 720px;
    margin: auto;
}

.virtual-production .container {
    padding: 0;
}

.slider-gallery .main-title {
    font-size: 65px;
}

.slider-gallery .subtitle {
    font-size: 23px;
}

/* Projects */

.projects {
    background: #1E1D1E;
    padding: 60px 0px;
}

.project-box-item {
    background: #181616;
    padding: 40px;
    border-radius: 15px;
    width: 100%;
    margin-bottom: 40px;
}

.project-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-tags li {
    border: 1px solid;
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 13px;
    border-color: #FFFFFF4D;
    color: #CCCCCC;
}

.project-title {
    font-family: 'Inter', sans-serif;
    font-size: 38px;
    font-weight: 500;
    padding-top: 20px;
}

.view-project-btn {
    text-decoration: none;
    color: #CCCCCC;
    font-size: 14px;
    border: 1px solid;
    padding: 10px 24px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-color: #FFFFFF4D;
    width: 165px;
    justify-content: space-between;
}

.item-box-flex {
    display: flex;
    justify-content: space-between;
    align-items: end;
}


.project-image {
    overflow: hidden;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    margin-top: 25px;
    position: relative;
}


.img-overlay i {
  color: #ffffffa3;
  font-size: 60px;
}
.img-overlay {
  position: absolute;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
  background: #111111bf;
  transition: .5s;
  opacity: 0;
}


.project-image:hover .img-overlay {
  opacity: 1;
  transition: .5s;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.project-box {
    width: 100%;
}

.projects .contents {
    width: 100%;
}

.projects .container {
    padding: 0 20px;
}


.header-area {
    background: #121212 !important;
}

.main-menu li a {
    color: #fff !important;
}

.wc-btn-primary {
    background: #fff !important;
    color: #000 !important;
}

.wc-btn-primary:hover {
    color: #000 !important;
    background-color: #fff !important;
}

.header-area button i{
    color: #fff !important;
}

.header-area button, #close_offcanvas{
    cursor: pointer !important;
}

.main-menu{
    display: block;
}


.view-project-btn:hover {
    color: #fff;
  }


  .header__navicon.d-xl-none {
    display: none;
  }

/* Contact Form */

.contact-form .contents {
    display: flex;
    flex-wrap: wrap;
    border-radius: 1rem;
    overflow: hidden;
}

.left-side {
    flex: 1 1 100%;
    padding: 2rem 0;
    color: #ffffff;
}

@media (min-width: 1024px) {
    .left-side {
        flex: 1 1 20%;
    }
}

.left-side h1 {
    font-size: 54px;
    margin-bottom: 1rem;
    font-family: 'Outfit' , sans-serif;
    text-transform: capitalize;
    font-weight: 500;
}

.left-side p {
    font-size: 22px;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: #fff;
}

.left-side ul li {
    margin-bottom: 40px;
}

.left-side ul li a, .left-side ul li {
    color: #A4A4A4;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.left-side ul li a:hover, .left-side ul li:hover {
    color: #e5e7eb;
}

.c-form {
    flex: 1 1 100%;
    padding: 2rem 0;
}

@media (min-width: 1024px) {
    .c-form {
        flex: 1 1 50%;
        padding: 2rem;
        padding-right: 0;
    }
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.inputs-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 640px) {
    .inputs-main {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 0.75rem 0;
    border: none;
    border-bottom: 1px solid #FFFFFF33;
    font-size: 18px;
    background: transparent;
    transition: all 0.3s ease;
    color: #fff;
    font-family: "Outfit", Sans-serif;
    opacity: 1;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none;
    border-bottom: 1px solid #fff;
}

.contact-form select {
    appearance: none;
    /*! background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0iIzQ4NTNjMSIgdmlld0JveD0iMCAwIDE2IDE2Ij48cGF0aCBkPSJNOCAxMkwzIDcuNWw0LjUtNC41IDQuNSA0LjUtNC41IDQuNXoiLz48L3N2Zz4=") no-repeat right 0.75rem center/12px 12px; */
    /*! color: #000; */
    background: #181616;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form button {
    padding: 18px 40px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 0.5rem;
    font-size: 22px;
    cursor: pointer;
    transition: .4s;
    font-family: 'Outfit', sans-serif;
}

.contact-form button:hover {
    background: #2ab753;
    color: #fff;
    transition: .4s;
}


.contact-form {
  background: #181616;
  padding: 40px 0;
}

.contact-form input::placeholder, .contact-form select::placeholder, .contact-form textarea::placeholder {
  color: #fff;
  font-size: 18px;
}

.status-message {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-align: center;
    display: none;
}

.status-message.success {
    background: #d4f4e2;
    color: #1a7e3e;
}

.status-message.error {
    background: #f4d4d4;
    color: #7e1a1a;
}

.error-field {
    border-bottom: 1px solid #7e1a1a !important;
}

.error-text {
    color: #7e1a1a;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}