:root {
    --bg-dark: #060912;
    --bg-card: rgba(13, 17, 28, 0.7);
    --primary: #00d2ff;
    --secondary: #3a7bd5;
    --text-white: #ffffff;
    --text-gray: #a0aec0;
    --accent-glow: rgba(0, 210, 255, 0.3);
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --section-spacing: 120px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(6, 9, 18, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
#main-header.scrolled {
    padding: 12px 0;
    background: rgba(6, 9, 18, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
nav.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-img {
    height: 70px;
    width: auto;
    display: block;
    transition: var(--transition);
}
.logo-img:hover {
    filter: drop-shadow(0 0 8px var(--primary));
    transform: scale(1.05);
}
.logo-img.footer-logo {
    height: 90px !important;
    width: auto;
    margin-bottom: 20px;
    transition: var(--transition);
}
.logo-img.footer-logo:hover {
    filter: drop-shadow(0 0 15px var(--primary));
    transform: scale(1.05);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}
.nav-links li {
    position: relative;
    padding: 10px 0;
}
.services-dropdown {
    cursor: pointer;
}
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: 12px;
    min-width: 240px;
    padding: 1rem 0;
    display: none;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    list-style: none;
}
.dropdown li {
    width: 100%;
    padding: 0;
}
.dropdown li a {
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
    display: block;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.dropdown li a:hover {
    background: rgba(0, 210, 255, 0.1);
    color: #00d2ff;
    padding-left: 2rem;
}
.nav-links li:hover .dropdown {
    display: flex;
    animation: fadeInDown 0.3s ease forwards;
}
.arrow {
    display: inline-block;
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}
.nav-links li:hover .arrow {
    transform: rotate(180deg);
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}
.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1002;
}
.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        height: 100dvh;
        background: rgba(6, 9, 18, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        padding: 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        border-left: 1px solid rgba(0, 210, 255, 0.2);
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links li {
        padding: 15px 0;
    }
    .nav-links a {
        font-size: 1.1rem;
    }
    .dropdown {
        position: static;
        transform: none;
        background: rgba(0, 210, 255, 0.05);
        border: 1px solid rgba(0, 210, 255, 0.1);
        min-width: 200px;
        padding: 10px 0;
        display: none;
    }
    .dropdown li a {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .dropdown li a:hover {
        padding-left: 25px;
    }
    .services-dropdown:hover .dropdown,
    .services-dropdown.active .dropdown {
        display: flex;
    }
    .services-dropdown .arrow {
        display: inline-block;
        margin-left: 8px;
        transition: transform 0.3s ease;
    }
    .services-dropdown.active .arrow {
        transform: rotate(180deg);
    }
    #active-title-display {
        display: none;
    }
}
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.menu-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}
.hero {
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
#neural-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
    background: radial-gradient(circle at center, #080c14 0%, #030508 100%);
}
@media (max-width: 768px) {
    #neural-canvas {
        opacity: 0.3;
    }
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.sub-headline {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}
.headline {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
    text-align: center;
}
.headline span {
    color: transparent;
    -webkit-text-stroke: 1px var(--primary);
}
.hero-desc {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    text-align: center;
}
.hero-btns {
    text-align: center;
}
.btn {
    padding: 16px 36px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}
.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
}
.btn-primary:hover {
    box-shadow: 0 0 20px var(--primary);
    transform: translateY(-2px);
}
.about {
    padding: var(--section-spacing) 0;
}
.about-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.about-image {
    flex: 0 0 60%;
}
.about-text {
    flex: 0 0 40%;
    text-align: left;
}
.grid {
    display: grid;
    gap: 60px;
}
.section-tag {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    display: block;
    text-align: center;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin: 20px 0;
    text-align: center;
}
.section-header.center {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
}
.center {
    text-align: center;
}
.about-text.center {
    text-align: center;
    grid-column: 1 / -1;
    max-width: 1000px;
    margin: 0 auto;
}
.about-text p {
    color: var(--text-gray);
    font-size: 1.05rem;
    margin-bottom: 30px;
}
.glass-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 40px;
    transition: var(--transition);
}
.float-image {
    width: 100%;
    border-radius: 8px;
}
.clients-section {
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
}
.viewport-3d {
    perspective: 2000px;
    padding: 0;
    width: 100%;
}
.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 80px 0;
}
.carousel-wrapper::before,
.carousel-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}
.carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}
.carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}
.scroll-container {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
    gap: 100px;
    padding: 0 50px;
    align-items: center;
}
.carousel-wrapper:hover .scroll-container {
    animation-play-state: paused;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.logo-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    max-width: 320px;
    width: 100%;
    height: 180px;
    padding: 40px;
    opacity: 0.8;
    transform: perspective(1000px) rotateX(2deg) rotateY(-5deg);
    animation: floatingLogo 6s ease-in-out infinite;
}
.logo-card img {
    max-height: 85px;
    max-width: 80%;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 0 0px transparent);
    z-index: 2;
}
@keyframes floatingLogo {
    0%, 100% {
        transform: perspective(1000px) rotateX(2deg) rotateY(-5deg) translateY(0);
    }
    50% {
        transform: perspective(1000px) rotateX(2deg) rotateY(-5deg) translateY(-10px);
    }
}
.logo-glow-bg {
    position: absolute;
    width: 80%;
    height: 80%;
    background: var(--primary);
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}
.logo-card:hover {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1.15) translateY(-10px) !important;
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary);
    box-shadow: 0 15px 45px rgba(0, 210, 255, 0.4);
    animation-play-state: paused;
}
.logo-card:hover img {
    filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.4));
    transform: scale(1.05);
}
.logo-card:hover .logo-glow-bg {
    opacity: 0.25;
}
.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    filter: blur(120px);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}
.glow-1 {
    top: -20%;
    left: 0;
    opacity: 0.2;
}
.glow-2 {
    bottom: -20%;
    right: 0;
    opacity: 0.2;
}
#testimonials {
    position: relative;
}
#testimonials .grid {
    min-height: auto;
    align-items: stretch !important;
    display: grid;
}
.tilt-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out, background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.4);
    height: auto;
}
.tilt-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.6);
}
.card-inner {
    transform: translateZ(40px);
}
.profile-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.verified-badge {
    color: var(--primary);
    font-size: 0.8rem;
    filter: drop-shadow(0 0 8px var(--accent-glow));
}
.stars-container {
    display: flex;
    gap: 2px;
    color: #fbbf24;
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
    transition: all 0.4s ease;
}
.tilt-card:hover .stars-container {
    color: #ffca28;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.8));
    transform: scale(1.05);
}
.quote-icon {
    position: absolute;
    bottom: 20px;
    right: 24px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.05);
    transition: all 0.6s ease;
}
.tilt-card:hover .quote-icon {
    color: rgba(0, 210, 255, 0.1);
    transform: translateZ(20px) scale(1.1);
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.text-card-name {
    color: #ffffff;
    font-family: var(--font-body);
}
.text-card-role {
    color: var(--text-gray);
    font-weight: 600;
}
.text-card-heading {
    color: #ffffff;
    font-family: var(--font-body);
}
.text-card-body {
    color: var(--text-gray);
    font-weight: 400;
}
.services-list {
    padding: var(--section-spacing) 0;
}
.expertise {
    padding: var(--section-spacing) 0;
    background-color: #020202;
}
.grid-container {
    display: flex;
    height: 80vh;
    height: 80dvh;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 10px;
}
.grid-tile {
    position: relative;
    flex: 2;
    height: 100%;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    cursor: pointer;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    filter: grayscale(1) brightness(0.4);
    -webkit-tap-highlight-color: transparent;
}
@media (hover: none) and (pointer: coarse) {
    .grid-tile:active {
        filter: grayscale(0.5) brightness(0.6);
    }
    .grid-tile.active:active {
        filter: grayscale(0) brightness(1);
    }
}
.grid-tile.active {
    flex: 6;
    filter: grayscale(0) brightness(1);
    z-index: 10;
}
.tile-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.tile-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s ease;
}
.grid-tile.active .tile-bg img {
    transform: scale(1.05);
}
.tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.9) 100%);
}
.content-wrap {
    position: absolute;
    inset: 0;
    padding: clamp(1.5rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.tile-details {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(1.5rem);
    opacity: 0;
    pointer-events: none;
    width: 100%;
    max-width: 480px;
}
.grid-tile.active .tile-details {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.tile-details h3 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.1;
    letter-spacing: -0.01em;
    width: 100%;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    color: white;
}
.tile-details p {
    color: #a1a1aa;
    font-size: clamp(0.85rem, 1.1vw, 1rem);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.icon-box {
    transition: all 0.5s ease;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    opacity: 0.8;
}
.icon-box i {
    font-size: 1.25rem;
}
.grid-tile.active .icon-box {
    background-color: white;
    color: black;
    transform: scale(1.1);
    opacity: 1;
}
.collapsed-label {
    position: absolute;
    inset: 0;
    top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.collapsed-label div {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    transform: rotate(90deg);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}
.node-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    margin-top: auto;
    color: rgba(255, 255, 255, 0.4);
}
.grid-tile.active .collapsed-label {
    opacity: 0;
}
.accent-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0;
    transition: width 0.8s ease;
}
.grid-tile.active .accent-bar {
    width: 100%;
}
@media (max-width: 1024px) {
    .grid-container {
        flex-direction: column;
        height: auto;
        padding: 5px;
    }
    .grid-tile {
        height: 14vh;
        height: 14dvh;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .grid-tile:hover,
    .grid-tile.active {
        height: 50vh;
        height: 50dvh;
        flex: none;
        filter: grayscale(0) brightness(1);
    }
    .collapsed-label {
        top: 0;
        justify-content: flex-end;
        padding-right: 2rem;
    }
    .grid-tile:hover .tile-details,
    .grid-tile.active .tile-details {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .grid-tile:hover .collapsed-label,
    .grid-tile.active .collapsed-label {
        opacity: 0;
    }
    .collapsed-label div {
        transform: rotate(0);
        font-size: 11px;
    }
    .node-label {
        writing-mode: horizontal-tb;
        transform: rotate(0);
        margin-top: 0;
    }
}
.neural-arena {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    padding: var(--section-spacing) 0;
    overflow: hidden;
    background: rgba(6, 9, 18, 0.3);
}
.arena-wrapper {
    position: relative;
    width: 100%;
    min-height: 80vh;
    min-height: 80dvh;
    perspective: 2000px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.orbit-ring {
    position: absolute;
    width: 75vh;
    width: 75dvh;
    height: 75vh;
    height: 75dvh;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.nodes-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}
.member-node {
    position: absolute;
    width: 180px;
    height: 180px;
    cursor: pointer;
    z-index: 10;
    will-change: transform;
}
.node-img-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: #111;
}
.node-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.member-node:hover .node-img-wrapper,
.member-node.active .node-img-wrapper {
    border-color: var(--primary);
    transform: scale(1.15);
    box-shadow: 0 0 40px rgba(0, 210, 255, 0.3);
}
.center-display {
    text-align: center;
    z-index: 5;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.display-name-bg {
    font-size: 10vw;
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: -0.05em;
    opacity: 0.03;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    white-space: nowrap;
    pointer-events: none;
    font-family: var(--font-heading);
    color: var(--text-white);
}
.display-content {
    position: relative;
    max-width: 450px;
    padding: 20px;
}
.role-badge {
    font-size: 0.65rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.5rem;
    display: block;
}
.display-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}
.display-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}
.arena-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    letter-spacing: 0.6em;
    text-transform: uppercase;
    opacity: 0.3;
    color: var(--text-white);
}
.expertise-container,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.expertise-card:hover,
.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}
.service-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 40px;
    gap: 40px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: var(--transition);
}
.service-icon {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(58, 123, 213, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 210, 255, 0.2);
}
.icon-canvas {
    width: 160px;
    height: 160px;
    border-radius: 50%;
}
.service-content {
    flex: 1;
    text-align: left;
}
.service-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 12px;
    font-weight: 700;
}
.service-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}
@media (max-width: 768px) {
    #testimonials {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        min-height: auto !important;
    }
    #testimonials .section-header {
        margin-bottom: 20px !important;
    }
    #testimonials .grid {
        gap: 6px !important;
        margin-top: 0 !important;
    }
    .tilt-card {
        border-radius: 12px !important;
        padding: 10px !important;
        min-width: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    .card-inner {
        transform: none !important;
    }
    .profile-photo {
        width: 30px !important;
        height: 30px !important;
        margin-right: 6px !important;
    }
    .ml-4.text-left {
        margin-left: 0px !important;
    }
    .text-card-name {
        font-size: 10px !important;
        letter-spacing: 0 !important;
        word-break: break-all !important;
    }
    .text-card-role {
        font-size: 5px !important;
        margin-top: 2px !important;
        white-space: normal !important;
    }
    .verified-badge {
        font-size: 8px !important;
    }
    .stars-container {
        font-size: 6px !important;
        margin-bottom: 5px !important;
        gap: 1px !important;
    }
    .text-card-heading {
        font-size: 9px !important;
        margin-bottom: 5px !important;
        line-height: 1.2 !important;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .text-card-body {
        font-size: 9px !important;
        line-height: 1.3 !important;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        line-clamp: 6;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .quote-icon {
        font-size: 1rem !important;
        bottom: 5px !important;
        right: 8px !important;
        opacity: 0.2 !important;
    }
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
.service-card:hover .service-icon {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.3);
}
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    .service-content {
        text-align: center;
    }
    .service-icon {
        width: 100px;
        height: 100px;
    }
    .icon-canvas {
        width: 100px;
        height: 100px;
    }
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}
.team-card {
    padding: 0 !important;
    overflow: hidden;
}
.team-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.team-info {
    padding: 20px;
}
.team-role {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}
.team-bio {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 10px;
}
.contact {
    padding: var(--section-spacing) 0;
}
.form-group input {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    margin-bottom: 20px;
    border-radius: 4px;
}
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    margin-bottom: 20px;
    border-radius: 4px;
    resize: vertical;
    font-family: inherit;
}
.contact-info.center {
    text-align: center;
    grid-column: 1 / -1;
    margin-bottom: 40px;
}
.contact-wrapper {
    display: flex !important;
    flex-direction: column;
    align-items: center;
}
.contact-form {
    width: 100%;
    max-width: 600px;
}
#main-footer {
    position: relative;
    padding: 100px 0 40px;
    background: linear-gradient(180deg, #03050a 0%, #020408 100%);
    overflow: hidden;
}
.footer-top-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 20%, var(--secondary) 50%, var(--primary) 80%, transparent 100%);
    opacity: 0.6;
    animation: borderGlow 3s ease-in-out infinite;
}
@keyframes borderGlow {
    0%, 100% {
        opacity: 0.4;
        box-shadow: 0 0 10px var(--primary);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 20px var(--primary), 0 0 40px var(--secondary);
    }
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: start;
}
.footer-brand {
    padding-right: 20px;
}
.footer-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}
.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}
.social-icon i {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}
.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.3);
}
.social-icon:hover::before {
    opacity: 1;
}
.social-icon:hover i {
    transform: scale(1.2);
}
.social-icon.linkedin:hover {
    box-shadow: 0 10px 30px rgba(0, 119, 181, 0.4);
}
.social-icon.instagram:hover {
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.4);
}
.social-icon.facebook:hover {
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4);
}
.social-icon.twitter:hover {
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.4);
}
.footer-links h4,
.footer-services h4,
.footer-contact h4,
.newsletter-section h4 {
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
}
.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after,
.newsletter-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.4s ease;
}
.footer-links:hover h4::after,
.footer-services:hover h4::after,
.footer-contact:hover h4::after,
.newsletter-section:hover h4::after {
    width: 60px;
}
.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
}
.footer-links li,
.footer-services li {
    margin-bottom: 12px;
}
.footer-links a,
.footer-services a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}
.link-arrow {
    font-size: 0.8rem;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}
.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary);
    padding-left: 5px;
}
.footer-links a:hover .link-arrow,
.footer-services a:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}
.footer-contact-newsletter {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-item {
    margin: 0;
}
.contact-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.6;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 8px;
    margin: -8px;
}
.contact-link i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.contact-link span {
    transition: color 0.3s ease;
}
.contact-link:hover {
    background: rgba(0, 210, 255, 0.05);
    color: var(--text-white);
}
.contact-link:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px var(--primary));
}
.newsletter-section {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.newsletter-desc {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.6;
}
.newsletter-form {
    width: 100%;
}
.newsletter-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px;
    transition: all 0.4s ease;
}
.newsletter-input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}
.newsletter-icon {
    color: var(--primary);
    margin-left: 15px;
    font-size: 0.9rem;
}
.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-white);
    padding: 12px 15px;
    font-size: 0.9rem;
    outline: none;
}
.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.newsletter-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: var(--bg-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.newsletter-btn:hover {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 5px 20px rgba(0, 210, 255, 0.4);
}
.newsletter-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}
.footer-map-section {
    margin-bottom: 50px;
}
.footer-map {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}
.footer-map:hover {
    border-color: var(--primary);
    box-shadow: 0 25px 80px rgba(0, 210, 255, 0.3);
}
.footer-map iframe {
    display: block;
    filter: grayscale(30%) contrast(1.1) brightness(0.9);
    transition: all 0.4s ease;
}
.footer-map:hover iframe {
    filter: grayscale(0%) contrast(1.2) brightness(1);
}
.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
}
.map-location-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(6, 9, 18, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(0, 210, 255, 0.3);
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.map-location-badge i {
    color: var(--primary);
    font-size: 1rem;
}
.map-location-badge:hover {
    background: rgba(0, 210, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 210, 255, 0.3);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}
.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}
.footer-legal {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-legal a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
}
.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}
.footer-legal a:hover {
    color: var(--primary);
}
.footer-legal a:hover::after {
    width: 100%;
}
.footer-legal .separator {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
}
.copyright {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}
.made-with {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.made-with i {
    color: #e74c3c;
    animation: heartbeat 1.5s ease-in-out infinite;
}
@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(0, 210, 255, 0.3);
    z-index: 999;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.5);
}
.back-to-top i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}
.back-to-top:hover i {
    transform: translateY(-3px);
}
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
    }
    .footer-contact-newsletter {
        grid-column: 1 / -1;
        flex-direction: row;
        gap: 50px;
    }
    .newsletter-section {
        padding-top: 0;
        border-top: none;
        flex: 1;
    }
    .footer-contact {
        flex: 1;
    }
}
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }
    .social-links {
        justify-content: center;
    }
    .footer-contact-newsletter {
        grid-column: 1 / -1;
        flex-direction: column;
        gap: 30px;
    }
    .newsletter-section {
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .footer-map-section {
        margin-bottom: 40px;
    }
}
@media (max-width: 768px) {
    #main-footer {
        padding: 60px 0 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    .footer-brand,
    .footer-links,
    .footer-services,
    .footer-contact-newsletter {
        grid-column: 1;
    }
    .footer-links h4,
    .footer-services h4,
    .footer-contact h4,
    .newsletter-section h4 {
        text-align: center;
    }
    .footer-links h4::after,
    .footer-services h4::after,
    .footer-contact h4::after,
    .newsletter-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-links ul,
    .footer-services ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .contact-details {
        align-items: center;
    }
    .contact-link {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
        gap: 10px;
    }
    .contact-link i {
        margin-top: 0 !important;
        flex-shrink: 0;
    }
    .newsletter-section {
        text-align: center;
    }
    .footer-map iframe {
        height: 200px;
    }
    .map-overlay {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    .footer-legal .separator {
        display: none;
    }
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}
@media (max-width: 480px) {
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .footer-map iframe {
        height: 180px;
    }
    .map-location-badge {
        padding: 10px 15px;
        font-size: 0.75rem;
    }
    .copyright {
        font-size: 0.8rem;
    }
    .made-with {
        font-size: 0.75rem;
    }
}
@media (max-width: 768px) {
    .container {
        padding: 0 20px !important;
        width: 100%;
        overflow-x: hidden;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    #main-header {
        padding: 10px 0;
    }
    #main-header.scrolled {
        padding: 8px 0;
    }
    .logo-img {
        height: 50px !important;
    }
    .mobile-menu-toggle {
        display: flex !important;
        right: 20px;
    }
    .hero {
        min-height: auto;
        padding: 120px 20px 60px;
    }
    .hero-content {
        padding: 0;
    }
    .headline {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    .sub-headline {
        font-size: 0.75rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 15px;
    }
    .hero-desc {
        font-size: 0.95rem !important;
        padding: 0 5px;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    .hero-btns {
        margin-top: 10px;
    }
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    .section-title {
        font-size: 1.75rem !important;
        margin: 15px 0;
    }
    .section-tag {
        font-size: 0.7rem !important;
    }
    .about {
        padding: 60px 0;
    }
    .about > .container {
        flex-direction: column !important;
        gap: 25px !important;
        display: flex !important;
    }
    .about-image,
    .about-text {
        flex: 1 !important;
        width: 100% !important;
    }
    .about-text {
        text-align: left !important;
    }
    .about-text p {
        font-size: 0.95rem !important;
    }
    .float-image {
        width: 100%;
        max-width: 100%;
    }
    .glass-card {
        padding: 20px;
    }
    .clients-section {
        padding: 40px 0;
    }
    .carousel-wrapper {
        padding: 40px 0 !important;
    }
    .logo-card {
        min-width: 130px;
        height: 80px;
        padding: 10px;
    }
    .logo-card img {
        max-height: 40px;
        max-width: 100%;
    }
    .scroll-container {
        gap: 30px;
        padding: 0 15px;
    }
    #testimonials {
        padding: 60px 20px;
    }
    #testimonials .section-header.center {
        margin-bottom: 30px;
    }
    #testimonials .grid {
        grid-template-columns: 1fr !important;
    }
    #testimonials .sticky-sidebar-container {
        display: none;
    }
    #testimonials > div > div > div:first-child {
        display: none;
    }
    #testimonials > div > div > div:last-child {
        grid-column: 1;
        width: 100%;
    }
    .tilt-card {
        padding: 20px !important;
    }
    .profile-photo {
        width: 45px;
        height: 45px;
    }
    .text-card-heading {
        font-size: 1rem !important;
    }
    .text-card-body {
        font-size: 0.85rem !important;
    }
    .services-list {
        padding: 60px 0;
    }
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    .service-card {
        padding: 20px;
    }
    .service-content h3 {
        font-size: 1.25rem;
    }
    .service-content p {
        font-size: 0.9rem;
    }
    .grid-container {
        flex-direction: column;
        height: auto;
    }
    .grid-tile {
        flex: 1;
        min-height: 150px;
        filter: grayscale(1) brightness(0.6);
        transition: all 0.5s ease;
    }
    .grid-tile:hover,
    .grid-tile.active {
        flex: none !important;
        height: 50vh !important;
        height: 50dvh !important;
        filter: grayscale(0) brightness(1) !important;
    }
    .grid-tile:hover .tile-details,
    .grid-tile.active .tile-details {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .grid-tile:hover .collapsed-label,
    .grid-tile.active .collapsed-label {
        opacity: 0;
    }
    #main-footer {
        padding: 40px 0 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    .footer-logo {
        height: 50px !important;
    }
    .footer-desc {
        font-size: 0.9rem;
    }
    .footer-links h4,
    .footer-services h4,
    .footer-contact h4,
    .newsletter-section h4 {
        text-align: center;
    }
    .footer-links ul,
    .footer-services ul {
        align-items: center;
    }
    .contact-details {
        align-items: center;
    }
    .contact-link {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
        gap: 10px;
    }
    .newsletter-section {
        text-align: center;
    }
    .footer-map iframe {
        height: 180px;
    }
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .contact-section {
        padding: 60px 0;
    }
    .contact-form {
        padding: 20px;
    }
    .form-group {
        margin-bottom: 15px;
    }
    .grid {
        grid-template-columns: 1fr !important;
    }
    .service-title {
        font-size: 2rem !important;
    }
    .service-hero {
        min-height: auto;
        padding: 100px 20px 50px;
    }
    .page-nav ul {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        padding: 0 10px;
    }
    .page-nav a {
        font-size: 0.7rem;
    }
    .form-grid {
        grid-template-columns: 1fr !important;
    }
    .arena-wrapper {
        min-height: 50vh;
        min-height: 50dvh;
    }
    .orbit-ring {
        width: 40vh;
        width: 40dvh;
        height: 40vh;
        height: 40dvh;
    }
    .member-node {
        width: 100px;
        height: 100px;
    }
    .display-title {
        font-size: 1.3rem !important;
        margin-bottom: 0.4rem !important;
        line-height: 1.1 !important;
    }
    .display-desc {
        font-size: 0.7rem !important;
        max-width: 170px !important;
        margin: 0 auto !important;
        line-height: 1.3 !important;
        opacity: 0.8 !important;
    }
    .display-content {
        max-width: 175px !important;
        padding: 0 !important;
    }
    .role-badge {
        margin-bottom: 0.5rem !important;
        font-size: 0.55rem !important;
    }
    .neural-arena {
        padding: 40px 0 !important;
    }
    .arena-wrapper {
        min-height: 80vh !important;
        min-height: 80dvh !important;
        margin-top: 20px !important;
    }
    .display-name-bg {
        font-size: 14vw !important;
        opacity: 0.015 !important;
    }
    .social-icon {
        width: 40px;
        height: 40px;
    }
    .map-location-badge {
        padding: 8px 12px;
        font-size: 0.7rem;
    }
    .copyright {
        font-size: 0.75rem;
    }
    .made-with {
        font-size: 0.7rem;
    }
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }
}
@media (max-width: 480px) {
    .headline {
        font-size: 1.75rem !important;
    }
    .section-title {
        font-size: 1.3rem !important;
        margin-bottom: 5px !important;
        padding: 0 10px !important;
    }
    .hero {
        padding: 100px 15px 50px;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    .logo-img {
        height: 40px !important;
    }
    .logo-card {
        min-width: 140px;
        height: 90px;
        padding: 12px;
    }
    .service-title {
        font-size: 1.75rem !important;
    }
    .member-node {
        width: 80px !important;
        height: 80px !important;
    }
    .orbit-ring {
        width: 35vh !important;
        width: 35dvh !important;
        height: 35vh !important;
        height: 35dvh !important;
    }
}
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
}
:root {
    --service-primary: #00d2ff;
}
.service-hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}
.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    z-index: 1;
}
.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}
.service-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--service-primary);
    border-radius: 30px;
    color: var(--service-primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}
.service-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, var(--service-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 210, 255, 0.3);
}
.page-nav {
    position: sticky;
    top: 0;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
    padding: 15px 0;
    transition: all 0.3s ease;
}
.page-nav ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.page-nav a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}
.page-nav a.active,
.page-nav a:hover {
    color: var(--service-primary);
}
.page-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--service-primary);
    transition: width 0.3s;
}
.page-nav a.active::after {
    width: 100%;
}
.service-section {
    padding: 100px 0;
    position: relative;
}
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.section-grid .visual-block {
    order: 2;
}
.section-grid .content-block {
    order: 1;
}
.section-grid.reverse .visual-block {
    order: 1;
}
.section-grid.reverse .content-block {
    order: 2;
}
.content-block h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}
.content-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
}
.visual-block {
    position: relative;
}
.visual-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
}
.visual-card:hover {
    transform: translateY(-10px);
    border-color: var(--service-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}
.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
}
.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--service-primary);
    transform: translateY(-5px);
}
.feature-icon {
    font-size: 2.5rem;
    color: var(--service-primary);
    margin-bottom: 20px;
}
.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}
.feature-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}
.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    position: relative;
    flex-wrap: wrap;
    gap: 20px;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}
.step-item {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    min-width: 150px;
}
.step-number {
    width: 80px;
    height: 80px;
    background: #000;
    border: 2px solid var(--service-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
}
.step-item h4 {
    color: #fff;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .service-title {
        font-size: 2.5rem;
    }
    .section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .section-grid .visual-block,
    .section-grid.reverse .visual-block {
        order: -1;
    }
    .section-grid .content-block,
    .section-grid.reverse .content-block {
        order: 1;
    }
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }
    .process-steps::before {
        width: 2px;
        height: 100%;
        left: 40px;
        top: 0;
    }
    .step-item {
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }
    .step-number {
        margin: 0;
        flex-shrink: 0;
    }
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.blog-card {
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 210, 255, 0.3);
}
.blog-card-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(58, 123, 213, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.blog-card-icon {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.8;
    transition: all 0.4s ease;
}
.blog-card:hover .blog-card-icon {
    transform: scale(1.2);
    opacity: 1;
}
.blog-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 210, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}
.blog-card:hover .blog-card-overlay {
    opacity: 1;
}
.blog-card-overlay i {
    font-size: 2rem;
    color: white;
    transform: translateX(-20px);
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-overlay i {
    transform: translateX(0);
}
.blog-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.blog-category {
    background: rgba(0, 210, 255, 0.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.blog-date {
    color: var(--text-gray);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}
.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}
.blog-card:hover .blog-card-title {
    color: var(--primary);
}
.blog-card-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}
.blog-card-footer {
    margin-top: auto;
}
.read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.blog-card:hover .read-more {
    gap: 15px;
}
.read-more i {
    transition: transform 0.3s ease;
}
.blog-card:hover .read-more i {
    transform: translateX(5px);
}
.blog-card.coming-soon {
    opacity: 0.6;
    cursor: default;
}
.blog-card.coming-soon:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}
.coming-soon-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.blog-card.coming-soon .blog-card-icon {
    opacity: 0.3;
}
.blog-card.coming-soon:hover .blog-card-icon {
    transform: none;
    opacity: 0.3;
}
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .blog-card-image {
        height: 150px;
    }
    .blog-card-icon {
        font-size: 3rem;
    }
    .blog-card-content {
        padding: 20px;
    }
    .blog-card-title {
        font-size: 1.2rem;
    }
    .blog-card-desc {
        font-size: 0.9rem;
    }
}
@media (max-width: 480px) {
    .blog-card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
#blog-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
    background: radial-gradient(circle at center, #080c14 0%, #030508 100%);
}