/* Hero Section */
.hero {
    background-image: url('../images/hero.svg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: var(--indian-saffron);
}

/* News Section */
#news {
    background-color: #e6e6e6;
    padding-top: 2rem;
}

/* Stats Section */
.stat-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin-top: 2rem;
    gap: 1.5rem;
}

.fas {
	color: var(--indian-saffron);
	font-size: xx-large;
}
.stat-item {
    text-align: center;
    flex-basis: calc(33.333% - 1rem);
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.stat-item h3 {
    font-size: 1.3rem;
    margin: 0.5rem 0;
	color: var(--sa-blue);
}

.stat-item p {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
	color: var(--indian-green);
}

/* Contact Section */
#contact {
    background-color: #f9f9f9;
    padding: 4rem 0;
}

#contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

#contact-form input,
#contact-form textarea {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#contact-form textarea {
    height: 150px;
}

#contact-form button {
    background-color: var(--sa-green);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contact-form button:hover {
    background-color: var(--indian-green);
}