
/* =========================================
   AION FULL WIDTH VIDEO HERO
========================================= */

.aion-showreel {
    position: relative;
    width: 100%;
    height: calc(100vh - 90px);
    min-height: 650px;

    overflow: hidden;
    background: #000;
}


/* VIDEO */

.aion-showreel__video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: 1;

    /* premium black & white */
    filter:
        grayscale(100%)
        contrast(1.10)
        brightness(.85);
}


/* =========================================
   BLACK SHADOW OVER VIDEO
========================================= */

.aion-showreel__shadow {
    position: absolute;
    inset: 0;

    z-index: 2;
    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.35) 0%,
            rgba(0,0,0,.05) 30%,
            rgba(0,0,0,.03) 55%,
            rgba(0,0,0,.25) 80%,
            rgba(0,0,0,.70) 100%
        );
}


/* SIDE CINEMATIC SHADOW */

.aion-showreel::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 3;
    pointer-events: none;

    box-shadow:
        inset 0 0 150px rgba(0,0,0,.45);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .aion-showreel {
        height: calc(100vh - 75px);
        min-height: 600px;
    }

}


@media (max-width: 767px) {

    .aion-showreel {
        height: 75vh;
        min-height: 520px;
    }

    .aion-showreel__video {
        object-position: center;
    }

    .aion-showreel::after {
        box-shadow:
            inset 0 0 80px rgba(0,0,0,.40);
    }

}

/* =========================================
   SERVICES WHITE STRIP
========================================= */

..hero-services-strip {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #d9d9d9;
    overflow: hidden;
}

.hero-services-track {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.hero-service-item {
    position: relative;

    min-height: 105px;
    padding: 22px 18px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    color: #111;

    background:
    radial-gradient(
        circle at 15% 15%,
        rgba(45, 221, 231, 0.16) 0%,
        transparent 38%
    ),
    radial-gradient(
        circle at 85% 80%,
        rgba(235, 75, 190, 0.13) 0%,
        transparent 42%
    ),
    radial-gradient(
        circle at 55% 30%,
        rgba(104, 92, 255, 0.10) 0%,
        transparent 45%
    ),
    linear-gradient(
        135deg,
        #ffffff 0%,
        #f2fbff 25%,
        #eef1ff 52%,
        #f7efff 75%,
        #fff3fa 100%
    );

box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 -15px 35px rgba(82, 104, 255, 0.05),
    0 5px 18px rgba(53, 72, 140, 0.06);

    text-decoration: none;

    border-right: 1px solid #dedede;

    overflow: hidden;

    transition:
        background .45s ease,
        color .35s ease,
        transform .4s ease,
        box-shadow .4s ease;
}


/* LAST ITEM */

.hero-service-item:last-child {
    border-right: 0;
}


/* =========================================
   NUMBER
========================================= */

.hero-service-item .num {
    position: relative;
    z-index: 3;

    font-size: 26px;
    line-height: 1.5px;

    font-weight: 500;
    letter-spacing: 1px;

    color: #2CB9B7;

    transition:
        color .35s ease,
        transform .4s ease;
}


/* =========================================
   NAME / TITLE
========================================= */

.hero-service-item .name {
    position: relative;
    z-index: 3;

    max-width: 190px;

    color: #111;

    font-size: 16px;
    line-height: 1.35;

    font-weight: 700;

    letter-spacing: .4px;
    text-transform: uppercase;

    transition:
        color .35s ease,
        transform .4s ease;
}


/* =========================================
   LIGHT GRADIENT HOVER
========================================= */

.hero-service-item:hover {
    color: #111;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(48, 220, 235, .18),
            transparent 42%
        ),

        radial-gradient(
            circle at 90% 90%,
            rgba(235, 79, 188, .11),
            transparent 45%
        ),

        linear-gradient(
            135deg,
            #f5fdff 0%,
            #eef7ff 30%,
            #f3efff 66%,
            #fff2f8 100%
        );

    box-shadow:
        inset 0 0 35px rgba(85, 115, 255, .06),
        0 8px 22px rgba(0,0,0,.035);

    transform: translateY(-2px);
}


/* NUMBER ON HOVER */

.hero-service-item:hover .num {
    color: #149fa9;

    transform: translateY(-2px);
}


/* NAME ON HOVER */

.hero-service-item:hover .name {
    color: #111;

    transform: translateY(-2px);
}


/* =========================================
   TOP GRADIENT LINE
========================================= */

.hero-service-item::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            #2fdde7,
            #4e92ff,
            #8b65ff,
            #ed59b8
        );

    box-shadow:
        0 2px 10px rgba(85, 120, 255, .18);

    transition:
        width .5s cubic-bezier(.16,1,.3,1);
}

.hero-service-item:hover::before {
    width: 100%;
}


/* =========================================
   SOFT SHINE ANIMATION
========================================= */

.hero-service-item::after {
    content: "";

    position: absolute;

    top: -40%;
    left: -100px;

    width: 55px;
    height: 180%;

    transform: rotate(18deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.60),
            transparent
        );

    opacity: .45;

    transition:
        left .8s ease;
}

.hero-service-item:hover::after {
    left: 120%;
}


/* =========================================
   ARROW - IF YOU HAVE service-arrow
========================================= */

.hero-service-item .service-arrow {
    position: absolute;

    right: 14px;
    top: 15px;

    z-index: 4;

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(0,0,0,.12);

    color: #555;

    background: rgba(255,255,255,.35);

    opacity: .45;

    transition:
        transform .4s ease,
        opacity .35s ease,
        background .35s ease,
        color .35s ease,
        border-color .35s ease;
}


.hero-service-item:hover .service-arrow {
    opacity: 1;

    color: #111;

    border-color: rgba(92, 100, 220, .20);

    background:
        linear-gradient(
            135deg,
            rgba(47,221,231,.16),
            rgba(112,90,255,.12),
            rgba(237,81,185,.12)
        );

    transform: rotate(45deg);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {

    .hero-services-track {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-service-item {
        border-bottom: 1px solid #dedede;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .hero-services-strip {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .hero-services-strip::-webkit-scrollbar {
        display: none;
    }

    .hero-services-track {
        display: flex;
        width: max-content;
    }

    .hero-service-item {
        width: 215px;
        min-width: 215px;
        min-height: 105px;

        flex: 0 0 215px;
    }

}

/* SERVICE NAME */

.hero-service-item .name {
    max-width: 180px;

    font-size: 13px;
    line-height: 1.3;

    font-weight: 600;

    letter-spacing: .4px;
    text-transform: uppercase;

    color: #111;

    transition: color .35s ease;
}


/* HOVER */

.hero-service-item:hover {
    background: #111;
    color: #fff;
}

.hero-service-item:hover .name,
.hero-service-item:hover .num {
    color: #fff;
}


/* arrow on hover */

.hero-service-item::after {
    content: "↗";

    position: absolute;

    top: 20px;
    right: 18px;

    font-size: 17px;

    opacity: 0;

    transform: translate(-6px, 6px);

    transition: all .35s ease;
}


.hero-service-item:hover::after {
    opacity: 1;
    transform: translate(0, 0);
}


/* remove last border */

.hero-service-item:last-child {
    border-right: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {

    .hero-services-track {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-service-item {
        border-bottom: 1px solid #dedede;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .hero-services-track {
        display: flex;
        overflow-x: auto;

        scrollbar-width: none;
    }

    .hero-services-track::-webkit-scrollbar {
        display: none;
    }

    .hero-service-item {
        min-width: 230px;
        min-height: 95px;

        padding: 18px;

        flex-shrink: 0;
    }

    .hero-service-item .name {
        font-size: 12px;
    }

}

.aion-work-section {
    width: 100%;
    padding: 90px 0 0;
    background: #171717;
    color: #fff;
    overflow: hidden;
}


.aion-work-head {
    text-align: center;
    padding: 0 30px 40px;
}


.aion-work-title {
    margin: 0 0 30px;

    color: #fff;

    font-size: clamp(42px, 4vw, 64px);
    line-height: 1;

    font-weight: 700;

    letter-spacing: -2px;
}


/* =========================================================
   FILTERS
========================================================= */

.aion-work-filters {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 30px;
}


.aion-filter {
    position: relative;

    padding: 0 0 8px;

    border: 0;
    outline: 0;

    background: transparent;

    color: rgba(255,255,255,.72);

    font-family: inherit;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition: color .3s ease;
}


.aion-filter::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 0;
    height: 1px;

    background: #2cb9b7;

    transform: translateX(-50%);

    transition:
        width .35s cubic-bezier(.16,1,.3,1);
}


.aion-filter.active,
.aion-filter:hover {
    color: #2cb9b7;
}


.aion-filter.active::after,
.aion-filter:hover::after {
    width: 100%;
}


/* =========================================================
   FULL WIDTH GRID
========================================================= */

.aion-work-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0,1fr));

    grid-auto-rows: 275px;

    gap: 3px;

    background: #171717;
}


/*
Different sizes for cinematic masonry look
*/

/* =========================================
   OUR WORK - CLEAN PERFECT GRID
========================================= */

.aion-work-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 3px;

    background: #171717;
}


/* ALL CARDS SAME HEIGHT */

.aion-work-card {
    position: relative;

    width: 100%;
    height: 330px;

    overflow: hidden;

    background: #000;
}

/* =========================================
   PLAY BUTTON
========================================= */

.aion-play-button {
    position: absolute;

    top: 50%;
    left: 50%;

    z-index: 10;

    width: 68px;
    height: 68px;

    padding: 0;

    transform:
        translate(-50%, -50%);

    border:
        1px solid rgba(255,255,255,.85);

    border-radius: 50%;

    background:
        rgba(0,0,0,.15);

    backdrop-filter: blur(5px);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: .35s ease;
}


.aion-play-circle {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255,255,255,.55);

    border-radius: 50%;
}


.aion-play-circle i {
    margin-left: 3px;
}


/* HOVER */

.aion-work-image:hover .aion-play-button {
    transform:
        translate(-50%, -50%)
        scale(1.1);

    background: #fff;

    color: #000;
}


/* ==========================================================
   AION HEADER
========================================================== */

.aion-header {
    position: relative;
    z-index: 9999;

    width: 100%;

    background: #0b0b0b;

    border-bottom:
        1px solid rgba(255,255,255,.12);
}


.aion-header__inner {
    width: 100%;

    min-height: 92px;

    padding: 0 45px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}


/* ==========================================================
   LOGO
========================================================== */

.aion-header__logo {
    flex: 0 0 auto;
}


.aion-header__logo a {
    display: block;
}


.aion-header__logo img {
    display: block;

    width: 145px;
    max-height: 58px;

    object-fit: contain;
}


/* ==========================================================
   NAV
========================================================== */

.aion-header__nav {
    margin-left: auto;
}


.aion-header__nav > ul {
    display: flex;
    align-items: center;

    gap: 42px;

    margin: 0;
    padding: 0;

    list-style: none;
}


.aion-header__nav > ul > li {
    position: relative;

    margin: 0;
    padding: 0;
}


.aion-header__nav > ul > li > a {
    position: relative;

    display: flex;
    align-items: center;

    gap: 7px;

    padding: 34px 0;

    color: #fff;

    font-size: 13px;
    line-height: 1;

    font-weight: 500;

    letter-spacing: 1.4px;

    text-transform: uppercase;

    text-decoration: none;

    transition:
        opacity .3s ease;
}


/* underline */

.aion-header__nav > ul > li > a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 26px;

    width: 0;
    height: 1px;

    background: #fff;

    transition:
        width .35s cubic-bezier(.16,1,.3,1);
}


.aion-header__nav > ul > li:hover > a::after {
    width: 100%;
}


.aion-header__nav > ul > li:hover > a {
    opacity: .75;
}


/* ARROW */

.menu-arrow {
    display: inline-flex;

    font-size: 8px;

    transition:
        transform .35s ease;
}


.has-dropdown:hover .menu-arrow {
    transform: rotate(180deg);
}


/* ==========================================================
   DROPDOWN
========================================================== */

.aion-dropdown {
    position: absolute;

    top: calc(100% - 7px);
    left: -25px;

    width: 255px;

    margin: 0;
    padding: 12px 0;

    list-style: none;

    background: #fff;

    border:
        1px solid rgba(0,0,0,.08);

    box-shadow:
        0 25px 70px
        rgba(0,0,0,.30);

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(14px);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .4s cubic-bezier(.16,1,.3,1);
}


.has-dropdown:hover
.aion-dropdown {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


/* dropdown item */

.aion-dropdown li {
    display: block;
}


.aion-dropdown li a {
    position: relative;

    display: block;

    padding:
        13px 22px 13px 32px;

    color: #111;

    font-size: 12px;

    font-weight: 500;

    letter-spacing: .7px;

    text-transform: uppercase;

    text-decoration: none;

    transition:
        padding-left .3s ease,
        background .3s ease;
}


/* little line */

.aion-dropdown li a::before {
    content: "";

    position: absolute;

    left: 16px;
    top: 50%;

    width: 0;
    height: 1px;

    background: #111;

    transform:
        translateY(-50%);

    transition:
        width .3s ease;
}


.aion-dropdown li a:hover {
    padding-left: 42px;

    background: #f3f3f3;
}


.aion-dropdown li a:hover::before {
    width: 14px;
}


/* ==========================================================

   RIGHT
========================================================== */

.aion-header__right {
    display: flex;
    align-items: center;

    gap: 15px;
}


/* ==========================================================
   JOIN US BUTTON
========================================================== */

.aion-join-btn {
    min-height: 48px;

    padding:
        0 6px 0 22px;

    display: flex;
    align-items: center;

    gap: 18px;

    border:
        1px solid rgba(255,255,255,.55);

    border-radius: 100px;

    color: #fff;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    text-decoration: none;

    transition:
        background .35s ease,
        color .35s ease;
}


.aion-join-btn__icon {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff;

    color: #000;

    transition:
        transform .4s cubic-bezier(.16,1,.3,1);
}


.aion-join-btn:hover {
    background: #fff;

    color: #000;
}


.aion-join-btn:hover
.aion-join-btn__icon {

    background: #000;

    color: #fff;

    transform:
        rotate(45deg);
}


/* ==========================================================
   MOBILE TOGGLE
========================================================== */

.aion-menu-toggle {
    width: 48px;
    height: 48px;

    padding: 0;

    border:
        1px solid rgba(255,255,255,.3);

    border-radius: 50%;

    background: transparent;

    display: none;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 6px;

    cursor: pointer;
}


.aion-menu-toggle span {
    display: block;

    width: 18px;
    height: 1px;

    background: #fff;

    transition:
        transform .3s ease;
}


.aion-menu-toggle span:last-child {
    width: 12px;

    margin-left: 6px;
}


/* ==========================================================
   STICKY
========================================================== */

.aion-header.is-sticky {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    background:
        rgba(10,10,10,.92);

    backdrop-filter:
        blur(15px);

    animation:
        aionHeaderIn .4s ease;
}


@keyframes aionHeaderIn {

    from {
        transform:
            translateY(-100%);
    }

    to {
        transform:
            translateY(0);
    }

}


/* ==========================================================
   TABLET / MOBILE
========================================================== */

@media(max-width:1199px) {

    .aion-header__inner {
        min-height: 78px;

        padding:
            0 25px;
    }


    .aion-header__nav {
        display: none;
    }


    .aion-join-btn {
        display: none;
    }


    .aion-menu-toggle {
        display: flex;
    }


    .aion-header__logo img {
        width: 125px;
    }

}


@media(max-width:575px) {

    .aion-header__inner {
        padding:
            0 15px;
    }


    .aion-header__logo img {
        width: 110px;
    }


    .aion-menu-toggle {
        width: 44px;
        height: 44px;
    }

}

/* ==========================================
   BLOG SECTION
========================================== */

.simple-blog-section {
    padding: 50px 0;
    background: #fff;
    color: #111;
}


/* HEADING */

.simple-blog-head {
    margin-bottom: 45px;
}

.simple-blog-head > span {
    display: block;
    margin-bottom: 8px;

    color: #777;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.simple-blog-head h2 {
    margin: 0;

    font-family: var(--font_teko);
    font-size: 58px;
    line-height: 1;

    font-weight: 600;
    color: #111;

    text-transform: uppercase;
}


/* ==========================================
   CARD
========================================== */

.simple-blog-card {
    height: 100%;

    background: #fff;

    border: 1px solid #dedede;

    overflow: hidden;

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.simple-blog-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.10);
}


/* ==========================================
   IMAGE
========================================== */

.simple-blog-image {
    position: relative;

    display: block;

    width: 100%;
    height: 310px;

    overflow: hidden;

    background: #eee;
}

.simple-blog-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(0,0,0,0);

    transition: background .4s ease;
}

.simple-blog-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .7s cubic-bezier(.16,1,.3,1);
}

.simple-blog-card:hover .simple-blog-image img {
    transform: scale(1.06);
}

.simple-blog-card:hover .simple-blog-image::after {
    background: rgba(0,0,0,.12);
}


/* ==========================================
   CONTENT
========================================== */

.simple-blog-content {
    padding: 27px 26px 30px;
}


/* META */

.simple-blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 18px;

    color: #999;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}

.simple-blog-meta span:first-child {
    color: #111;
}


/* ==========================================
   TITLE
========================================== */

.simple-blog-content h3 {
    min-height: 78px;

    margin: 0 0 25px;

    font-family: var(--font_teko);
    font-size: 30px;
    line-height: 1.05;

    font-weight: 600;

    text-transform: uppercase;
}

.simple-blog-content h3 a {
    color: #111;

    text-decoration: none;

    transition: opacity .3s ease;
}

.simple-blog-content h3 a:hover {
    opacity: .6;
}


/* ==========================================
   READ MORE BUTTON
========================================== */

.simple-blog-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    height: 46px;

    padding: 0 21px;

    border: 1px solid #111;

    background: #fff;

    color: #111;

    font-size: 15px;
    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    text-decoration: none;

    transition:
        background .35s ease,
        color .35s ease;
}

.simple-blog-link i {
    font-size: 11px;

    transition: transform .35s ease;
}


/* BUTTON HOVER */

.simple-blog-link:hover {
    background: #111;
    color: #fff;
}

.simple-blog-link:hover i {
    transform: translateX(5px);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .simple-blog-image {
        height: 280px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .simple-blog-section {
        padding: 65px 0;
    }

    .simple-blog-head {
        margin-bottom: 30px;
    }

    .simple-blog-head h2 {
        font-size: 46px;
    }

    .simple-blog-image {
        height: 280px;
    }

    .simple-blog-content h3 {
        min-height: auto;
    }

}

.about-agency__video {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.about-agency__video video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}




/* ============================================================
   AION / FANTASY-INSPIRED UI
   Fast logo preloader + transparent header + centered menu + hero
============================================================ */
*{box-sizing:border-box}
html.aion-preloader-active,
html.aion-preloader-active body,
html.aion-menu-open,
html.aion-menu-open body{overflow:hidden!important}

#aionPreloader{
    position:fixed;inset:0;z-index:999999;
    width:100%;height:100vh;
    display:flex;align-items:center;justify-content:center;
    background:#000;overflow:hidden
}
.aion-loader-bg{position:absolute;inset:0;background:#000;z-index:1;transform-origin:bottom center}
.aion-loader-logo{position:relative;z-index:3;display:flex;align-items:center;justify-content:center}
.aion-loader-logo img{
    width:170px;
    max-width:58vw;
    height:auto;
    display:block;
    object-fit:contain;

    /* ORIGINAL LOGO COLOR */
    filter:none !important;

    will-change:transform, opacity;
}
.aion-loader-line{
    position:absolute;z-index:3;left:50%;bottom:42px;
    width:72px;height:1px;transform:translateX(-50%);
    background:rgba(255,255,255,.18);overflow:hidden
}
.aion-loader-line span{display:block;width:100%;height:100%;background:#fff;transform:scaleX(0);transform-origin:left center}

/* HEADER */
.aion-fantasy-header{
    position:absolute;top:10px;left:0;z-index:9000;width:100%;
    padding:22px 37px 0px;color:#fff;pointer-events:none
}
.aion-fantasy-header__inner{display:flex;align-items:flex-start;justify-content:space-between;width:100%}
.aion-fantasy-logo{display:inline-flex;pointer-events:auto}
.aion-fantasy-logo img{margin-top: -16px;}
.aion-menu-trigger{
    position:relative;z-index:5;display:flex;align-items:center;gap:14px;
    border:0;padding:0;background:transparent;color:#fff;cursor:pointer;pointer-events:auto
}
.aion-menu-trigger__text{font-size:13px;font-weight:500}
.aion-menu-trigger__box{
    position:relative;width:100px;height:54px;display:flex;align-items:center;justify-content:center;
    border-radius:13px;background: rgb(38 38 38 / 39%);backdrop-filter:blur(10px);
    transition:transform .35s cubic-bezier(.16,1,.3,1),background .35s ease
}
.aion-menu-bars{position:relative;font-weight: bold;height:23px; font-size: 20px;}
.aion-menu-bars span{position:absolute;left:0;width:20px;height:2px;border-radius:3px;background:#fff;transition:transform .35s ease}
.aion-menu-bars span:first-child{top:4px}
.aion-menu-bars span:last-child{bottom:4px}
.aion-menu-trigger:hover .aion-menu-trigger__box{transform:scale(1.04);background:#333}
.aion-menu-trigger:hover .aion-menu-bars span:first-child{transform:translateY(-2px)}
.aion-menu-trigger:hover .aion-menu-bars span:last-child{transform:translateY(2px)}

/* FULL SCREEN MENU */
#aionFullMenu{
    position:fixed;inset:0;z-index:99999;width:100%;height:100vh;
    background:#000;color:#fff;overflow:hidden;
    opacity:0;visibility:hidden;pointer-events:none;isolation:isolate
}
#aionFullMenu:before{
    content:"";position:absolute;inset:0;z-index:-1;opacity:.045;pointer-events:none;
    background-image:radial-gradient(rgba(255,255,255,.65) .5px,transparent .5px);
    background-size:6px 6px
}
.aion-fmenu__top{
    position:absolute;top:0;left:0;width:100%;
    padding:38px 42px;display:flex;align-items:flex-start;justify-content:space-between
}
.aion-fmenu__logo{display:inline-flex}
.aion-fmenu__logo img{
    display:block;
    width:150px;
    height:auto;
    object-fit:contain;
    filter:none !important;
}
.aion-fmenu__close{
    position:relative;width:78px;height:64px;border:0;padding:0;border-radius:13px;
    background:#292929;cursor:pointer;transition:transform .4s cubic-bezier(.16,1,.3,1),background .35s ease
}
.aion-fmenu__close span{
    position:absolute;top:50%;left:50%;width:19px;height:2px;border-radius:5px;background:#fff;
    transition:transform .45s cubic-bezier(.16,1,.3,1)
}
.aion-fmenu__close span:first-child{transform:translate(-50%,-50%) rotate(45deg)}
.aion-fmenu__close span:last-child{transform:translate(-50%,-50%) rotate(-45deg)}
.aion-fmenu__close:hover{transform:scale(1.05);background:#353535}
.aion-fmenu__close:hover span:first-child{transform:translate(-50%,-50%) rotate(135deg)}
.aion-fmenu__close:hover span:last-child{transform:translate(-50%,-50%) rotate(45deg)}

/* EXACT CENTERED NAV FEEL */
.aion-fmenu__nav{
    position:absolute;z-index:10;left:50%;top:40%;
    transform:translate(-50%,-50%);
    display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center
}
.aion-fmenu__link{
    position:relative;display:block;width:max-content;color:#fff;
    font-size:clamp(64px,5.7vw,96px);font-weight:600;line-height:1.03;
    letter-spacing:-5px;overflow:visible;transition:opacity .3s ease
}
.aion-fmenu__link span{display:block;transition:transform .45s cubic-bezier(.16,1,.3,1)}
.aion-fmenu__nav:hover .aion-fmenu__link:not(:hover){opacity:.28}
.aion-fmenu__link:hover span{transform:translateX(8px)}

/* BOTTOM */
.aion-fmenu__bottom{
    position:absolute;z-index:15;left:42px;right:42px;bottom:48px;
    display:grid;grid-template-columns:1fr .85fr 1.25fr;gap:45px;align-items:end
}
.aion-fmenu__cta p{
    margin:0;max-width:410px;color:#8a8a8a;font-size:20px;font-weight:500;
    line-height:1.42;letter-spacing:-.6px
}
.aion-fmenu__cta a{position:relative;color:#fff;font-weight:600}
.aion-fmenu__cta a:after{
    content:"";position:absolute;left:0;bottom:-2px;width:100%;height:1px;background:#fff;
    transform-origin:right center;transition:transform .4s cubic-bezier(.16,1,.3,1)
}
.aion-fmenu__cta a:hover:after{transform:scaleX(0)}
.aion-fmenu__small-links{
    display:flex;align-items:center;justify-content:center;gap:48px;padding-bottom:104px
}
.aion-fmenu__small-links a{
    color:#858585;font-size:18px;font-weight:500;letter-spacing:-.5px;
    transition:color .3s ease,transform .3s ease
}
.aion-fmenu__small-links a:hover{color:#fff;transform:translateY(-3px)}
.aion-fmenu__feature{
    width:100%;min-height:124px;padding:14px 14px 14px 25px;
    display:flex;align-items:center;justify-content:space-between;gap:24px;
    border-radius:12px;background:#292929;color:#fff;overflow:hidden;
    transition:background .35s ease,transform .45s cubic-bezier(.16,1,.3,1)
}
.aion-fmenu__feature:hover{background:#333;transform:translateY(-5px)}
.aion-fmenu__feature-text{flex:1;min-width:0}
.aion-fmenu__feature-text>span{
    display:block;margin-bottom:8px;color:#737373;font-size:9px;font-weight:600;
    letter-spacing:1.6px;text-transform:uppercase
}
.aion-fmenu__feature-text h4{
    margin:0;color:#bdbdbd;font-size:18px;font-weight:700;line-height:1.05;
    letter-spacing:-.6px;text-transform:uppercase
}
.aion-fmenu__feature-img{flex:0 0 145px;width:145px;height:95px;border-radius:7px;overflow:hidden}
.aion-fmenu__feature-img img{width:100%;height:100%;display:block;object-fit:cover;transition:transform .7s cubic-bezier(.16,1,.3,1)}
.aion-fmenu__feature:hover .aion-fmenu__feature-img img{transform:scale(1.08)}

/* HERO VIDEO */
.aion-showreel{
    position:relative;width:100%;height:100vh;min-height:680px;overflow:hidden;background:#000
}
.aion-showreel__video{
    position:absolute;top:50%;left:50%;width:100%;height:100%;display:block;
    object-fit:cover;object-position:center;
    transform:translate(-50%,-50%) scale(1.02);
    filter:grayscale(8%) contrast(1.04) brightness(.90) saturate(.98);
    animation:aionHeroZoom 15s ease-in-out infinite alternate;will-change:transform
}
@keyframes aionHeroZoom{
    from{transform:translate(-50%,-50%) scale(1.02)}
    to{transform:translate(-50%,-50%) scale(1.065)}
}
.aion-showreel__shadow{
    position:absolute;inset:0;z-index:2;pointer-events:none;
    background:
      linear-gradient(180deg,rgba(0,0,0,.42) 0%,rgba(0,0,0,.07) 28%,rgba(0,0,0,.04) 58%,rgba(0,0,0,.43) 100%),
      radial-gradient(circle at 72% 50%,rgba(68,80,185,.09) 0%,rgba(70,55,145,.04) 38%,transparent 65%)
}

/* RESPONSIVE */
@media(max-width:1199px){
    .aion-fmenu__link{font-size:clamp(58px,7vw,82px)}
    .aion-fmenu__bottom{grid-template-columns:1fr 1fr}
    .aion-fmenu__small-links{display:none}
}
@media(max-width:991px){
    .aion-fantasy-header,.aion-fmenu__top{padding:22px 20px}
    .aion-fantasy-logo img,.aion-fmenu__logo img{width:120px}
    .aion-menu-trigger__box,.aion-fmenu__close{width:60px;height:54px;border-radius:11px}
    .aion-fmenu__nav{top:43%}
    .aion-fmenu__link{font-size:clamp(54px,10vw,74px);letter-spacing:-3px}
    .aion-fmenu__bottom{left:20px;right:20px;bottom:25px;grid-template-columns:1fr 1fr;gap:25px}
    .aion-fmenu__cta p{font-size:17px}
    .aion-fmenu__feature-text h4{font-size:15px}
    .aion-fmenu__feature-img{flex-basis:110px;width:110px;height:76px}
}
@media(max-width:767px){
    .aion-menu-trigger__text{display:none}
    .aion-menu-trigger__box,.aion-fmenu__close{width:52px;height:50px}
    .aion-loader-logo img{width:140px}
    .aion-fmenu__logo img{width:110px}
    .aion-fmenu__nav{top:39%}
    .aion-fmenu__link{font-size:clamp(47px,15vw,64px);line-height:1.08;letter-spacing:-3px}
    .aion-fmenu__bottom{display:block;left:20px;right:20px;bottom:22px}
    .aion-fmenu__cta{margin-bottom:18px}
    .aion-fmenu__cta p{font-size:15px}
    .aion-fmenu__small-links{display:none}
    .aion-fmenu__feature{min-height:86px;padding:9px 9px 9px 15px}
    .aion-fmenu__feature-text>span{font-size:7px;margin-bottom:4px}
    .aion-fmenu__feature-text h4{font-size:13px}
    .aion-fmenu__feature-img{flex-basis:105px;width:105px;height:68px}
}


.ai3d-studio {
    position: relative;

    width: 100%;
    min-height: 100vh;

    padding: 110px 5vw 40px;

    background:
        radial-gradient(
            circle at 73% 42%,
            rgba(56, 34, 120, .20),
            transparent 25%
        ),
        radial-gradient(
            circle at 85% 65%,
            rgba(0, 155, 255, .13),
            transparent 25%
        ),
        #050505;

    overflow: hidden;

    color: #fff;
}


/* subtle grid */

.ai3d-studio::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size: 90px 90px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            #000 25%,
            #000 75%,
            transparent
        );

    pointer-events: none;
}


/* =====================================================
   GRID
===================================================== */

.ai3d-grid {
    position: relative;
    z-index: 3;

    display: grid;

    grid-template-columns:
        48% 52%;

    align-items: center;

    min-height:
        calc(100vh - 180px);
}


/* =====================================================
   CONTENT
===================================================== */
/* =============================================
   AION AI LEFT CONTENT - PREMIUM VERSION
============================================= */

.ai3d-content{
    position:relative;
    z-index:20;
    max-width:680px;
}


/* small top label */

.ai3d-label{
    display:flex;
    align-items:center;
    gap:14px;

    margin-bottom:24px;

    color:#fff;

    font-size:15px;
    font-weight:600;

    letter-spacing:3px;
    text-transform:uppercase;
}


.ai3d-label span{
    width:55px;
    height:2px;

    background:linear-gradient(
        90deg,
        #38e6ff,
        #7468ff,
        #f64cb4
    );

    box-shadow:
        0 0 14px rgba(56,230,255,.35);
}


/* =============================================
   MAIN TITLE
============================================= */

.ai3d-main-title{
    margin:0;

    display:flex;
    flex-direction:column;
    align-items:flex-start;

    font-family:var(--font_teko);
    text-transform:uppercase;

    line-height:.75;
    letter-spacing:-3px;
}


/* AI */

.ai3d-main-title .ai3d-ai{
    display:block;

    margin-bottom:4px;

    color:#fff;

    font-size:clamp(68px,6vw,105px);
    font-weight:500;

    line-height:.78;
}


/* CREATIVE */

.ai3d-main-title .ai3d-creative{
    position:relative;

    display:inline-block;

    font-size:clamp(85px,8vw,145px);
    font-weight:600;

    line-height:.74;

    background:linear-gradient(
        90deg,
        #45e4ff 0%,
        #4ba7ff 28%,
        #6b6cff 58%,
        #9856ff 82%,
        #f04ab3 100%
    );

    -webkit-background-clip:text;
    background-clip:text;

    -webkit-text-fill-color:transparent;

    filter:
        drop-shadow(
            0 0 25px rgba(82,117,255,.12)
        );
}


/* little glow behind creative */

.ai3d-main-title .ai3d-creative::before{
    content:"";

    position:absolute;

    left:15%;
    top:45%;

    width:65%;
    height:45%;

    background:linear-gradient(
        90deg,
        rgba(52,221,255,.22),
        rgba(121,83,255,.22),
        rgba(246,69,180,.14)
    );

    filter:blur(45px);

    z-index:-1;
}


/* STUDIO OUTLINE */

.ai3d-main-title .ai3d-studio-text{
    display:block;

    margin-top:8px;
    margin-left:65px;

    color:transparent;

    font-size:clamp(85px,7.5vw,138px);
    font-weight:400;

    line-height:.73;

    -webkit-text-stroke:
        1.5px rgba(255,255,255,.75);

    opacity:.9;
}


/* =============================================
   SUB TITLE
============================================= */

.ai3d-subtitle{
    position:relative;

    margin-top:65px;

    padding-left:2px;
}


.ai3d-small{
    display:block;

    margin-bottom:7px;

    color:rgba(255,255,255,.38);

    font-size:14px;
    font-weight:600;

    letter-spacing:5px;
}


.ai3d-subtitle h3{
    margin:0;

    max-width:650px;

    color:#fff;

    font-family:var(--font_instrument);

    font-size:clamp(31px,3vw,50px);

    font-weight:500;

    line-height:1;

    letter-spacing:-1.5px;

    text-transform:uppercase;
}


/* BETTER gradient */

.ai3d-changing-word{
    position:relative;

    display:inline-block;

    margin-left:8px;

    background:linear-gradient(
        90deg,
        #45e4ff,
        #617dff,
        #a259ff,
        #ff4fae
    );

    background-size:200% 100%;

    -webkit-background-clip:text;
    background-clip:text;

    -webkit-text-fill-color:transparent;

    animation:
        aionTextGradient 4s linear infinite;
}


@keyframes aionTextGradient{

    0%{
        background-position:0% center;
    }

    100%{
        background-position:200% center;
    }

}


/* =============================================
   DESCRIPTION
============================================= */

.ai3d-desc{
    max-width:570px;

    margin:
        28px 0 32px;

    color:#fff;

    font-size:16px;

    line-height:1.8;
}


/* =============================================
   BUTTON
============================================= */

.ai3d-btn{
    position:relative;

    display:inline-flex;

    align-items:center;

    gap:20px;

    color:#fff;

    text-decoration:none;

    font-size:16px;
    font-weight:600;

    letter-spacing:1.7px;

    text-transform:uppercase;
}


.ai3d-btn-arrow{
    position:relative;

    width:52px;
    height:52px;

    display:flex;

    align-items:center;
    justify-content:center;

    border:
        1px solid rgba(255,255,255,.28);

    border-radius:50%;

    font-size:19px;

    overflow:hidden;

    transition:
        transform .45s cubic-bezier(.2,.8,.2,1),
        background .35s ease,
        border-color .35s ease,
        color .35s ease;
}


/* glow */

.ai3d-btn-arrow::before{
    content:"";

    position:absolute;

    inset:-20px;

    background:linear-gradient(
        135deg,
        #43e7ff,
        #765fff,
        #ff4eb1
    );

    opacity:0;

    transition:.4s;

    z-index:-1;
}


.ai3d-btn:hover .ai3d-btn-arrow{

    transform:
        rotate(45deg)
        scale(1.08);

    border-color:transparent;

    color:#fff;
}


.ai3d-btn:hover .ai3d-btn-arrow::before{
    opacity:1;
}


/* =============================================
   SUBTLE AUTO TITLE MOVEMENT
============================================= */

.ai3d-creative{
    animation:
        creativeFloat 5s ease-in-out infinite;
}


.ai3d-studio-text{
    animation:
        studioFloat 6s ease-in-out infinite;
}


@keyframes creativeFloat{

    0%,
    100%{
        transform:translateX(0);
    }

    50%{
        transform:translateX(8px);
    }

}


@keyframes studioFloat{

    0%,
    100%{
        transform:translateX(0);
    }

    50%{
        transform:translateX(-10px);
    }

}


/* =============================================
   MOBILE
============================================= */

@media(max-width:767px){

    .ai3d-content{
        max-width:100%;
    }

    .ai3d-label{
        font-size:8px;
        letter-spacing:2px;
    }

    .ai3d-label span{
        width:30px;
    }

    .ai3d-main-title{
        letter-spacing:-1px;
    }

    .ai3d-main-title .ai3d-ai{
        font-size:55px;
    }

    .ai3d-main-title .ai3d-creative{
        font-size:72px;
    }

    .ai3d-main-title .ai3d-studio-text{
        margin-left:25px;
        margin-top:6px;

        font-size:70px;
    }

    .ai3d-subtitle{
        margin-top:45px;
    }

    .ai3d-small{
        font-size:11px;
        letter-spacing:3px;
    }

    .ai3d-subtitle h3{
        font-size:29px;
        line-height:1.05;
    }

    .ai3d-desc{
        font-size:16px;
    }

}

/* =====================================================
   3D SCENE
===================================================== */

.ai3d-scene {
    position: relative;

    height: 700px;

    perspective: 1200px;
}


.ai3d-world {
    position: absolute;

    inset: 0;

    transform-style:
        preserve-3d;

    transition:
        transform .15s linear;
}


/* =====================================================
   MAIN ORB
===================================================== */

.ai3d-orb-main {
    position: absolute;

    width: 430px;
    height: 430px;

    top: 50%;
    left: 50%;

    transform:
        translate(-42%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #6ef5ff 0%,
            #516bff 22%,
            #8426bb 48%,
            #e8369e 72%,
            #ff9e54 100%
        );

    filter:
        saturate(1.15);

    box-shadow:
        0 0 110px
        rgba(104,81,255,.28);

    animation:
        aiOrbFloat
        7s ease-in-out infinite;
}


.ai3d-orb-main::before {
    content: "";

    position: absolute;

    inset: 22%;

    border-radius: 50%;

    background:
        rgba(255,255,255,.13);

    filter: blur(30px);
}


@keyframes aiOrbFloat {

    0%,
    100% {

        transform:
            translate(-42%, -50%)
            rotate(0deg)
            scale(1);

    }

    50% {

        transform:
            translate(-42%, -54%)
            rotate(15deg)
            scale(1.04);

    }

}


/* =====================================================
   GLASS CARDS
===================================================== */

.ai3d-card {
    position: absolute;

    width: 210px;
    height: 275px;

    padding: 20px;

    border:
        1px solid
        rgba(255,255,255,.24);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.18),
            rgba(255,255,255,.04)
        );

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 35px 80px
        rgba(0,0,0,.32);

    transform-style:
        preserve-3d;

    overflow: hidden;
}


/* CARD 1 */

.ai3d-card-1 {
    top: 7%;
    left: 11%;

    transform:
        rotateY(18deg)
        rotateZ(-9deg)
        translateZ(100px);

    animation:
        cardFloat1
        6s ease-in-out infinite;
}


/* CARD 2 */

.ai3d-card-2 {
    right: 0%;
    top: 24%;

    transform:
        rotateY(-20deg)
        rotateZ(7deg)
        translateZ(140px);

    animation:
        cardFloat2
        7s ease-in-out infinite;
}


/* CARD 3 */

.ai3d-card-3 {
    bottom: 3%;
    left: 25%;

    transform:
        rotateY(14deg)
        rotateZ(5deg)
        translateZ(170px);

    animation:
        cardFloat3
        8s ease-in-out infinite;
}


@keyframes cardFloat1 {

    50% {
        translate:
            0 -25px;
    }

}


@keyframes cardFloat2 {

    50% {
        translate:
            0 22px;
    }

}


@keyframes cardFloat3 {

    50% {
        translate:
            0 -18px;
    }

}


/* =====================================================
   CARD DETAILS
===================================================== */

.ai3d-card-no {
    color:
        rgba(255,255,255,.55);

    font-size: 9px;

    letter-spacing: 1px;
}


.ai3d-card-icon {
    position: absolute;

    top: 24%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    font-family:
        var(--font_teko);

    font-size: 35px;

    font-weight: 500;

    background:
        linear-gradient(
            135deg,
            #5ee7ff,
            #9a60ff,
            #ff4da5
        );

    -webkit-background-clip:
        text;

    color: transparent;
}


.ai3d-card-bottom {
    position: absolute;

   
 
    bottom: 62px;

    display: flex;

    justify-content:
        space-between;

    color:
        rgba(255,255,255,.75);

    font-size: 13px;

    letter-spacing: 1.5px;
}


/* =====================================================
   GRADIENT CIRCLE
===================================================== */

.ai3d-gradient-circle {
    position: absolute;

    width: 145px;
    height: 145px;

    top: 47%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        conic-gradient(
            #5af3ff,
            #7e50ff,
            #ff45aa,
            #ff9554,
            #5af3ff
        );

    filter:
        blur(.2px);

    animation:
        gradientSpin
        9s linear infinite;
}


@keyframes gradientSpin {

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }

}


/* =====================================================
   BARS
===================================================== */

.ai3d-lines {
    position: absolute;

    left: 25px;
    right: 25px;

    top: 50%;

    transform:
        translateY(-50%);
}


.ai3d-lines span {
    display: block;

    height: 5px;

    margin: 12px 0;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #55e7ff,
            #9855ff,
            #ef4aaf
        );

    animation:
        aiLine
        2s ease-in-out infinite alternate;
}


.ai3d-lines span:nth-child(1) {
    width: 80%;
}

.ai3d-lines span:nth-child(2) {
    width: 45%;
}

.ai3d-lines span:nth-child(3) {
    width: 100%;
}

.ai3d-lines span:nth-child(4) {
    width: 65%;
}

.ai3d-lines span:nth-child(5) {
    width: 35%;
}


@keyframes aiLine {

    to {
        transform:
            scaleX(.55);
    }

}


/* =====================================================
   RING
===================================================== */

.ai3d-ring {
    position: absolute;

    width: 250px;
    height: 250px;

    left: 6%;
    bottom: 5%;

    border:
        1px solid
        rgba(255,255,255,.15);

    border-radius: 50%;

    transform:
        rotateX(65deg)
        rotateZ(15deg);

    animation:
        ringRotate
        12s linear infinite;
}


.ai3d-ring div {
    position: absolute;

    inset: 30px;

    border:
        1px dashed
        rgba(255,255,255,.25);

    border-radius: 50%;
}


@keyframes ringRotate {

    to {
        transform:
            rotateX(65deg)
            rotateZ(375deg);
    }

}


/* =====================================================
   BALLS
===================================================== */

.ai3d-ball {
    position: absolute;

    display: block;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #6fe8ff,
            #9956ff
        );

    box-shadow:
        0 0 30px
        rgba(90,160,255,.4);
}


.ball-1 {
    width: 30px;
    height: 30px;

    top: 15%;
    right: 16%;

    animation:
        ballFloat 3s ease-in-out infinite;
}


.ball-2 {
    width: 14px;
    height: 14px;

    top: 50%;
    left: 5%;

    animation:
        ballFloat 4s ease-in-out infinite reverse;
}


.ball-3 {
    width: 21px;
    height: 21px;

    right: 12%;
    bottom: 10%;

    animation:
        ballFloat 5s ease-in-out infinite;
}


@keyframes ballFloat {

    50% {
        transform:
            translateY(-30px);
    }

}


/* =====================================================
   BOTTOM
===================================================== */

.ai3d-bottom{
    position: relative;
    z-index: 20;

    /* IMPORTANT - container se bahar full viewport */
    width: 100vw;
    max-width: none;

    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    min-height: 95px;
    margin-top: 20px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;

    overflow: hidden;

    /* FULL CONTINUOUS GRADIENT */
    

        linear-gradient(
            105deg,
            #07121b 0%,
            #0b1931 25%,
            #151640 50%,
            #25123d 75%,
            #310d28 100%
        );

    border-top: 1px solid rgba(68, 220, 255, .45);
    border-bottom: 1px solid rgb(255 70 190 / 37%);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.05),
        inset 0 -30px 60px rgba(0,0,0,.18);
}


/* TOP GRADIENT LINE */
.ai3d-bottom::before{
    content: "";
    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 2px;

    background: linear-gradient(
        90deg,
        #30dfff,
        #4789ff,
        #825cff,
        #f13fb5
    );

    box-shadow:
        0 0 10px rgba(48,223,255,.45),
        0 0 20px rgba(130,92,255,.30);

    z-index: 5;
}


/* MOVING LIGHT */
.ai3d-bottom::after{
    content: "";

    position: absolute;

    top: -50%;
    left: -40%;

    width: 40%;
    height: 200%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(65,220,255,.08),
        rgba(110,80,255,.15),
        rgba(240,60,180,.10),
        transparent
    );

    filter: blur(30px);

    animation: aiStripMove 7s linear infinite;

    pointer-events: none;
}

@keyframes aiStripMove{
    from{
        left: -40%;
    }

    to{
        left: 110%;
    }
}


/* ITEMS */
.ai3d-bottom-item{
    position: relative;
    z-index: 2;

    min-height: 125px;
    padding: 26px 30px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: transparent;

    border-right: 1px solid rgba(255,255,255,.08);

    transition: .4s ease;
}

.ai3d-bottom-item:last-child{
    border-right: none;
}


/* HEADING */
.ai3d-bottom-item h4{
    margin: 0 0 10px;

    font-size: 20px;
    line-height: 1.2;

    font-weight: 700;
    letter-spacing: 1.5px;

    color: #fff;
    text-transform: uppercase;
}


/* DESCRIPTION */
.ai3d-bottom-item p{
    margin: 0;

    max-width: 310px;

    font-size: 14px;
    line-height: 1.7;

    font-weight: 400;

    color: #fff;

    letter-spacing: .2px;
}


/* COLOR LINE */
.ai3d-bottom-item::before{
    content: "";

    width: 34px;
    height: 2px;

    margin-bottom: 14px;

    background: linear-gradient(
        90deg,
        #38e8ff,
        #716cff,
        #f044b5
    );

    box-shadow: 0 0 10px rgba(85,140,255,.35);

    transition: width .45s ease;
}


/* HOVER */
.ai3d-bottom-item:hover{
    background: linear-gradient(
        135deg,
        rgba(50,220,255,.07),
        rgba(105,80,255,.08),
        rgba(240,60,180,.07)
    );
}

.ai3d-bottom-item:hover::before{
    width: 70px;
}

.ai3d-bottom-item:hover h4{
    background: linear-gradient(
        90deg,
        #45e7ff,
        #7580ff,
        #f052bd
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* MOBILE */
@media(max-width: 767px){

    .ai3d-bottom{
        grid-template-columns: 1fr;
    }

    .ai3d-bottom-item{
        min-height: auto;
        padding: 25px 20px;

        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .ai3d-bottom-item h4{
        font-size: 14px;
    }

    .ai3d-bottom-item p{
        font-size: 11px;
    }

    .ai3d-bottom-item p br{
        display: none;
    }
}

.ai3d-bottom > span:last-child{
    border-right: 0;
}


/* SMALL COLOR LINE */
.ai3d-bottom > span::before{
    content: "";

    position: absolute;

    bottom: 21px;
    left: 50%;

    transform: translateX(-50%);

    width: 30px;
    height: 1px;

    background: linear-gradient(
        90deg,
        #38e8ff,
        #7867ff,
        #ef46ba
    );

    transition: .4s ease;
}


/* HOVER */
.ai3d-bottom > span:hover{
    color: #fff;

    background:
        linear-gradient(
            135deg,
            rgba(48,220,255,.06),
            rgba(110,75,255,.08),
            rgba(240,60,180,.06)
        ) !important;
}

.ai3d-bottom > span:hover::before{
    width: 60%;
}


/* MOBILE */
@media(max-width:767px){

    .ai3d-bottom{
        grid-template-columns: repeat(2, 1fr);
        min-height: auto;
    }

    .ai3d-bottom > span{
        min-height: 75px;
        padding: 15px 10px;

        font-size: 9px;
        letter-spacing: 1.2px;

        border-bottom: 1px solid rgba(255,255,255,.07);
    }
}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:991px) {

    .ai3d-grid {
        grid-template-columns: 1fr;
    }


    .ai3d-scene {
        height: 600px;

        margin-top: 30px;
    }


    .ai3d-main-title {
        font-size: 100px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:767px) {

    .ai3d-studio {
        padding:
            80px 18px 30px;
    }


    .ai3d-main-title {
        font-size: 70px;

        letter-spacing: -1px;
    }


    .ai3d-subtitle {
        margin-top: 35px;
    }


    .ai3d-subtitle h3 {
        font-size: 31px;
    }


    .ai3d-scene {
        height: 480px;
    }


    .ai3d-orb-main {
        width: 280px;
        height: 280px;
    }


    .ai3d-card {
        width: 145px;
        height: 195px;

        border-radius: 16px;
    }


    .ai3d-card-1 {
        left: 2%;
    }


    .ai3d-card-2 {
        right: 0;
    }


    .ai3d-card-3 {
        left: 27%;
    }


    .ai3d-gradient-circle {
        width: 90px;
        height: 90px;
    }


    .ai3d-bottom {
        overflow-x: auto;

        justify-content:
            flex-start;

        gap: 35px;
    }


    .ai3d-bottom span {
        flex: 0 0 auto;
    }

}


/* =========================================================
   AION WORK GRID — PORTRAIT CARDS
========================================================= */
.aion-work-section {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
    clear: both !important;
}

.aion-work-grid {
    position: relative !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    grid-auto-rows: 450px !important;
    align-items: start !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
}

.aion-work-card {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 450px !important;
    min-height: 450px !important;
    max-height: 450px !important;
    margin: 0 !important;
    overflow: hidden !important;
}

/* Filter se hidden card ko display:block!important override nahi karega. */
.aion-work-card[hidden] {
    display: none !important;
}

/* Work grid ke baad wala section neeche normal flow me hi rahega. */
.aion-work-section + section,
.aion-work-section + div {
    position: relative !important;
    clear: both !important;
}

.aion-work-card .aion-work-image {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 450px !important;
    min-height: 450px !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
    overflow: hidden !important;
    background: #080808 !important;
}

.aion-work-card .aion-work-image > img {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.65s ease !important;
}

/* Mouse hover par Vimeo muted preview isi card ke andar chalega. */
.aion-work-card .aion-hover-preview {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    background: #000 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.25s ease, visibility 0.25s ease !important;
    z-index: 1 !important;
}

.aion-work-card.is-previewing .aion-hover-preview {
    opacity: 1 !important;
    visibility: visible !important;
}

.aion-work-card .aion-work-image {
    cursor: pointer !important;
}

.aion-work-card:hover .aion-work-image > img {
    transform: scale(1.045) !important;
}

.aion-work-card .aion-image-shadow {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 2 !important;
    pointer-events: none !important;
    background: rgba(3, 7, 11, 0.76) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.35s ease, visibility 0.35s ease !important;
}

.aion-work-card:hover .aion-image-shadow,
.aion-work-card:focus-within .aion-image-shadow {
    opacity: 1 !important;
    visibility: visible !important;
}

.aion-work-card .aion-play-button {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
    z-index: 3 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: opacity 0.3s ease, visibility 0.3s ease,
                transform 0.3s ease !important;
}

.aion-work-card:hover .aion-play-button,
.aion-work-card:focus-within .aion-play-button {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translate(-50%, -50%) scale(0.82) !important;
}

/* Full-card hover layer: sirf title exact center me dikhega. */
.aion-work-card .aion-work-caption {
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 28px !important;
    box-sizing: border-box !important;
    text-align: center !important;
    background: transparent !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: scale(0.96) !important;
    transition: opacity 0.35s ease, transform 0.35s ease,
                visibility 0.35s ease !important;
    overflow: visible !important;
    pointer-events: none !important;
    z-index: 4 !important;
}

.aion-work-card:hover .aion-work-caption,
.aion-work-card:focus-within .aion-work-caption {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) !important;
}

.aion-work-card .aion-work-caption > span {
    display: none !important;
}

.aion-work-card .aion-work-caption h3 {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    max-width: 90% !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #fff !important;
    font-size: clamp(20px, 1.5vw, 30px) !important;
    line-height: 1.25 !important;
    text-transform: none !important;
    text-align: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
}


/* =========================================================
   VIDEO POPUP — AIONPRODUCTION.AE SIZE (MAX 900 × 506)
========================================================= */


.aion-video-dialog {
    position: fixed !important;
    inset: 0 !important;
    display: none !important;
    width: 100vw !important;
    height: 100dvh !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    z-index: 2147483000 !important;
}

.aion-video-dialog[open] {
    display: block !important;
}

.aion-video-dialog::backdrop {
    background: rgba(0, 0, 0, 0.90) !important;
}

.aion-video-dialog .aion-dialog-backdrop {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    background: rgba(0, 0, 0, 0.90) !important;
    z-index: 0 !important;
}

.aion-video-dialog .aion-dialog-inner {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: min(calc(100vw - 40px), 900px) !important;
    height: auto !important;
    max-width: 900px !important;
    max-height: calc(100dvh - 56px) !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    background: #000 !important;
    border-radius: 10px !important;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55) !important;
    z-index: 1 !important;
}

.aion-video-dialog .aion-dialog-video {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 10px !important;
    background: #000 !important;
}

.aion-video-dialog .aion-dialog-video iframe {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
}

/* Popup ke top-right par hamesha visible standard close button. */
.aion-video-dialog .aion-dialog-close {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    display: block !important;
    width: 44px !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.82) !important;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.78) !important;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35) !important;
    cursor: pointer !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    z-index: 2147483647 !important;
}

.aion-video-dialog .aion-dialog-close span {
    position: absolute !important;
    top: 20px !important;
    left: 11px !important;
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none !important;
}

.aion-video-dialog .aion-dialog-close span:first-child {
    transform: rotate(45deg) !important;
}

.aion-video-dialog .aion-dialog-close span:last-child {
    transform: rotate(-45deg) !important;
}


@media (max-width: 991px) {
    .aion-work-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-auto-rows: 420px !important;
    }

    .aion-work-card {
        height: 420px !important;
        min-height: 420px !important;
        max-height: 420px !important;
    }

    .aion-work-card .aion-work-image {
        height: 420px !important;
        min-height: 420px !important;
    }
}

@media (max-width: 575px) {
    .aion-work-grid {
        grid-template-columns: 1fr !important;
        grid-auto-rows: 480px !important;
    }

    .aion-work-card {
        height: 480px !important;
        min-height: 480px !important;
        max-height: 480px !important;
    }

    .aion-work-card .aion-work-image {
        height: 480px !important;
        min-height: 480px !important;
    }

    .aion-work-card .aion-work-caption {
        min-height: 0 !important;
        padding: 22px !important;
    }

    .aion-video-dialog .aion-dialog-inner {
        width: calc(100vw - 24px) !important;
        max-height: calc(100dvh - 40px) !important;
    }

    .aion-video-dialog .aion-dialog-close {
        top: 8px !important;
        right: 8px !important;
        width: 40px !important;
        height: 40px !important;
    }

    .aion-video-dialog .aion-dialog-close span {
        top: 18px !important;
        left: 9px !important;
        width: 20px !important;
    }
}


@media (max-width: 575px) {
    .aion-work-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-auto-rows: 300px !important;
    }

    .aion-work-card,
    .aion-work-card .aion-work-image {
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;
    }

    .aion-work-card .aion-work-caption {
        padding: 12px !important;
    }

    .aion-work-card .aion-work-caption h3 {
        font-size: 15px !important;
        line-height: 1.2 !important;
    }
}
	
  .aion-work-section,
.aion-work-grid {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
}

.aion-work-grid {
    align-content: start !important;
}

/* Hover overlay ko transparent rakhein */
.aion-work-card .aion-image-shadow {
    background: rgba(0, 0, 0, 0.35) !important;
}

/* Video ke upar title clearly visible rahe */
.aion-work-card .aion-work-caption h3 {
    color: #fff !important;
    text-shadow:
        0 2px 5px rgba(0, 0, 0, 0.9),
        0 4px 15px rgba(0, 0, 0, 0.75) !important;
}

