body {
    margin: 0;
    font-family: "Alice", serif;
    background: #efeded;
}

h1 {
    text-align: center;
    font-size: 45px;
}

p,
h4,
h2 {
    text-align: center;
}

a {
    text-decoration: none;
}

.hr {
    border: none;
    height: 4px;
    background: #d0d0dd;
    margin: 40px auto;
    width: 90%;
    border-radius: 10px;
}

.hero {
    text-align: center;
    padding: 120px 20px;
    background: url("college.jpg") no-repeat center center; 
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 40vh;
    color: rgba(0, 0, 0);
    overflow: hidden;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.3rem;
    font-family: "Inter", sans-serif;
    opacity: 0.9;
}

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

.hero * {
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 5rem;
}

.hero-text {
    animation: bounceUp 2s ease-out;
    color: white;
    font-weight: 300;
}

@keyframes bounceUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

    60% {
        opacity: 1;
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0);
    }
}

.overlay {
    padding: 120px 20px;
    border-radius: 12px;
    color: white;
    text-align: center;
}

.content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

.content-text {
    flex: 2;
    text-align: left;
}

.content-text h1 {
    margin-bottom: 20px;
}

.content-text p {
    line-height: 1.5;
    opacity: 0.9;
    text-align: left;
}

.content-button {
    flex: 1;
    display: flex;
    justify-content: center;
}

.content-button a {
    font-weight: 10px;
    text-align: center;
}

.content-btn {
    padding: 60px 40px;
    background: #6304048f;
    color: black;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: 0.3s ease;
    border: 2px solid #ffffff;
    border-radius: 30px;
}

.content-btn:hover {
    background: #8e24248f;
}

.mission h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.mission-points {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    text-align: center;
}

.point {
    background: #6304048f;
    padding: 20px 30px;
    border-radius: 12px;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid white;
}

.point:hover {
    transform: translateY(-8px);
    transition: 0.5s ease;
}

/* Values Section */
.values-section {
    text-align: center;
    padding: 20px;
}

.values-section h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #a71515;
}

.values-grid-home {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card-home {
    background: white;
    border-radius: 14px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    border-top: 4px solid #a71515;
    transition: transform 0.2s ease;
    flex: 1;
    min-width: 200px;
    max-width: 240px;
}

.value-card-home:hover {
    transform: translateY(-6px);
}

.value-emoji-home {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 12px;
}

.value-card-home h3 {
    color: #a71515;
    font-size: 1.05rem;
    margin-bottom: 10px;
    font-family: "Alice", serif;
}

.value-card-home p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
    font-family: "Alice", serif;
}
/* Statistics Section*/
.statistics {
    text-align: center;
    background-size: cover;
    padding-top: 30px;
    padding-bottom: 60px;
    color: white;
    position: relative; 
    overflow: hidden;
}

.statistics::before {
    content: "";
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Layer the content */
.statistics * {
    position: relative;
    z-index: 2;
}

.statistics h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #a71515;
}

.statistics h4 {
    margin-bottom: 40px;
    color: #a71515;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: auto;
}

.statistics-box {
    background: #6304048f;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: black;
}

.statistics-number {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    display: block;
    margin-bottom: 10px;
}