* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0066ff;
    --secondary-blue: #004bb5;
    --dark-blue: #001f4d;
    --light-blue: #e6f2ff;
    --accent-blue: #00a8ff;
    --gradient-start: #0066ff;
    --gradient-end: #00d4ff;
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-light: #e2e8f0;
    --gray: #94a3b8;
    --gray-dark: #475569;
    --black: #0f172a;
    --shadow-sm: 0 2px 4px rgba(0, 102, 255, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 102, 255, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 102, 255, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 102, 255, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--gray-light);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text-wrapper {
    display: flex;
}

.logo-text {
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.logo-accent {
    color: var(--accent-blue);
    font-weight: 300;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.nav-link.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 102, 255, 0.4);
}

.nav-link.btn-primary::after {
    display: none;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 30px;
    color: var(--white);
    animation: fadeInUp 0.8s ease;
}

.title-line {
    display: block;
    animation: slideInFromLeft 0.8s ease;
}

.gradient-text {
    background: linear-gradient(90deg, var(--white) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.4s both;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-glow {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 500px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.projects {
    padding: 100px 0;
    background: var(--off-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--black);
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-dark);
    max-width: 600px;
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

.project-card:nth-child(2) {
    animation-delay: 0.1s;
}

.project-card:nth-child(3) {
    animation-delay: 0.2s;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.project-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.project-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.project-geoglobal .project-image {
    background: linear-gradient(135deg, #003d82 0%, #0066ff 50%, #0088ff 100%);
    position: relative;
    overflow: hidden;
}

.project-geoglobal .project-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255,255,255,0.03) 50px, rgba(255,255,255,0.03) 51px),
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255,255,255,0.03) 50px, rgba(255,255,255,0.03) 51px);
    animation: grid-scroll 20s linear infinite;
}

@keyframes grid-scroll {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.trading-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    z-index: 1;
}

.candlestick-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 100%;
    gap: 8px;
}

.candlestick {
    width: 25px;
    background: linear-gradient(180deg, #ff4444 0%, #cc0000 100%);
    border-radius: 4px 4px 0 0;
    position: relative;
    animation: candlestick-grow 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

.candlestick.green {
    background: linear-gradient(180deg, #00ff88 0%, #00cc66 100%);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.candlestick::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 20px;
    background: inherit;
    left: 50%;
    transform: translateX(-50%);
    top: -20px;
}

.candlestick:nth-child(1) { animation-delay: 0s; }
.candlestick:nth-child(2) { animation-delay: 0.5s; }
.candlestick:nth-child(3) { animation-delay: 1s; }
.candlestick:nth-child(4) { animation-delay: 1.5s; }
.candlestick:nth-child(5) { animation-delay: 2s; }

@keyframes candlestick-grow {
    0%, 100% { transform: scaleY(1); opacity: 0.8; }
    50% { transform: scaleY(1.15); opacity: 1; }
}

.trend-line {
    position: absolute;
    bottom: 20%;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 255, 136, 0.6) 20%, 
        rgba(0, 255, 136, 0.8) 50%, 
        rgba(0, 255, 136, 0.6) 80%, 
        transparent 100%
    );
    animation: trend-flow 2s ease-in-out infinite;
    filter: blur(1px);
}

@keyframes trend-flow {
    0%, 100% { transform: translateX(-10%); opacity: 0.6; }
    50% { transform: translateX(10%); opacity: 1; }
}

.project-seka .project-image {
    background: linear-gradient(135deg, #7f1d1d 0%, #dc2626 50%, #ef4444 100%);
    position: relative;
    overflow: hidden;
}

.project-seka .project-image::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
    animation: diagonal-move 15s linear infinite;
}

@keyframes diagonal-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.moving-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.truck-icon {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
    animation: truck-drive 4s ease-in-out infinite;
}

@keyframes truck-drive {
    0%, 100% { left: 20%; }
    50% { left: 70%; }
}

.truck-body {
    width: 80px;
    height: 45px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-radius: 8px 8px 4px 4px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.truck-body::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 35px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.75));
    border-radius: 4px 4px 0 0;
    left: -28px;
    bottom: 0;
}

.truck-wheel {
    position: absolute;
    width: 18px;
    height: 18px;
    background: radial-gradient(circle, #333 40%, #666 41%, #666 60%, #333 61%);
    border-radius: 50%;
    bottom: -9px;
    animation: wheel-spin 1s linear infinite;
}

@keyframes wheel-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.wheel-1 { left: 5px; }
.wheel-2 { right: 10px; }

.road-line {
    position: absolute;
    bottom: 35%;
    width: 100%;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.4) 0px,
        rgba(255, 255, 255, 0.4) 20px,
        transparent 20px,
        transparent 40px
    );
    animation: road-scroll 1.5s linear infinite;
}

@keyframes road-scroll {
    from { background-position: 0 0; }
    to { background-position: 40px 0; }
}

.moving-boxes {
    position: absolute;
    top: 25%;
    right: 15%;
    display: flex;
    gap: 5px;
}

.moving-boxes .box {
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    animation: box-float 3s ease-in-out infinite;
}

.moving-boxes .box:nth-child(1) { animation-delay: 0s; }
.moving-boxes .box:nth-child(2) { animation-delay: 0.5s; }
.moving-boxes .box:nth-child(3) { animation-delay: 1s; }

@keyframes box-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.project-tsigni .project-image {
    background: linear-gradient(135deg, #1a1b1f 0%, #2b2c30 50%, #3a3b3f 100%);
    position: relative;
    overflow: hidden;
}

.project-tsigni .project-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    animation: glow-pulse 5s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.books-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.book-stack {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.book {
    width: 70px;
    height: 12px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.6), rgba(124, 58, 237, 0.8));
    border-radius: 1px 3px 3px 1px;
    position: relative;
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
    animation: book-stack-anim 4s ease-in-out infinite;
}

.book::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    right: 0;
    border-radius: 0 3px 3px 0;
}

.book-1 { 
    width: 80px;
    background: linear-gradient(90deg, rgba(236, 72, 153, 0.6), rgba(219, 39, 119, 0.8));
    animation-delay: 0s;
    box-shadow: 0 2px 10px rgba(236, 72, 153, 0.3);
}

.book-2 { 
    width: 75px;
    animation-delay: 0.5s;
}

.book-3 { 
    width: 85px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.6), rgba(37, 99, 235, 0.8));
    animation-delay: 1s;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

@keyframes book-stack-anim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.reading-lamp {
    position: absolute;
    top: 20%;
    right: 25%;
    width: 40px;
    height: 50px;
}

.reading-lamp::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 25px;
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.4) 0%, transparent 100%);
    border-radius: 50% 50% 0 0;
    top: 0;
    left: 5px;
    clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
    animation: lamp-glow 2s ease-in-out infinite;
}

.reading-lamp::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    background: rgba(251, 191, 36, 0.6);
    bottom: 0;
    left: 10px;
    border-radius: 2px;
}

@keyframes lamp-glow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.floating-letters {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-letters span {
    position: absolute;
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    animation: letter-float 6s ease-in-out infinite;
}

.floating-letters span:nth-child(1) {
    top: 15%;
    left: 15%;
    color: rgba(139, 92, 246, 0.2);
    animation-delay: 0s;
}

.floating-letters span:nth-child(2) {
    top: 25%;
    right: 20%;
    color: rgba(236, 72, 153, 0.2);
    animation-delay: 1.5s;
}

.floating-letters span:nth-child(3) {
    bottom: 25%;
    left: 20%;
    color: rgba(59, 130, 246, 0.2);
    animation-delay: 3s;
}

.floating-letters span:nth-child(4) {
    bottom: 15%;
    right: 15%;
    color: rgba(251, 191, 36, 0.2);
    animation-delay: 4.5s;
}

@keyframes letter-float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.2;
    }
    50% { 
        transform: translateY(-20px) rotate(10deg);
        opacity: 0.4;
    }
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 31, 77, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--white);
    transition: all 0.3s ease;
    z-index: 2;
}

/* Default hover */
.project-card:hover .project-overlay {
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.3) 0%, rgba(0, 31, 77, 0.92) 100%);
}

/* GeoGlobalGate - Blue hover */
.project-geoglobal:hover .project-overlay {
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.3) 0%, rgba(0, 61, 130, 0.92) 100%);
}

/* SekaMoving - Red hover */
.project-seka:hover .project-overlay {
    background: linear-gradient(180deg, rgba(220, 38, 38, 0.3) 0%, rgba(127, 29, 29, 0.92) 100%);
}

/* Tsignipedia - Dark/Purple hover */
.project-tsigni:hover .project-overlay {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.3) 0%, rgba(43, 44, 48, 0.92) 100%);
}

.project-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.project-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.project-description {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.5;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.team {
    padding: 100px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    align-items: stretch;
}

.team-member {
    animation: fadeInUp 0.6s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.member-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-light);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.member-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.member-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 102, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-card:hover .member-overlay {
    opacity: 1;
}

.member-socials {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.member-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}

.member-role {
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 15px;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.skill-badge {
    padding: 4px 10px;
    background: var(--light-blue);
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
}

.services {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-blue) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    margin-bottom: 30px;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    transition: transform 0.3s ease;
}

.service-card:hover .icon-wrapper {
    transform: rotate(-5deg) scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.service-description {
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    color: var(--gray);
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 600;
}

.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--black);
    margin-bottom: 20px;
}

.contact-description {
    font-size: 1.125rem;
    color: var(--gray-dark);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 8px;
}

.contact-value {
    font-size: 1.125rem;
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

a.contact-value:hover {
    color: var(--primary-blue);
}

.contact-form {
    background: var(--off-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 14px 20px;
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
    justify-content: center;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 102, 255, 0.4);
}

.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-socials {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.125rem;
        padding: 12px 24px;
    }
    
    .nav-link.btn-primary {
        margin-top: 20px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }
    
    .hero-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 40px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .shape-1 {
        width: 250px;
        height: 250px;
        top: -50px;
        right: -50px;
    }
    
    .shape-2 {
        width: 200px;
        height: 200px;
        bottom: -30px;
        left: -30px;
    }
    
    .shape-3 {
        width: 150px;
        height: 150px;
    }
    
    .projects-grid,
    .team-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .projects,
    .team,
    .services,
    .contact {
        padding: 60px 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-socials {
        gap: 20px;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .project-card {
        height: 350px;
    }
    
    .project-title {
        font-size: 1.5rem;
    }
    
    .member-image {
        height: 250px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 12vw, 3rem);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .projects-grid {
        gap: 20px;
    }
    
    .project-overlay {
        padding: 20px;
    }
    
    .project-title {
        font-size: 1.25rem;
    }
    
    .project-description {
        font-size: 0.875rem;
    }
    
    .contact-title {
        font-size: 1.75rem;
    }
    
    .nav-menu {
        width: 90%;
    }
}

.project-geoglobal .project-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255,255,255,0.03) 50px, rgba(255,255,255,0.03) 51px),
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255,255,255,0.03) 50px, rgba(255,255,255,0.03) 51px);
    animation: grid-scroll 20s linear infinite;
}

@keyframes grid-scroll {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.customs-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    z-index: 1;
}

.globe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: globe-rotate 8s linear infinite;
}

@keyframes globe-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.globe-line {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.globe-line:nth-child(1) {
    transform: rotateY(60deg);
}

.globe-line:nth-child(2) {
    transform: rotateY(120deg);
}

.globe-line:nth-child(3) {
    width: 100%;
    height: 50%;
    border-radius: 50% 50% 0 0;
    top: 25%;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.shipping-routes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.route {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 212, 255, 0.8) 50%, 
        transparent 100%
    );
    animation: route-flow 3s ease-in-out infinite;
}

.route-1 {
    width: 150px;
    top: 30%;
    left: 10%;
    transform: rotate(-15deg);
    animation-delay: 0s;
}

.route-2 {
    width: 120px;
    top: 50%;
    right: 15%;
    transform: rotate(25deg);
    animation-delay: 1s;
}

.route-3 {
    width: 100px;
    bottom: 25%;
    left: 20%;
    transform: rotate(-35deg);
    animation-delay: 2s;
}

@keyframes route-flow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.containers {
    position: absolute;
    top: 20%;
    right: 10%;
    display: flex;
    gap: 4px;
}

.containers .container {
    width: 30px;
    height: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.15));
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    position: relative;
    animation: container-stack 3s ease-in-out infinite;
}

.containers .container::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 2px;
    background: rgba(0, 102, 255, 0.5);
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
}

.containers .container:nth-child(1) {
    animation-delay: 0s;
}

.containers .container:nth-child(2) {
    animation-delay: 0.3s;
}

.containers .container:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes container-stack {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.stamp-icon {
    position: absolute;
    bottom: 20%;
    left: 15%;
    width: 60px;
    height: 60px;
    border: 3px dashed rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    animation: stamp-pulse 2s ease-in-out infinite;
    position: relative;
}

.stamp-icon::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    font-weight: bold;
    color: rgba(0, 212, 255, 0.7);
}

.stamp-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px dashed rgba(0, 212, 255, 0.5);
    border-radius: 8px;
    top: 0;
    left: 0;
    animation: stamp-rotate 4s linear infinite;
}

@keyframes stamp-pulse {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes stamp-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}