/* Local Altone Font Face Declarations */
@font-face {
    font-family: 'Altone';
    src: url('assets/fonts/Altone-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Altone';
    src: url('assets/fonts/Altone-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Altone';
    src: url('assets/fonts/Altone-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Altone';
    src: url('assets/fonts/Altone-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Altone';
    src: url('assets/fonts/Altone-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Altone';
    src: url('assets/fonts/Altone-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Altone', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(180deg, #191038 0%, #000000 100%);
    color: white;
    overflow-x: hidden;
    line-height: 1.1;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.loading-overlay {
    position: fixed;
    inset: 0;
    background: #0a0b1a;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease, visibility 1s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    background-image: linear-gradient(rgb(186, 66, 255) 35%, rgb(0, 225, 255));
    width: 100px;
    height: 100px;
    animation: spinning82341 1.7s linear infinite;
    text-align: center;
    border-radius: 50px;
    filter: blur(1px);
    box-shadow: 0px -5px 20px 0px rgb(186, 66, 255), 0px 5px 20px 0px rgb(0, 225, 255);
}

.spinner1 {
    background-color: rgb(36, 36, 36);
    width: 100px;
    height: 100px;
    border-radius: 50px;
    filter: blur(10px);
}

@keyframes spinning82341 {
    to { transform: rotate(360deg); }
}

.fluid-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
}

.cursor-trail {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.8) 0%, rgba(124, 58, 237, 0.4) 50%, transparent 100%);
    transform: translate(-50%, -50%);
    animation: fade-out 2s ease-out forwards;
}

.cursor-main {
    position: fixed;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #00d4ff 0%, #7c3aed 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease;
    opacity: 0;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6), 0 0 40px rgba(0, 212, 255, 0.4), 0 0 60px rgba(0, 212, 255, 0.2);
}

.cursor-main.active {
    opacity: 1;
}

.cursor-glow {
    position: fixed;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, rgba(124, 58, 237, 0.1) 50%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    filter: blur(1px);
}

.cursor-glow.active {
    opacity: 1;
}

.cursor-ripple {
    position: absolute;
    border: 2px solid rgba(0, 212, 255, 0.6);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: ripple-expand 1.5s ease-out forwards;
}

@keyframes fade-out {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0);
    }
    10% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

@keyframes ripple-expand {
    0% {
        width: 10px;
        height: 10px;
        opacity: 1;
    }
    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

.interactive-hover .cursor-main {
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #ff6b6b 0%, #ee5a24 100%);
    box-shadow: 0 0 25px rgba(255, 107, 107, 0.8), 0 0 50px rgba(255, 107, 107, 0.4);
}

.interactive-hover .cursor-glow {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.4) 0%, rgba(238, 90, 36, 0.2) 50%, transparent 100%);
}

.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

.particle {
    position: absolute;
    background: linear-gradient(45deg, #00d4ff, #7c3aed);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-container {
    background: linear-gradient(180deg, #000000 0%, #191038 100%);
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    margin: 40px;
}

.header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Altone', sans-serif;
    z-index: 1001;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
    white-space: nowrap;
    font-family: 'Altone', sans-serif;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    width: 30px;
    height: 24px;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #7c3aed);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0a0b1a 0%, #191038 50%, #000000 100%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(20px);
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.mobile-menu-link {
    color: white;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Altone', sans-serif;
    position: relative;
    opacity: 0;
    transform: translateX(50px) rotateY(45deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    perspective: 1000px;
}

.mobile-menu.active .mobile-menu-link {
    opacity: 1;
    transform: translateX(0) rotateY(0);
}

.mobile-menu.active .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-menu-link:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active .mobile-menu-link:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu.active .mobile-menu-link:nth-child(6) { transition-delay: 0.6s; }

.mobile-menu-link::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #7c3aed);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.mobile-menu-link:hover::before {
    transform: translateY(-50%) scaleX(1);
}

.mobile-menu-link:hover {
    background: linear-gradient(90deg, #00d4ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(10px);
}

.hero {
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    right: 5%;
    bottom: 20%;
    width: 120px;
    height: 120px;
    border: 3px solid #22d3ee;
    border-radius: 50%;
    opacity: 0.3;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #112FD2 0%, #0081FF 50%, #00C9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(17, 47, 210, 0.3), 4px 4px 8px rgba(17, 47, 210, 0.2);
    filter: drop-shadow(0 4px 8px rgba(17, 47, 210, 0.3));
    font-family: 'Altone', sans-serif;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease forwards 0.7s;
    opacity: 0;
    transform: translateY(20px);
    font-weight: 300;
    font-family: 'Altone', sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s ease forwards 0.9s;
    opacity: 0;
    transform: translateY(20px);
}

.hero-btn-primary {
    background: linear-gradient(to right, #112FD2, #0081FF);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Altone', sans-serif;
}

.hero-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(17, 47, 210, 0.4);
}

.hero-btn-secondary {
    background: transparent;
    color: #0081FF;
    padding: 0.75rem;
    border: 2px solid #0081FF;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: #0081FF;
    color: white;
    transform: scale(1.05);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pioneering-section {
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pioneering-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
    font-family: 'Altone', sans-serif;
}

.pioneering-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    font-weight: 300;
    font-family: 'Altone', sans-serif;
}

.pioneering-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-explore {
    background: linear-gradient(135deg, #ec4899, #be185d);
    color: white;
    font-weight: 400;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Altone', sans-serif;
}

.btn-explore:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.4);
}

.btn-arrow {
    background: transparent;
    color: white;
    padding: 0.75rem;
    border: 2px solid white;
    border-radius: 0.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    transition: all 0.3s ease;
}

.btn-arrow:hover {
    background: white;
    color: #1a1b3a;
    transform: scale(1.05);
}

.pioneering-image {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 1.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.clients {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.clients-container {
    background: #ffffff;
    border-radius: 40px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.clients-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: #000;
    margin-bottom: 1rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Altone', sans-serif;
}

.clients-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
    height: 100px;
    position: relative;
    transition: all 0.4s ease;
    transform: translateY(30px) scale(0.9);
    border-radius: 15px;
    padding: 1rem;
}

.client-logo.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.client-logo:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(0, 129, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 129, 255, 0.2);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

.logo-placeholder {
    width: 100%;
    height: 100px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    border: 2px dashed rgba(0, 0, 0, 0.1);
    font-family: 'Altone', sans-serif;
    font-weight: 400;
}

.client-logo:nth-child(1) { transition-delay: 0.1s; }
.client-logo:nth-child(2) { transition-delay: 0.2s; }
.client-logo:nth-child(3) { transition-delay: 0.3s; }
.client-logo:nth-child(4) { transition-delay: 0.4s; }
.client-logo:nth-child(5) { transition-delay: 0.5s; }
.client-logo:nth-child(6) { transition-delay: 0.6s; }
.client-logo:nth-child(7) { transition-delay: 0.7s; }
.client-logo:nth-child(8) { transition-delay: 0.8s; }

/* Mobile Clients Navigation */
.clients-mobile-nav {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.clients-nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 129, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.clients-nav-dot.active {
    background: linear-gradient(135deg, #112FD2, #0081FF);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(0, 129, 255, 0.5);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #112FD2, #0081FF);
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 0px 4px rgba(0, 129, 255, 0.253);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top .svgIcon {
    width: 12px;
    transition: all 0.3s ease;
}

.scroll-to-top .svgIcon path {
    fill: white;
}

.scroll-to-top:hover {
    width: 140px;
    border-radius: 50px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    box-shadow: 0px 0px 0px 4px rgba(0, 212, 255, 0.4);
}

.scroll-to-top:hover .svgIcon {
    transform: translateY(-200%);
}

.scroll-to-top::before {
    position: absolute;
    bottom: -20px;
    content: "Back to Top";
    color: white;
    font-size: 0px;
    font-family: 'Altone', sans-serif;
    font-weight: 600;
    white-space: nowrap;
}

.scroll-to-top:hover::before {
    font-size: 13px;
    opacity: 1;
    bottom: unset;
    transition: all 0.3s ease;
}

.why-choose {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: white;
    margin-bottom: 4rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Altone', sans-serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(180deg, #000000 0%, #000000 70%, #0a0321 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    transform: translateY(50px);
    opacity: 0;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-card.visible {
    transform: translateY(0);
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(124, 58, 237, 0.2));
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-number {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 100;
    margin-bottom: 1.3rem;
    font-family: 'Altone', monospace;
}

.feature-title {
    font-size: 1rem;
    font-weight: 200;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
    font-family: 'Altone', sans-serif;
}

.feature-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.8rem;
    flex-grow: 1;
    font-weight: 300;
    font-family: 'Altone', sans-serif;
}

.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4) { transition-delay: 0.4s; }

.services-accordion {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: white;
    margin-bottom: 4rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Altone', sans-serif;
}

.accordion-container {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    height: 500px;
}

.accordion-item {
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
    min-width: 100px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: translateY(50px);
    opacity: 0;
    background-size: cover;
    background-position: center;
}

.accordion-item.visible {
    transform: translateY(0);
    opacity: 1;
}

.accordion-item.active {
    flex: 1;
    box-shadow: 0 20px 60px rgba(17, 47, 210, 0.3);
}

.accordion-item:not(.active) {
    flex: 0 0 100px;
}

.accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.8s ease;
}

.accordion-item:nth-child(1)::before {
    background: linear-gradient(135deg, rgba(17, 47, 210, 0.85) 0%, rgba(0, 129, 255, 0.85) 50%, rgba(0, 201, 255, 0.85) 100%);
}

.accordion-item:nth-child(2)::before {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.85) 0%, rgba(168, 85, 247, 0.85) 50%, rgba(192, 132, 252, 0.85) 100%);
}

.accordion-item:nth-child(3)::before {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.85) 0%, rgba(6, 182, 212, 0.85) 50%, rgba(34, 211, 238, 0.85) 100%);
}

.accordion-item:nth-child(4)::before {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.85) 0%, rgba(244, 114, 182, 0.85) 50%, rgba(251, 191, 36, 0.85) 100%);
}

.accordion-item:nth-child(1) {
    transition-delay: 0.1s;
}

.accordion-item:nth-child(2) {
    transition-delay: 0.2s;
}

.accordion-item:nth-child(3) {
    transition-delay: 0.3s;
}

.accordion-item:nth-child(4) {
    transition-delay: 0.4s;
}

.accordion-content {
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    position: relative;
    z-index: 2;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.accordion-number {
    font-size: 5rem;
    font-weight: 900;
    opacity: 0.15;
    line-height: 1;
    transition: all 0.6s ease;
    font-family: 'Altone', sans-serif;
}

.accordion-item:not(.active) .accordion-number {
    opacity: 0.4;
    font-size: 2.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

.expand-arrow {
    width: 32px;
    height: 32px;
    opacity: 1;
    transition: all 0.6s ease;
    position: relative;
    flex-shrink: 0;
}

.accordion-item:not(.active) .expand-arrow {
    opacity: 0;
    transform: scale(0.8);
}

.expand-arrow::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 2px;
}

.expand-arrow::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 20px;
    background: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 2px;
}

.accordion-title {
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 0.9;
    margin-bottom: 3rem;
    opacity: 1;
    transition: all 0.6s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Altone', sans-serif;
    color: white;
}

.accordion-item:not(.active) .accordion-title {
    opacity: 0;
    transform: translateY(20px);
}

.accordion-list {
    list-style: none;
    opacity: 1;
    transition: all 0.6s ease;
    font-size: 1.1rem;
    line-height: 1.6;
    font-family: 'Altone', sans-serif;
    font-weight: 300;
}

.accordion-item:not(.active) .accordion-list {
    opacity: 0;
    transform: translateY(20px);
}

.accordion-list li {
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

.accordion-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    line-height: 1.1;
}

.accordion-item:hover {
    transform: translateY(-2px);
}

.accordion-item.active:hover {
    transform: translateY(-4px);
}

.image-carousel {
    padding: 4rem 2rem;
    text-align: center;
}

.carousel-container {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
}

.carousel-image {
    width: 100%;
    height: 400px;
    background: #334155;
    border-radius: 1.5rem;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: opacity 0.5s ease;
}

.carousel-image.fade {
    opacity: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: white;
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.key-awards {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.key-awards-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: white;
    margin-bottom: 4rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Altone', sans-serif;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.award-card {
    background: linear-gradient(180deg, #3ad0ff 0%, #1e88e5 50%, #004eff 100%);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    color: white;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    transform: translateY(50px);
    opacity: 0;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.award-card.visible {
    transform: translateY(0);
    opacity: 1;
}

.award-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(58, 208, 255, 0.3);
}

.award-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: white;
    backdrop-filter: blur(10px);
}

.award-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
}

.award-title {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Altone', sans-serif;
}

.award-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
    font-weight: 300;
    font-family: 'Altone', sans-serif;
}

.award-card:nth-child(1) { transition-delay: 0.1s; }
.award-card:nth-child(2) { transition-delay: 0.2s; }
.award-card:nth-child(3) { transition-delay: 0.3s; }

.footer {
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 4rem;
}

.footer-left {
    flex: 1;
    max-width: 600px;
}

.footer-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: white;
    line-height: 1.1;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Altone', sans-serif;
}



.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-family: 'Altone', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: #0081FF;
    box-shadow: 0 0 0 4px rgba(0, 129, 255, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    background: linear-gradient(135deg, #112FD2, #0081FF);
    color: white;
    font-weight: 500;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Altone', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(17, 47, 210, 0.3);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 47, 210, 0.4);
    background: linear-gradient(135deg, #0081FF, #00C9FF);
}

.form-submit:active {
    transform: translateY(0);
}

.footer-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-btn-primary {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: white;
    font-weight: 400;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Altone', sans-serif;
}

.footer-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
}

.footer-btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem;
    border: 2px solid white;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    transition: all 0.3s ease;
}

.footer-btn-secondary:hover {
    background: white;
    color: #1a1b3a;
    transform: scale(1.05);
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.footer-right {
    flex: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.footer-right .footer-form {
    width: 100%;
}
.footer-form {
    margin-bottom: 3rem; 
}

/* TABLET STYLES */
@media (max-width: 1024px) {
    .clients-slider {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .accordion-container {
        gap: 1rem;
        height: 450px;
    }
    
    .accordion-content {
        padding: 2.5rem;
    }
    
    .accordion-title {
        font-size: 2.2rem;
    }
    
    .accordion-number {
        font-size: 4rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* MOBILE STYLES */
@media (max-width: 768px) {
    body {
        padding: 10px;
        line-height: 1.4;
    }

    .hero-container {
        margin: 20px 10px;
        border-radius: 1rem;
    }

    .header {
        padding: 1rem;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .logo img {
        height: 24px !important;
    }

    .hero {
        padding: 3rem 1.5rem;
    }

    .hero-title {
        font-size: 2rem !important;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 0.75rem;
    }

    .hero-btn-primary {
        font-size: 0.9rem;
        padding: 0.65rem 1.25rem;
    }

    .hero-btn-secondary {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .pioneering-section {
        padding: 3rem 1.5rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pioneering-content h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1.5rem;
        text-align: left;
    }

    .pioneering-content p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.6;
        text-align: left;
    }

    .pioneering-buttons {
        justify-content: flex-start;
        gap: 0.75rem;
    }

    .btn-explore {
        font-size: 0.9rem;
        padding: 0.65rem 1.25rem;
    }

    .btn-arrow {
        width: 42px;
        height: 42px;
    }

    .pioneering-image {
        height: 300px;
        border-radius: 1rem;
        order: -1;
    }

    .clients {
        padding: 3rem 1rem;
    }

    .clients-container {
        padding: 2rem 1.5rem;
        border-radius: 25px;
    }

    .clients-title {
        font-size: 1.5rem !important;
        margin-bottom: 2rem;
    }

    .clients-slider {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 1rem;
        grid-template-columns: none;
    }

    .clients-slider::-webkit-scrollbar {
        display: none;
    }

    .client-logo {
        min-width: 140px;
        max-width: 140px;
        height: 70px;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 0.75rem;
    }

    .clients-mobile-nav {
        display: flex;
    }

    .why-choose {
        padding: 3rem 1rem;
    }

    .why-choose-title {
        font-size: 1.8rem !important;
        margin-bottom: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.75rem;
        min-height: auto;
        height: auto;
    }

    .feature-number {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .feature-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .feature-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .services-accordion {
        padding: 3rem 1rem;
    }

    .services-title {
        font-size: 1.8rem !important;
        margin-bottom: 2rem;
    }

    .accordion-container {
        flex-direction: column;
        height: auto;
        gap: 0.75rem;
    }

    .accordion-item {
        min-height: 70px;
        min-width: auto;
        border-radius: 20px;
    }

    .accordion-item:not(.active) {
        flex: 0 0 70px;
    }

    .accordion-item::before {
        background-blend-mode: overlay;
    }

    .accordion-item:not(.active)::before {
        opacity: 0.95;
    }

    .accordion-content {
        padding: 1.5rem;
    }

    .accordion-header {
        margin-bottom: 1.5rem;
    }

    .accordion-number {
        font-size: 3rem;
    }

    .accordion-item:not(.active) .accordion-number {
        font-size: 1.8rem;
    }

    .accordion-title {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .accordion-list {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .accordion-list li {
        margin-bottom: 0.9rem;
        padding-left: 1.2rem;
    }

    .accordion-list li::before {
        font-size: 1.2rem;
    }

    .expand-arrow {
        width: 28px;
        height: 28px;
    }

    .image-carousel {
        padding: 3rem 1rem;
    }

    .carousel-container {
        padding: 1rem;
        border-radius: 1.5rem;
    }

    .carousel-image {
        height: 250px;
        border-radius: 1rem;
    }

    .carousel-dots {
        gap: 8px;
        margin-top: 1rem;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .key-awards {
        padding: 3rem 1rem;
    }

    .key-awards-title {
        font-size: 1.8rem !important;
        margin-bottom: 2rem;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .award-card {
        padding: 1.75rem;
        min-height: auto;
        height: auto;
    }

    .award-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1.5rem;
    }

    .award-icon svg {
        width: 24px;
        height: 24px;
    }

    .award-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .award-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .footer {
        padding: 3rem 1rem 1.5rem;
        margin-top: 3rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
        text-align: center;
    }

    .footer-left {
        max-width: 100%;
    }

    .footer-title {
        font-size: 1.8rem !important;
        margin-bottom: 2rem;
        line-height: 1.1;
    }

    .footer-form {
        margin-bottom: 2rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }

    .form-textarea {
        min-height: 100px;
    }

    .form-submit {
        width: 100%;
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .footer-buttons {
        justify-content: center;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .footer-btn-primary {
        font-size: 0.9rem;
        padding: 0.85rem 1.5rem;
    }

    .footer-btn-secondary {
        width: 50px;
        height: 50px;
    }

    .footer-social {
        justify-content: center;
        gap: 0.75rem;
    }

    .social-icon {
        width: 44px;
        height: 44px;
    }

    .footer-right {
        justify-content: center;
    }

    .footer-logo img {
        height: 25px !important;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .scroll-to-top:hover {
        width: 45px;
        border-radius: 50%;
    }

    .scroll-to-top::before {
        content: "";
    }

    .mobile-menu-link {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .container {
        padding: 0 1rem;
    }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {
    body {
        padding: 5px;
    }

    .hero-container {
        margin: 15px 5px;
    }

    .hero-title {
        font-size: 1.75rem !important;
    }

    .pioneering-content h2,
    .why-choose-title,
    .services-title,
    .key-awards-title,
    .footer-title {
        font-size: 1.5rem !important;
    }

    .clients-title {
        font-size: 1.3rem !important;
    }

    .accordion-title {
        font-size: 1.3rem !important;
    }

    .mobile-menu-link {
        font-size: 1.25rem;
    }

    .client-logo {
        min-width: 150px;
        max-width: 150px;
        height: 150px;
    }
}

/* LANDSCAPE MOBILE */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .pioneering-image {
        height: 250px;
    }
}
/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .fluid-cursor,
    .cursor-main,
    .cursor-glow {
        display: none !important;
    }
}

/* Also hide on mobile screens */
@media (max-width: 768px) {
    .fluid-cursor,
    .cursor-main,
    .cursor-glow {
        display: none !important;
    }
}
