/* common css start */
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Century';
    src: url('../fonts/Century-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima';
    src: url('../fonts/Proxima-Regular.otf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima';
    src: url('../fonts/Proxima-Semibold.otf') format('truetype');
    font-weight: 600;
    font-style: normal;
}


.ff-robo {
    font-family: 'Roboto' !important;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0px;
    padding: 0px;
}


.poco-container {
    max-width: 1440px;
    width: 100%;
    box-sizing: border-box;
    padding: 0px 15px;
    margin: 0px auto;
}

.poco-container-fluid {
    max-width: 100%;
    width: 100%;
    margin: 0px auto;
}

img {
    width: 100%;
    height: auto;
}

.bg-white {
    background-color: white;
}

/* common css end */

/* header css */
/* Base styles */
.logo-wrapper,
.footer-logo {
    width: 200px;
    height: auto;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0px;
}

.header-nav-links {
    flex: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link-text {
    font-size: 16px;
    font-weight: 400;
    transition: all 0.2s ease-in-out;
}
.nav-link-text-link{
    text-decoration: none;
    color: black;
}

.nav-link:hover .nav-link-text {
    font-size: 18px;
    font-weight: 500;
    color: black;
}

.nav-link-icon {
    transform-origin: center;
    transition: all 0.2s ease-in-out;
}

.nav-links:hover .nav-link-icon {
    transform: rotate(180deg);
}

.header-nav-links .links-list {
    padding: 0px;
    margin: 0px;
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.nav-links {
    position: relative;
    padding: 10px 0px;
    cursor: pointer;
}

.nav-submenu {
    box-shadow: 0px 0px 4px 0px #b9b9b9;
    border-radius: 4px;
    padding: 16px;
    display: none;
    position: absolute;
    list-style: none;
    top: 100%;
    left: 0;
    z-index: 99;
    transition: all 0.3s ease-in-out;
}

.sub-nav-link {
    padding: 8px 12px;
}

.sub-nav-link a {
    position: relative;
}

.sub-nav-link a::after {
    position: absolute;
    content: '';
    width: 0px;
    top: 100%;
    left: 0px;
    height: 1px;
    transition: 0.3s all ease-in-out;
    background-color: black;
}

.sub-nav-link:hover a::after {
    width: 100%;
}

.nav-links:hover .nav-submenu {
    display: list-item;
}

.sub-nav-link a {
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
    color: black;
    text-decoration: none;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: #000;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Overlay for mobile menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

/* Media queries for responsive design */
@media (max-width: 1024px) {
    .header-nav-links .links-list {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    body.menu-open {
        overflow: hidden;
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    .header-nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        /* Start off-screen */
        width: 300px;
        height: 100vh;
        background-color: white;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        padding: 70px 20px 20px;
        overflow-y: auto;
    }

    .header-nav-links.open {
        right: 0;
        /* Slide in when open */
    }

    .header-nav-links .links-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .nav-links {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .nav-link-text {
        font-size: 18px;
    }

    .nav-submenu {
        position: static;
        box-shadow: none;
        display: none;
        padding: 5px 0 5px 20px;
        width: 100%;
    }

    .nav-links.active .nav-submenu {
        display: block;
    }

    .nav-links.active .nav-link-icon {
        transform: rotate(180deg);
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .sub-nav-link {
        padding: 10px 0;
    }

    .sub-nav-link a {
        font-size: 15px;
    }
}

/* For small mobile screens */
@media (max-width: 480px) {
    .logo-wrapper {
        width: 150px;
    }

    .header-nav-links {
        width: 260px;
        /* right: -260px; */
    }
}

/* header css */

/* banner hero css */
.value-text {
    color: white;
    font-size: 18px;
    text-align: center;
    max-width: 1000px;
    margin: 0px auto 20px;
}

.hero-banner-image {
    height: 600px;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    background-size: 100%;
    padding: 50px;
    box-sizing: border-box;
    align-items: flex-end;
    position: relative;
}

.hero-banner-image::after {
    content: '';
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #0000008c;
}

.hero-banner-slider.swiper {
    width: 100%;
    height: 100%;
}

.hero-banner-slider .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* display: flex; */
    justify-content: center;
    align-items: center;
}


.hero-banner-heading {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.44;
    letter-spacing: 0.07em;
    text-align: center;
    color: white;
    margin: 0px auto 32px;
}

.hero-banner-text {
    font-size: 30px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.07em;
    text-align: center;
    color: white;
}

.custom-prev,
.custom-next {
    background-color: transparent;
    width: 48px;
    height: 48px;
    border: none;
    position: absolute;
    top: 50%;
    z-index: 20;
    cursor: pointer;
}

.custom-prev {
    left: 32px;
    transform: translateY(-50%);
}

.custom-next {
    right: 32px;
    transform: translateY(-50%);
}


/* banner hero css */

/* our mission css */
.poco-wrapper {
    display: flex;
    gap: 20px;
    padding: 40px 0px;
    align-items: stretch;
    justify-content: space-between;
}

.mision-left-side {
    background-color: #0394B5;
    padding: 32px 24px;
    border-radius: 20px;
    width: 450px;
}

.section-heading {
    font-family: 'Century';
    font-size: 42px;
    font-weight: 700;
    line-height: 1.5;

}

.our-mission .section-heading {
    margin: 0px 0px 20px;
}

.text-black {
    color: black;
}

.text-white {
    color: white;
}

.mission-sub-text {
    font-family: 'Proxima';
    font-size: 24px;
    font-weight: 400;
    color: #fff;

    line-height: 34px;
}

.mision-right-side {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    width: calc(100% - 470px);
}

/* our mission css */

/* our projects */
.our-projects {
    padding: 0px 0px 40px;
}

.project-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    align-items: stretch;
}

.project-container .project-cards {
    border-radius: 30px;
    box-shadow: 0px 0px 8px 0px #b9b9b9;
    overflow: hidden;
}

.our-projects .section-heading,
.our-value .section-heading,
.our-awards .section-heading {
    margin: 0px 0px 30px;
}

.our-value .section-heading,
.our-awards .section-heading {
    text-align: center;
}

.project-cards-image {
    width: 100%;
    height: 270px;
    display: flex;
    overflow: hidden;

}

.project-cards-image img {
    transition: 0.3s all ease-in-out;
}

.project-cards:hover .project-cards-image img {
    transform: scale(1.03);
}

.projects-card-heading {
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    color: #000;
    margin: 20px 0px 15px;
}

.projects-card-subheading {
    font-size: 18px;
    font-weight: 400;
    margin: 0px 0px 20px;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-card-button {
    display: flex;
    font-size: 15px;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    color: white;
    transition: all ease-in-out 0.3s;
    width: 100px;
    border-radius: 40px;
    background-color: #000;
    border: 1px solid #000;
    text-decoration: none;
}

.project-card-button:hover {
    background-color: white;
    color: #000;
}

.our-awards .project-card-button {
    margin: 40px auto 0px;
}

.project-content-container {
    padding: 0px 15px 15px;
    display: flex;
    flex-direction: column;
    align-content: space-between;
}

.value-ground {
    background-image: url("../img/values.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 70px 20px 40px;
}

.value-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: auto;
    flex-direction: column;
}


.vlaue-heading {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 600;
    text-align: center;
    color: white;
    margin-bottom: 0px;
    margin-top: 0;
    font-style: normal;
}

.value-description {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 400;
    text-align: center;
    color: white;
    margin-bottom: 0px;
    margin-top: 0;
    font-style: normal;
}

.values-slider {
    padding-bottom: 50px;
    padding-top: 20px;
    max-width: 800px;
    /* margin-bottom: 30px; */
    border-top: 1px solid white;
}

.value-image img {
    aspect-ratio: 1/1;
}

.values-slider .swiper-pagination-bullet {
    background-color: transparent;
    border: 1px solid #fff;
    width: 12px;
    height: 12px;
}

.values-slider .swiper-pagination-bullet-active {
    background-color: white;
}

/* our projects */

/* our awards */
.our-awards {
    background-color: #F5F5F5;
    padding: 40px 0px;
}

.award-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.awards-container {
    padding: 40px 0px;
}

.award-list .awards-icon-image {

    display: flex;

}

.award-list .awards-icon-image img {
    /* height: 100% !important; */
    max-width: 100%;
    vertical-align: middle;
}

/* our awrads */

/* footer */
footer {
    background-color: white;
    padding: 60px 0px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
    justify-content: center;
    gap: 140px;
}

.footer-logo-text {
    font-weight: 400;
    font-family: 'Proxima';
    font-size: 18px;
    color: #030303;
    margin: 20px 0px 30px;
}

.news-heading {
    font-weight: 600;
    font-family: 'Proxima';
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 15px;
    color: #000;
}

.Newsletters-container {
    position: relative;
    display: inline-block;
}

.news-input {
    width: 250px;
    padding: 0px 12px;
    height: 40px;
    border-radius: 20px;
    border: 1px solid #000;
}

.submit-newsbutton {
    position: absolute;
    right: -24px;
    width: 40px;
    cursor: pointer;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    border-radius: 50%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-newsbutton img {
    width: 20px;
    height: 20px;
}

.links-heading {
    font-family: 'Roboto';
    font-weight: 700;
    font-size: 20px;
    color: #000;
    margin: 0px 0px 20px;
}

.useful-link-list {
    padding-left: 0px;
    margin: 0px;
    list-style-type: none;
    list-style: inside;
}

.useful-link-list li {
    margin-bottom: 15px;
    list-style-type: none;
}

.footer-links-anc {
    font-size: 18px;
    font-family: 'Proxima';
    text-decoration: none;
    font-weight: 400;
    color: #000;
}

.contant-card-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    margin-bottom: 25px;
    gap: 20px;
}

.contant-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contant-card-icon img {
    width: 20px;
    height: 20px;
}

.contact-card-content h3,
.contact-card-content p {
    font-size: 18px;
    font-family: 'Proxima';
    text-decoration: none;
    font-weight: 600;
    color: #000;
    margin-top: 0px;
    margin-bottom: 10px;
}

.contact-card-content p {
    margin-bottom: 0px !important;
}

/* footer  */
/* location map */
.location-map {
    padding: 40px 0px;
}

.contact-form form {
    max-width: 100%;
    width: 500px;
    margin: auto;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #000;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    color: #fff;
    outline: none;
    border: 1px solid #222222;
}

.form-group textarea {
    resize: none;
    height: 100px;
}


.contact-container-card-image,
.contact-form {
    flex: 1;
}

.contact-container-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: 20px;
}

/* location map */

/* about paco */
.bg-about {
    background-image: url(../img/img-9.png);
    background-size: 100%;
    background-repeat: no-repeat;
    /* background-size: cover; */
    background-position: center;
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-about::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #00000057;
    top: 0%;
    left: 0%;
}

.bg-about .section-heading {
    color: white;
    font-size: 38px;
    position: relative;
    z-index: 2;

}

.about-us-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
    justify-content: center;
}

.about-content-card {
    padding: 60px;
    background-color: #f9f9f9;
    border-radius: 30px;
    overflow: hidden;
    border: 2px dashed #cccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-us-wrapper {
    padding: 40px 0px;
}

.about-content-card-image {
    border-radius: 30px;
    overflow: hidden;
}

.about-content-text {
    font-size: 20px;
    font-weight: 400;
    color: #b9b9b9;
    text-align: center;
}

/* about paco */
/* gallery page */

.image-galley {
    padding: 40px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.gallery {
    column-count: 4;
    column-gap: 10px;
    max-width: 90vw;
}

.gallery a {
    display: block;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 10px;
}

.gallery img {
    width: 100%;
    display: block;
    border-radius: 10px;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery a:hover img {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(1.2);
}

@media (max-width: 1024px) {
    .gallery {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .gallery {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .gallery {
        column-count: 1;
    }
}

/* gapllery page */
/* about team page */
p.description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #555;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0px auto 0px;

}

.team-member {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.team-member h2 {
    color: #000;
    margin: 10px 0 5px;
}

.team-member .role {
    color: #777;
    font-weight: bold;
}

.team-member p {
    color: #444;
    margin-top: 8px;
}

.team-wrappe-fig {
    text-align: center;
}

/* about team page */
/* project-intro- */
.project-intro-image img {
    aspect-ratio: 1.6/0.5;
    width: 100%;
    object-fit: cover;
}

.project-intro-image {
    width: 100%;

}

.project-intro {
    position: relative;
}

.project-intro .project-intro-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #00000057;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.project-intro-content span {
    font-size: 40px;
    color: white;
    font-family: 'Proxima';
    font-weight: 600;
}

.project-main-container {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: flex-start;
    max-width: 1000px;
    margin: 20px auto;
    padding: 10px;
    border: 4px solid #e4e4e4;
}

.project-main-image img {
    aspect-ratio: 1/1;
}

.project-main-image {
    width: 300px;
}

.project-main-content {
    flex: 1;
}

.project-main-content h3 {
    font-size: 24px;
    color: black;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0px;
}

.project-main-content p {
    font-size: 18px;
    color: black;
    margin: 0px;
    font-weight: 400;
}

/* project-intro- */
/* services page */
.service-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
}

.service-container.reverse {
    flex-direction: row-reverse;
}

.service-section h3 {
    font-size: 24px;
    color: black;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0px;
}

.service-section p {
    font-size: 18px;
    color: black;
    margin: 0px;
    font-weight: 400;
}

.service-image,
.services-content {
    flex: 1;
    /* width: 50%; */
}

.service-image img {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.service-image {
    height: 600px;
}


.services-content {

    padding: 40px 0px;
}

.bg-blue {
    background-color: #1a252e;
}

.bg-brown {
    background-color: #af9659;
}

.bg-redish {
    background-color: #d94b38;
}

.services-content h3 {
    font-size: 36px;
    line-height: 1.5;
    font-weight: 700;
    padding: 0px 50px;
    text-transform: uppercase;
    font-style: normal;
    color: #fff;
    margin-bottom: 10px;
}



.services-content p {
    color: #fff;
    line-height: 1.5;
    padding: 0px 50px;
    letter-spacing: 1px;
    margin: 0px;
    text-align: justify;
}

.volunteer-container .section-heading {
    margin-bottom: 20px;
    text-align: center;
}

/* service page */
.volunteer-container p {
    font-size: 18px;
    color: black;
    margin: 10px auto;
    max-width: 1000px;
    text-align: center;
    line-height: 1.5;
    font-weight: 400;
}

.volunteer-slider {
    /* padding: 35px 18%; */
    /*     width: 100%; */
    margin: 32px auto;

}

.volunteer-card-box {
    padding: 50px 130px 50px 130px;
    background: #fff;
    border-radius: 9px;
    border-right: 3px solid #000;
    border-left: 3px solid #000;
    line-height: 1.5;
    width: 500px;
    margin: auto;
    border-top-right-radius: 150px;
    font-size: 15px;
    border-bottom-left-radius: 150px;

}

.volunteer-card-box span {
    text-align: center;
}

.volunteer-slider .swiper-slide {
    /* max-width: 600px; */
    text-align: center;
}

.heading-box {
    display: flex;
    justify-content: center;
    max-width: 1100px;
    margin: auto;
    padding: 50px 0px;
}

.head-box-icon img {
    width: 50px;
    margin: auto;
    display: block;
}

.heading-box-inner {
    text-align: center;
    flex: 0 0 20%;
    padding: 0 15px;
}

.head-box-content a {
    text-align: center;
    display: block;
    padding-top: 10px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.bg-light {
    background-color: #f9f9f9;
}

.bg-pad {
    padding: 70px 0px;
}

.cmsmasters_heading {
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
    font-style: normal;
    font-size: 30px;
    line-height: 45px;
}

.cmsmasters_heading-text {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    text-align: center;
    font-style: normal;
    margin-bottom: 30px;
}

.form-section {
    background: white;
    padding: 30px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.form-section label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

.form-section input,
.form-section select,
.form-section textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-section button {
    margin-top: 15px;
    padding: 10px 20px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.form-section button:hover {
    background: #218838;
}

form.form {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: auto;
}

.label-text {
    font-size: 18px;
    color: #000;
    margin-top: 20px;
    margin-bottom: 10px;
}

.input-box {
    height: 29px;
    border: 1px solid rgba(0, 0, 0, .3);
    border-radius: 4px !;
    flex: 1;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 16px;
}

.button-box {
    margin: 20px auto 0px;

}

.headline_outer {
    height: 300px;
}

.headline_outer .headline_color {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.entry-title {
    font-size: 36px;
    line-height: 42px;
    font-weight: 700;
    font-style: normal;
    color: #fff;
}


.headline_outer:first-child {
    overflow: hidden;
}

.headline_outer {
    background-color: #212938;
    background-image: url(../img/partner-Ban.png);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-container {
    padding: 50px;
}

.partner-container p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    font-style: normal;
}

.compain-container h3 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    font-style: normal;
    text-transform: none;
    text-decoration: none;
}

.compain-container p {
    padding: 0 0 20px;
    margin: 0;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.icon {
    font-size: 40px;
    color: green;
}

.title {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
}

.description {
    color: gray;
    margin-bottom: 15px;
}

.hero-banner-image {
    position: relative;
}

.hero-banner-image::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #00000057;
    top: 0;
    position: absolute;
    left: 0;
}

.banner-container {
    position: relative;
    z-index: 10;
}

.bg-publication {
    background-image: url(../img/img-19.png);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
    background-position: center;

}

.publication-box {
    background-color: rgba(255, 255, 255, 0.74);
    padding-top: 30px;
    padding-bottom: 30px;
}

.publication-box h3 {
    font-size: 30px;
    line-height: 45px;
    font-weight: bold;
    font-style: normal;
    margin-bottom: 30px;
    margin-top: 10px;
    color: #000;
    text-align: center;
}

.publication-box .book-text {
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    font-style: normal;
    text-transform: none;
    text-decoration: none;
    color: black;
    text-align: center;
    padding-bottom: 10px;
}

.publication-box .contribute-text {
    font-size: 14px;
    line-height: 22px;
    font-weight: normal;
    font-style: normal;
    text-transform: none;
    text-decoration: none;
    text-align: center;
    color: #b8763f;
}

.stories_heading {
    font-weight: 500;
    font-size: 30px;
    line-height: 45px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    font-style: normal;
    color: #000000;
}

.book-publication-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 auto;
}

.book-heading {
    font-size: 16px;
    line-height: 22px;
    font-weight: normal;
    font-style: normal;
    color: #000;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.publication-book {
    /* width: 300px; */
    display: flex;
}

.publication-book img {
    object-fit: contain;
}

.book-purchase-wrapper {
    padding: 40px 0px;
    background-color: white;

}

.book-purchase-wrapper h2 {
    margin-bottom: 30px;
    font-weight: 500;
    text-align: center;
    /* margin: 0px auto 30px; */
}

.book-purchase-wrapper a {}

.text-contain-lunch {
    padding: 80px 40px 50px;
    background-color: #2d2d2d;
}

.lunched-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.lunched-wrapper>div {
    flex: 1;
}

.text-contain-lunch h2 {
    font-size: 30px;
    line-height: 45px;
    font-weight: 500;
    font-style: normal;
    color: #ffffff;
    text-align: left;
}

.text-contain-lunch h4 {
    color: #ffffff;
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
    font-style: normal;
    text-transform: none;
    text-align: left;
    text-decoration: none;
}

@media (max-width:1200px) {
    .hero-banner-heading {
        font-size: 32px;
        margin: 0px auto 20px;
    }

    .hero-banner-text {
        font-size: 24px;
    }

    .hero-banner-image {
        height: 500px;
    }

    .mision-left-side {
        padding: 32px 24px;
        width: 40%;
    }

    .mision-right-side {
        width: 60%;
    }

    .project-container {
        gap: 20px;
    }
}

@media (max-width:991px) {
    .hero-banner-heading {
        font-size: 24px;
        margin: 0px auto 32px;
    }

    .our-projects .section-heading {
        margin: 20px 0px;
        text-align: center;
    }

    .project-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .hero-banner-image {
        height: 400px;
    }

    .hero-banner-text {
        font-size: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
    }

    .poco-wrapper {
        flex-direction: column;
        padding: 0px 0px;
    }

    .mision-left-side {
        width: 100%;
        box-sizing: border-box;
        margin-top: 30px;
        padding: 16px;
    }

    .section-heading {
        font-size: 24px;
    }

    .our-mission .section-heading {
        margin: 0px 0px 20px;
        text-align: center;
    }


    .mission-sub-text {
        font-size: 20px;
        line-height: 1.5;
        text-align: center;
    }

    .mision-right-side {
        width: 100%;
    }

}

@media (max-width:776px) {
    .hero-banner-heading {
        font-size: 20px;
        margin: 0px;

    }

    .projects-card-heading,
    .value-description,
    .value-text {
        font-size: 16px;
    }

    .projects-card-subheading {
        font-size: 14px;
        margin: 0px 0px 14px;
    }

    .project-card-button {
        font-size: 14px;
    }

    .banner-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .section-heading {
        font-size: 20px;

    }

    .mission-sub-text,
    .vlaue-heading {
        font-size: 18px;
        line-height: 1.5;
    }

    .hero-banner-image {
        height: 300px;
        padding: 30px 30px;
    }

    .hero-banner-text {
        font-size: 18px;
        margin: 0px;

    }

    .custom-prev,
    .custom-next {
        display: none;
    }
}

@media (max-width:556px) {
    .hero-banner-heading {
        font-size: 18px;
        margin: 0px;

    }

    .banner-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .hero-banner-image {
        height: 380px;
        padding: 15px 0px;
        background-size: cover;
    }

    .hero-banner-text {
        font-size: 16px;
        margin: 0px;

    }

    .section-heading {
        font-size: 18px;
    }

    .mission-sub-text {
        font-size: 16px;
        line-height: 1.5;
        margin: 0px;
    }
}