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

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

.logo {
    font-weight: 700;
    font-size: 1.8rem;
    background: linear-gradient(90deg, #00205B, #BA0C2F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-gradient {
    background: linear-gradient(135deg, #00205B 0%, #BA0C2F 100%);
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.team-member {
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: scale(1.05);
}

.nav-link {
    position: relative;
}

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

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

.norway-flag-pattern {
    background: 
        linear-gradient(90deg, 
            #BA0C2F 0%, #BA0C2F 30%, 
            white 30%, white 40%,
            #BA0C2F 40%, #BA0C2F 70%,
            white 70%, white 80%,
            #BA0C2F 80%, #BA0C2F 100%),
        linear-gradient(0deg, 
            #BA0C2F 0%, #BA0C2F 30%, 
            white 30%, white 40%,
            #BA0C2F 40%, #BA0C2F 70%,
            white 70%, white 80%,
            #BA0C2F 80%, #BA0C2F 100%);
    background-blend-mode: overlay;
    background-size: 100px 100px;
    opacity: 0.05;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.section-container {
    position: relative;
    overflow: hidden;
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: #00205B;
    color: white;
}

.btn-primary:hover {
    background: #001942;
}

.btn-secondary {
    background: #BA0C2F;
    color: white;
}

.btn-secondary:hover {
    background: #9A0A26;
}

.accent-border {
    border-left: 4px solid #00205B;
}

.stat-card {
    background: linear-gradient(135deg, #00205B 0%, #BA0C2F 100%);
    color: white;
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
    .hero-gradient {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    .team-member {
        margin-bottom: 1.5rem;
    }
}

/* Loading animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spinner {
    animation: spin 1s linear infinite;
}