/* Hero Section */
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #BBE8EB;
    border-radius: 1rem;
    padding: 4rem 0rem 0rem 0rem;
    overflow: hidden;
    position: relative;
    margin-bottom: 5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--alliance-navy);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons .btn-primary {
    background-color: var(--alliance-navy);
    border-color: var(--alliance-navy);
    border-radius: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
}

.hero-buttons .btn-primary:hover {
    background-color: #1e2460;
    border-color: #1e2460;
}

.hero-buttons .btn-outline-dark {
    border-radius: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 420px;
}

.hero-image {
    position: relative;
    z-index: 2;
    max-height: 450px;
    object-fit: contain;
}

.hero-circle {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background-color: var(--alliance-lime);
    z-index: 1;
}

/* Hero Stat Cards */
.hero-card {
    position: absolute;
    z-index: 3;
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-card strong {
    display: block;
    font-size: 1.1rem;
    color: var(--alliance-navy);
}

.hero-card small {
    display: block;
    font-size: 0.8rem;
    color: #666;
}

.hero-card-icon {
    font-size: 1.5rem;
    color: #2D347D;
}

.hero-card-students {
    bottom: 60px;
    left: 10%;
}

.hero-card-session {
    top: 40px;
    right: 0;
}

/* Decorative dots */
.hero-container::before,
.hero-container::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--alliance-lime);
}

.hero-container::before {
    top: 2rem;
    left: 2rem;
}

.hero-container::after {
    bottom: 6rem;
    left: 45%;
}
