.navbar {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
    color:rgb(39, 39, 100);
}

.nav-link {
    transition: color 0.3s ease-in-out;
}

.nav-link:hover {
    color: #62b300 !important;
}

.navbar-nav .nav-item {
    margin-left: 15px;
}


/* Custom Styles for Form */
.form-container {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.form-container h2 {
    color: #343a40;
    margin-bottom: 25px;
}
.form-container .form-control {
    border-radius: 8px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12);
}
.form-container button {
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;
}

.about-section {
    padding: 60px 0;
}

.about-img {
    max-width: 100%;
    height: auto;
}

.about-text {
    font-size: 1.1rem;
    color: #555;
}

.about-heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-subheading {
    font-size: 1.5rem;
    color: #6c757d;
    margin-bottom: 30px;
}

.team-photo {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.team-members {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-member img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-member h5 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.team-member p {
    font-size: 1rem;
    color: #6c757d;
}

/*Add some custom CSS for better design*/
    footer {
        background-color: #343a40;
        color: #f8f9fa;
    }
    footer .social-icons a {
        transition: transform 0.3s ease, color 0.3s ease;
    }
    footer .social-icons a:hover {
        transform: scale(1.1);
        color: #007bff; /* Change color on hover */
    }
    footer p.mb-2 {
        font-size: 1rem;
    }
    footer p.small {
        font-size: 0.9rem;
        margin-top: 5px;
    }

    /* contact page style*/
    html, body {
        height: 100%;
    }
    
    .pagehding-sec {
        margin-bottom: 80px; /* Add bottom margin if needed to push footer down */
    }
    
    .contact-page-sec {
        padding-bottom: 100px; /* Adjust this padding if needed */
    }

    footer {
        position: relative;
        bottom: 0;
        width: 100%;
        background-color: #343a40;
    }

    /*Home page style*/
 /* Custom Service Card Styles */
.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-10px);
}

.testimonial-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    color: #555;
}

/* Hero Section */
.hero {
    background-color: #f1f1f1;
    padding-top: 100px; /* Avoids overlap with fixed navbar */
}

