:root {
    --primary: #0c2340;
    --primary-hover: #071526;
    --secondary: #e62525;
    --secondary-hover: #c91f1f;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
}

/* Bulma Color Overrides */
.has-text-primary {
    color: var(--primary) !important;
}
.has-background-primary {
    background-color: var(--primary) !important;
}
.has-text-secondary {
    color: var(--secondary) !important;
}
.has-background-secondary {
    background-color: var(--secondary) !important;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.hero-video-fixed {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100vh;
    min-width: 100vw;
    min-height: 100vh;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.4);
}

.hero.is-fullheight {
    position: relative;
    overflow: hidden;
}

.hero-body {
    position: relative;
    z-index: 2;
}

/* Card Hover Effects */
.service-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.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);
}

.image-hover img {
    transition: transform 0.5s ease;
}

.service-card:hover .image-hover img {
    transform: scale(1.05);
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.button.is-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(12, 35, 64, 0.3);
    color: white;
}

.button.is-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(12, 35, 64, 0.4);
    color: white;
}

/* Custom Navbar */
.navbar.is-dark-blue {
    background-color: var(--primary);
}
.navbar.is-dark-blue .navbar-item,
.navbar.is-dark-blue .navbar-link {
    color: #ffffff;
}
.navbar.is-dark-blue a.navbar-item:hover,
.navbar.is-dark-blue a.navbar-item:focus,
.navbar.is-dark-blue a.navbar-item.is-active {
    background-color: var(--primary-hover);
    color: #ffffff;
}
.navbar.is-dark-blue .navbar-burger {
    color: #ffffff;
}
