/* Base styles */
:where([class^="ri-"])::before { 
    content: "\f3c2"; 
}

body {
    font-family: 'Inter', sans-serif;
}

.heading-font {
    font-family: 'Poppins', sans-serif;
}

input:focus {
    outline: none;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Header styles */
.header {
    background-color: #1a202c;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(26, 32, 44, 0.95);
    backdrop-filter: blur(8px);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: translateY(-1px);
}

.header-nav {
    display: none;
}

@media (min-width: 768px) {
    .header-nav {
        display: flex;
        gap: 2rem;
    }
}

.header-nav-link {
    display: flex;
    align-items: center;
    position: relative;
    transition: color 0.3s ease;
}

.header-nav-link:hover {
    color: #0f4c81;
}

.header-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0f4c81;
    transition: width 0.3s ease;
}

.header-nav-link:hover::after {
    width: 100%;
}

.mobile-menu-button {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.mobile-menu-button:hover {
    background-color: #2d3748;
}

.mobile-menu {
    display: none;
    background-color: #2d3748;
    padding-bottom: 1rem;
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu.show {
    display: block;
    animation: slideDown 0.3s ease forwards;
}

.mobile-menu-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-menu-link {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    position: relative;
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: #0f4c81;
}

.mobile-menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0f4c81;
    transition: width 0.3s ease;
}

.mobile-menu-link:hover::after {
    width: 100%;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Import component styles */
@import 'components/header.css';
@import 'components/hero.css';
@import 'components/team.css';
@import 'components/contact.css';
@import 'components/footer.css'; 