/* Header CSS - Fixed Logo Alignment */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

.header {
    background: #0b131f;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    transform: translateY(0) !important;
}

.header.scrolled {
    background: #0b131f;
    backdrop-filter: blur(10px);
}

.header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    height: auto;
    justify-content: center;
}

.logo-icon {
    top: 2px;
    left: 20px;
    width: 120px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon img {
    width: 135px !important;
    height: 120px !important;
    object-fit: contain;
    display: block;
}



.logo-main {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 200;
    color: #ffffff;
    line-height: 1;
    margin: 0;
    padding: 0;
    letter-spacing: -0.02em;
}

.logo-sub {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 8px;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
    margin-top: 2px;
    font-weight: 100;
}

.nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav a {
    top: 10px;
    left: 20px;
    color: #d3cfcf;
    text-decoration: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    letter-spacing: -0.01em;
}

.nav a:hover {
    color: #ffffff;
}

/* Active nav item color */
.nav a.active,
.nav a.active:hover {
    color: #00d4aa;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 60px;
}



.contact-info span {
    margin: 0;
    padding: 0;
    transition: color 0.3s ease;
}

.contact-info:hover span {
    color: #ffffff;
}

/* Mobile responsive */
@media (max-width: 1200px) {
    .header .container {
        padding: 0 30px;
    }
    
    .nav {
        gap: 32px;
    }
    
    .header-right {
        gap: 45px;
    }
    
    .logo {
        height: auto;
        gap: 2px;
    }
    
    .logo-icon {
        width: 100px;
        height: 100px;
    }
    
    .logo-icon img {
        width: 100px !important;
        height: 100px !important;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }
    
    .header .container {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }
    
    .header-right {
        flex-direction: column;
        gap: 15px;
        order: 2;
    }
    
    .nav {
        gap: 10px;
        order: 1;
    }
    
    .contact-info {
        align-items: center;
        font-size: 12px;
        order: 2;
    }
    
    .logo {
        order: 1;
        gap: 2px;
        height: auto;
    }
    
    .logo-icon {
        width: 80px;
        height: 80px;
    }
    
    .logo-icon img {
        width: 80px !important;
        height: 80px !important;
    }
    
    .logo-main {
        font-size: 20px;
    }
    
    .logo-sub {
        font-size: 7px;
        letter-spacing: 1px; /* Further reduced for mobile */
    }
    
    .nav a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .nav {
        gap: 20px;
    }
    
    .nav a {
        font-size: 13px;
    }
    
    .contact-info {
        font-size: 11px;
    }
    
    .header .container {
        padding: 0 15px;
    }
    
    .logo {
        gap: 8px;
        height: auto;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
    }
    
    .logo-icon img {
        width: 50px !important;
        height: 50px !important;
    }
}