.navbar-custom {
    background-color: #00b050;
    position: sticky;
    top: 0;
    z-index: 1020;
}
.navbar-custom .navbar-brand img {
    height: 50px; /* Adjust height of logo */
    width: auto; /* Maintain aspect ratio */
}
.navbar-custom .nav-link {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}
.navbar-custom .nav-link:hover {
    color: #ffdd40;
}

/* Header Section */
#header {
    position: relative;
    background: url('img/header1.jpg') no-repeat center center/cover;
    height: 500px;
    color: #FAF9F6;
    display: flex;
    align-items: center;
    justify-content: center;
}
#header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35); /* Overlay with green tint */
    z-index: 1;
}

#header .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

#header h1 {
    font-size: 3rem;
    animation: fadeIn 2s;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Enhances text readability */
}
#header p {
    font-size: 2rem;
    animation: slideIn 2s;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Enhances text readability */
}
/* Services Section */
.service-box{
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}
.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
    cursor:pointer;
}
.service-heading {
    color: #00b050;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}
.service-list {
    padding-left: 20px;
}
.service-list li {
    margin-bottom: 10px;
}

#team a{
    text-decoration:none;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInUp 1s;
}
.team-box {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}
.member-box {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}
.img-side{
    text-align:center;
}
.img-side h4{
    font-size: 1.2rem;
    font-weight: bold;
    color: #00b050;
}
.img-side img{
    width: 100%;
    object-fit: cover;
    margin-bottom: 15px;
    transition: transform 0.3s;
    border-radius: 8px;
}
.team-box img {
    width: 100%;
    object-fit: cover;
    margin-bottom: 15px;
    transition: transform 0.3s;
    border-radius: 8px;
}
.team-box img:hover {
    transform: scale(1.1);
    cursor:pointer;
}
.team-box h4 {
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #00b050;
    cursor:pointer;
}

.animate-fade-in {
    animation: fadeInUp 1s ease-in-out;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Section Styles */
section {
    /* margin-top:px; */
    padding: 60px 0;
}
.section-heading {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: bold;
    color: #00b050;
}
/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}


// contact 
.contact-list {
    display: flex;
    flex-direction: column;
}

.contact-list .item {
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: 30px auto;
    font-size: 1.125rem;
    line-height: 1.75rem;
}
.contact-list .item svg {
    height: 1.5rem;
    width: 1.5rem;
}
.contact-list a{
    color: #000;
    text-decoration: none;
}

.menu-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.menu-list .nav-link{
    margin-bottom:10px;
    font-size: 1rem;
    font-weight:bold;
}

/* Footer */
footer {
    background-color: #00b050;
    color: white;
    text-align: center;
    padding: 10px 0;
}