/* --------------------------------------------------
   GLOBAL SITE THEME
-------------------------------------------------- */
body {
    background: #000000;
    /* Pure black site background */
    color: #ffffff;
    /* Default text */
}

html {
    scroll-behavior: smooth;
}

/* FIX GREY  */
.navbar-link,
a.navbar-item {
    background-color: unset !important;
}




/* --------------------------------------------------
   NAVBAR BASE
   Transparent at top → smooth transition
-------------------------------------------------- */
.navbar {
    background: transparent;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.navbar.is-fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}



.navbar-buttons {
    margin-top: 12px;
    margin-left: 30px;
}


/* --------------------------------------------------
   NAVBAR SCROLLED — GLASS BLUR
-------------------------------------------------- */
.navbar.is-scrolled {
    background: rgba(11, 13, 14, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
}


/* --------------------------------------------------
   NAVBAR TEXT + BASE SPACING
-------------------------------------------------- */
.navbar-item,
.navbar-link {
    color: #ffffff;
    position: relative;
}

/* Desktop spacing */
.navbar-menu .navbar-end {
    padding-right: 40px;
    padding-left: 40px;
}

/* Logo margin desktop */
.navbar-brand {
    padding-left: 40px;
    padding-right: 20px;
}

.navbar-burger span {
    background-color: white;
    width: 30px;
}

/* Mobile spacing */
@media screen and (max-width: 768px) {
    .navbar-menu .navbar-end {
        padding-left: 16px;
        /* padding-right: 16px; */
    }

    .navbar-brand {
        padding-left: 16px;
        /* padding-right: 8px; */
    }

    .navbar-item {
        text-align: center;
    }

    .navbar-buttons {
        margin-left: unset;
    }
}


/* --------------------------------------------------
   EMERALD UNDERLINE (DESKTOP ONLY)
-------------------------------------------------- */
@media screen and (min-width: 769px) {

    .navbar-item:hover,
    .navbar-link:hover {
        color: #ffffff;
        background: transparent;
    }

    .navbar-item::after {
        content: "";
        position: absolute;
        bottom: 6px;
        left: 50%;
        width: 0;
        height: 2px;
        background: #146A5C;
        /* Emerald */
        transition: all .25s ease;
        transform: translateX(-50%);
    }

    .navbar-item:hover::after {
        width: 60%;
    }

    .navbar-item.is-active::after {
        background: #ffffff;
        width: 60%;
    }
}

/* Active emerald text */
.navbar-item.is-active {
    color: white !important;
    background-color: #146A5C !important;
}


/* --------------------------------------------------
   LOGO SIZING
-------------------------------------------------- */
.navbar-item img {
    height: 48px;
    max-height: 48px;
}


/* --------------------------------------------------
   CTA BUTTONS
-------------------------------------------------- */
.cta-primary {
    border-color: #146A5C;
    color: #ffffff;
}

.cta-primary:hover {
    background: #146A5C;
    color: #ffffff;
}


/* --------------------------------------------------
   MOBILE MENU — CENTER LOGO
-------------------------------------------------- */
@media screen and (max-width: 1023px) {

    .navbar-brand {
        width: 100%;
        justify-content: center;
        height: 70px;
    }

    /* Burger stays right */
    .navbar-burger {
        position: absolute;
        right: 33px;
    }

    /* Mobile logo size */
    .navbar-item img {
        height: 48px !important;
        max-height: 48px !important;
    }
}


/* --------------------------------------------------
   MOBILE MENU UI
-------------------------------------------------- */
@media screen and (max-width: 1023px) {

    /* Dark blurred dropdown */
    .navbar-menu {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    /* BIG menu items */
    .navbar-item {
        font-size: 20px;
        padding: 18px 28px;
        min-height: 58px;
        line-height: 1.3em;
        /* border-bottom: 1px solid #1b1f21; */
    }

    /* Remove underline animation on mobile */
    .navbar-item::after {
        display: none;
    }

    /* Active clean emerald */
    .navbar-item.is-active {
        color: #14c79a !important;
        background: transparent !important;
    }

    /* Buttons larger */
    .buttons .button {
        width: 100%;
        font-size: 18px;
        padding: 16px 18px;
        height: 52px;
    }
}


/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
.jinn-footer {
    background: #000;
    padding: 90px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Logo + description */
.footer-logo {
    width: 170px;
    margin-bottom: 14px;
}

.footer-desc {
    color: #bfc8c9;
    font-size: .95rem;
    max-width: 260px;
}

/* Headings */
.footer-heading {
    color: white;
    margin-bottom: 14px;
    font-size: 1.05rem;
}

/* Menu */
.footer-menu {
    list-style: none;
    padding-left: 0;
}

.footer-menu li {
    margin-bottom: 6px;
}

.footer-menu a {
    color: #a9b3b5;
    font-size: .95rem;
    transition: .25s ease;
}

.footer-menu a:hover {
    color: #15C79A;
    padding-left: 4px;
    text-shadow: 0 0 8px rgba(21, 199, 154, 0.35);
}

/* Contact lines */
.footer-line {
    color: #bfc8c9;
    font-size: .95rem;
    margin-bottom: 12px;

}

.footer-line strong {
    color: white;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    color: #8f9a9c;
    font-size: .9rem;
}

.footer-domain {
    color: #6EA8FF;
}

/* Mobile */
@media screen and (max-width: 900px) {
    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .footer-desc {
        max-width: 100%;
    }
}


.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-social a {
    display: inline-flex;
    opacity: 0.85;
    transition: .25s ease;
}

.footer-social a:hover {
    opacity: 1;
    transform: translateY(-2px);
}


.social-icon i {
  font-size: 22px;
  color: #15C79A;
  opacity: .9;
  transition: .25s ease;
}

.social-icon:hover i {
  color: #3BE3B8;
  opacity: 1;
  transform: translateY(-3px) scale(1.08);
  filter: drop-shadow(0 0 6px rgba(21,199,154,.4));
}





.text-align-right {
    text-align: right;
}


@media screen and (max-width: 1023px) {

    .mobile-padding {
        margin-left: 25px;
        margin-right: 25px;
    }

    .studio-section {
        padding: 0 !important;
    }

    .capabilities-section,
    .team-section,
    .projects-section,
    .press-section {
        padding: 0 !important;
        padding-top: 100px !important;
    }

    .footer-menu,
    .footer-heading,
    .footer-comp-info,
    .footer-line {
        text-align: center;
    }

    .footer-bottom {
        padding-bottom: 50px;
        text-align: center;
    }

    .footer-social {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
    }

    .careers-banner {
        margin-top: 0 !important;
    }

}

.mylink {
    color:#14c79a;
}


.mail {
    color: #15C79A;
    transition: .25s ease;
}

.mail:hover {
    color: #3BE3B8;
    text-shadow: 0 0 6px rgba(21, 199, 154, 0.35);
}

.mt-10 {
    margin-top: 10px !important;
}


/* SEARCH BUTTON */

    /* Search Button */
    .header-search-btn {
        background: transparent;
        border: none;
        margin-right: 12px;
        margin-left: 12px;
        cursor: pointer;
        display: flex;
        align-items: center;
        transition: .25s ease;
    }

    .header-search-btn img {
        width: 22px;
        opacity: .9;
        transition: .25s ease;
        filter: invert(1) brightness(2);
    }

    .header-search-btn:hover img {
        opacity: 1;
        transform: translateY(-2px) scale(1.05);
        filter: invert(1) brightness(3) drop-shadow(0 0 6px rgba(255,255,255,.4));
    }


    /* Overlay */
    .search-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .75);
        backdrop-filter: blur(6px);
        display: none;
        justify-content: center;
        align-items: flex-start;
        padding-top: 120px;
        z-index: 1000;
    }

    /* Box */
    .search-box {
        width: 80%;
        max-width: 700px;
        background: #0e121a;
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 14px;
        padding: 18px 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, .8);
    }

    /* Input & Button Row */
    .search-box form {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .search-box input {
        flex: 1;
        background: transparent;
        border: none;
        outline: none;
        font-size: 1.1rem;
        color: white;
    }

    .search-box input::placeholder {
        color: #7f8a90;
    }

    /* Submit Button */
    .search-box button {
        background: #15C79A;
        border: none;
        padding: 8px 14px;
        border-radius: 8px;
        cursor: pointer;
        transition: .25s ease;
    }

    .search-box button img {
        width: 18px;
    }

    .search-box button:hover {
        background: #3BE3B8;
    }