/* style.css */

body {
    font-family: 'Poppins', sans-serif;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
}
.navbar-brand {
    font-weight: 700;
    color: #28a745 !important;
}
.navbar-nav .nav-link {
    margin: 0 10px;
    font-weight: 500;
    color: #333 !important;
    transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
    color: #28a745 !important;
}

/* Hero Section */
.hero-section {
    background: url('../images/cover.png') no-repeat center center;
    background-size: cover;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
    z-index: 1;
}
.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin: 60px 0 30px;
    font-size: 2.2rem;
    font-weight: bold;
    color: #28a745;
}

/* Buttons */
.btn-primary {
    background-color: #28a745;
    border: none;
}
.btn-primary:hover {
    background-color: #218838;
}

/* Footer */
footer h5, footer h6 {
    font-weight: 600;
}
footer a:hover {
    text-decoration: underline;
}

/* Hover Effects */
.hover-effect:hover {
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
}
.grayscale {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}
.grayscale:hover {
    filter: grayscale(0%);
}

/* Supporting Cards */
.supporting-section .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.supporting-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Gallery & Cards */
.card-img-top {
    transition: transform 0.3s ease;
}
.card-img-top:hover {
    transform: scale(1.05);
}
