* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    /* padding: 20px; */
}

/* ===========Header start============= */
header {
    background-color: #321312;
    color: #F4C581;
    padding: 10px 70px;
    text-align: center;
    display: flex;
    width: 100%;
    align-items: center;

}

nav {
    /* margin: 20px 0; */
    text-align: center;
    display: inline-block;
    width: 100%;
    align-self: center;
    z-index: 10;


}

nav a {

    text-decoration: none;
    text-decoration-color: none;
    color: #F4C581;

}

nav a.active {
    color: #fff;
    border-bottom: 2px solid #fff;
    transition: all 0.3s ease;
}

ul>li {
    list-style: none;
    display: inline;
    margin: 0 10px;
    color: #F4C581;
    font-size: 18px;
    font-weight: 600;
}

.logo {
    width: 45px;
    height: auto;
    /* margin: 20px 0; */
}

a>img {
    width: 100%;
    object-fit: cover;
    /* height: auto; */
}

header {
    justify-content: space-between;
    position: relative;
}

nav {
    margin-left: auto;
}

/* ===== Hamburger ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 999;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #F4C581;
    /* MATCH HEADER TEXT COLOR */
    margin: 5px 0;
    transition: 0.3s;
}

/* ===== Donation Button ===== */
.donate-btn-1 {
    background: linear-gradient(45deg, #F4C581, #e0a84f);
    color: #321312;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease-in;
    width: 16%;


}

.donate-btn-1:hover {
    background: #ffffff;
    color: #321312;
    transform: scale(1.05);
    transition: all 0.3s ease-in;
}


/* ===========Header end============= */

/* ==========Hero Section Start=========== */
.hero-container {
    width: 100%;
    height: 100vh;
    /* margin: 20px 0; */
    background: url(../img/hero-banner.png) no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    width: 500px;
    height: auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-text {
    color: #500101;
    font-size: 48px;
    font-family: Arial;
    font-weight: bolder;
    text-align: center;
    position: relative;
    bottom: 8rem;
    /* text-shadow: 2px 2px 15px #fff;
    -webkit-text-stroke: 1px #fff; */
}

/* ==========Hero Section End=========== */

/* ==========About Section Start=========== */
.about-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100vh;
    padding: 20px;
    overflow: hidden;
    background: url(../img/About-background.png) no-repeat center center/cover;
}

.about-head {
    /* text-align: center; */

    width: 100%;
    color: #500101;
    margin-bottom: 2rem;
    padding: 0 50px;
}

.about-head h2 {
    font-size: 36px;
    font-weight: bolder;
}

.circle-line {
    width: 100%;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.line {
    width: 80%;
    height: 4px;
    background-color: #500101;
    /* position: relative; */
    margin-bottom: 1rem;
}

.circle-container {
    position: relative;
    top: -2.7rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    /* gap: 2rem; */
    width: 100%;
}

.circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
}

.about-para-1 {
    width: 100%;
    padding: 0 60px;
}

.about-para-1 p {
    font-size: 20px;
}

.about-text-cont {
    width: 100%;
    padding: 0 50px;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.about-text-container {
    width: 66%;
    display: flex;
    justify-content: space-between
}

.about-text {
    width: 20%;

}

.about-p-head {
    font-size: 24px;
    font-weight: bolder;
    color: #000;
    text-align: center;
}

.about-para {
    font-size: 18px;
    color: #000;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.5;
}

.about-read-more {
    margin-top: 20px;
    text-align: center;
}

.read-more-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #F4C581;
    color: #321312;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s ease;
    box-shadow: 3px 3px 9px 2px #000;
}

.read-more-btn:hover {
    background-color: #d9a85f;
    transform: translateY(-2px);
}

/* ==========About Section End=========== */
/* ===========Payment Section============ */
.payment-section {
    width: 100%;
    height: 100vh;
    /* padding: 20px; */
    background: linear-gradient(to right, #fff, #F4C581);
    display: flex;
    /* flex-direction: column; */
    justify-content: space-between;
    align-items: center;
}

.payment-text {
    width: 70%;
    padding: 20px 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.payment-head p {
    font-size: 36px;
    font-weight: bolder;
    color: #500101;
    margin-bottom: 20px;
}

.payment-form {
    display: flex;
    flex-direction: column;
    margin: 2rem 0;
}

form {
    display: flex;
    flex-direction: column;
    width: 50%;
}

form input {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: -3px 3px 9px 2px #ccc;
    padding: 15px;
}

input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input::placeholder {
    position: absolute;
    top: 15px;
    /* same as padding-top */
    left: 15px;

}

.payment-form textarea {
    resize: none;
    border: none;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: -3px 3px 9px 2px #ccc;
    font-size: 16px;
    padding: 15px;
    height: 200px;
}

.donate-btn {
    padding: 12px;
    background-color: #F4C581;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 40%;
    align-self: center;
    margin-top: 2rem;
    box-shadow: 3px 3px 9px 2px #ccc;
}

.payment-image {
    width: 40%;
    height: auto;

    /* margin-right: 50px; */
}

.payment-image img {
    width: 100%;
    height: auto;

    object-fit: cover;
}

/* ===========Payment Section End============ */


/* =========== Vission Section ============ */
.vision-container {
    width: 100%;
    height: 100vh;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background: url(../img/background.jpg) no-repeat center center/cover;
}

.vision-head {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.vision-head h2 {
    font-size: 36px;
    font-weight: bolder;
    color: #500101;
    text-shadow: 2px 2px 15px #fff;
}

.vision-circle-container {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 2rem;
}

.vision-circle-item {
    width: 350px;
    height: 350px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 50%;
}

.vision-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid #500101;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 45px;
    color: #000;
    font-weight: 600;
    text-align: center;
}

.circle2 {
    margin-top: 10rem;
}

/* ==========Our Vision End=============== */


/* ===========OUR DONOR SECTION============ */
.our-donor-container {
    width: 100%;
    height: 100vh;
    padding: 20px 20px;
    display: flex;
    /* flex-direction: column; */
    justify-content: space-evenly;
    align-items: center;
    background: linear-gradient(to right, #fff, #F4C581);
}

.our-donor-head {
    width: 60%;
    /* text-align: center; */
    margin-bottom: 30px;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.our-donor-head h2 {
    font-size: 50px;
    font-weight: bolder;
    color: #500101;
    text-shadow: 2px 2px 15px #fff;
}

.our-donor-head p {
    font-size: 20px;

}

.chief-image {
    width: 40%;
    border-radius: 20px;
    margin-right: 50px;
    overflow: hidden;
}

.chief-image img {
    width: 100%;
    object-fit: cover;
}

.donor-table-container {
    width: 70%;
    height: fit-content;
    /* padding: 0 50px; */
    overflow-y: auto;
    box-shadow: -2px 0px 5px 2px #ccc;
    background-color: #fff;
    border-radius: 10px;
}

.donor-table {
    width: 100%;
    border-collapse: collapse;
}

.donor-table th,
.donor-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
    font-size: 16px;
}

.donor-table th {
    background-color: #f2f2f2;
    color: #000;
    font-weight: bold;
}

.donor-table tr:nth-child(even) {
    background-color: #F4C581;
}

.donor-table tr:nth-child(odd) {
    background-color: #CCB490;
}

.slider-button {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.left-arrow,
.right-arrow {
    padding: 10px;
    width: 50px;
    height: 50px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 1px 1px 5px 1px #ccc;
}

/* ===========OUR DONOR SECTION END============ */

/* ============WE ARE SUPPORTED BY============== */
.supported-by-container {
    width: 100%;
    height: 100vh;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    overflow: hidden;
    background: url(../img/Civil-War-History-Presentation-Background-Template-edit-online.png) no-repeat center center/cover;
}

.supported-by-head {
    width: 100%;
    margin-bottom: 30px;
    padding: 0 50px;
}

.supported-by-head h2 {
    font-size: 36px;
    font-weight: bolder;
    color: #500101;
    text-shadow: 2px 2px 15px #fff;
}

.logos-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sponsor-logos {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-evenly;
    align-items: center;
    gap: 5rem;
}

.sponsor-logo-item {
    width: 250px;
    height: 150px;
    align-content: center;
    background: #fff;
    box-shadow: 1px 1px 10px 2px #ccc;
    overflow: hidden;
    border-radius: 10px;

}

.sponsor-logo-item img {
    width: 100%;
    object-fit: cover;
    /* box-shadow: 1px 1px 10px 2px #ccc; */
}

/* ============WE ARE SUPPORTED BY END============== */

/* =============Contact Us ================ */
.contact-container {
    width: 100%;
    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(../img/Rectangle9.png) no-repeat center center/cover;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 1);
    backdrop-filter: blur(5px);

}

.contact-overlay {
    width: 100%;
    height: 100%;
    padding: 20px 70px;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.contact-head {
    width: 100%;
    margin-bottom: 30px;
}

.contact-head h2 {
    font-size: 36px;
    font-weight: bolder;
    color: #500101;
    text-shadow: 2px 2px 15px #fff;
}

.contact-form {
    width: 40%;
    display: flex;
    justify-content: center;
}

textarea {
    resize: none;
    border: none;
    background-color: #fbfacc;
    border-radius: 5px;
    box-shadow: -3px 3px 9px 2px #000;
    font-size: 16px;
    padding: 15px;
    height: 200px;


}

textarea::placeholder {
    position: absolute;
    top: 15px;
    /* same as padding-top */
    left: 15px;
}

textarea:focus {
    outline: none;
}

.contact-form>input {
    background-color: #fbfacc;
    box-shadow: -3px 3px 9px 2px #000;
    /* padding: 20px; */

}

.contact-form-container {
    display: flex;
    /* flex-direction: column; */
    width: 100%;
}

.send-btn {
    padding: 12px;
    background-color: #F4C581;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 40%;
    align-self: center;
    margin-top: 2rem;
    box-shadow: 3px 3px 9px 2px #000;
}

/* =============Contact Us End=============== */
/* =============INDEX-PAGE-END=============== */

/* =============CONTACT_US_PAGE_START============ */
.contact-us-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: url(../img/cont_back.jpg) no-repeat center center/cover;
    padding: 5%;
    overflow: hidden;
}

.contact-us-head {
    width: 100%;
    text-align: center;
}

.contact-us-head h2 {
    font-size: 36px;
    font-family: "Cedarville Cursive", cursive;
    font-weight: bolder;
    color: #500101;
    text-shadow: 2px 2px 15px #fff;
    margin-top: 2rem;
}

.cont-parent-container {
    width: 100%;
    display: flex;
    gap: 7rem;
    /* flex-direction: column; */
}

.cont-l-container {
    width: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cont-r-container {
    width: 50%;
    padding: 20px;
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cont-l-container form {
    width: 60%;
    display: flex;
    flex-direction: column;
}

.cont-l-container form input {
    margin-bottom: 15px;
    /* padding: 12px; */
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: -3px 3px 9px 2px #ccc;
}

.cont-l-container form label {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 5px;
}

.cont-l-container form textarea {
    resize: none;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: -3px 3px 9px 2px #ccc;
    font-size: 16px;
    padding: 15px;
    height: 150px;
    margin-bottom: 15px;
    background: #fff;
}

.cont-l-container form input:focus,
.cont-l-container form textarea:focus {
    outline: none;
    border-color: #500101;
    box-shadow: 0 0 5px #500101;
}

.cont-l-container form input::placeholder,
.cont-l-container form textarea::placeholder {
    position: absolute;
    top: 15px;
    /* same as padding-top */
    left: 15px;
}

.cont-l-container form input[type="submit"] {
    background-color: #500101;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 40%;
    align-self: center;
    box-shadow: 3px 3px 9px 2px #ccc;
}

.cont-r-head {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
}

.cont-r-head h3 {
    font-size: 28px;
    font-weight: bolder;
    color: #500101;
}

.cont-r-para {
    font-size: 18px;
    color: #000;
    text-align: justify;
    line-height: 1.5;
}

.cont-r-para strong {
    font-weight: bolder;
}

.cont-r-info {
    margin-top: 20px;
}

.cont-r-info p {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
}

.white-textarea form textarea {
    background: #fbfacc;
}

/* =Our Vision- Mision=*/
.vision-mission-section {
    background: #fdd7a5d6;
    padding: 2% 15%;
}

.vision-mission-container {

    width: 100%;
    /* height: 100vh; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.vision-mission-head {
    width: 100%;
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
}

.vision-mission-head h2 {
    font-size: 40px;
    font-weight: bolder;
    color: #500101;
    text-shadow: 2px 2px 15px #fff;
}

.vision-mission-head p {
    font-size: 18px;
    color: #000;

    /* margin-top: 10px; */
}

.vision,
.mission {
    width: 100%;
    border: 2px solid #500101;
    box-shadow: 3px 3px 9px 2px #000;
}

.vision h2,
.mission h2 {
    /* background-color: #500101; */
    color: #500101;
    padding: 15px;
    font-size: 28px;
    text-align: center;
    /* margin-top: 2rem */
}

.vision p,
.mission p {
    padding: 0 15px 15px 15px;
    font-size: 18px;
    color: #000;
    text-align: justify;
    line-height: 1.5;
}

.divider-img {
    width: 100%;
    height: auto;
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.divider-img img {
    width: 300px;
    height: auto;
    object-fit: cover;
}

.our-future-container {
    width: 100%;
    padding: 20px;
    margin-top: 30px;
    border: 2px solid #500101;
    box-shadow: 1px 1px 10px 2px #ccc;
}

.our-future-container {
    width: 100%;
    padding: 20px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* border: 2px solid #500101; */
    /* box-shadow: 1px 1px 10px 2px #ccc; */
}

.our-future-head {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.our-future-container h2 {
    font-size: 40px;
    font-weight: bolder;
    color: #500101;
    text-align: center;
    margin-bottom: 5px;
}

.our-future-container p {
    font-size: 18px;
    color: #000;
    text-align: justify;
    line-height: 1.5;
}

.item-container {
    margin-top: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 2rem;
}

.project-text {
    width: 30%;
    display: flex;
    flex-direction: column;

}

.project-text h2 {
    font-size: 28px;
    font-weight: bolder;
    color: #500101;
    /* margin-bottom: 10px; */
    text-align: left;
}

.project-text h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ed8500;
    line-height: 1em;
    /* margin-bottom: 10px; */
}

.project-text p {
    font-size: 16px;
    color: #000;
    text-align: justify;
    line-height: 1.5;
}

.project-text button {
    padding: 10px;
    background: linear-gradient(45deg, #F4C581, #e0a84f);
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 50%;
    margin-top: 15px;
    box-shadow: 0px 6px 15px 1px #1e0000b8;
}

.item-image {
    width: 40%;
    height: 250px;
    overflow: hidden;
    border-radius: 5%;
    box-shadow: 3px 3px 9px 2px #000;


}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =Our Vision- Mision End=*/

/* =====Donation section========= */
.donation {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2% 15%;
    gap: 2rem;
    background: #fdd7a5d6;
}

.donation-head-container {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.donation-head-container h2 {
    font-size: 40px;
    font-weight: bolder;
    color: #500101;
    text-shadow: 2px 2px 15px #fff;
}

.donation-head-container p {
    font-size: 18px;
    color: #000;
    /* margin-top: 10px; */
}

.donation-box-container {
    width: 100%;
    border: 2px solid #f2db0b;
    /* background-color: #f1f1f1; */
    background: linear-gradient(to right, #F4C581, #fff);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 2rem;
    border-radius: 10px;
    box-shadow: 2px 2px 15px 2px #ccc;
}

.donation-box-right {
    width: 45%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.donation-box-left {
    width: 250px;
    height: 250px;
    overflow: hidden;
    border: 2px solid #f2db0b;
    border-radius: 2%;
}

.donation-box-left img {
    width: 100%;
    /* height: auto; */
    object-fit: cover;
}

.donation-box-right h3 {
    font-size: 28px;
    font-weight: bolder;
    color: #500101;
    margin-bottom: 5px;
}

.donation-box-right p {
    font-size: 16px;
    color: #000;
    text-align: justify;
    line-height: 1.2;
    margin-bottom: 25px;
}

.donation-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.donation-form input {
    padding: 10px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: -3px 3px 9px 2px #ccc;
    padding: 10px;
}

.donation-form label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.donation-box-right button {
    padding: 12px;
    background-color: #F4C581;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 40%;
    align-self: center;
    margin: 15px 0;
    box-shadow: 3px 3px 9px 2px #ccc;
}

/* =====Donation section end========= */


/* ==========gallery======= */
.gallery-section {
    width: 100%;
    padding: 2% 15%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #fff, #F4C581);
}

.gallery-head {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-head h2 {
    font-size: 40px;
    font-weight: bolder;
    color: #500101;
    text-shadow: 2px 2px 15px #fff;
}

.gallery-head p {
    font-size: 18px;
    color: #000;
    /* margin-top: 10px; */
}

.gallery-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(50px, 300px);
    gap: 10px;

}

.gallery-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 3px 3px 9px 2px #000;
    transition: all 0.3s ease-out;
    /* border: 2px solid #500101; */

}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    cursor: pointer;
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.gallery-item-1 {
    grid-column: 1/1;
    grid-row: 1;
}

.gallery-item-2 {
    grid-column: 2/4;
    grid-row: 1 /1;
}

.gallery-item-3 {
    grid-column: 1;
    grid-row: 2 / 4;
}

.gallery-item-4 {
    grid-column: 3;
    grid-row: 2;
}

.gallery-item-5 {
    grid-column: 2;
    grid-row: 3;
}

.gallery-item-6 {
    grid-column: 3;
    grid-row: 3;
}

.view-more-btn {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin: 20px 0;
}

.view-more-btn button {
    padding: 12px;
    background-color: #F4C581;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 3px 3px 9px 2px #000;
}


.our-journey-container {
    width: 100%;
    padding: 20px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* border: 2px solid #500101; */
    /* box-shadow: 1px 1px 10px 2px #ccc; */
}

.our-journey-head {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.our-journey-container h2 {
    font-size: 40px;
    font-weight: bolder;
    color: #500101;
    text-align: center;
    margin-bottom: 5px;
}

.our-journey-container p {
    font-size: 18px;
    color: #000;
    text-align: justify;
    line-height: 1.5;
}

.video-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container video {
    width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 2px 2px 10px 2px #ccc;
}

video::-webkit-media-controls-panel {
    background-color: #500101;
}

video::-webkit-media-controls-play-button {
    background-color: #F4C581;
}

video::-webkit-media-controls-volume-slider {
    background-color: #F4C581;
}

video::-webkit-media-controls-mute-button {
    background-color: #F4C581;
}

video::-webkit-media-controls-fullscreen-button {
    background-color: #F4C581;
}

.join-our-legacy {
    width: 100%;
    padding: 20px;
    margin-top: 30px;
    /* border: 2px solid #500101; */
    /* box-shadow: 1px 1px 10px 2px #ccc; */
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

.join-our-legacy h2 {
    font-size: 36px;
    font-weight: bolder;
    color: #500101;
}

.join-our-legacy p {
    font-size: 18px;
    color: #000;
    text-align: justify;
    line-height: 1.5;
    width: 60%;
}

.join-our-legacy button {
    padding: 12px;
    background-color: #F4C581;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 3px 3px 9px 2px #ccc;
}

/* =====gallery end======= */


/* ==========ABOUT-US-PAGE-START========== */
.about-us-section {
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url(../img/about-page-back.png) no-repeat center center/cover;
}

.about-us-hero-section {
    width: 100%;
    padding: 2% 15%;
    margin-bottom: 1rem;
}

.about-us-head {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.about-us-head h2 {
    font-size: 40px;
    font-weight: bolder;
    color: #500101;
    text-shadow: 2px 2px 15px #fff;
}

.about-us-head p {
    font-size: 18px;
    color: #000;
    /* margin-top: 10px; */
}

.about-hero-image {
    width: 400px;
    height: auto;
    justify-self: center;
    margin-bottom: 30px;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-us-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-us-content p {
    font-size: 18px;
    color: #000;
    text-align: justify;
    line-height: 1.5;
}

/* =======About End============= */


/* =======Our team============= */
.our-team-container {
    width: 100%;
    padding: 2% 15%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.our-team-head {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.our-team-head h2 {
    font-size: 40px;
    font-weight: bolder;
    color: #500101;
    text-shadow: 2px 2px 15px #fff;
}

.team-container {
    /* width: 100%; */
    display: flex;
    justify-content: space-evenly;
    /* align-items  */
}


.team-member {
    width: 30%;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member img {
    border-radius: 50%;
    width: 140px;
    height: 140px;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #500101;

}

.team-member h3 {
    font-size: 22px;
    font-weight: bolder;
    color: #500101;
    margin-bottom: 5px;
    text-align: center;
}

.team-member p {
    font-size: 16px;
    color: #000;
    text-align: center;
}

/* =======Our team (Slider)============= */

.our-team-container {
    width: 100%;
    padding: 2% 15%;
    text-align: center;
}

.team-slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.team-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    width: 100%;
}

.team-slider::-webkit-scrollbar {
    display: none;
}

.team-member {
    min-width: 260px;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #500101;
    margin-bottom: 10px;
}

.team-member h3 {
    font-size: 22px;
    font-weight: bold;
    color: #500101;
}

.team-member p {
    font-size: 16px;
}

/* arrows */
.team-arrow {
    background: #500101;
    color: #fff;
    border: none;
    font-size: 28px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 20%;
    z-index: 10;
}

.team-arrow.left {
    left: -20px;
}

.team-arrow.right {
    right: -20px;
}

/* ======our team end====== */


/* =====Our Project start==== */
.our-projects-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to right, #fff, #F4C581);
    padding: 20px;
    overflow: hidden;

}

.our-projects-head {
    width: 100%;
    color: #500101;
    margin-bottom: 2rem;
    padding: 0 50px;


}

.our-projects-head h2 {
    font-weight: bolder;
    font-size: 36px;

}

.projects-cards-container {
    width: 100%;
    display: flex;

    gap: 5rem;
    padding: 0 50px;
}


.project-card {
    width: 30%;
    display: flex;
    flex-direction: column;
    padding: 25px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 2px 2px 5px #ccc;
    justify-content: space-between;
    gap: 2rem;
    transition: all 0.3s ease-out;


}

.project-card:hover {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

.project-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 20px;

}

.project-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.project-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.milestone-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100vh;
    padding: 20px;
    overflow: hidden;
    background: url(../img/About-background.png) no-repeat center center/cover;
}

.milestone-head {
    width: 100%;
    color: #500101;
    margin-bottom: 2rem;
    padding: 0 50px;
}

.milestone-head h2 {
    font-size: 36px;
    font-weight: bolder;
    margin-bottom: 2rem;
}

/* =====Our Project End ==== */

/* ===== Project Details Page ===== */

.project-details-container {
    padding: 60px 20px;
    background: linear-gradient(to right, #fff3e0, #ffe0b2);
}

.project-details-wrapper {
    max-width: 1100px;
    margin: auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

/* Image */
.project-details-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* Content */
.project-details-content {
    padding: 40px;
}

.project-title {
    font-size: 34px;
    font-weight: 700;
    color: #6b1e1e;
    margin-bottom: 10px;
}

.project-location {
    font-size: 16px;
    font-weight: 500;
    color: #888;
    margin-bottom: 25px;
}

/* Description */
.project-description {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.project-description p {
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .project-details-content {
        padding: 25px;
    }

    .project-title {
        font-size: 26px;
    }

    .project-details-image img {
        height: 260px;
    }
}

/* ===== End Project Details Page ===== */


/* =============Blog Page =========*/
.blog-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 30px;
    padding: 60px 15px;
}

/* Sidebar */
.blog-sidebar {
    width: 32%;
}

.sidebar-box {
    background: linear-gradient(to right, #F4C581, #fff);
    box-shadow: 0px 6px 15px 1px #1e0000b8;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 12px;
}

.sidebar-box h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #3a0f0f;
    position: relative;
}

.sidebar-box h3 span {
    display: inline-block;
    width: 25px;
    height: 3px;
    background: #6c3b3b;
    margin-right: 10px;
}

.search-box {
    display: flex;
}

.search-box input {
    flex: 1;
    padding: 14px;
    border-radius: 10px 0 0 10px;
    border: none;
    background: #f2f2f2;
    font-size: 15px;
}

.search-box button {
    padding: 0 20px;
    border: none;
    background: #6c3b3b;
    color: #fff;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
}

/* Recent Posts */
.recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.recent-post img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.recent-post a {
    color: #3a0f0f;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
}

.recent-post p {
    font-size: 13px;
    margin-top: 5px;
    color: #777;
}

/* Blog Content */
.blog-content {
    width: 68%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    height: fit-content;
}

.blog-card {
    background: linear-gradient(to right, #F4C581, #fff);
    box-shadow: 0px 6px 15px 1px #1e0000b8;
    border-radius: 15px;
    overflow: hidden;
    transition: transform .3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
}

.blog-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-body {
    padding: 20px;
}

.meta {
    font-size: 14px;
    color: #3a0f0f;
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}

.blog-body h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #3a0f0f;
}

.author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.author img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

/* Responsive */
@media(max-width: 992px) {
    .container {
        flex-direction: column;
    }

    .blog-sidebar,
    .blog-content {
        width: 100%;
    }

    .blog-content {
        grid-template-columns: 1fr;
    }
}

.rr-pagination {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.rr-page-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #3a0f0f;
    background: #fff;
    transition: all .3s ease;
}

.rr-page-btn:hover {
    background: #3a0f0f;
    color: #fff;
    border-color: #3a0f0f;
}

.rr-page-btn i {
    font-size: 18px;
}

.rr-active {
    background: #3a0f0f;
    color: #fff;
    border-color: #3a0f0f;
}

.rr-nav {
    color: #3a0f0f;
}

.rr-blog-detail {
    padding: 60px 15px;
    background: #fafafa;
    background: linear-gradient(to right, #fff, #F4C581);
}

.rr-blog-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 30px;
}

/* Main Content */
.rr-blog-main {
    width: 68%;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    background: linear-gradient(to right, #F4C581, #fff);
}

.rr-fixed-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin: 20px 0;
}

.rr-blog-tag {
    display: inline-block;
    background: #6c3b3b;
    color: #fff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.rr-blog-title {
    font-size: 36px;
    color: #3a0f0f;
    margin-bottom: 20px;
    line-height: 1.3;
}

.rr-blog-meta {
    display: flex;
    gap: 25px;
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

.rr-blog-main p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.rr-blog-subtitle {
    font-size: 28px;
    color: #3a0f0f;
    margin: 40px 0 20px;
}

.rr-blog-image {
    width: 100%;
    margin-top: 30px;
    border-radius: 14px;
}

/* Sidebar */
.rr-blog-sidebar {
    width: 32%;
}

.rr-sidebar-box {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    margin-bottom: 30px;
    text-align: center;
}

.rr-sidebar-box h3 {
    color: #3a0f0f;
    font-size: 22px;
    margin-bottom: 25px;
}

.rr-sidebar-box h3 span {
    display: inline-block;
    width: 25px;
    height: 3px;
    background: #6c3b3b;
    margin-right: 10px;
}

/* Author */
.rr-author-box img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.rr-author-box h4 {
    font-size: 20px;
    color: #3a0f0f;
    margin-bottom: 10px;
}

.rr-author-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.rr-author-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.rr-author-social a {
    color: #777;
    font-size: 16px;
    transition: .3s;
}

.rr-author-social a:hover {
    color: #3a0f0f;
}

/* Search */
.rr-sidebar-search {
    display: flex;
}

.rr-sidebar-search input {
    flex: 1;
    padding: 14px;
    border: none;
    background: #f1f1f1;
    border-radius: 10px 0 0 10px;
}

.rr-sidebar-search button {
    padding: 0 20px;
    border: none;
    background: #6c3b3b;
    color: #fff;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
}



/* Fix images inside blog description/content */
/* .rr-blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 20px auto;
    object-fit: cover;
} */


/* Responsive */
@media (max-width: 992px) {
    .rr-blog-wrapper {
        flex-direction: column;
    }

    .rr-blog-main,
    .rr-blog-sidebar {
        width: 100%;
    }
}

/* Blog End */



/* ========== Our Leaders Section ========== */

.leaders-slider-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.leader-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 5%;
    transition: transform 0.6s ease-in-out;
}


.leader-text {
    width: 50%;
}

.leader-text h2 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.leader-text p {
    font-size: 18px;
    line-height: 1.6;
}

.leader-image {
    width: 50%;
    text-align: right;
}

.leader-image img {
    width: 100%;
    max-width: 450px;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
}


/* arrows */

.leader-prev, .leader-next {
    position: absolute;
    top: 50%;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    user-select: none;
    color: #311312;
    background: linear-gradient(45deg, #F4C581, #e0a84f);
    border-radius: 50%;
    border: none;
    width: 60px;
    height: 60px;
    text-align: center;
    box-shadow: 0px 6px 15px 1px #1e0000b8;
}

.leader-prev {
    left: 20px;
}

.leader-next {
    right: 20px;
}


.slide-card {
    width: 350px;
}

.featured-messages {
    background: linear-gradient(to right, #f6e7d0, #e7c99a);
    padding: 70px 0;
    width: 100%;
    height: 100vh;
    /* margin-top: 40px; */
}

.leaders-slider-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.leader-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 10%;
    transition: transform 0.6s ease-in-out;
}

.leader-slide:not(.active) {
    display: none;
}

.blog-page {
    background: linear-gradient(to right, #fff, #F4C581);
}

@media (max-width: 991px) {

    header {
        padding: 10px 25px;
    }

    .hamburger {
        display: flex;
        transition: all 0.3s ease;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #321312;
        display: none;
        flex-direction: column;
        z-index: 998;
    }

    nav.active {
        display: block;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 10px 0;
    }

    nav ul li {
        display: block;
        margin: 0;
        border-bottom: 1px solid rgba(244, 197, 129, 0.3);
    }

    nav ul li a {
        padding: 15px 25px;
        display: block;
        color: #F4C581;
        text-align: left;
    }

    nav ul li a:hover {
        background-color: rgba(244, 197, 129, 0.15);
    }

    .hero-image {
        width: 450px;
    }

    .hero-text {
        bottom: 4rem;
    }

    .about-container {
        height: 100vh;
    }

    .about-para-1 {
        padding: 0 100px;
    }

    .about-para-1 p {
        font-size: 1.8vw;
        text-align: justify;
    }

    .our-projects-container {
        height: 100vh;
    }

    .projects-cards-container {
        gap: 1rem;
    }

    .project-card {
        padding: 15px;
    }

    .project-image {
        height: 150px;
    }

    .project-text h3 {
        font-size: 24px;
    }

    .project-text p {
        font-size: 20px;
    }

    .project-text {
        gap: 0.5rem;
    }

    .about-text-cont {
        padding: 0 20px;

    }

    .about-p-head {
        font-size: 24px;
    }

    .about-para {
        font-size: 20px;
    }

    .supported-by-head h2 {
        font-size: 32px;
    }

    .sponsor-logos {
        gap: 2rem;
    }

    .sponsor-logo-item {
        width: 180px;
        height: 100px;
    }

    .cont-l-container form {
        width: 80%;
    }

    .send-btn {
        width: 60%;
    }

    .leader-slide {
        gap: 10px;
        padding: 40px 10%;
    }

    .meta {
        font-size: 20px;
    }

    .blog-body h2 {
        font-size: 28px;
    }

    .sidebar-box h3 {
        font-size: 28px;
    }

    .recent-post a {
        font-size: 20px;
    }

    .recent-post p {
        font-size: 16px;
    }

    .donation-box-right button {
        width: 60%;
    }

    .donation {
        padding: 2% 5%;
        gap: 1rem;
    }

    .donation-box-container {
        gap: 1rem;
    }

    .vision-mission-section {
        padding: 2% 5%;
    }

    .about-us-hero-section {
        padding: 2% 5%;
    }

    .team-arrow {
        top: 25%;
        position: absolute;
    }

    .team-arrow.right {
        right: -35px;
    }

    .donate-btn-1 {
        width: 20%;

    }
}

@media (max-width: 850px) {
    .donate-btn-1 {
        width: 20%;

    }
}


/* responsive */
@media (max-width: 768px) {
    .leader-slide {
        flex-direction: column-reverse;
        text-align: center;
    }

    .leader-text,
    .leader-image {
        width: 100%;
    }

    .about-head {
        /* text-align: center; */
        width: 100%;
        padding: 0 20px;
    }

    .about-para-1 {
        padding: 0 70px;
    }

    .about-para-1 p {
        font-size: 2vw;
    }

    .our-projects-head {
        padding: 0 20px;
    }

    .projects-cards-container {
        padding: 0 20px;
    }

    .milestone-head {
        padding: 0 20px;
    }

    .about-p-head {
        font-size: 18px;
    }

    .about-para {
        font-size: 16px;
    }

    .circle-line {
        padding: 0 20px;
    }

    .about-text-cont {
        padding: 0 0px;
    }

    .supported-by-head {
        padding: 0 20px;
    }

    .leader-image {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .leader-image img {

        max-width: 350px;
        height: 280px;
    }

    .cont-l-container form {
        width: 100%;
    }

    .contact-overlay {

        padding: 20px 40px;

    }

    .leader-slide {
        gap: 10px;
        padding: 15px 5%;
    }

    .featured-messages {
        padding: 30px 0;
    }

    .cont-l-container form input {
        /* padding: 8px; */
        font-size: 14px;
    }

    .contact-head {
        margin-bottom: 0px;
    }

    .gallery-section {
        padding: 2% 5%;
    }

    .item-image {
        width: 80%;
    }

    .cont-parent-container {
        gap: 2rem;
    }

    .cont-l-container form input[type="submit"] {
        width: 60%;
    }

    .donate-btn-1 {
        width: 30%;

    }
}

@media (max-width: 480px) {
    .hero-text p {
        line-height: 1.1;
    }

    .about-para-1 p {
        font-size: 14px;
        line-height: 1.2;
    }

    .about-para-1 {
        padding: 0 20px;
    }

    .about-head {
        margin-bottom: 0.5rem;
    }

    .about-container {
        height: fit-content;
    }

    .project-text h3 {
        font-size: 20px;
    }

    .project-text p {
        font-size: 14px;
    }

    .leader-text h2 {
        font-size: 28px;
    }

    .leader-text p {
        font-size: 16px;
    }

    .leader-image img {
        max-width: 300px;
        height: 250px;
    }

    .projects-cards-container {
        align-items: center;
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;

    }

    .project-card {
        width: 45%;
        height: 250px;
    }

    .milestone-container {
        height: fit-content;
    }

    .about-text-container {
        width: 80%;
        display: flex;
        justify-content: space-between;
    }

    .circle-container {
        position: absolute;
        top: -0.6rem;
    }

    .circle-line {
        position: relative;
    }

    .circle {
        width: 20px;
        height: 20px;
    }

    .circle-container {
        position: absolute;
        top: -0.6rem;
        justify-content: space-evenly;
    }

    .about-text {
        width: 30%;
    }

    .sponsor-logos {
        /* grid-template-columns: repeat(2, 1fr); */
        grid-template-columns: repeat(1, 1fr);

        gap: 1rem;
    }

    .supported-by-container {
        height: fit-content;
    }

    .featured-messages {
        height: fit-content;
    }

    .contact-container {
        width: 100%;
        height: fit-content;
    }

    .contact-form-container {
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
    }

    .cont-l-container {
        width: 100%;
    }

    .cont-r-container {
        width: 100%;
    }

    .cont-r-head {
        display: none;
    }

    .cont-r-para {
        font-size: 16px;
    }

    .cont-r-info p {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .gallery-head h2 {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .gallery-head p {
        text-align: justify;
        line-height: 1.2;
    }

    .gallery-section {
        padding: 2% 5%;
    }

    .gallery-container {
        grid-auto-rows: minmax(50px, 200px);
        gap: 10px;
    }

    .gallery-head h2 {
        font-size: 24px;
        line-height: 1.2;
    }

    .blog-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px 15px;
    }

    .blog-sidebar,
    .blog-content {
        width: 100%;
    }

    .donation-box-container {
        flex-direction: column;
    }

    .donation-box-right {
        width: 100%;
    }

    .donation-box-container {
        padding: 10px;
    }

    .donation-box-right h3 {
        font-size: 24px;
    }

    .project-text h2 {
        font-size: 24px;
        line-height: 1.2;
    }

    .project-text button {
        width: 100%;
    }

    .our-future-container h2 {
        font-size: 24px;
    }

    .vision-mission-head h2 {
        font-size: 36px;
        line-height: 1.2;
    }

    .vision-mission-head p {
        text-align: justify;
        line-height: 1.2;
    }

    .vision p,
    .mission p {
        line-height: 1.2;
    }

    .team-slider {
        gap: 5px;
    }

    .about-hero-image {
        width: 320px;
    }

    .contact-us-container {
        height: fit-content;
    }

    .cont-parent-container {
        flex-direction: column;
    }

    .cont-r-container {
        margin-bottom: 40px;
    }

    blockquote {
        text-align: justify;
    }

    .leader-prev,
    .leader-next {
        top: 25%;
        font-size: 20px;
        padding: 10px;
    }

    .donate-btn-1 {
        width: 35%;
        padding: 8px 5px;

    }
}

@media (max-width: 400px) {
    .projects-cards-container {
        gap: 1rem;

    }

    .leader-prev,
    .leader-next {
        top: 25%;
        font-size: 16px;
        padding: 10px;
    }

    .donate-btn-1 {
        width: 40%;
        padding: 8px 5px;

    }
}

@media (max-width: 360px) {
    .about-container {
        padding: 10px;
    }

    .projects-cards-container {
        padding: 0;
    }

    .donate-btn-1 {
        width: 45%;

    }

    .our-projects-container {
        padding: 10px;
    }

    .our-projects-head h2 {
        font-size: 24px;
    }

    .about-head {
        padding: 0 10px;
    }

    .about-head h2 {
        font-size: 24px;
    }

    .projects-cards-container {
        gap: 0.5rem;
    }

    .milestone-head h2 {
        font-size: 24px;
        margin-bottom: 0;
    }

    .about-p-head {
        font-size: 16px;
    }

    .about-para {
        font-size: 14px;
    }

    .supported-by-head h2 {
        font-size: 24px;
    }

    .sponsor-logo-item {
        width: 120px;
        height: 80px;
    }

    .leader-image img {
        max-width: 250px;
        height: 200px;
    }

    .leader-prev,
    .leader-next {
        top: 25%;
        font-size: 16px;
        padding: 10px;
    }

    .contact-head h2 {
        font-size: 24px;
    }

    .gallery-section {
        padding: 2% 4%;
    }

    .gallery-head h2 {
        font-size: 24px;
    }

    .gallery-container {
        grid-auto-rows: minmax(50px, 150px);
        gap: 5px;
    }

    .gallery-head h2 {
        font-size: 20px;
    }

    .gallery-head p {
        font-size: 14px;
        line-height: 1.2;
    }

}


/* ========== Footer Styles ========== */
.site-footer {
    background: linear-gradient(180deg, #3a0f0f, #1f0606);
    color: #f5e6c8;
    font-family: "Georgia", serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    color: #f2c879;
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
}

.footer-column h3::after {
    content: "";
    width: 50px;
    height: 2px;
    background-color: #f2c879;
    position: absolute;
    left: 0;
    bottom: -6px;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    color: #e8d8b4;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #e8d8b4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #f2c879;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    padding: 15px 10px;
    background-color: #140404;
}

.footer-bottom p {
    font-size: 14px;
    color: #d9c79a;
    margin: 0;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .footer-container {
        text-align: center;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}


.footer-bottom a {
    color: #d9c79a;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #f2c879;
}


/* CKEditor Content Styling */
/* ===== CKEditor Blog Content ===== */

.rr-blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* LEFT */
.rr-blog-content .image-style-align-left {
    float: left;
    margin: 0 20px 20px 0;
}

/* RIGHT */
.rr-blog-content .image-style-align-right {
    float: right;
    margin: 0 0 20px 20px;
}

/* CENTER FIX */
.rr-blog-content figure.image-style-align-center {
    text-align: center;
}

.rr-blog-content figure.image-style-align-center img {
    display: block;
    margin: 20px auto;
}

/* Fix center image from CKEditor */
.rr-blog-content p[style*="text-align:center"] img {
    display: block;
    margin: 20px auto;
}

/* FORCE CENTER FOR RESIZED CENTER IMAGE */
.rr-blog-content figure.image-style-align-center {
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
}



/* CKEditor Project Styling */

.project-description img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.project-description figure {
    margin: 25px 0;
}

.project-description .image-style-align-left {
    float: left;
    margin: 10px 25px 15px 0;
}

.project-description .image-style-align-right {
    float: right;
    margin: 10px 0 15px 25px;
}

.project-description figure.image-style-align-left,
.project-description figure.image-style-align-right {
    max-width: 45%;
}

.project-description .image-style-align-center {
    text-align: center;
}

/* FORCE CENTER */
.project-description figure.image-style-align-center {
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
}

.project-description figure.image-style-align-center img {
    display: block;
    margin: 20px auto;
}

/* Clear floats */
.project-description::after {
    content: "";
    display: block;
    clear: both;
}

/* Default CKEditor resized image center */
.project-description figure.image_resized {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {

    .project-description .image-style-align-left,
    .project-description .image-style-align-right {
        float: none;
        max-width: 100%;
        margin: 20px auto;
        display: block;
    }
}


/* CKEditor Content Styling End */




/* ========== History Page ========== */

/* Hero Section */
.history-hero {
    background: url("../img/image 5.png") center/cover no-repeat;
    height: 320px;
    position: relative;
}

.history-overlay {
    background: rgba(50, 19, 18, 0.75);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.history-overlay h1 {
    color: #F4C581;
    font-size: 42px;
    text-align: center;
    letter-spacing: 1px;
}

/* Section Spacing */
.history-section {
    padding: 70px 15%;
    background: linear-gradient(to right, #fff, #F4C581);
}

/* Alternate Background */
.alt-bg {
    background-color: #f7f2e8;
}

/* Layout Container */
.history-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.history-container.reverse {
    flex-direction: row-reverse !important;
}

/* Text Area */
.history-text {
    flex: 1;
}

.history-text h2 {
    color: #500101;
    margin-bottom: 18px;
    font-size: 28px;
}

.history-text p {
    line-height: 1.9;
    margin-bottom: 15px;
    text-align: justify;
    color: #333;
}

/* Image Area */
.history-image {
    flex: 1;
    background: linear-gradient(to right, #F4C581, #fff);
    border-radius: 12px;
    box-shadow: 0px 6px 15px 1px #1e0000b8;
    transition: transform 0.4s ease;
    width: 40%;
    height: 450px;
    overflow: hidden;
}

.img-box-350 {
    height: 270px;
}

.history-image img {
    width: 100%;
    object-fit: cover;
}

.history-image:hover {
    transform: scale(1.03);
}

/* Legacy Section */
.legacy-section {
    padding: 70px 15%;
    text-align: center;
    background-color: #fff;
}

.legacy-section h2 {
    color: #500101;
    margin-bottom: 20px;
    font-size: 30px;
}

.legacy-section p {
    max-width: 800px;
    margin: auto;
    line-height: 1.9;
    color: #333;
}

.legacy-section img {
    width: 60%;
    margin-top: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* ========== Responsive Design ========== */

@media (max-width: 1200px) {
    .history-section {
        padding: 60px 10%;
    }
}

@media (max-width: 992px) {

    .history-container,
    .history-container.reverse {
        /* flex-direction: column; */
        flex-direction: column-reverse;
    }

    .history-container.reverse {
        flex-direction: column-reverse !important;
    }

    .history-section {
        padding: 50px 8%;
    }

    .history-overlay h1 {
        font-size: 30px;
    }

    .history-text h2 {
        font-size: 24px;
        text-align: center;
    }

    .history-text p {
        text-align: left;
    }

    .history-image {
        width: 100%;
    }

    .legacy-section img {
        width: 100%;
    }
}

@media (max-width: 576px) {

    .history-overlay h1 {
        font-size: 24px;
    }

    .history-section {
        padding: 40px 6%;
    }

    .history-text h2 {
        font-size: 22px;
    }

    .history-text p {
        text-align: justify;
        line-height: 1.5;
    }

    .legacy-section {
        padding: 40px 10%;

    }

    .legacy-section p {
        line-height: 1.5;
        text-align: justify;
    }

    .history-container {
        gap: 20px;
    }

}

/* ========== Custom Modal Design ========== */

.custom-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: #ffffff;
    width: 75%;
    max-width: 900px;
    max-height: 85vh;
    border-radius: 12px;
    padding: 35px;
    position: relative;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInScale 0.3s ease;
}

.modal-content h2 {
    color: #500101;
    margin-bottom: 20px;
    text-align: center;
}

.modal-body {
    line-height: 1.9;
    text-align: justify;
    color: #333;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #500101;
    font-weight: bold;
    transition: 0.3s;
}

.close-btn:hover {
    color: #d9a85f;
}

/* Smooth Animation */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Modal */
@media (max-width: 992px) {
    .modal-content {
        width: 95%;
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .modal-content {
        padding: 20px;
    }

    .modal-content h2 {
        font-size: 22px;
    }
}