
:root {
    --primary-color: #2C5F2D;
    --secondary-color: #97BC62;
}


.custom-navbar {
background-color: #f8f9fa;
border-bottom: 2px solid #ddd;
}

.navbar-brand img {
    max-height: 50px;
}

.navbar-nav .nav-link {
    font-size: 1.1rem;
    color: #343a40 !important;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #007bff !important;
}

.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler-icon {
    background-color: #343a40;
    border-radius: 50%;
    padding: 5px;
}

.navbar-nav .nav-item {
    margin: 0 10px;
}

@media (max-width: 992px) {
    .navbar-brand.mx-auto {
        margin-bottom: 15px;
    }

    .navbar-nav {
        text-align: center;
    }
}



#subsidiaries {
background-color: #f8f9fa;
    }

    .section-heading {
        font-size: 2.5rem;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #343a40;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
    }

    .card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .card-title {
        font-size: 1.5rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .card-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .card img {
        height: 300px;
        object-fit: cover;
    }

    .btn-outline-primary {
        font-size: 1rem;
        border-width: 2px;
        border-radius: 30px;
        transition: all 0.3s ease;
    }

    .btn-outline-primary:hover {
        background-color: #007bff;
        color: #fff;
        border-color: #007bff;
    }

    @media (max-width: 992px) {
        .section-heading {
            font-size: 2rem;
        }
        
        .card-title {
            font-size: 1.3rem;
        }

        .card img {
            height: auto;
        }
    }


    /* Mission & Vision Section Styling */
#mission {
background-color: #f8f9fa;
padding-top: 80px;
padding-bottom: 80px;
}

.section-heading {
font-size: 3rem;
font-weight: 700;
color: #343a40;
text-transform: uppercase;
letter-spacing: 2px;
}

.mission-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
border-radius: 20px;
}

.mission-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.card-body {
background-color: #ffffff;
padding: 3rem;
}

.card-title {
font-size: 2rem;
font-weight: 600;
color: #0056b3;
}

.card-text {
font-size: 1.25rem;
line-height: 1.6;
color: #6c757d;
}

ul {
font-size: 1.1rem;
line-height: 1.8;
color: #343a40;
text-align: left;
}

ul li {
margin-bottom: 1rem;
}

/* Styling for buttons */
.btn-primary {
background-color: #0056b3;
border-color: #0056b3;
}

.btn-primary:hover {
background-color: #003c7a;
border-color: #003c7a;
}

@media (max-width: 768px) {
.section-heading {
font-size: 2.5rem;
}

.card-title {
font-size: 1.75rem;
}

.card-text {
font-size: 1.1rem;
}

.mission-card {
padding: 20px;
}
}


/* FAQ Section Styling */
#faq {
background-color: #ffffff;
padding-top: 80px;
padding-bottom: 80px;
}

.accordion-button {
font-size: 1.25rem;
font-weight: 600;
color: #0056b3;
background-color: #f8f9fa;
border-radius: 10px;
border: none;
}

.accordion-button:not(.collapsed) {
background-color: #e9ecef;
color: #0056b3;
}

.accordion-body {
font-size: 1rem;
line-height: 1.6;
color: #6c757d;
}

.accordion-item {
border: 1px solid #ddd;
border-radius: 10px;
}

.accordion-item + .accordion-item {
margin-top: 1rem;
}


/* Contact Section Styling */
#contact {
    background-color: #f8f9fa;
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact-info p {
    font-size: 1.2rem;
    color: #343a40;
}

.contact-info a {
    color: #0056b3;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.form-label {
    font-weight: 600;
    color: #343a40;
}

.form-control {
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid #ddd;
}

.btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-primary:hover {
    background-color: #003c7a;
    border-color: #003c7a;
}


.timeline {
    position: relative;
    padding: 0;
    list-style: none;
}

.timeline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
}

.team-member-card {
    transition: transform 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-10px);
}

.vision-card {
    border-left: 4px solid var(--primary-color);
}

@media (max-width: 768px) {
    .timeline:before {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
    
    .timeline-dot {
        left: 30px;
    }
}


.page-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    /* url('assets/images/istockphoto.jpg'); */
    url('assets/images/istockphoto.jpg');
    background-size: cover;
    background-position: center;
    min-height: 40vh;
    display: flex;
    align-items: center;
}
