﻿/* Hero section */
.hero {
    height: 80vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

    .hero-background::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
    }

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.hero-headline {
    font-size: 50px;
    font-weight: 600;
    line-height: 2.1;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #2c3e50, #4ca1af);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-tagline {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 32px;
    color: #1d1d1f;
    opacity: 0.8;
}

.cta-container {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 10px;
}

.cta-button {
    background-color: #0071e3;
    color: white;
    border: none;
    padding: 12px 22px;
    text-decoration:none;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .cta-button:hover {
        background-color: #0077ED;
        transform: scale(1.02);
    }

.cta-secondary {
    background-color: transparent;
    color: #0071e3;
    border: none;
    padding: 12px 22px;
    font-size: 17px;
    text-decoration:none;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

    .cta-secondary:hover {
        text-decoration: underline;
    }

    .cta-secondary svg {
        margin-left: 6px;
    }

.chevron-icon {
    width: 14px;
    height: 14px;
    stroke: #0071e3;
    stroke-width: 2;
    transition: transform 0.3s ease;
    margin-left: 5px;
}

.cta-secondary:hover .chevron-icon {
    transform: translateX(3px);
}
