@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

:root {
    --header-height: 5rem;
}

html {
    scroll-padding-top: var(--header-height);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: black;
    color: white;
    cursor: crosshair;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1440px;
    margin: 0 auto;
}

.grid-line {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    z-index: -1;
}

.service-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    background-color: white;
    color: black;
    transform: scale(0.98);
}

.contact-btn {
    transition: all 0.3s ease;
    position: relative;
}

.contact-btn:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    outline: 2px solid white;
    outline-offset: 4px;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hero-img {
    filter: grayscale(1) contrast(1.5) brightness(0.8);
    mix-blend-mode: luminosity;
}

/* Lenis smooth scroll core */
html.lenis {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}

/* Hero Section - 3D Scene */

.scene {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe {
    width: 60%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    animation: floating 6s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.icon {
    position: absolute;
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.15));
    z-index: 2;
}

/* Icon positions around the globe */
.icon-1 {
    top: 5%;
    left: 15%;
    animation: floating 3.5s ease-in-out infinite;
    animation-delay: 0s;
}

.icon-2 {
    top: 10%;
    right: 10%;
    animation: floating 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

.icon-3 {
    bottom: 25%;
    left: 5%;
    animation: floating 3.2s ease-in-out infinite;
    animation-delay: 1s;
}

.icon-4 {
    bottom: 10%;
    right: 15%;
    animation: floating 4.5s ease-in-out infinite;
    animation-delay: 0.8s;
}

.icon-5 {
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    animation: floating 3.8s ease-in-out infinite;
    animation-delay: 1.2s;
}

/* Floating animation keyframes */
@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Special floating for globe (subtler movement) */
.globe {
    animation-name: floatingGlobe;
}

@keyframes floatingGlobe {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .scene {
        margin-top: 2rem;
    }
    
    .globe {
        width: 50%;
        max-width: 300px;
    }
    
    .icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 640px) {
    .globe {
        width: 45%;
        max-width: 250px;
    }
    
    .icon {
        width: 40px;
        height: 40px;
    }
}

.marquee-container {
    margin-bottom: 0;
    padding-bottom: 0;
    background: transparent;
    display: flex;
    align-items: center;
}

.marquee-item {
    left: -100px;
    display: flex;
    align-items: center;
    animation: marqueeMove 8s linear infinite;
}

.reverse-marquee {
    right: -100px;
    display: flex;
    align-items: center;
    animation: marqueeMoveReverse 8s linear infinite;
}

@keyframes marqueeMove {
    0% {
        left: -10%;
    }
    100% {
        left: 110%;
    }
}
@keyframes marqueeMoveReverse{
    0% {
        right: -10%;
    }
    100% {
        right: 110%;
    }
}