﻿.icon {
    font-size: 24px;
    color: #2E7D32;
    margin: 10px 0;
    padding: 0 10px;
}

.page-content {
}

.abt-pg {
}

.card-body {
}

.cl-mission-sec {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}


    /*Our Mission section*/
    .cl-mission-sec h4 {
        font-size: 32px;
        width: 197px;
    }

.sv-th-plt img {
    width: 373px;
    height: 245px;
}


/*Our Vision section*/
.cl-vision-sec {
    height: 180px;
    background: #19441b;
    color: #fff;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

    .cl-vision-sec h4 {
        font-size: 32px;
        width: 197px;
        padding: 20px;
    }

/*Our Values section*/

.cl-values-sec {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

    .cl-values-sec h4 {
        font-size: 32px;
        width: 197px;
    }


    .cl-values-sec ul {
        /*width: 940px;*/
    }

    .cl-values-sec li {
        padding: 5px;
    }


/*Contact Information sectio*/

.cl-contact-sec {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .cl-contact-sec h4 {
        font-size: 32px;
        padding-bottom: 45px;
    }

.cl-contact-in-sec {
    display: flex;
    flex-direction: row;
    justify-content: center;
}


.con-get-us {
    width: 100%;
}


.con-get-us {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 5px;
}

.fl-chanel {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}

.list-loc {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-decoration:none;
}


/* Slide in animation */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade-in animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Animation for headings */
.cl-mission-sec h4,
.cl-vision-sec h4,
.cl-values-sec h4,
.cl-contact-sec h4 {
    animation: fadeIn 1s forwards;
}

/* Animation for section paragraphs and content */
.cl-values-sec ul,
.cl-contact-sec p {
    opacity: 0;
    animation: fadeIn 1.5s forwards;
}

/* Fade-in animation for images */
.sv-th-plt img {
    opacity: 0;
    animation: slideInFromRight 1s 2s forwards;
}

.con-get-us {
    opacity: 0;
    animation: fadeIn 2s forwards;
}
a{
    text-decoration:none;
}

.bi-facebook:hover{
    color:#0026ff;
    cursor:pointer;
}

.bi-twitter-x:hover{
    color:#808080;
    cursor:pointer;
}
.bi-instagram:hover{
    color:#ff006e;
    cursor:pointer;
}

.fa-youtube:hover {
    color: #ff0000;
    cursor: pointer;
}

.fa-instagram:hover {
    color: #ff006e;
    cursor: pointer;
}

.fa-facebook-f:hover {
    color: #0094ff;
    cursor: pointer;
}
@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%); /* Start off-screen to the left */
    }

    100% {
        opacity: 1;
        transform: translateX(0); /* End at the original position */
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}