.hero {
    height: 718px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding-bottom: 60px;
    
    background: linear-gradient(
            120deg,
            #0B0F1A,
            #259AF8,
            #2EC17B,
            #84CD27
    );
    background-size: 300% 300%;
    animation: gradientMove 14s ease-in-out infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 36px;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
}

@media (min-width: 992px) {
    .hero-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 1200px) {
    .hero-container {
        padding-left: 120px;
        padding-right: 120px;
    }
}

.hero-body {
    max-width: 718px;
    gap: 16px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.hero-body h1 {
    color: var(--white);
    font-family: 'Gilroy', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    align-self: stretch;
    text-align: start;
}

.experience-badge {
    display: flex;
    padding: 6px 6px;
    gap: 1px;
    align-items: center;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    border: 1px solid var(--light-gray);
    background: var(--white);
    width: fit-content;
}

.experience-badge-content {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 4px;
}

.experience-badge-content span {
    font-family: 'Gilroy', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    background: linear-gradient(90deg, #00B8E0 0%, #91C73E 65.86%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.experience-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--gray-blue);
}

.hero-footer {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.hero-footer .secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-footer .secondary-button .btn-arrow {
    width: 16px;
    height: 16px;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.hero-footer .secondary-button:hover .btn-arrow {
    transform: rotate(0deg);
}

@media (max-width: 767px) {
    .hero-footer {
        width: 100%;
        flex-direction: column;
    }

    .hero button {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .hero-body h1 {
        font-size: 56px;
    }
}

@media (min-width: 992px) {
    .hero-body h1 {
        font-size: 64px;
    }
}

/* Maritime hero image at bottom */
.hero-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
}
