:root {
    --primary-pink: #207FAC;
    --hover-pink: #1A6D95;
    --light-pink: #5AB1D8;
    --dark-pink: #155A7A;
    --white: white;
    --aliceblue: aliceblue;
    --transparent-white: rgba(255, 255, 255, 0.1);
}

.banner {
    position: relative;
    background: url('/assets/banner-bg.jpg') center/cover no-repeat fixed;
    padding: 120px 20px;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 43.8px;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(32, 127, 172, 0.85), rgba(21, 90, 122, 0.85));
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.banner-title {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideIn 1s ease forwards;
}

.banner-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--aliceblue);
    margin-bottom: 25px;
    opacity: 0;
    animation: typing 2s steps(40) forwards 0.5s, fadeSlideIn 1s ease forwards 0.5s;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid var(--light-pink);
}

.banner-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-pink);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeSlideIn 1s ease forwards 1s;
}

.banner-btn:hover {
    background: var(--hover-pink);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.circle-decoration {
    position: absolute;
    border-radius: 50%;
    background: var(--transparent-white);
    animation: floatPulse 8s ease-in-out infinite;
    z-index: 1;
}

.circle-1 {
    width: 180px;
    height: 180px;
    top: -40px;
    right: -40px;
    animation-delay: 0s;
}

.circle-2 {
    width: 120px;
    height: 120px;
    bottom: 20px;
    left: -20px;
    animation-delay: 2s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation-delay: 4s;
}

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-25px) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@media (max-width: 768px) {
    .banner {
        padding: 100px 20px;
        min-height: 300px;
    }

    .banner-title {
        font-size: 2.2rem;
    }

    .banner-subtitle {
        font-size: 1.1rem;
    }

    .circle-1 {
        width: 120px;
        height: 120px;
        top: -30px;
        right: -30px;
    }

    .circle-2 {
        width: 80px;
        height: 80px;
        bottom: 10px;
        left: -10px;
    }

    .circle-3 {
        width: 100px;
        height: 100px;
        top: 60%;
        left: 5%;
    }
}