/* GLOBAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    line-height: 1.6;
    color: #4192e2;
    background: #F0F8FF;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    color: #4192e2;
}

a {
    text-decoration: none;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ffd700;
    color: #4192e2;
    border-radius: 30px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-dark {
    background: #4192e2;
    color: #ffffff;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: blur(5px) brightness(0.6);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.hero-content {
    z-index: 2;
    max-width: 700px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content.animated {
    opacity: 1;
    transform: translateY(0);
}

.logo {
    max-width: 150px;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Scroll cue */
.scroll-cue {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* SERVICES */
.services {
    padding: 80px 10%;
    text-align: center;
    background: #f4f7fb;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    padding: 20px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.card img {
    max-width: 80px;
    margin-bottom: 1rem;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card.animated {
    opacity: 1;
    transform: translateY(0);
}

/* STATS */
.stats {
    display: flex;
    justify-content: space-around;
    padding: 60px 10%;
    background: #ffffff;
    text-align: center;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

.stats.animated {
    opacity: 1;
    transform: translateY(0);
}

.stat h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #4192e2;
    font-weight: bold;
}

/* CAREERS */
.careers {
    padding: 80px 10%;
    text-align: center;
    background: #ffffff;
    color: #4192e2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

.careers.animated {
    opacity: 1;
    transform: translateY(0);
}

.careers h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.careers p {
    margin-bottom: 2rem;
    font-size: 1rem;
}

.recruit-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1rem;
}

.recruit-form input,
.recruit-form select,
.recruit-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
    transition: border 0.3s;
}

.recruit-form input:focus,
.recruit-form select:focus,
.recruit-form textarea:focus {
    border-color: #ffd700;
    outline: none;
}

/* CONTACT */
.contact {
    padding: 80px 10%;
    text-align: center;
    background: #ffffff;
    color: #4192e2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

.contact.animated {
    opacity: 1;
    transform: translateY(0);
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact p {
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
    transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ffd700;
    outline: none;
}

/* CTA */
.cta {
    padding: 80px 10%;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)), url('images/hero-fallback.jpg') center/cover no-repeat;
    color: #4192e2;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

.cta.animated {
    opacity: 1;
    transform: translateY(0);
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

footer {
    padding: 20px;
    text-align: center;
    background: #d6e5fa;
    color: #4192e2;
}

footer a {
    color: #4192e2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    font-weight: bold;
}

.hero-video {
    width: 100%;
    height: 100%;
    max-height: 720px;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.1);
}


.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: blur(5px) brightness(0.6);
}

@media (max-width: 768px) {
    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        transform: scale(1.5);
    }

    .hero {
        background: url('images/hero-fallback.jpg') center/cover no-repeat;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

@media (min-width: 769px) {
    .hero-video {
        transform: scale(1.5);
        object-position: center center;
    }
}