:root {
    --text: #CBD5E1;
    --border: rgba(255, 255, 255, .15);
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: "Outfit", sans-serif;
    background: rgb(0, 0, 0);
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 70px;
}


section {
    padding: 60px 0;
}

/*header navigation*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 10000;
    background: rgb(20, 20, 25);
    backdrop-filter: blur(15px);
}

.logo img {
    width: 100px;
    margin-top: 4px;
}

nav ul {
    display: flex;
    gap: 15px;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: white;
    padding: 12px 16px;
    font-weight: 500;
    transition: all .3s ease;
}

nav a:hover {
    color: #60A5FA;
}

/* hamburger menu button */

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    position: relative;
    z-index: 10002;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 3px;
}

/*hero section */

.hero {
    position: relative;
    height: calc(100vh - 70px);
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* headings */

h2 {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 20px;
    background: white;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-heading h2 {
    font-size: 30px;
    color: var(--white);
    margin-bottom: 20px;
    text-align: center;
}

/* film-card */

.film-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    height: 350px;
    padding: 0;
    transition: .3s ease;
}

.film-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, .25);
}

.film-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Film Card Overlays */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, .88) 0%,
            rgba(0, 0, 0, .55) 55%,
            transparent 100%);
}

.card-overlay h3 {
    margin: 0;
    font-weight: 800;
    line-height: .95;
}

.card-overlay h3:first-child {
    color: #1ea5ff;
    font-size: 2rem;
    font-weight: 900;
}

.card-overlay h3:nth-child(2) {
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.card-overlay h3:nth-child(2)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 55px;
    height: 4px;
    background: #1ea5ff;
    border-radius: 10px;
}

.card-overlay p {
    margin-top: 15px;
    color: #e4e4e4;
    font-size: 14px;
    line-height: 1.4;
    max-width: 300px;
}

.card-overlay ul {
    margin-top: 15px;
    margin-left: 18px;
    padding: 0;
}

.card-overlay li {
    color: #e4e4e4;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 8px;
}

/* work/grid images layout */
#work p {
    text-align: center;
    color: #bdbdbd;
    margin-bottom: 50px;
}

#work .row {
    margin: 0;
}

.work-card {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: none;
    border: none;
    border-radius: 0;
}

.work-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.work-card:hover,
.work-card:hover .work-img {
    transform: none;
}

/* Grid Layout Spacers Fixes */

.row.g-0 {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.row.g-0>* {
    padding: 0 !important;
}

/* image box and video layout */

.image-box {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;

}

.video-box {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    overflow: hidden;
}

.video-box iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.watch-link {
    position: absolute;
    bottom: 10px;
    right: 10px;
    left: auto;
    z-index: 10;
    background: #999999;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.watch-link:hover {
    background: #cc0000;
    color: #fff;
}

/* contact form */

#contactForm {
    padding: 10px;
    width: 100%;
    padding-bottom: 70px;
}

/* Input fields */

#contactForm input,
#contactForm textarea {
    width:100%;
    background:transparent;
    border:1px solid #008cff;
    border-radius:12px;
    color:white;
    font-size:16px;
    padding:18px;
    outline:none;
    transition:.3s;
}

#contactForm input {
    height:58px;
}

#contactForm textarea {
    height:210px;
    resize:vertical;
    padding-top:20px;
}

/* Placeholder */

#contactForm input::placeholder,
#contactForm textarea::placeholder {
    color:#64748b;
    font-size:18px;
}

/* Focus */

#contactForm input:focus,
#contactForm textarea:focus {
    border-color:#00a6ff;
    box-shadow:none;
}

/* Space between fields */

#contactForm .mb-3 {
    margin-bottom:23px !important;
}

/* Button */

#contactForm button {
    width:100%;
    height:58px;
    border-radius:30px;
    border:none;
    background:#302080;
    color:white;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

#contactForm button:hover {
    background:#4430a5;
}

/* Error */

.error-message {
    color:#ff3b30;
    font-size:13px;
    margin-top:5px;
    display:block;

}

.error-message.show {
    display: block;
}

/* WIDGETS & FIXED SIDEBAR FLOATS */
.floating-contact {
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
}

.floating-contact a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: .3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .25);
}

.floating-contact a:hover {
    transform: translateY(-5px);
}

.facebook {
    background: #1877F2;
}

.instagram {
    background: #E1306C;
}

.linkedin {
    background: #0A66C2;
}

.youtube {
    background: #FF0000;
}

.contact-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: .3s ease;
}

.contact-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-options a,
.contact-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 26px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .3);
    transition: .3s;
}

.contact-options a:hover,
.contact-toggle:hover {
    transform: scale(1.1);
}

.phone {
    background: #00C853;
}

.email {
    background: #FF4D6D;
}

.whatsapp {
    background: #25D366;
}

.contact-toggle {
    background: #556CD6;
}

.contact-options a,
.contact-options a i,
.contact-toggle,
.contact-toggle i {
    color: #fff !important;
}

.contact-options a,
.contact-options a:link,
.contact-options a:visited,
.contact-options a:hover,
.contact-options a:active {
    text-decoration: none !important;
    color: #fff !important;
}

/* footer */
footer {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    background-color: rgb(25, 24, 56);
}

footer h3 {
    font-size: 20px;
}

footer p {
    color: var(--text);
    margin-top: 10px;
}

.custom-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    width: 190px;
    background: #151B3A;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border);
    z-index: 9999;
    padding-left: 0;
    margin-left: 0;
    list-style: none;
}

.dropdown.active .custom-dropdown-menu {
    display: block;
}

.custom-dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    width: 100%;
}

.custom-dropdown-menu a {
    display: block;
    width: 100%;
    padding: 14px 0;
    text-align: center;
    color: white;
    box-sizing: border-box;
}

.custom-dropdown-menu a:hover {
    background: rgb(39, 11, 131) !important;
}

.glow-btn {
    background: linear-gradient(135deg, #111633, #1b266b);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: .5px;
    border: 1px solid rgba(45, 145, 255, .6);
    border-radius: 50px;
    box-shadow:
        inset 0 0 10px rgba(45, 145, 255, .15),
        0 0 12px rgba(45, 145, 255, .35);
    transition: .35s ease;
    padding-bottom:30px
}

.glow-btn:hover {
    color: #fff;
    background: linear-gradient(135deg, #18204d, #2346c7);
    border-color: #42b3ff;
    box-shadow:
        inset 0 0 12px rgba(66, 179, 255, .2),
        0 0 15px rgba(66, 179, 255, .6),
        0 0 35px rgba(66, 179, 255, .35);
    transform: translateY(-3px);
}

.glow-btn:focus {
    color: #fff;
    box-shadow:
        0 0 0 .2rem rgba(66, 179, 255, .25),
        0 0 20px rgba(66, 179, 255, .5);
}

/* brands-swiper */

.brandSwiper .swiper-button-prev,
.brandSwiper .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #1b1b35;
    border: 1px solid #3b82f6;
    border-radius: 50%;
    color: #fff;
    z-index: 9999;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.brandSwiper .swiper-button-prev {
    left: 0;
}

.brandSwiper .swiper-button-next {
    right: 0;
}

.brandSwiper .swiper-button-prev::after,
.brandSwiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}

/* mobile */

@media (max-width:768px) {

    .brandSwiper {
        padding: 20px 40px;
    }

    .brandSwiper .swiper-slide {
        height: 90px;
    }

    .brandSwiper .brand img {
        max-width: 100px;
        height: 60px;
    }

    .brandSwiper .swiper-button-prev,
    .brandSwiper .swiper-button-next {
        width: 36px;
        height: 36px;
    }

    .brandSwiper .swiper-button-prev::after,
    .brandSwiper .swiper-button-next::after {
        font-size: 14px;
    }

    .brandSwiper .swiper-button-prev {
        left: 0;
    }

    .brandSwiper .swiper-button-next {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(30, 47, 109, .98);
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav li {
        width: 100%;
    }

    nav a {
        display: block;
        width: 100%;
        padding: 18px;
        text-align: center;
    }

    .hero {
        height: calc(100vh - 70px);
        padding-top: 0;
    }

    .hero-video {
        object-position: center;
    }

    .floating-contact {
        left: 10px;
        bottom: 10px;
        gap: 8px;
    }

    .floating-contact a {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .film-card {
        height: auto;
    }

    .film-card img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }

    .card-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 65%;
        height: 100%;
    }

    .card-overlay h3 {
        line-height: 0.98;
        
    }

    .card-overlay h3:first-child {
        margin-bottom: 0;
    }

    .card-overlay h3:nth-child(2) {
        margin-bottom: 12px;
    }

    .card-overlay p,
    .card-overlay li {
        font-size: 0.9rem;
    }

    .card-overlay ul {
        padding-left: 18px;
        margin-bottom: 0;
    }

    .custom-dropdown-menu {
        position: static;
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        display: none;
        border-radius: 0;
    }

    .dropdown.active .custom-dropdown-menu {
        display: block;
    }

    .custom-dropdown-menu a {
        padding: 14px 30px;
        font-size: 15px;
    }
}

/* Service Card Base Container */
.service-card {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.service-card .film-card-img {
    width: 100%;
    object-fit: contain;
    display: block;
}

/* Brands Swiper */
.brandSwiper {
    width:100%;
    padding:20px 60px;
    overflow:hidden;
}

.brandSwiper .swiper-wrapper {
    display:grid;
    grid-template-rows: repeat(2,120px);
    grid-auto-flow:column;
}

.brandSwiper .swiper-slide {
    display:flex;
    justify-content:center;
    align-items:center;
}

.brandSwiper .brand img {
    max-width:150px;
    max-height:90px;
    object-fit:contain;
}

/* responsive*/

@media (min-width:769px) and (max-width:1024px) {

    body{
        padding-top:75px;
    }

    header{
        height:75px;
    }

    .logo img{
        width:90px;
    }

    nav ul{
        gap:10px;
    }

    nav a{
        padding:10px 12px;
        font-size:15px;
    }

    .hero{
        height:calc(90vh - 75px);
    }

    h2{
        font-size:2rem;
    }

    .section-heading h2{
        font-size:28px;
    }

    .film-card{           /* Film Cards */
        height:280px;
    }

    .card-overlay{
        width:60%;
        padding:18px;
    }

    .card-overlay h3:first-child,
    .card-overlay h3:nth-child(2){
        font-size:1.5rem;
    }

    .card-overlay p,
    .card-overlay li{
        font-size:13px;
    }

    .work-card{               /* Work Images */
        height:170px;
    }

    .graphic-img{            /* Graphics */
        aspect-ratio:1/1;
    }

    .video-thumbnail{       /* Shorts */
        width:150px;
        height:270px;
    }

    #contactForm{           /* Contact */
        padding:15px;
    }

    #contactForm input,
    #contactForm textarea{
        padding:13px;
    }

    .floating-contact a{      /* Floating Buttons */
        width:40px;
        height:40px;
        font-size:17px;
    }

    .contact-options a,
    .contact-toggle{
        width:55px;
        height:55px;
        font-size:22px;
    }

    .brandSwiper{         /* Brand Slider */
        padding:20px 45px;    
    }

    .brandSwiper .brand img{
        max-width:120px;
        max-height:75px;
    }

    footer h3{
        font-size:18px;
    }

    footer p{
        font-size:14px;
    }
        .banner-overlay {
        left: 45px;
        width: 42%;
    }
    
    .banner-overlay h1 {
        font-size: 42px;
    }

    .banner-overlay p {
        font-size: 16px;
    }
}
