.about-us-section {
    padding: 100px 0;
    background: #f7f7f7;
}

/* Banner */
.about-banner {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 60px;
}

.about-banner-content {
    padding: 60px;
}

.sub-title {
    font-weight: 600;
    color: #4c8c3f;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.about-banner-content h1 {
    font-weight: 700;
    color: #0c2454;
    line-height: 1.2;
    margin-bottom: 25px;
}

.title-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.title-divider i {
    color: #4c8c3f;
    font-size: 24px;
}

.title-divider span {
    width: 120px;
    height: 2px;
    background: #4c8c3f;
}

.about-banner-content p {
    color: #555;
    line-height: 1.6;
}

.about-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Info */
.about-info-box {
    display: flex;
    gap: 25px;
    padding: 30px 0;
    border-bottom: 1px solid #ddd;
}

.info-icon {
    min-width: 70px;
    height: 70px;
    border: 2px solid #4c8c3f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    color: #4c8c3f;
    font-size: 28px;
}

.info-content p {
    line-height: 1.8;
    color: #444;
}

/* Cards */
.about-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.about-card-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.about-card-content {
    padding: 30px;
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #4c8c3f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -65px;
    position: relative;
    z-index: 2;
    border: 5px solid #fff;
}

.card-icon i {
    color: #fff;
    font-size: 28px;
}

.about-card-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #0c2454;
    margin: 20px 0 15px;
}

.about-card-content span {
    width: 70px;
    height: 2px;
    background: #4c8c3f;
    display: block;
    margin-bottom: 20px;
}

.about-card-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

/* Responsive */
@media(max-width:991px) {

    .about-banner-content {
        padding: 40px;
    }

    .about-banner-content h1 {
        font-size: 42px;
    }

    .about-banner-content p {
        font-size: 20px;
    }

    .about-info-box {
        flex-direction: column;
    }
}

/* vision and mission box start  */
.mission-box {
    background: #f7f7f7;
    border: 1px solid #d9ece2;
    border-radius: 25px;
    padding: 35px 40px;
    margin-top: 30px;
    transition: 0.3s ease;
}

.mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* vision and mission box end  */


/* sticky social links start */

.social-sticky {
    position: fixed;
    right: 1rem;
    bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    z-index: 900;
}

.social-link {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: .82rem;
    box-shadow: 0 8px 18px rgba(20, 32, 40, .2);
    transition: transform .2s ease, opacity .2s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
    display: block;
}

.social-link:hover {
    transform: translateY(-2px);
    opacity: .92;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
}

.social-link.linkedin {
    background: #0a66c2;
}

.social-link.whatsapp {
    background: #20b15a;
}

.social-link.download {
    background: #000 !important;
}

@media (max-width: 767px) {
    .social-sticky {
        right: .7rem;
        bottom: 4rem;
        gap: .45rem;
    }

    .video {
        display: flex;
        flex-direction: column;
        padding: 20px 30px;
        width: 100%;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: .72rem;
    }

    .social-link svg {
        width: 17px;
        height: 17px;
    }
}

/* sticky social links end  */

/* Pop-up start */

.quote-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.60);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 99999;

    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

/* Hide popup */
.quote-overlay.hide {
    opacity: 0;
    visibility: hidden;
}

/* Popup */
.quote-popup {
    position: relative;
    width: 500px;
    height: 95%;
    max-width: calc(100% - 30px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    transform: scale(1);
    animation: popupAnimation 0.4s ease;
}

@keyframes popupAnimation {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Content */
.quote-content {
    padding: 42px 48px 38px;
    text-align: center;
}

.quote-content h2 {
    margin: 0 0 14px;
    font-size: 25px;
    line-height: 1.3;
    font-weight: 700;
    color: #247b45;
}

.quote-subtitle {
    margin: 0 auto;
    max-width: 500px;
    color: #555;
    line-height: 1.7;
}

.quote-line {
    width: 100%;
    height: 2px;
    background: #b5dcc5;
    margin: 20px 0 24px;
}

/* Close */
.quote-close {
    position: absolute;
    top: -20px;
    right: -15px;

    width: 50px;
    height: 50px;

    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;

    font-size: 40px !important;
    font-weight: 300;
    line-height: 42px;

    color: #444;
    cursor: pointer;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.quote-close:hover {
    background: #f5f5f5;
}

/* Inputs */
.quote-input {
    height: 48px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 6px;

    display: flex;
    align-items: center;

    margin-bottom: 12px;
    background: #fff;

    transition: 0.2s ease;
}

.quote-input:focus-within {
    border-color: #2c8b4c;
    box-shadow: 0 0 0 2px rgba(44, 139, 76, 0.08);
}

.quote-input span {
    width: 48px;
    color: #777;
    font-size: 21px;
}

.quote-input input,
.quote-input select {
    flex: 1;
    height: 100%;
    border: 0;
    padding: 10px;
    outline: none;
    background: transparent;
    color: #2c8b4c;
    padding-right: 15px;
}

/* Dropdown options */
.quote-input select option {
    background: #fff !important;
    color: #2c8b4c !important;
}

/* Selected option */
/* .quote-input select option:checked {
    background: #2c8b4c !important;
    color: #fff !important;
} */

.quote-input input::placeholder {
    color: #2c8b4c;
}

.quote-input select {
    cursor: pointer;
    appearance: auto;
}

/* Button */
.quote-submit {
    width: 100%;
    height: 48px;

    margin-top: 4px;

    border: none;
    border-radius: 6px;

    background: #278b48;
    color: #fff;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;
    transition: 0.3s ease;
}

.quote-submit:hover {
    background: #1e713a;
}

/* Success message */
.quote-success {
    margin-top: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    color: #444;
    font-size: 15px;
}

.quote-success span {
    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #4ba56b;
    border-radius: 50%;

    color: #4ba56b;
    font-weight: bold;
}

/* Mobile */
@media (max-width: 767px) {

    .quote-popup {
        width: calc(100% - 25px);
        max-height: 90vh;
        overflow-y: auto;
    }

    .quote-content {
        padding: 32px 22px 28px;
    }

    .quote-content h2 {
        font-size: 21px;
    }

    .quote-subtitle {
        font-size: 13px;
    }

    .quote-close {
        width: 42px;
        height: 42px;
        top: -15px;
        right: -8px;
        font-size: 27px;
        line-height: 35px;
    }
}

/* Pop-up end  */

table {
    border-collapse: collapse;
    width: 100%;
    color: #000;
    font-weight: 600;
}

td,
th {
    border: 2px solid #000;
    padding: 8px;
    text-align: center;

}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #96D055;
    color: #fff;
}

th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
    background-color: #3ba05d;
    color: #fff;
}


.pagination {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0px;
}

.pagination li a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  border: 1px solid gray;
  color: black;  
  margin: 0 4px;
  border-radius: 5px;
}

.pagination li a.active {
  background-color: #4CAF50;
  color: white;
}