/* Start custom CSS */body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #212529;
}
.bg-gradient-footer {
    background: linear-gradient(to right, #3c824d, #006253, #000000);
}
.text-primary-custom {
    color: #00a94b;
}
.btn-custom {
    background-color: #00a94b;
    color: #fff;
    font-weight: bold;
    border-radius: 50px;
    padding: 12px 30px;
}
.btn-custom:hover {
    background-color: #00873a;
    color: #fff;
}
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://sftdigital.com/wp-content/uploads/2025/09/1.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.icon-box {
    background-color: #f1f1f1;
    color: #333;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    min-height: 250px;
}
.icon-box i {
    font-size: 3em;
    color: #00a94b;
    margin-bottom: 20px;
}
.about-us-section {
    background-color: #e9ecef;
}
.team-member {
    background-color: #f1f1f1;
    color: #333;
    padding: 20px;
    border-radius: 10px;
}
.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #00a94b;
    margin-bottom: 15px;
}
.footer a {
    color: #00a94b;
    text-decoration: none;
}/* End custom CSS */