body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* --- Navbar & Hero --- */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/hero_bg_1.jpg) no-repeat center center;
    background-size: cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar {
    background-color: rgba(33, 37, 41, 0.8); /* Semi-transparent dark background */
}

.hero-section h1 {
    font-weight: 300;
    font-size: 3.5rem;
}

/* --- Feature Icons --- */
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: #f8f9fa; 
    color: #0d6efd; 
    font-size: 1.75rem;
    margin-right: 1.5rem;
    padding: 3rem;
    position: relative;
}
.feature-icon::before{
    content: "";
    position: absolute;
    width: calc(100% + 5px);
    height: calc(100% + 5px);
    border-radius: 50%;
    z-index: -1;
    transition: 0.5s;
}
.feature-icon:hover::before{
        background-color: rgba(0, 0, 255, 0.723);

}
/* --- Stats Section --- */
.stats-card {
    border: none;
    text-align: center;
}
.stats-card img {
    object-fit: cover;
    height: 250px;
    margin-bottom: 1rem;
}
.stats-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0d6efd;
}
.stats-label {
    color: #6c757d;
}

/* --- Team Section --- */
.team-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.team-social-icon {
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    background-color: #f1f1f1;
    color: #555;
    transition: all 0.3s ease;
}
.team-social-icon:hover {
    background-color: #0d6efd;
    color: #fff;
}

/* --- Footer --- */
.footer {
    background-color: #f8f9fa;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
}