@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Yeseva+One&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Nunito Sans", sans-serif;
}

.topbar-color {
    background: linear-gradient(140deg, #C62828, #f4b400);
    padding: 10px 0px;
}

.topbar-list {
    display: flex;
    align-items: center;
    gap: 15px;
}

.topbar-list {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.topbar-list i {
    font-size: 18px;
    color: #fff;
}

.menu-logo {
    width: 180px;
}

.menu-title {
    font-size: 16px;
    font-weight: 700;
    color: #231f20;
    margin: 0 5px;
    text-transform: uppercase;
}

/* Navbar base */
.navbar {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-inner {
    position: relative;
}

.menu-title {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

.menu-list {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    color: #212121;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgb(0 0 0 / 30%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 1000;
}


.menu-list a {
    display: block;
    padding: 13px 14px !important;
    text-decoration: none;
    color: #231f20;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    border-bottom: 1px dotted #ddd;
}

.menu-list a:hover {
    background: #f4b400 !important;
    color: #231f20 !important;
}

.menu-inner:hover .menu-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-title:hover {
    color: #E41F28 !important;
}

.donate-btn {
    position: relative;
    padding: 11px 40px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(140deg, #C62828, #f4b400);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: all 0.7s;
}

.donate-btn i {
    font-size: 16px;
}

.donate-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, #C62828, #f4b400);
    border-radius: 50px;
    z-index: -1;
    transition: all 0.7s;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}


.donate-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    transform: scale(1.2);
    opacity: 0;
    z-index: -1;
    transition: all 0.7s;
}


.donate-btn:hover::before {
    transform: scale(0.5);
    opacity: 0;
}

.donate-btn:hover::after {
    transform: scale(1);
    opacity: 1;
}

.donate-btn:hover {
    color: #fff;
    background: linear-gradient(180deg, #C62828, #f4b400);
}


.p-80 {
    padding: 60px 0;
}

.about-images {
    position: relative;
}

.about-img {
    border-radius: 1000px;
}

.about-img-2 {
    position: absolute;
    right: 59px;
    border: 4px solid #fff;
    border-radius: 1000px;
    bottom: -42px;
    width: 47%;
}


.about-images {
    position: relative;
}


.about-images:hover::after {
    opacity: 1;
}

.about-img,
.about-img-2 {
    transition: 0.7s;
}

.about-images:hover .about-img {
    transform: translateY(15px);
}

.about-images:hover .about-img-2 {
    transform: translateY(-15px);
}

.about-title h6 {
    font-size: 22px;
    font-weight: 700;
    color: #d6581a;
    align-items: center;
}

.about-title h1 {
    font-size: 35px;
    font-weight: 800;
    color: #231f20;
}

.about-title p {
    font-size: 19px;
    font-weight: 500;
    color: #2d2d2d;
    line-height: 1.6em;
}

.bg-color {
    background-color: #f9f9f9;
    padding: 50px 0;
}

.empower-section {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.empower-title i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(140deg, #C62828, #f4b400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.empower-title h2 {
    font-size: 30px;
    font-weight: 800;
    color: #231f20;
    margin-top: 10px;
}

.empower-title h6 {
    font-size: 19px;
    font-weight: 500;
    color: #2d2d2d;
    line-height: 1.5em;
    margin-bottom: 0;
}

.service-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    z-index: 1;
    border: 1px solid #dddddd5c !important;
    overflow: hidden;
    box-shadow: 0 -1px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    transition: all 0.3s ease;
}

.bg-yellow {
    background-color: #fff4cc;
    color: #F4B400;
}

.bg-green {
    background-color: #e2f9e1;
    color: #50d848;
}

.bg-blue {
    background-color: #e0f7ff;
    color: #26c6da;
}

.bg-orange {
    background-color: #ffeadb;
    color: #ff8a65;
}

.service-title {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #231f20;
}

.service-text {
    font-size: 19px;
    color: #2d2d2d;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 500;
}

.read-more {
    color: #f4b400;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: 0.3s;
}

.read-more:hover {
    color: #004d40;
}

.service-number {
    position: absolute;
    bottom: 18px;
    right: 26px;
    font-size: 77px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.04);
    z-index: -1;
    line-height: 1;
}

.sub-title {
    margin-bottom: 30px;
}

.sub-title h6 {
    font-size: 22px;
    font-weight: 700;
    color: #d6581a;
    text-align: center;
}

.sub-title h1 {
    font-size: 35px;
    font-weight: 800;
    color: #231f20;
    text-align: center;
}

.content-wrapper span {
    font-size: 18px;
    font-weight: 600;
    color: #f4b400;
}

.content-wrapper h2 {
    font-size: 50px;
    font-weight: 800;
    color: #231f20;
    margin-top: 20px;
}

.content-wrapper p {
    font-size: 19px;
    font-weight: 500;
    color: #2d2d2d;
    line-height: 1.6em;
}

.wrapper-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
}

.wrapper-list {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.wrapper-list i {
    width: 50px;
    height: 50px;
    background: linear-gradient(140deg, #C62828, #f4b400);
    color: #fffdfd;
    border-radius: 10px;
    display: flex;
    font-size: 20px;
    align-items: center;
    justify-content: center;
}

.wrapper-list h6 {
    font-size: 17px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 0;
    line-height: 1.6em;
}

.image-grid-wrapper {
    position: relative;
    text-align: end;
}

.wrapper-images,
.wrapper-img-2 {
    transition: all 0.7s ease;
}

.wrapper-images {
    border-radius: 20px;
    width: 85%;
}

.wrapper-img-2 {
    position: absolute;
    bottom: 46px;
    left: 0;
    width: 37%;
    border-radius: 10px;
    border: 10px solid #f9f9f9;
}

.image-grid-wrapper:hover .wrapper-images {
    transform: translateY(15px);
}

.image-grid-wrapper:hover .wrapper-img-2 {
    transform: translateY(-15px);
}

.call-float-box {
    position: absolute;
    top: 50px;
    right: -113px;
    background-color: #fff;
    box-shadow: 0px 0px 20px 0px rgba(40.99999999999999, 36.99999999999999, 35.99999999999999, 0.06);
    z-index: 3;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
    animation: contactboxmove 3s infinite linear alternate;
    border-radius: 10px;
}

.call-icon i {
    width: 50px;
    height: 50px;
    display: flex;
    font-size: 18px;
    color: #fff;
    align-items: center;
    justify-content: center;
    background: linear-gradient(140deg, #C62828, #f4b400);
    border-radius: 50%;
}

.call-float-title p {
    font-size: 20px;
    font-weight: 700;
    color: #121212;
    text-align: start;
    margin-bottom: 0;
}

.call-float-title h6 {
    font-size: 18px;
    font-weight: 700;
    color: #6A6765;
}

@keyframes contactboxmove {
    50% {
        transform: translateX(-30px);
    }
}

.sub-title p {
    font-size: 19px;
    font-weight: 500;
    color: #2d2d2d;
    margin-bottom: 0;
    text-align: center;
    line-height: 1.6em;
}

.outreach-images {
    overflow: hidden;
    border-radius: 10px;
}

.outreach-images img {
    border-radius: 10px;
    transition: transform 0.6s ease;
}

.outreach-card:hover img {
    transform: scale(1.1);
}

.outreach-title {
    margin-top: 20px;
}

.outreach-title h6 {
    font-size: 19px;
    font-weight: 500;
    color: #2d2d2d;
    text-align: center;
}

.outreach-title h2 {
    font-size: 22px;
    font-weight: 700;
    color: #121212;
    margin-bottom: 0;
    text-align: center;
}

.outreach-card {
    margin-bottom: 30px;
}

.testimonial-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-images img {
    border-radius: 10px;
    transition: all 0.7s;
}

.testimonial-images {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.testimonial-images:hover img {
    transform: scale(1.2);
}

.testimonial-title {
    width: 80%;
}

.testimonial-title i {
    font-size: 18px;
    color: #F4B400;

}

.testimonial-title p {
    font-size: 19px;
    font-weight: 500;
    margin-top: 10px;
    color: #2d2d2d;
}

.testimonial-users {
    display: flex;
    justify-content: space-between;
}

.testimonial-users h3 {
    font-size: 20px;
    font-weight: 700;
    color: #231f20;
    margin-bottom: 5px;
}

.testimonial-users h6 {
    font-size: 18px;
    font-weight: 500;
    color: #6A6765;
    margin-bottom: 0;
}

.faqs-images {
    position: relative;
}

.faq-img-1,
.faq-img-2 {
    border-radius: 30px;
    transition: all 0.7s ease;
}

.faq-img-2 {
    position: absolute;
    right: 0;
    bottom: -157px;
    border: 6px solid #fff;
}

.faqs-images:hover .faq-img-1 {
    transform: translateY(20px);
}

.faqs-images:hover .faq-img-2 {
    transform: translateY(-20px);
}

.help-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(140deg, #C62828, #f4b400);
    padding: 20px 25px;
    border-radius: 15px;
    width: fit-content;
    position: absolute;
    top: 36px;
    right: 89px;
    animation: contactboxmove 3s infinite linear alternate;
}

.help-icon {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-icon i {
    color: #fff;
    font-size: 28px;
}

.help-text h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.help-text h5 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.faqs-title {
    padding-left: 30px;
}

.faqs-title h6 {
    font-size: 18px;
    font-weight: 600;
    color: #f4b400;
}

.faqs-title h2 {
    font-size: 45px;
    font-weight: 800;
    color: #231f20;
    margin-bottom: 20px;
    margin-top: 10px;
}

.faq-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    border: 1px solid #fff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    padding: 20px 30px;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question {
    color: #231f20;
    font-size: 20px;
    font-weight: 700;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: #E41F28;
}

.faq-body {
    display: none;
    border-top: 1px solid #eee;
}

.faq-content p {
    padding: 20px;
    color: #2d2d2d;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.6;
}

.faq-card.active .faq-icon {
    transform: rotate(180deg);
}

.stats-section {
    background-color: #fff;
}

.stat-icon-wrap i {
    width: 80px;
    height: 80px;
    font-size: 28px;
    color: #fff;
    background: linear-gradient(140deg, #C62828, #f4b400);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.stat-item:hover .stat-icon-wrap i {
    transform: rotate(15deg) scale(1.1);
}

.stat-number {
    color: #121212;
    font-weight: 800;
    font-size: 45px;
    margin-bottom: 5px;
    text-align: center;
}

.stat-label {
    color: #2d2d2d;
    font-weight: 500;
    font-size: 19px;
    text-align: center;
    margin-bottom: 0;
}

.p-50 {
    padding: 50px 0 !important;
}

.footer-bg-color {
    background-color: #fff;
    padding: 50px 0 20px 0px;
    border-top: 1px solid #ddd;
}

.footer-title p {
    font-size: 19px;
    font-weight: 500;
    color: #2d2d2d;
    line-height: 1.5em;
    margin-top: 10px;
}

.footer-title h2 {
    font-size: 18px;
    font-weight: 700;
    color: #231f20;
}

.footer-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: #121212;
    margin-bottom: 10px
}

.footer-info h5 span {
    color: #d6581a;
    font-weight: 800;
}

.footer-info h6 {
    font-size: 23px;
    font-weight: 700;
    color: #231f20;
    margin-bottom: 10px;
    line-height: 1.5em;
}

.footer-list {
    font-size: 19px;
    font-weight: 500;
    color: #2d2d2d;

}

.footer-list:hover {
    color: #000000;
}

.social-media-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.social-media-link a {
    width: 45px;
    height: 45px;
    background-color: #8888881a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #231f20;
    transition: all 0.7s;
}

.social-media-link a:hover {
    background: linear-gradient(140deg, #C62828, #f4b400);
    color: #fff;
}

.copy-right-inner {
    border-top: 1px solid #ddd;
    margin-top: 20px;
    padding-top: 20px;
}

.copy-title p {
    font-size: 16px;
    font-weight: 600;
    color: #6A6765;
    margin-bottom: 0;
    text-align: center;
}

/* ...........................about us...... */
.sub-images {
    background-image: url(../images/apss-inner-banner.png);
    background-size: 100%;
    background-position: top -70px center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.bg-overlay {
    background-color: hsl(345deg 6.06% 12.94% / 55%);
    padding: 200px 0;
}

.sub-title-info h1 {
    font-size: 45px;
    font-weight: 800;
    color: #fff;
}

.sub-title-info p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
}

.sub-title-info p a {
    display: inline;
}

.about-info h6 {
    font-size: 18px;
    font-weight: 600;
    color: #f4b400;

}

.about-info h1 {
    font-size: 45px;
    font-weight: 800;
    color: #231f20;
}

.about-info p {
    font-size: 18px;
    font-weight: 500;
    color: #6A6765;
}

.about-list {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.about-icon i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #E41F28;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.about-list-title h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 0;
    color: #231f20;
}

.about-list p {
    font-size: 16px;
}

.about-list-info {
    font-size: 16px;
    font-weight: 600;
    color: #6A6765;
    margin-top: 15px;
    margin-bottom: 0;
}

.about-list-info i {
    color: #F4B400;
}

.approach-sub-title h6 {
    font-size: 18px;
    font-weight: 600;
    color: #E41F28;
}

.approach-sub-title h1 {
    font-size: 45px;
    font-weight: 800;
    color: #231f20;
}

.approach-sub-title p {
    font-size: 17px;
    font-weight: 400;
    color: #6A6765;
}

.mission-card {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
    transition: all 0.7s;
}

.mission-card:hover .icon-circle i {
    background-color: #E41F28;
    color: #fff;
    transform: rotateY(180deg);
}

.mission-card:hover {
    background-color: #ffffff;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #eee;
}

.mission-card:hover .mission-title {
    color: #F4B400;
    transition: color 0.3s ease;
}

.icon-circle i {
    width: 60px;
    height: 60px;
    background: linear-gradient(140deg, #C62828, #f4b400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #fff;
    justify-content: center;
}

.mission-title {
    font-size: 25px;
    font-weight: 700;
    color: #231f20;
}

.mission-text {
    font-size: 16px;
    font-weight: 500;
    color: #6A6765;
    line-height: 1.6em;
}

.mission-list {
    display: flex;
    font-size: 16px;
    font-weight: 500;
    color: #6A6765;
    gap: 12px;
}

.mission-list i {
    color: #F4B400;
}

.board-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #dddddd7e;
}

.board-images {
    overflow: hidden;
    transition: 0.4s ease;
    border-radius: 0 0 1000px 1000px;
}

.board-images img {
    width: 100%;
    border-radius: 0 0 1000px 1000px;
    transition: 0.4s ease;
}


.board-images:hover img {
    transform: scale(1.03);
}

.board-title h3 {
    font-size: 22px;
    font-weight: 800;
    color: #231f20;
    text-align: center;
    margin-bottom: 0;
}

.board-title {
    padding: 20px 25px;
}

.board-title p {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #6A6765;
    margin-bottom: 0;
}

.membership-title {
    font-size: 18px;
    font-weight: 500;
    color: #6A6765;
    margin-bottom: 0;
    text-align: center;
    margin-top: 20px;
}

.membership-title span {
    color: #f4b400;
    font-weight: 600;
}

.impact-images {
    position: relative;
}

.impact-img-1,
.impact-img-2 {
    border-radius: 20px;
    transition: all 0.7s ease;
}

.impact-img-2 {
    position: absolute;
    right: 0;
    bottom: -57px;
    border: 3px solid #fff;
}

.impact-images:hover .impact-img-1 {
    transform: translateY(20px);
}

.impact-images:hover .impact-img-2 {
    transform: translateY(-20px);
}

.impact-title h6 {
    font-size: 18px;
    font-weight: 600;
    color: #F4B400;
}

.impact-title h1 {
    font-size: 45px;
    font-weight: 800;
    color: #121212;
}

.impact-title p {
    font-size: 18px;
    font-weight: 400;
    color: #6A6765;
    line-height: 1.5em;
}

.stat-card {
    background-color: #f9f9f9;
    padding: 40px;
    border: 1px solid #dddddd5d;
    border-radius: 15px;
}

.stat-card h1 {
    font-size: 45px;
    font-weight: 800;
    color: #231f20;
}

.stat-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #231f20;
}

.stat-card span {
    color: #E41F28;
}

.apss-images {
    overflow: hidden;
    border: 1px solid #ddd;
}

.apss-images img {
    width: 100%;
    transition: transform 0.7s ease;
}

.apss-images:hover img {
    transform: scale(1.03);
}



.logo-inner img {
    width: 250px;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.7s;
}

/* ....................team........ */

.team-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: #121212;
    margin-bottom: 20px;
}

.team-card {
    background-color: #f1f6f7;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.7s;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.team-images {
    position: relative;
    z-index: 0;

}

.team-card:hover .team-images::after {
    background-color: #e41f291e;
}

.team-images img {
    width: 100%;
    z-index: 0;
    border-radius: 0px 0px 150px 0;
}

.team-images::after {
    position: absolute;
    right: -4px;
    transition: all 0.7s;
    bottom: -7px;
    width: calc(100% + 5px);
    height: 100%;
    content: "";
    background-color: #fff;
    z-index: -1;
    border-radius: 0 0 150px 0;
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #121212;
    margin-bottom: 3px;
}

.team-info p {
    font-size: 16px;
    font-weight: 600;
    color: #6A6765;
    margin-bottom: 15px;
}

.team-info h6 {
    font-size: 15px;
    font-weight: 600;
    color: #f4b400;
}

.mt-20 {
    margin-top: 30px;
}

/* ...................Contact Us........... */


.contact-box {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px 50px;
    transition: all 0.7s ease;
}

.contact-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon i {
    width: 70px;
    height: 70px;
    background: linear-gradient(140deg, #C62828, #f4b400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    line-height: 0;
    border: 5px solid #edededc9;
    border-radius: 50%;
    margin: 0 auto;
    color: #fff;
    top: -10px;
    margin-top: -58px;
    transition: all 0.4s ease;
}

.contact-box:hover .contact-icon i {
    transform: rotate(10deg) scale(1.1);
}

.contact-title h3 {
    font-size: 25px;
    font-weight: 700;
    color: #231f20;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 5px;
}

.contact-title p {
    font-size: 16px;
    font-weight: 600;
    color: #6A6765;
    text-align: center;
    line-height: 1.5em;
}

.contact-title h6 {
    font-size: 18px;
    font-weight: 700;
    color: #231f20;
    text-align: center;
}

.contact-title h6 a {
    display: inline;
}

.contact-title h6 a:hover {
    color: #E41F28;
}

.contact-from {
    background-color: #fff;
    padding: 30px 30px;
    border-radius: 15px;
    margin-top: 50px;
}

.contact-images img {
    border: 1px solid #dddddd50;
    border-radius: 15px;
}

.contact-sub-title span {
    color: #f4b400;
    font-size: 18px;
    font-weight: 600;
}

.contact-sub-title h1 {
    font-size: 38px;
    font-weight: 700;
    color: #121212;
    margin-top: 15px;
}

.contact-sub-title p {
    font-size: 18px;
    font-weight: 400;
    color: #6A6765;
    margin-bottom: 10px;
}

.contact-sub-title {
    padding: 30px;
}

.contact-label {
    font-size: 15px;
    font-weight: 700;
    color: #231f20;
}

.contact-input {
    padding: 15px 15px 15px 15px;
    width: 100%;
    background: #f7f5f5;
    font-size: 14px;
    font-weight: 600;
    outline: 0;
    color: #231f20;
    border: 1px solid #f7f5f5;
    margin-bottom: 20px;
    margin-top: 4px;
    transition: all 0.7s;
}

.contact-input:hover {
    border-color: #e41f2979;
}

/* .................Eduction.......... */
.education-form {
    background-color: #fff;
    padding: 50px;
    border: 1px solid #ebebeb;
}

.education-images img {
    border-radius: 10px;
    transition: all 0.7s;
}

.education-images {
    overflow: hidden;
    border-radius: 10px;
}

.education-images:hover img {
    transform: scale(1.03);
}

.education-title h1 {
    font-size: 35px;
    font-weight: 700;
    color: #231f20;
}

.education-title p {
    font-size: 17px;
    font-weight: 500;
    color: #6A6765;
}

.education-title p i {
    color: #E41F28;
}

.education-images img {
    width: 100%;
}

.ribbon-images {
    overflow: hidden;
    border-radius: 20px;
}

.ribbon-images:hover img {
    transform: scale(1.03);
}

.ribbon-images img {
    border-radius: 20px;
    transition: all 0.7s;
}

.volunteer-images-inner {
    overflow: hidden;
    border-radius: 20px;
}

.volunteer-images-inner img {
    border-radius: 20px;
    transition: all 0.7s;
}

.volunteer-images-inner:hover img {
    transform: scale(1.05);
}

.ribbon-title h1 {
    font-size: 35px;
    font-weight: 700;
    color: #231f20;
}

.ribbon-title p {
    font-size: 18px;
    font-weight: 500;
    color: #6A6765;
}

.ribbon-title p a {
    color: #F4B400;
    display: inline;
}

.volunteer-card {
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 10px;
}

.volunteer-card img {
    border-radius: 10px;
}

.volunteer-card h2 {
    font-size: 25px;
    font-weight: 700;
    color: #231f20;
    margin-top: 20px;
}

.volunteer-card p {
    font-size: 16px;
    font-weight: 500;
    color: #6A6765;
    line-height: 1.6em;
    margin-bottom: 0;
}

.volunteer-card p a {
    color: #f4b400;
    display: inline;
}

.volunteer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.volunteer-images {
    width: 80%;
}

.basics-title img {
    transition: all 0.7s;
    border-radius: 20px;
}

.basics-images {
    overflow: hidden;
    border-radius: 20px;

}

.basics-images:hover img {
    transform: scale(1.03);
}

.basics-title h2 {
    font-size: 35px;
    font-weight: 700;
    color: #231f20;
    margin-top: 20px;
}

.basics-title p {
    font-size: 16px;
    font-weight: 500;
    color: #6A6765;
    line-height: 1.5em;
}

.basics-title h3 {
    font-size: 25px;
    font-weight: 600;
    color: #231f20;
}

.risk-list li {
    font-size: 16px;
    font-weight: 500;
    color: #6A6765;
    line-height: 1.5em;
    margin-bottom: 10px;
}

.exchange-title h1 {
    font-size: 30px;
    font-weight: 700;
    color: #231f20;
}

.exchange-title p {
    font-size: 16px;
    font-weight: 500;
    color: #6A6765;
    line-height: 1.6em;
}

.exchange-title p a {
    display: inline;
    color: #F4B400;
    font-weight: 600;
}

.exchange-images {
    overflow: hidden;
    border-radius: 10px;
}

.exchange-images img {
    border-radius: 10px;
    transition: transform 0.7s;
}

.exchange-images:hover img {
    transform: scale(1.05);
}

.needles-images {
    overflow: hidden;
    border-radius: 15px;
}

.needles-images img {
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.needles-images:hover img {
    transform: scale(1.08);
}

.exchange-list li {
    font-size: 16px;
    font-weight: 500;
    color: #6A6765;
    margin-bottom: 10px;
}