/* Base Reset */

@font-face {
    font-family: "Lexend";
    /* Name of the font */
    src: url("./Lexend/Lexend-VariableFont_wght.ttf") format("truetype");
    font-weight: normal;
    /* Optional: Set the weight */
    font-style: normal;
    /* Optional: Set the style */
}

@font-face {
    font-family: "RedHatDisplay";
    /* Name of the font */
    src: url("./Red_Hat_Display//RedHatDisplay-VariableFont_wght.ttf") format("truetype");
    font-weight: normal;
    /* Optional: Set the weight */
    font-style: normal;
    /* Optional: Set the style */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito Sans", sans-serif;
}

:root {
    --main-bg: #095d40;
    --main-text: #800000;
    --primary-color: #15b5fc;
    --border-color: #b3ecf7;
    --text-dark: #0f1f2e;
    --text-muted: #6b7280;
    --bg-light: #f6feff;
    --main-subTitle: #f7cb2d;
    --main-black: black;
}

/* Header Container */
header {
    background-color: white;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
    background-color: white;
    position: fixed;
    z-index: 1000;
    width: 100%;
    margin: auto;
}

.header.scrolled {
    position: fixed;
    background: var(--main-bg);
    color: white;
}

.logo {
    max-width: 180px;
    margin-top: 10px;
}

.logo.white {
    display: none;
}

.header.scrolled .logo.white {
    display: block !important;
}

.header.scrolled .logo.black {
    display: none;
}

.dropdown-menu a:hover {
    color: var(--main-subTitle) !important;
}

.header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer_cta {
    display: flex;
    gap: 10px;
}

.footer_cta a {
    text-decoration: none;
}

.logo span {
    font-size: 18px;
    color: white;
    font-weight: 500;
}

.logo strong {
    font-weight: 700;
}

/* Desktop Navigation */
.nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.header.scrolled .nav a {
    color: white;
}

.header.scrolled .menu-toggle i {
    color: var(--main-text);
}

.nav a {
    text-decoration: none;
    color: black;
    font-family: "Lexend";
}

.nav a:hover {
    color: var(--main-subTitle);
}

/* Dropdown container */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    color: #444;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

/* .dropdown-toggle:hover,
.dropdown a.active {
  color: var(--main-text);
  font-weight: 700;
} */

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    border-radius: 4px;
    min-width: 200px;
    display: none;
    flex-direction: column;
    z-index: 10;
}

.dropdown-menu a {
    padding: 10px 20px;
    color: black !important;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-menu a:hover {
    background: #f0f0ff;
}

.history-desc {
    font-weight: 400;
    font-size: 12px;
    color: #666;
    margin-left: 10px;
    font-style: italic;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: flex;
    flex-direction: column;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #3b36f3;
    font-size: 18px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #222;
}

/* Hamburger Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Slide Menu */
.menu-content {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 75%;
    max-width: 300px;
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    display: flex;
    z-index: 999;
}

.menu-content.open {
    right: 0;
    display: none;
    background-color: var(--main-bg);
}

/* Close Button */
.close-btn {
    background: none;
    border: none;
    font-size: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    color: white;
}

.close-btn-div {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

/* Mobile Nav & Icons */
.menu-content .nav {
    flex-direction: column;
    width: 100%;
    gap: 0;
}

.menu-content .nav a {
    padding: 15px 0;
    width: 100%;
    color: white;
    display: flex;
    text-decoration: none;
}

.menu-content .nav a.active {
    color: white !important;
    font-weight: bold;
}

/* Mobile dropdown accordion styles */
.mobile-dropdown {
    width: 100%;
}

.mobile-dropdown-toggle {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #222;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    user-select: none;
}

.mobile-dropdown-toggle .arrow {
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active {
    color: #3b36f3;
}

.mobile-dropdown-menu {
    display: none;
    flex-direction: column;
    padding-left: 15px;
}

.mobile-dropdown-menu a {
    padding: 10px 0;
    border-bottom: none;
    font-weight: 400;
    color: #555;
}

.mobile-dropdown-menu a .history-desc {
    font-style: italic;
    font-size: 12px;
    color: #666;
    margin-left: 8px;
}

/* Rotate arrow when active */
.mobile-dropdown-toggle .arrow.rotate {
    transform: rotate(180deg);
}

/* Responsive Behavior */
@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
    }

    .header_inner .btn {
        display: none;
    }

    .web {
        display: none;
    }

    .menu-content {
        display: flex !important;
    }

    .nav {
        gap: 5px;
    }

    .testimonial-grid {
        grid-template-columns: none !important;
    }

    .logo {
        margin-left: -20px;
    }
}

/* Base styles */
.footer {
    background-color: #f6f7fd;
    color: white;
    padding: 20px 0 0px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 60px;
}

.column {
    flex: 1;
    min-width: 250px;
    margin: 20px 20px 0px;
}

.brand-logo {
    width: 320px;
    margin-top: -50px;
}

.negative_text {
    margin-top: -100px;
}

.text {
    font-size: 18px;
    line-height: 1.6;
    /* margin-bottom: 15px; */
    color: black;
    font-family: "Lexend";
}

.icon-row i {
    margin-right: 15px;
    cursor: pointer;
    color: var(--main-text);
}

.icon-row.big_size i {
    margin-right: 15px;
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid;
    padding: 15px;
    font-size: 20px;
    color: white;
    margin-top: 20px;
}

.title {
    color: var(--main-text);
    margin-bottom: 20px;
    font-size: 24px;
    font-family: "Lexend";
}

.item-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.item-row:hover .fas {
    color: var(--main-text);
}

.item-row:hover .label {
    color: var(--main-text);
}

.icon {
    font-size: 20px;
    color: white;
    margin-top: 5px;
}

.label {
    color: var(--main-text);
    font-weight: bold;
    margin-bottom: 4px;
    font-size: 20px;
    font-family: "Lexend";
}

.input-row {
    margin-bottom: 10px;
}

.input-row input {
    flex: 1;
    padding: 10px;
    border: none;
    font-size: 14px;
    outline: none;
}

.btn {
    background-color: var(--main-text);
    border: 1px solid var(--main-text);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    cursor: pointer;
    border-radius: 5px;
    font-family: "Lexend";
}

.btn:hover {
    background: none;
    border: 1px solid var(--main-text);
    color: var(--main-text);
}

.checkbox-group {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-family: "Lexend";
    color: black;
}

.checkbox-group input {
    margin-right: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    font-size: 16px;
}

.copy_rights {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Lexend";

    padding: 10px 60px;
}

.highlight {
    color: var(--main-text);
    font-family: "Lexend";
}

.footer-bottom a {
    color: var(--main-text);
    text-decoration: none;
    font-family: "Lexend";
}

.footer-bottom p {
    font-family: "Lexend";
    color: black;
}

.subscribe-box {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    padding: 10px 15px;
    margin-top: 30px;
}

.subscribe-box input {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--main-text);
    font-size: 16px;
    outline: none;
    font-family: "Lexend";
}

/* .fas {
  color: var(--main-text);
} */
.checkbox-group input[type="checkbox"] {
    accent-color: var(--main-text);
    /* Modern browsers */
}

.subscribe-box input::placeholder {
    color: var(--main-text);
}

.subscribe-box button {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0 10px;
}

.icon-row i:hover {
    color: var(--main-text);
}

.btn i {
    margin-left: 10px;
    color: white;
}

.btn i:hover {
    color: var(--main-text) !important;
}


body {
    font-family: "Nunito Sans", sans-serif;
    color: #2c2c2c;
    line-height: 1.6;
}

.landing_video {
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
    height: 100vh;
    /* Full screen height */

    padding: 100px 20px;
    background-color: #000;
    /* Fallback background */
}

.text-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0;
    padding: 2rem;
    border-radius: 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.video-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner {
    background: url("./images/home_banernymc.jpg") no-repeat center center/cover;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
    color: white;
    position: relative;
}

.banner_image {
    position: relative;
    height: 550px;
    width: 100%;
    overflow: hidden;
    padding-top: 100px;
}

.banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.banner-content {
    z-index: 2;
    max-width: 600px;
}

.banner h1 {
    font-size: 3rem;
    font-family: "Lexend";

    margin-bottom: 1rem;
}

.banner p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.text-content h2 {
    color: white;
    font-weight: 900;
}

.book_bottom_text {
    font-size: 22px;
    max-width: 1200px;
    margin: 2rem auto;
    text-align: center;
}

.book_bottom_section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.acc_btn {
    background: none;
    color: var(--main-text);
    border: 1px solid var(--main-text);
    background: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    display: inline-block;
    font-family: "Lexend";
    max-width: fit-content;
}

.acc_btn:hover {
    background: var(--main-text);
    color: white;
    border: 1px solid var(--main-text);
}

.fa-phone-alt {
    transform: rotate(90deg);
}

.learning_section {
    max-width: 1240px;
    margin: 20px auto;
    /* background-color: #fff; */
}

.learning_section h2 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-family: "Lexend";
}

.title_div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title_div .divider {
    margin: 1rem 0;
}

.divider {
    width: 84px;
    height: 3px;
    background-color: var(--main-text);
    /* blue color */
    margin-left: 570px;
    /* pushes it to the right */
    margin-bottom: 3rem;
}

.nav a.active {
    color: var(--main-subTitle) !important;
    font-weight: 700;
}

.learning_section-content {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    color: #666;
}

.learning_section-content p {
    flex: 1;
    max-width: 520px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.know-more {
    margin-top: 30px;
    display: inline-block;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(74, 72, 72, 0.215);
    font-size: 1rem;
}

.know-more:hover {
    border-bottom: 1px solid black;
}

@media (max-width: 768px) {
    .learning_section h2 {
        font-size: 2rem;
    }

    .groups {
        justify-content: center !important;
    }

    .home_service_cards {
        justify-content: center !important;
    }

    .learning_section-content {
        flex-direction: column;
    }

    .divider {
        margin-left: 0px;
        /* pushes it to the right */
    }

    .learning_section {
        margin: 40px auto;
    }

    .stats-container {
        flex-direction: column;
    }

    .mission_goals {
        flex-wrap: wrap;
    }

    .supportpage-left .supportpage-title {
        margin: 10px 0 !important;
        text-align: start !important;
        font-size: 24px !important;
    }

    .about-us-content h2 {
        font-size: 24px !important;
    }

    .supportpage-title,
    .goals_title,
    .donat_title {
        font-size: 24px !important;
    }

    .goals_title {
        margin: 15px 0 !important;
    }

    .misson_btn {
        margin: 1rem 0 !important;
    }

    .copy_rights {
        flex-direction: column;
        gap: 10px;
    }

    .mission_goals {
        justify-content: center !important;
    }

    .mission_left .donat_underline {
        margin: 10px auto !important;
    }

    .goals_subtitle {
        text-align: center !important;
    }

    .mission_left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .flex {
        flex-direction: column;
    }

    .mission_center {
        max-width: 100% !important;
    }

    .book_donation_section {
        max-width: 100% !important;
    }
}

.misson_btn {
    margin: 2rem 0;
}

.school-stats {
    /* background-color: #f8f9ff; */
    padding: 50px 20px;
    text-align: center;
    font-family: "Lexend";
}

.school-stats h2 {
    font-size: 24px;
    font-weight: bold;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.stat-box {
    font-size: 69px;
    font-weight: bold;
    color: var(--main-text);
}

.stat-box p {
    font-size: 16px;
    font-weight: normal;
    color: #555;
    font-family: "Lexend";
}

.plus {
    font-size: 69px;
    font-family: "Lexend";

    color: var(--main-text);
}

.testimonial-section {
    /* background-color: #f4f6fc; */
    padding: 60px 20px;
    font-family: "Nunito Sans", sans-serif;
}

.testimonial-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1240px;
    margin: 0 auto;
}

.testimonial-image img {
    border-radius: 10px;
    width: 100%;
    max-width: 450px;
    height: 550px;
    object-fit: cover;
}

.testimonial-text {
    max-width: 700px;
    /* position: relative; */
    padding-left: 20px;
    text-align: left;
}

.quote-mark {
    font-size: 69px;
    color: var(--main-text);
    display: block;
    height: 80px;
}

.quote {
    font-size: 26px;
    color: black !important;
    font-style: italic;
    margin: 20px 0;
    line-height: 1.6;
}

.quote_text {
    font-size: 16px;
    color: black !important;
    font-style: italic;
    margin: 0 !important;
    font-family: "Nunito Sans", sans-serif;

    line-height: 1.6;
}

.hover-meta div {
    font-size: 16px;
}

.bg_clr {
    background: linear-gradient(180deg, #d4e7ff 0%, #e8ffff 100%);
    padding: 40px 0;
}

.author {
    font-size: 16px;
    color: #222;
    font-family: "Lexend";
    font-weight: bold;
    margin: 20px 0;
}

.circular_section {
    display: flex;
    max-width: 1240px;
    margin: auto;
}

.half_section {
    width: 50%;
}

.row_section {
    display: flex;
    align-items: anchor-center;
}

.divider.no_left {
    margin-left: 0;
    margin-bottom: 2rem;
}

.no_left_banner {
    background-color: white;
    margin-left: 0;
    margin-bottom: 2rem;
}

.section-title {
    text-align: center;
    margin-top: 40px;
    font-size: 2rem;
    font-weight: 700;
}

.academics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0;
}

.academic-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: start;
    transition: transform 0.3s;
    padding: 30px;
}

.academic-card:hover {
    transform: translateY(-5px);
}

.academic-image {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.academic-title {
    font-size: 24px;
    font-weight: 500;
    margin: 20px 0;
    color: white;
    font-family: "Lexend";
}

.academic-description {
    font-size: 16px;
    color: white;
    margin-bottom: 20px;
    font-family: "Nunito Sans", sans-serif;
}

@media (max-width: 600px) {
    .section-title {
        font-size: 1.5rem;
    }
}

.activities-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 68px;
    max-width: 1200px;
    margin: 80px auto;
}

.activities-section img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.activities-content {
    flex: 1;
    min-width: 300px;
}

.academic-content {
    background: #0f313a;
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
}

.activities-content h2 {
    font-size: 56px;
    font-family: "Lexend";
    margin-bottom: 20px;
    font-weight: 400;
}

.activity-item {
    margin-bottom: 20px;
}

.activity-item h4 {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
    color: var(--main-text);
    font-family: "Nunito Sans", sans-serif;
}

.activity-item p {
    margin: 4px 0 0;
    color: #555;
    font-size: 16px;
    font-family: "Nunito Sans", sans-serif;
}

.bullet {
    color: var(--main-text);
    margin-right: 10px;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .activities-section {
        flex-direction: column;
        padding: 40px 20px;
    }

    .testimonial-container {
        justify-content: center;
    }

    .staff_member {
        flex-direction: column;
    }

    .staff_member.reverse {
        flex-direction: column !important;
    }

    .staff_members {
        padding: 20px;
    }

    .our_cc_p {
        padding: 20px;
    }

    .board_directors_section {
        justify-content: center !important;
        gap: 20px;
    }

    .banner_image {
        height: auto;
    }
}

.acc_section_box {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
}

.acc_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    box-shadow: rgba(1, 6, 12, 0.14) 0px 4px 25px 0px;
    border-radius: 16px;
    background: white;
    gap: 10px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 380px;
    flex: 1 1 calc(33.333% - 20px);
    /* 3 cards on large screens */
    padding-bottom: 20px;
}

/* Medium screens (tablets): 2 cards per row */
@media (max-width: 992px) {
    .acc_section {
        flex: 1 1 calc(50% - 20px);
    }
}

/* Small screens (mobiles): 1 card per row */
@media (max-width: 600px) {
    .acc_section {
        flex: 1 1 100%;
    }
}

.acc_section.reverse {
    flex-direction: row-reverse;
}

.acc_section img {
    max-width: 600px;
    width: 100%;
    min-height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

.acc_section:hover img {
    transform: scale(1.1);
}

.acc_section .content {
    padding: 10px 20px;
    display: flex;
    /* justify-content: space-between; */
    flex-direction: column;
    /* height: 100%; */
    height: 280px;
    overflow: auto;
    scrollbar-width: none;
}

.acc_section .content ul {
    padding: 0 20px;
}

.acc_section .content ul li::marker {
    color: var(--main-text);
}

.acc_section .content h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--main-text);
    font-weight: 600 !important;
}

.sub_card_heading {
    color: var(--main-text) !important;
}

.acc_section .content p {
    font-size: 16px;
    color: black;
    /* margin-bottom: 20px; */
    line-height: 1.6;
}

.acc_section .content .read_more {
    color: var(--main-text);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.read_more {
    color: var(--main-text);
    display: flex;
    align-items: baseline;
    font-family: "Lexend";
    gap: 10px;
    cursor: pointer;
}

.hover-meta .read_more {
    color: var(--main-subTitle);
}

@media (max-width: 768px) {
    .acc_section {
        flex-direction: column;
    }

    .acc_section_box {
        padding: 20px;
    }

    .acc_section img {
        width: 100%;
        height: auto;
    }

    .content {
        max-width: 100%;
    }
}

.max_width {
    max-width: 1240px;
    margin: 2rem auto;
}

.heading_contact {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

footer .fas {
    color: var(--main-text);
}

h2 {
    font-size: 48px;
    font-family: "Lexend";
    font-weight: 400;
}

.btn:hover .fa-arrow-right {
    color: var(--main-text);
    /* change icon color on hover */
}

.accadamic_btn i {
    margin-left: 10px;
}

.accadamic_btn {
    background: var(--main-text);
    border: 1px solid var(--main-text);
    color: var(--main-text);
}

.our_cc_p {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 625px;
    margin: 2rem auto;
    font-size: 16px;
    font-family: "Nunito Sans", sans-serif;
    text-align: center;
}

.download_container_Box {
    max-width: 1200px;
    background-image: linear-gradient(112.5deg,
            rgb(214, 214, 214) 0%,
            rgb(214, 214, 214) 10%,
            rgb(195, 195, 195) 10%,
            rgb(195, 195, 195) 53%,
            rgb(176, 176, 176) 53%,
            rgb(176, 176, 176) 55%,
            rgb(157, 157, 157) 55%,
            rgb(157, 157, 157) 60%,
            rgb(137, 137, 137) 60%,
            rgb(137, 137, 137) 88%,
            rgb(118, 118, 118) 88%,
            rgb(118, 118, 118) 91%,
            rgb(99, 99, 99) 91%,
            rgb(99, 99, 99) 100%),
        linear-gradient(157.5deg,
            rgb(214, 214, 214) 0%,
            rgb(214, 214, 214) 10%,
            rgb(195, 195, 195) 10%,
            rgb(195, 195, 195) 53%,
            rgb(176, 176, 176) 53%,
            rgb(176, 176, 176) 55%,
            rgb(157, 157, 157) 55%,
            rgb(157, 157, 157) 60%,
            rgb(137, 137, 137) 60%,
            rgb(137, 137, 137) 88%,
            rgb(118, 118, 118) 88%,
            rgb(118, 118, 118) 91%,
            rgb(99, 99, 99) 91%,
            rgb(99, 99, 99) 100%),
        linear-gradient(135deg,
            rgb(214, 214, 214) 0%,
            rgb(214, 214, 214) 10%,
            rgb(195, 195, 195) 10%,
            rgb(195, 195, 195) 53%,
            rgb(176, 176, 176) 53%,
            rgb(176, 176, 176) 55%,
            rgb(157, 157, 157) 55%,
            rgb(157, 157, 157) 60%,
            rgb(137, 137, 137) 60%,
            rgb(137, 137, 137) 88%,
            rgb(118, 118, 118) 88%,
            rgb(118, 118, 118) 91%,
            rgb(99, 99, 99) 91%,
            rgb(99, 99, 99) 100%),
        linear-gradient(90deg, rgb(195, 195, 195), rgb(228, 228, 228));
    background-blend-mode: overlay, overlay, overlay, normal;
    border-radius: 30px;
    margin: 0 auto 2rem;
}

.download_container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
}

.download_container h2 {
    color: #0f313a;
    text-align: center;
}

.download_container p {
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    text-align: center;
}

a {
    text-decoration: none;
}

.download_btn {
    border: 1px solid var(--main-text);
    padding: 15px;
    cursor: pointer;
    color: var(--main-text);
    max-width: 200px;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    font-family: "Lexend";
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.download_btn:hover {
    background-color: var(--main-text);
    color: white;
    border: 1px solid;
}

@media (max-width: 1024px) {
    .download_container {
        padding: 40px 0;
    }

    h2 {
        font-size: 32px;
    }

    .max_width {
        padding: 0 20px;
    }

    .process {
        padding: 0 20px;
    }

    .container {
        padding: 0 20px !important;
    }

    .header_inner {
        padding: 0 20px;
    }

    .header_inner .btn {
        display: none;
    }
}

.addmissions_icon i {
    background-color: var(--main-text);
    padding: 15px;
    border-radius: 30px;
    color: white;
}

.addmissions_icon {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 2rem 0;
}

.addmissions_icon p {
    font-size: 22px;
    font-family: "Lexend";
}

.process {
    text-align: left;
    max-width: 1240px;
    margin: 2rem auto;
}

.process h2 {
    font-weight: 600;
    font-size: 48px;
    margin-bottom: 30px;
}

.steps {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.step-card {
    background: white;
    border: 1px solid var(--main-text);
    border-radius: 12px;
    padding: 24px;
    flex: 1 1 calc(25% - 24px);
    min-width: 250px;
    box-sizing: border-box;
}

.step-number {
    color: var(--main-text);
    font-size: 90px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: "Lexend";
}

.step-card h3 {
    color: black;
    margin: 0 0 12px;
    font-weight: 600;
    font-size: 32px;
    font-family: "Lexend";
}

.step-card p {
    color: black;
    font-size: 16px;
    font-family: "Nunito Sans", sans-serif;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.step-card a {
    color: var(--main-text);
    cursor: pointer;
    text-decoration: none;
}

.admissions_process_des {
    max-width: 1000px;
    margin: 4rem auto;
    text-align: center;
}

.admissions_process_des h2 {
    font-size: 24px;
}

.view_more {
    display: flex;
    justify-content: center;
    padding: 3rem 0 2rem;
}

.staff_members {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1240px;
    margin: 4rem auto;
    transition: transform 0.3s ease;
    margin-bottom: 0px;
}

.staff_member {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 12px;
    gap: 1.5rem;
    /* max-width: 800px; */
    width: 98%;
    margin: auto;
}

.staff_section .staff_avatar {
    width: 200px;
    height: 100%;
    transition: transform 0.4s ease;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.staff_member:hover .staff_avatar {
    transform: scale(1.1);
    /* Zoom in */
}

.staffs_member:hover .staff_avatar {
    transform: scale(1.1);
}

.staffs_member {
    width: 98%;
}

.staff_member.reverse {
    flex-direction: row-reverse;
}

.staff_avatar {
    width: 120px;
    height: 120px;
    min-height: 180px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.4s ease;
    display: block;
}

.board_member:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.board_member {
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border-radius: 10px;
}

.staff_details {
    flex: 1;
    box-shadow: rgba(1, 6, 12, 0.14) 0px 4px 25px 0px;
    padding: 1.5rem;
    background-color: #ffce1f6e;
    border-radius: 20px;
}

.staff_role {
    margin: 0;
    color: var(--main-text);
    font-weight: 700;
    font-size: 18px;
    font-family: "Nunito Sans", sans-serif;
}

.staff_name {
    font-weight: bold;
    text-transform: capitalize;
    margin: 0.2rem 0 0.6rem;
    font-family: "Lexend";
    font-size: 22px;
}

.staff_message {
    line-height: 1.6;
    color: #333;
    font-size: 16px;
    font-family: "Nunito Sans", sans-serif;
}

.staff_socials {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.social_icon {
    font-size: 20px;
    color: var(--main-bg);
    transition: color 0.3s ease;
}

.social_icon.instagram:hover {
    color: var(--main-text);
    /* Instagram pink */
}

.social_icon.twitter:hover {
    color: var(--main-text);
    /* Instagram pink */
}

.social_icon.linkedin:hover {
    color: var(--main-text);
    /* Instagram pink */
}

.board_directors_section {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    /* flex-wrap: wrap; */
    gap: 20px;
    padding: 0px 0 60px;
}

.no_bg .testimonial-section {
    background-color: white;
}

.no_bg .testimonial-container {
    align-items: anchor-center;
}

.no_bg .testimonial-container h2 {
    font-size: 32px;
}

.no_bg .testimonial-container p {
    margin: 15px 0 !important;
    font-family: "Lexend";
    font-size: 14px;
}

.no_bg .testimonial-container .content {
    margin-top: 15px;
}

.board_member {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    background: white;
    padding: 2rem 0;
    border-radius: 20px;
}

.board_member .staff_socials {
    justify-content: center;
}

.board_member:hover .staff_avatar {
    transform: scale(1.1);
    /* Zoom in */
}

.history-section {
    background-size: cover;
    background-position: center;
    color: white;
    /* padding: 60px 20px; */
}

.history-overlay {
    display: flex;
    justify-content: space-between;
    margin: auto;
}

.history_container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.history-card {
    flex: 1 1 30%;
    min-width: 350px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 17%);
    transition: transform 0.3s ease;
    width: 100%;
    height: 420px;
    overflow-y: auto;
    padding: 24px;
    /* good internal spacing */
    border-radius: 16px;
    background-color: #fff;
    box-sizing: border-box;
    scrollbar-gutter: stable;
    /* Keeps space for scrollbar */
}

.history-text {
    /* margin-bottom: 16px; */
    line-height: 1.6;
}

.history-card::-webkit-scrollbar {
    width: 8px;
}

.flex_row {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.history-card::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.hidden {
    display: none;
}

.read_more {
    background: none;
    border: none;
    color: #c00;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    padding: 0;
}

.history-icon {
    font-size: 36px;
    color: #15b5fc;
    margin-bottom: 15px;
}

.history-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: "Lexend";
    color: #000;
}

.history-text {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
}

/* General Section Styling */
.learning_section_history {
    color: black;
    padding: 80px 20px;
    font-family: "Montserrat", sans-serif;
}

/* Container */
.learning_section_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Left text content */
.learning_text_content {
    flex: 1 1 400px;
    max-width: 500px;
}

.learning_heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
}

.learning_paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: black;
}

/* Right features */
.learn-features {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Individual cards */
.learn-card {
    display: flex;
    gap: 16px;
    background-color: var(--main-bg);
    padding: 18px 20px;
    border-radius: 12px;
    align-items: flex-start;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.learn-card:hover {
    background-color: white;
    transform: scale(1.02);
}

.learn-card:hover .learn-description {
    color: #000;
}

.history-icon {
    color: var(--main-text);
}

/* Icon */
.learn-icon {
    font-size: 24px;
    color: var(--main-subTitle);
    margin-top: 6px;
}

/* Title & Description */
.learn-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--main-subTitle);
}

.learn-description {
    font-size: 16px;
    color: white;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .learning_section_container {
        flex-direction: column-reverse;
        gap: 50px;
    }

    .learning_text_content {
        flex: auto;
    }

    .learning_section_history {
        padding: 40px 20px;
    }

    .history_container {
        padding: 0 20px;
    }

    .board_directors_section {
        flex-wrap: wrap;
        padding: 0 20px;
        padding-bottom: 2rem;
    }

    .blogs_section {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
    }

    .our_cc_p {
        padding: 20px !important;
    }

    .responsive_padding {
        padding: 0 20px;
    }

    .supportpage-overlay {
        flex-direction: column;
        padding: 0 !important;
    }
}

.header.scrolled .nav a:hover {
    color: var(--main-subTitle);
}

.board_direc .our_cc_p {
    margin: 0 auto;
    padding: 2rem 0;
    max-width: 1000px !important;
}

.board_direc .board_directors_section {
    margin: 0 auto;
    padding: 1rem 0 4rem;
}

.board_details .staff_socials .social_icon {
    color: var(--main-bg) !important;
}

.board_details .staff_socials .social_icon:hover {
    color: var(--main-text) !important;
}

.customer-testimonials {
    padding: 60px 20px;
    background-color: #e9f5ce;
}

.testimonial-header {
    text-align: center;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-header h2 {
    font-size: 2.5rem;
    color: var(--main-text);
    margin-bottom: 10px;
}

.testimonial-header p {
    font-size: 1.1rem;
    color: black;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.quote-mark {
    font-size: 4rem;
    color: var(--main-text);
    /* Green quote icon */
    top: 0px;
    left: 20px;
}

.testimonial-box p {
    font-size: 1rem;
    color: #333;
    margin: 30px 0;
    line-height: 1.6;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.client-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.client-info span {
    font-size: 0.95rem;
    color: #333;
}

.register_section {
    max-width: 1000px;
    margin: 3rem auto;
    display: flex;
    align-items: center;
    padding: 3rem;
    flex-direction: column;
    gap: 15px;
    border-radius: 15px;
    text-align: center;
}

.register_section .btn {
    margin: 15px 0;
    max-width: 200px;
    text-align: center;
}

.supportpage {
    position: relative;
    background: url(../images/geo.jpeg) center / cover no-repeat;
    color: white;
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    z-index: 1;
}

/* Light green overlay */
.supportpage::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #191919bd;
    /* lightgreen with transparency */
    z-index: -1;
}

.supportpage-overlay {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1240px;
    margin: auto;
    padding: 40px;
    border-radius: 12px;
    gap: 40px;
}

.supportpage-left {
    flex: 1;
}

.supportpage-subtitle {
    color: var(--main-subTitle);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}

.supportpage-subtitle_banner {
    color: var(--main-subTitle);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
    font-family: "Lexend";
}

.supportpage-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0;
    line-height: 1.5 !important;
    font-family: "Lexend";
}

.supportpage-description {
    margin-top: 20px;
    border-left: 4px solid var(--main-subTitle);
    padding-left: 15px;
    font-size: 16px;
    line-height: 1.6;
    max-width: 500px;
}

.supportpage-right {
    flex: 1;
}

.supportpage-card {
    background: white;
    color: #111;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.supportpage-badge {
    background-color: var(--main-bg);
    color: white;
    font-family: "Lexend";
    font-size: 14px;
    padding: 5px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 15px;
}

.supportpage-card-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px;
}

.supportpage-card-desc {
    font-size: 15px;
    line-height: 1.5;
    color: #666;
}

.supportpage-progress {
    margin-top: 20px;
}

.progress-bar {
    background-color: #eee;
    height: 12px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 10px;
}

.filled {
    background-color: var(--main-bg);
    height: 100%;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 14px;
    color: #444;
}

.supportpage-buttons {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.btn-pay {
    flex: 1;
    border: 1px solid var(--main-bg);
    background: transparent;
    color: #111;
    padding: 12px 0;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-pay:hover {
    background-color: var(--main-subTitle);
    color: white;
}

.about-us-section {
    padding: 60px 20px;
}

.about-us-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    gap: 40px;
}

.about-us-image {
    flex: 1;
    position: relative;
    min-width: 300px;
}

.about-us-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.icon-box {
    position: absolute;
    top: 20px;
    left: -30px;
    background-color: var(--main-subTitle);
    padding: 15px;
    border-radius: 50%;
}

.icon-box img {
    width: 40px;
    height: 40px;
}

.about-us-content {
    flex: 1;
    min-width: 300px;
}

.section-label {
    color: var(--main-text);
    font-family: "Lexend";
    font-weight: bold;
    margin-bottom: 10px;
}

.about-us-content h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.features-list li {
    margin-bottom: 10px;
    font-weight: 600;
}

.description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-button {
    background-color: var(--main-subTitle);
    color: #fff;
    padding: 12px 24px;
    border: none;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.about-button:hover {
    background-color: var(--main-subTitle);
}

.supportpage-buttons .btn {
    width: 100%;
}

.supportpage_card_section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.supportpage-subtitle {
    color: var(--main-text);
    /* text-align: center; */
    font-size: 18px;
}

.supportpage_card_section .supportpage-subtitle,
.supportpage-title {
    text-align: center;
    font-family: "Lexend";
}

.supportpage-title {
    /* text-align: center; */
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: bold;
}

.cards_like_this {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card_item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    width: 350px;
    /* padding: 20px; */
    /* position: relative; */
    /* overflow: hidden; */
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* justify-content: space-between; */
}

.card_item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.card_tag {
    position: relative;
    top: -20px;
    width: fit-content;
    left: 20px;
    padding: 5px 12px;
    background-color: var(--main-subTitle);
    font-family: "Lexend";
    color: #fff;
    border-radius: 5px;
    font-size: 12px;
}

.support_card_padding {
    padding: 0px 20px 20px;
}

/* 
.environment {
  background-color: #009688;
}
.volunteering {
  background-color: #2e7d32;
}
.water {
  background-color: #039be5;
} */
.support_card_padding .btn:hover i {
    color: var(--main-text) !important;
}

.card_title {
    margin-top: 0px;
    font-size: 18px;
    font-weight: bold;
    font-family: "Lexend";
}

.card_desc {
    font-size: 16px;
    margin: 10px 0;
}

.card_progress {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 5px;
}

.progress_bar {
    background-color: #eee;
    border-radius: 4px;
    height: 6px;
    margin-bottom: 15px;
}

.progress_fill {
    height: 100%;
    background-color: #15b5fc;
    border-radius: 4px;
}

.donate_button {
    background-color: #f4a300;
    color: white;
    border: none;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
}

.donate_button i {
    margin-left: 8px;
}

.mission_goals {
    display: flex;
    /* flex-wrap: wrap; */
    margin-top: 80px;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
}

/* .mission_left,
.mission_right {
  flex: 1 1 300px;
} */

.mission_center {
    max-width: 400px;
    height: 400px;
}

.mission_center img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.play_button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #f4a300;
    color: white;
    border-radius: 50%;
    padding: 20px;
    font-size: 20px;
    cursor: pointer;
}

.goal_item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.goal_number {
    background: var(--main-subTitle);
    color: white;
    font-weight: bold;
    padding: 8px 14px;
    font-family: "Lexend";

    border-radius: 50%;
    font-size: 16px;
}

.goal_item strong {
    font-family: "Lexend";
}

.goals_title {
    font-size: 40px;
    font-family: "Lexend";
    line-height: normal;
}

.goals_subtitle {
    font-family: "Lexend";
    color: var(--main-text);
}

.goals_desc {
    margin: 15px 0;
}

.donat_section {
    background-image: url("../images/donate_bg.png");
    /* Replace with your background */
    background-size: cover;
    background-position: center;
    padding: 60px 30px;
    position: relative;
    color: white;
}

.donat_section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    /* Dark overlay */
    z-index: 1;
}

.donat_container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.donat_text {
    max-width: 600px;
}

.donat_tag {
    color: var(--main-subTitle);
    font-weight: 600;
    font-family: "Lexend";
    margin-bottom: 10px;
}

.donat_title {
    font-size: 40px;
    font-weight: 800;
    margin: 0;
    line-height: 1.3;
    font-family: "Lexend";
}

.donat_underline {
    width: 60px;
    height: 4px;
    background-color: var(--main-subTitle);
    margin-top: 16px;
}

.donat_buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.donate_btn,
.volunteer_btn {
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 6px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.donate_btn {
    background-color: var(--main-text);
    color: #fff;
    border: none;
}

.volunteer_btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.donat_buttons .btn:hover i {
    color: var(--main-text) !important;
}

.volunteer_btn:hover {
    background: var(--main-text);
    color: white;
    border: 2px solid var(--main-text);
}

.donat_buttons .volunteer_btn:hover i {
    color: white !important;
}

.mission_left .btn:hover i {
    color: var(--main-text);
}

.about-us-content .donat_underline {
    margin-top: 0px;
    margin-bottom: 15px;
    background-color: var(--main-text);
}

.supportpage_card_section .donat_underline {
    margin: 10px auto;
    background-color: var(--main-text);
}

.mission_left .donat_underline {
    margin: 10px 0;
    background-color: var(--main-text);
}

.supportpage-left .supportpage-title {
    margin: 40px 0;
    text-align: start;
}

.userProfilePage {
    display: flex;
    padding: 20px;
    width: 100%;
    max-width: 1240px;
    margin: 2rem auto;
    gap: 20px;
}

.userprofile_sectino {
    padding: 0 25px;
}

.sidebar {
    width: 350px;
    border: 1px solid #ccc;
    padding: 25px;
    background-color: #fff;
    height: 100%;
}

.user-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

    /* padding: 15px 0; */
}

.profile_avatar {
    width: 100px;
    height: 100px;
    background: var(--main-text);
    text-align: center;
    border-radius: 50%;
    display: flex;
    color: white;
    font-size: 30px;
    align-items: center;
    justify-content: center;
}

.left-panel .card {
    width: 100%;
}

.profile-info .name {
    margin-top: 0px !important;
}

.profile-info .avatar {
    font-size: 14px;
    color: white;
    background-color: var(--main-text) !important;
    width: 35px !important;
    height: 35px !important;
}

.profile-info .avatar a {
    font-size: 14px;
    color: white;
}

.profile-info .name a {
    color: var(--main-text);
}

.name {
    margin-top: 10px;
    font-weight: bold;
}

.admin-badge {
    font-size: 12px;
    color: #800000;
}

.follow-info {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
}

.follow-btn {
    background-color: #800000;
    color: white;
    padding: 8px 0;
    border: none;
    width: 100%;
    cursor: pointer;
}

.user-card .btn {
    width: 100%;
}

.tabs {
    margin-top: 20px;
}

.tab-btn {
    width: 100%;
    padding: 10px;
    border: 1px solid #800000;
    background: none;
    cursor: pointer;
    margin-bottom: 10px;
}

.tab-btn.active {
    background-color: #800000;
    color: white;
}

.main-content {
    width: 100%;
    padding: 20px;
    border: 1px solid #ccc;
    /* margin-left: 20px; */
    background-color: #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.post img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}

.post h3 {
    margin: 10px 0;
}

.user_profile_tabs {
    width: 100%;
}

.user_profile_tabs .tabs {
    padding: 0px 30px !important;
}

.userprofile_posts .card {
    max-width: 100%;
    width: 100%;
}

.userprofile_posts .card_button {
    justify-content: space-between;
    max-width: 100%;
}

.userprofile_posts .card_heart {
    left: 0;
}

.userprofile_posts .comments_userprofile {
    display: flex;
    gap: 2rem;
}

.user_profile_tabs .tabs ul {
    margin: 0 auto 20px !important;
}

@media (max-width: 1023px) {
    .userProfilePage {
        flex-direction: column;
    }

    .supportpage-overlay {
        margin: 3rem auto;
    }

    .sidebar {
        width: 100%;
    }

    .mission_goals {
        flex-direction: column;
    }
}

.following_box {
    padding: 0 20px;
}

.follow-info {
    gap: 20px;
}

.border_right {
    border-right: 1px solid black;
}

.inner-tabs {
    padding: 20px !important;
}

.inner_tabs {
    padding: 20px 0;
}

.userProfilePage .dots-wrapper {
    position: relative;
    display: flex;
    align-items: end;
    width: 100%;
    justify-content: end;
    /* margin-top: 10px; */
    cursor: pointer;
}

.userProfilePage .dots {
    font-size: 20px;
    border-radius: 50%;
    color: white;
    background: var(--main-text);
    padding: 0 10px;
}

.userProfilePage .dropdown {
    display: none;
    position: absolute;
    top: 25px;
    right: 0;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    border-radius: 4px;
}

.userProfilePage .dropdown p {
    margin: 0;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #222;
}

.userProfilePage .dropdown p:hover {
    background-color: #f1f1f1;
}

.inner_tabs .inner-tabs {
    padding: 0px !important;
}

.inner-tab-content h2 {
    font-size: 16px;
}

.ajaga_board {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* board cards */

.board_title {
    font-size: 24px;
    font-weight: bold;
}

.board_title span {
    font-size: 18px;
    color: #007acc;
}

.tree ul {
    padding-top: 20px;
    position: relative;
    display: flex;
    justify-content: center;
}

.tree li {
    list-style: none;
    margin: 0 10px;
    position: relative;
    padding-top: 20px;
}

.tree li:only-child {
    padding-top: 0;
}

.boardofdirect_card {
    background: #fff;
    border: 2px solid var(--main-text);
    border-radius: 10px;
    padding: 15px 20px;
    width: 300px;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.boardofdirect_card h3 {
    font-family: "Lexend";
}

.boardofdirect_card p {
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
}

.boardofdirect_card:hover {
    background: #e6f4ff;
    transform: scale(1.05);
}

.horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Modal Styles */
.boardofdirect_modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.boardofdirect_modal_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    /* Center vertically & horizontally */
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 1000px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1023px) {
    .boardofdirect_modal_content {
        height: 590px;
        overflow: auto;
    }
}

.boardofdirect_modal_desc {
    font-size: 14px;
}

.boardofdirect_close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
}

.tree_board {
    max-width: 1280px !important;
}

.divider.no_left.fullWidth {
    margin: 1rem auto;
    width: 80%;
}

.center_arrow {
    display: flex;
    padding: 10px 0;
    justify-content: center;
}

.flex {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    align-items: center;
}

.boardofdirect_card .btn {
    margin: 10px 0;
}

#modalName {
    font-family: "Lexend";
    font-size: 32px;
}

#modalRole {
    color: var(--main-text);
    font-size: 14px;
}

.boardofdirect_modal_img {
    max-width: 300px;
}

#modalDesc {
    font-size: 16px;
    text-align: start;
}

.flex .icon-row {
    margin-top: 2rem;
}

.landing_acc_section h2 {
    text-align: center;
}

.landing_acc_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 30px;
    text-align: center;
}

.landing_acc_section .acc_btn {
    margin: 2rem 0;
}

.landing_acc_section_whole {
    background: #f6f7fd;
    /* max-width: 1240px; */
    margin: auto;
    padding: 2rem 0;
}

.gallery {
    max-height: 450px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.max_width .button {
    display: flex;
    justify-content: center;
}

.media_container h1 {
    font-family: "Lexend";
}

.acc_bootom_section {
    color: var(--main-text);
    font-size: 24px;
    font-family: "Lexend";
}

.acc_bootom {
    max-width: 1200px;
    margin: auto;
}

.acc_bootom ul {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 2rem;
}

.acc_bootom ul li::marker {
    color: var(--main-text);
}

.home_service_cards {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.home_service_card {
    width: 280px;
    height: 400px;
    perspective: 1000px;
}

.home_service_card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.home_service_card-front {
    background-color: #fff;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.home_service_card-front,
.home_service_card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    backface-visibility: hidden;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.home_service_card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: blur(3px); */
}

.home_service_card-info {
    position: absolute;
    bottom: 0;
    background-color: var(--main-subTitle);
    color: var(--main-text);
    width: 100%;
    padding: 16px;
    text-align: left;
    height: 116px;
    font-family: "Lexend";
    z-index: 2;
}

.home_service_card-info:before {
    position: absolute;
    bottom: 100%;
    transform: translateX(-50%);
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 15px 15px;
    border-color: transparent transparent var(--main-subTitle) transparent;
    z-index: 1;
    top: -14px;
    left: 42px;
}

.home_service_card-front::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #504f4d85;
    z-index: 1;
}

.home_service_card-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    position: relative;
    background-color: white;
    color: white;
    z-index: 2;
}

.home_service_card-back .uppercase-text {
    color: var(--main-text) !important;
}

.home_service_card-back img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: -1;
}

.colored_text {
    color: var(--main-text);
    font-style: italic;
    font-size: 22px;
}

.home_service_card-back p {
    font-size: 16px;
    font-family: "Lexend";
    font-weight: bold;
    z-index: 2;
    color: black;
}

.home_service_card-back .read-more {
    color: white;
    border: 1px solid var(--main-text);
    background: var(--main-text);
    font-family: "Lexend";
    margin: 20px 0px;
    font-size: 14px;
    min-width: 110px;
    padding: 12px;
}

.home_service_card:hover .home_service_card-inner {
    transform: rotateY(180deg);
}

/* support */

.book_donation_section {
    /* max-width: 400px; */
    width: 100%;
}

.book_donation_title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.book_entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--text-muted);
    padding: 10px 0;
    gap: 10px;
}

.book_name {
    font-size: 20px;
    font-family: "Lexend";
    font-weight: 500;
    color: #444;
    flex: 1;
}

.book_name:hover {
    color: var(--main-subTitle);
}

.donate_btn {
    background-color: #a50000;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: background-color 0.3s ease;
}

.donate_btn:hover {
    background-color: #870000;
}

.book_donation_section .btn {
    margin: 0 !important;
}

.book_donation_section .btn:hover i {
    color: var(--main-text);
}

.uppercase-text {
    font-family: "Lexend";
}

.container_facilites {
    width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-gap: 15px;
    margin: 2rem auto;
}

.facilities_page_card {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}

.facilities_page_card .face {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.facilities_page_card .face.face1 {
    box-sizing: border-box;
    padding: 20px;
}

.facilities_page_card .face.face1 h2 {
    margin: 0;
    padding: 0;
}

.facilities_page_card .face.face1 .content {
    font-size: 1.2em;
    margin: 0;
    padding: 0 0 1em 0;
    font-weight: 500;
}

.facilities_page_card .face.face2 {
    background: #111;
    transition: 0.5s;
}

.facilities_page_card:hover .face.face2 {
    height: 60px;
    border-radius: 0 0 15px 15px;
}

.facilities_page_card .face.face2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px 0 0 15px;
}

.facilities_page_card .face.face2 h2 {
    margin: 0;
    padding: 0;
    font-size: 32px;
    text-align: center;
    color: var(--main-text);
    transition: 0.5s;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.facilities_page_card:hover .face.face2 h2 {
    font-size: 18px;
}

/* Individual card gradient backgrounds */
.facilities_page_card_one .face.face2 {
    background: linear-gradient(45deg, var(--bg-light), var(--main-subTitle));
    border-radius: 15px;
}

.face h2 {
    font-size: 22px;
}


.sidebar_container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    height: 80vh;
    /* Full viewport height */
    overflow: hidden;
    /* Prevent double scrollbars */
}

/* Sidebar */
.staff_sidebar {
    width: 100%;
    max-width: 350px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: fit-content;
    /* Ensure it sticks the full height */
    overflow-y: auto;
    /* Optional: if you want the sidebar to scroll independently */
}

.staff_sidebar h3 {
    background-color: #13333c;
    color: white;
    padding: 15px;
    margin: 0 0 20px 0;
    font-weight: bold;
    font-family: "Lexend";
}

.staffs_role {
    font-family: "Lexend";
    color: #800000;
    margin: 20px;
    font-size: 18px;
}

.service-item {
    padding: 15px 20px;
    border: 1px solid #eee;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #334;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Lexend";
    font-size: 18px;
}

.service-item:hover {
    background-color: #f9f9f9;
}

.service-item.active {
    background-color: #800000;
    color: white;
    font-family: "Lexend";
    font-size: 18px;
}

.service-item.active span {
    color: white;
}

.service-item span {
    font-size: 18px;
    color: #555;
}

/* Content */
.staff-intro-content {
    flex: 1;
    margin-left: 20px;
    overflow-y: auto;
    scrollbar-width: none;
}

.sidebar_card-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.sidebar_card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    text-align: center;
    width: 280px;
    transition: 0.3s;
}

.circle {
    width: 70px;
    height: 70px;
    border: 2px solid #ddd;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    color: #333;
}

.sidebar_title {
    font-weight: bold;
    font-size: 18px;
    color: #102a43;
    margin-bottom: 10px;
    font-family: "Lexend";
}

.sidebar_description {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 20px;
    font-family: "Nunito Sans", sans-serif;
}

.score {
    font-weight: bold;
    color: #800000;
    text-transform: uppercase;
    border-bottom: 1px solid #aaa;
    display: inline-block;
    padding-bottom: 3px;
    font-size: 14px;
    font-family: "Lexend";
}

/* Tab content visibility */
.tab-content {
    display: none;
}

.tab-content.active {
    display: flex;
}

/* For content with simple text */
.tab-content p {
    font-size: 18px;
    color: #555;
    margin: 20px;
}

.service-item:hover {
    background-color: #800000;
    /* red color */
    color: white;
    /* make text white for contrast */
}

.service-item:hover span {
    color: white;
    /* arrow color also white */
}

.staff_member.visible {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}

.staff_member.reverse {
    flex-direction: row-reverse;
}

.staff_toggle {
    text-align: center;
    margin-top: 20px;
}

#toggleStaffBtn {
    padding: 10px 20px;
    background-color: #800000;
    color: white;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    border: 1px solid #800000;
}

#toggleStaffBtn:hover:enabled {
    background-color: white;
    color: #800000;
    border: 1px solid #800000;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.staffs_member {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 50px;
}

.staffs_member.reverse {
    display: flex;
    gap: 19px;
    align-items: center;
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .staff_member.visible {
        flex-direction: column;
    }

    .staffs_member,
    .staffs_member.reverse {
        flex-direction: column;
    }
}

@media (max-width: 1023px) {
    .sidebar_container {
        display: flex;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        flex-direction: column;
    }

    .staff_sidebar {
        width: 100%;
        max-width: 100%;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        margin-bottom: 20px;
    }

    .staff_sidebar {
        height: auto;
    }

    .staff_sidebar {
        height: auto !important;
    }

    .sidebar_container {
        height: auto !important;
    }

    .sidebar_container .staff-intro-content {
        max-height: 700px;
    }
}


.filters {
    display: flex;
    align-items: center;
    padding: 20px 20px;
    gap: 15px;
    font-size: 16px;
    font-family: "Nunito Sans", sans-serif;
}

.tabs {
    display: flex;
    gap: 30px;
    padding: 20px 30px;

    font-family: "Lexend";
    font-size: 24px;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.line_quote1 {
    border: 2px solid lightgray;
    width: 90%;
    position: relative;
    left: 60px;
}

.tabs span {
    padding-bottom: 5px;
    cursor: pointer;
}

.tabs .active {
    border-bottom: 3px solid #800000;
    color: #800000;
    font-weight: bold;
    font-family: "Lexend";
}

.group_btn {
    background-color: #800000;
    border: 1px solid #800000;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    cursor: pointer;
    border-radius: 5px;
    font-family: "Lexend";
    width: 100%;
    max-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.group_btn:hover {
    background-color: white;
    border: 1px solid #800000;
    color: #800000;
    padding: 10px 20px;
    text-decoration: none;
    cursor: pointer;
    border-radius: 5px;
    font-family: "Lexend";
    width: 100%;
    max-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.grp_section {
    /* margin-top: 1rem; */
    display: flex;
    padding: 0 20px;
}

.groups {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
}

.group-card {
    width: 350px;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
}

.group-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.group-card-content {
    padding: 15px 15px 0px;
}

.group-card:hover .group-title {
    color: var(--main-text);
}

.group-title {
    font-size: 18px;
    font-family: "Lexend";
    font-weight: bold;
    color: black;
}

.group-meta {
    margin: 5px 0 15px;
    font-size: 14px;
    font-family: "Nunito Sans", sans-serif;
    padding-bottom: 15px;
    color: #434242;
}

.join-button {
    display: block;
    width: 100%;
    padding: 10px;
    background: linear-gradient(45deg, #800000, #800000);
    color: white;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1em;
    margin-top: 30px;
    font-family: "Lexend";
}

.join-button:hover {
    background-color: white;
    color: #800000;
}

.group_banner {
    background: no-repeat center center/cover;
    height: 550px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.group_banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.group_banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin: auto;
}

.group_banner h1 {
    font-size: 50px;
    margin: 0;
    font-weight: bold;
    font-family: "Lexend";
}

.breadcrumb {
    margin-top: 10px;
    font-size: 18px;
}

.card-link {
    text-decoration: none;
    color: inherit;
}

.controls {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    justify-content: space-between;
}

.custom-select {
    position: relative;
    font-size: 16px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px 30px 10px 10px;
    font-size: 16px;
    border: 1px solid #800000;
    border-radius: 4px;
    background: white;
    font-family: "Lexend";
    color: #800000;
}

.right-panel .icon {
    color: var(--main-subTitle) !important;
}

.stats div h4 {
    color: var(--main-text);
}

.custom-select::after {
    content: "\f078";
    /* Font Awesome chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #800000;
}

.search-box {
    position: relative;
    left: 30px;
}

.search-box input {
    padding: 10px 10px 10px 35px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.search-box .fa-search {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #888;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

#signupModal .modal-content {
    background-color: #fff;
    margin: auto;
    padding: 30px;
    border-radius: 8px;
    width: 400px;
    position: relative;
    text-align: center;
    font-family: "Lexend";
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
}

.facebook-btn {
    display: flex;
    align-items: center;
    background-color: #1877f2;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    width: fit-content;
    width: 100%;
    gap: 35px;
    font-family: "Lexend";
}

.facebook-icon-wrapper {
    background-color: white;
    color: #1877f2;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.facebook-icon-wrapper i {
    font-size: 16px;
}

.google-btn {
    display: flex;
    align-items: center;
    background-color: white;

    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    width: fit-content;
    font-family: "Lexend";
    margin-bottom: 20px;
    margin-top: 15px;
    width: 100%;
    gap: 35px;
    border: 1px solid black;
}

.google-btn:hover {
    display: flex;
    align-items: center;
    background-color: white;
    color: black;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    width: fit-content;
    font-family: "Lexend";
    margin-bottom: 20px;
    margin-top: 15px;
    width: 100%;
    gap: 35px;
    border: 1px solid black;
}

.google-icon-wrapper {
    background-color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.google-icon-wrapper img {
    width: 18px;
    height: 18px;
}

.email-btn {
    background: white;
    color: black;
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    border: 1px solid black;
}

.email-btn:hover {
    background: white;
    color: black;
    border: 1px solid black;
}

.modal_divider {
    margin: 15px 0;
    border-top: 1px solid #ccc;
    position: relative;
}

.modal_divider::after {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0 10px;
    color: #888;
}

.public-profile {
    margin-top: 15px;
    font-size: 14px;
    text-align: left;
}

.modal_para {
    font-size: 16px;
    font-family: "Nunito Sans", sans-serif;
}

.search-box input {
    width: 250px;
    /* or any width you prefer */
    padding: 8px;
    font-size: 14px;
    padding-left: 32px;
}

.custom_flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

@media (max-width: 768px) {
    .tabs {
        display: flex;
        gap: 30px;
        padding: 20px 30px;
        font-family: "Lexend";
        font-size: 15px;
        width: 95%;
        max-width: 1200px;
        margin: auto;
    }

    .no_positions {
        flex-wrap: wrap;
    }

    .profile-info .avatar {
        width: 35px !important;
        height: 35px !important;
    }

    .controls {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
        max-width: 1200px;
        margin: 20px auto;
        justify-content: space-between;
    }

    .search-box {
        position: relative;
        left: 0px;
    }

    .search-box input {
        max-width: 720px;
        /* or any width you prefer */
        padding: 8px;
        font-size: 14px;
        padding-left: 32px;
    }
}

@media (max-width: 430px) {
    .tabs {
        display: flex;
        gap: 30px;
        font-family: "Lexend";
        font-size: 17px;
        width: 95%;
        max-width: 1200px;
        margin: auto;
        padding: 0;
        padding-left: 17px;
    }

    .controls {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
        max-width: 1200px;
        margin: 20px auto;
        justify-content: space-between;
    }

    .search-box {
        position: relative;
        left: 0px;
    }

    .search-box input {
        width: 345px;
        /* or any width you prefer */
        padding: 8px;
        font-size: 14px;
        padding-left: 32px;
    }

    .custom-select select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        padding: 10px 30px 10px 10px;
        font-size: 16px;
        border: 1px solid #800000;
        border-radius: 4px;
        background: white;
        font-family: "Lexend";
        color: #800000;
        width: 100%;
    }

    .custom-select {
        position: relative;
        font-size: 16px;
        right: 30px;
        display: flex;
        align-items: center;
        gap: 10px;
        width: 263px;
    }

    .custom_flex {
        display: flex;
        align-items: center;
        gap: 50px;
        padding-left: 7px;
    }
}

.page-template-events .container1 {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: auto;
    margin-bottom: 50px;
    padding: 20px 60px;
}

.page-template-events .all_post {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 50px;
}

.page-template-events .news_post {
    color: black;
    font-family: "Lexend";
    font-size: 42px;
    padding-bottom: 15px;
    padding-top: 20px;
    font-weight: 600;
}

.page-template-events .line_quote {
    border: 2px solid #800000;
    width: 8%;
}

.page-template-events .card {
    width: 360px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    background: #fff;
    cursor: pointer;
}

.page-template-events .card:hover {
    transform: translateY(-5px);
}

.page-template-events .image-container {
    position: relative;
}

.page-template-events .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-template-events .arrow {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    bottom: 12px;
    right: 12px;
    cursor: pointer;
}

.page-template-events .arrow i {
    font-size: 18px;
    color: #800000;
}

.page-template-events .arrow:hover {
    background: #800000;
}

.page-template-events .arrow:hover i {
    color: white;
}

.page-template-events .card-content {
    padding: 1rem;
}

.page-template-events .card-content p {
    font-size: 16px;
    font-family: "Nunito Sans", sans-serif;
    padding-bottom: 15px;
    color: #434242;
}

.page-template-events .card-link {
    text-decoration: none;
    color: inherit;
}

.page-template-events .tag {
    display: inline-block;
    background-color: #800000;
    color: white;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    border: 1px solid #800000;
    position: relative;
    left: 90px;
}

.page-template-events .tag:hover {
    display: inline-block;
    background-color: white;
    color: #800000;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    border: 1px solid #800000;
    position: relative;
    left: 90px;
}

.page-template-events .card-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 18px;
    font-family: "Lexend";
}

.page-template-events .meta {
    display: flex;
    font-size: 0.85rem;
    color: #6b7280;
    gap: 1rem;
    align-items: center;
}

.page-template-events .meta i {
    margin-right: 0.3rem;
    color: #dc2626;
}

.page-template-events .heart {
    cursor: pointer;
    color: #afa8a8;
    /* default color */
    transition: color 0.3s ease;
    position: relative;
    left: 130px;
}

.page-template-events .heart.liked {
    color: red;
}

.page-template-events .like-count {
    margin-left: 4px;
    font-weight: normal;
}

.page-template-events .event_banner {
    background: no-repeat center center/cover;
    height: 550px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.page-template-events .event_banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* dark overlay */
    z-index: 1;
}

.page-template-events .banner-content {
    position: relative;
    z-index: 2;
    padding-left: 50px;
    margin: auto;
}

.page-template-events .event_banner h1 {
    font-family: "Lexend";
    font-size: 40px;
    margin: 0;
    font-weight: bold;
}

.page-template-events .author {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    position: relative;
}

.page-template-events .avatar {
    background-color: #800000;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
}

.page-template-events .meta {
    color: gray;
    font-size: 14px;
    font-family: "Nunito Sans", sans-serif;
}

.page-template-events .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.page-template-events .modal-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    width: 250px;
}

.page-template-events .modal-content h3 {
    margin-bottom: 15px;
}

.card_social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card_social-icons a {
    display: inline-block;
    background-color: #800000;
    color: white;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-right: 6px;
    font-size: 18px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.card_social-icons a:hover {
    color: #800000;
    background-color: white;
}

.page-template-events .close-btn {
    position: absolute;
    top: 0px;
    right: 9px;
    font-size: 25px;
    cursor: pointer;
    color: black;
}

@media (max-width: 768px) {
    .page-template-events .line_quote {
        border: 2px solid #800000;
        width: 17%;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .page-template-events .line_quote {
        border: 2px solid #800000;
        width: 25%;
        margin-bottom: 25px;
    }

    .page-template-events .container1 {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 50px;
        padding: 20px;
    }

    .page-template-events .tag {
        display: inline-block;
        background-color: #800000;
        color: white;
        font-size: 0.8rem;
        padding: 4px 10px;
        border-radius: 5px;
        margin-bottom: 0.5rem;
        cursor: pointer;
        border: 1px solid #800000;
        position: relative;
        left: 70px;
    }
}

.page-template-media-gallery .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns per row */
    gap: 25px;
    padding: 15px;
    max-width: 1200px;
    margin: 2rem auto;
    margin-bottom: 40px;
}

.page-template-media-gallery .media_container {
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
}

.page-template-media-gallery .media_h1 {
    color: black;
    font-family: "Lexend";
    font-size: 42px;
    padding-bottom: 10px;
    padding-top: 20px;
    font-weight: 600;
}

.page-template-media-gallery .line_quote {
    border: 2px solid #800000;
    width: 8%;
}

.page-template-media-gallery .gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.page-template-media-gallery .gallery-item img {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    object-fit: cover;
    display: block;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.page-template-media-gallery .gallery-item:hover img {
    transform: scale(1.03);
}

.page-template-media-gallery .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    display: flex;
    justify-content: end;
    align-items: end;
    transition: opacity 0.3s ease;
    border-radius: 5px;
    padding: 20px;
}

.page-template-media-gallery .gallery-item:hover .overlay {
    opacity: 1;
}

.page-template-media-gallery .heart {
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    color: white;
    fill: currentColor;
}

.page-template-media-gallery .heart:hover {
    transform: scale(1.2);
}

.page-template-media-gallery .heart.liked {
    color: red;
}

.page-template-media-gallery .gallery-item:hover .heart {
    transform: scale(1.2);
}

.page-template-media-gallery .modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 64px;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.page-template-media-gallery .modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    border-radius: 8px;
}

.page-template-media-gallery .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
}

.page-template-media-gallery .close:hover {
    color: #bbb;
}

.page-template-media-gallery .prev {
    position: absolute;
    top: 50%;
    left: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.page-template-media-gallery .next {
    position: absolute;
    top: 50%;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

/* Responsive breakpoints */
@media (max-width: 768px) {
    .page-template-media-gallery .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-template-media-gallery .modal-content {
        margin: auto;
        display: block;
        max-width: 80%;
        max-height: 26%;
        border-radius: 8px;
        position: relative;
        top: 132px;
    }

    .page-template-media-gallery .prev {
        position: absolute;
        top: 32%;
        left: 20px;
        font-size: 40px;
        color: white;
        cursor: pointer;
    }

    .page-template-media-gallery .next {
        position: absolute;
        top: 32%;
        right: 20px;
        font-size: 40px;
        color: white;
        cursor: pointer;
    }

    .page-template-media-gallery .line_quote {
        border: 2px solid #800000;
        width: 25%;
    }
}

@media (max-width: 480px) {
    .page-template-media-gallery .gallery {
        grid-template-columns: 1fr;
    }
}

.page-template-contact .contact_container {
    display: flex;
    max-width: 1200px;
    margin: 60px auto;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-template-contact .contact_titl {
    font-family: "Lexend";
    font-size: 16px;
}

.page-template-contact .contact_section,
.page-template-contact .contact_info {
    padding: 40px;
    flex: 1;
}

.page-template-contact .contact_section {
    background: #fff;
}

.page-template-contact .contact_section h4 {
    color: #800000;
    margin: 0;
    font-size: 16px;
    font-family: "Nunito Sans", sans-serif;
}

.page-template-contact .contact_section h1 {
    color: #800000;
    margin: 10px 0 0px;
    font-family: "Lexend";
    font-size: 42px;
}

.page-template-contact .contact_input {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.page-template-contact .contact_group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.page-template-contact .contact_group label {
    margin-bottom: 5px;
    font-size: 16px;
    color: #333;
    font-family: "Nunito Sans", sans-serif;
}

.page-template-contact .contact_group input,
.page-template-contact .contact_group select,
.page-template-contact .contact_group textarea {
    padding: 10px;
    border: 1px solid #800000;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
}

.page-template-contact .contact_group.full-width {
    margin-bottom: 20px;
}

.page-template-contact .contact_group.full-width textarea {
    height: 100px;
    resize: vertical;
}

.page-template-contact .line_quote1 {
    border: 2px solid #800000;
    width: 10%;
    margin-bottom: 25px;
}

.page-template-contact .contact_button {
    width: 100%;
    padding: 15px;
    background-color: #800000;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid #800000;
    font-family: "Lexend";
}

.page-template-contact .contact_button:hover {
    width: 100%;
    padding: 15px;
    background-color: white;
    border: none;
    color: #800000;
    font-weight: bold;
    border: 1px solid #800000;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    font-family: "Lexend";
}

.page-template-contact .contact_info {
    background-size: cover;
    color: black;
    width: 100%;
    max-width: 420px;
}

.page-template-contact .contact_info h1 {
    color: #800000;
    margin-bottom: 10px;
    font-family: "Lexend";
    font-size: 30px;
}

.page-template-contact .contact_info p {
    margin-bottom: 30px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
}

.page-template-contact .conatct_info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
    border-bottom: 1px solid darkgrey;
    padding-bottom: 15px;
    font-family: "Nunito Sans", sans-serif;
}

.page-template-contact .conatct_info-item i {
    font-size: 20px;
    margin-top: 5px;
    color: #800000;
}

.page-template-contact .share-container {
    display: flex;
    align-items: center;
}

.page-template-contact .card_social-icons a {
    display: inline-block;
    background-color: #800000;
    color: white;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-right: 6px;
    font-size: 18px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.page-template-contact .card_social-icons a:hover {
    color: #800000;
    background-color: white;
}

.page-template-contact .contact_social-icons i:hover {
    font-size: 20px;
    border: 2px solid #095d40;
    border-radius: 50%;
    padding: 10px;
    color: #f7cb2d;
    background-color: #095d40;
    cursor: pointer;
    transition: 0.3s;
}

.page-template-contact .map-section {
    display: flex;
    justify-content: center;
    background: white;
    margin-top: 30px;
}

.page-template-contact .map-section iframe {
    width: 100%;
    height: 500px;
    border: none;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.page-template-contact .contact_banner {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.page-template-contact .contact_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-template-contact .banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 1;
    text-align: center;
}

.page-template-contact .banner-text h1 {
    font-size: 3rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .page-template-contact .contact_container {
        display: flex;
        max-width: 1200px;
        flex-direction: column;
        margin: 20px auto;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .page-template-contact .contact_input {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }

    .page-template-contact .line_quote1 {
        border: 2px solid #800000;
        width: 17%;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .page-template-contact .line_quote1 {
        border: 2px solid #800000;
        width: 25%;
        margin-bottom: 25px;
    }
}

.single-post .news_post {
    color: gray;
    font-size: 16px;
    font-family: "Nunito Sans", sans-serif;
    padding-top: 20px;
    padding-left: 120px;
    font-weight: 100;
}

.single-post .card_whole_container {
    padding: 106px 8px;
    padding-bottom: 25px;
    margin: auto;
    width: 100%;
    max-width: 1200px;
}

.single-post .card_author {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    padding-top: 15px;
}

.single-post .eye_button {
    color: #800000;
}

.single-post .comment_btn {
    color: #800000;
}

.single-post .avatar {
    background-color: #800000;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
    font-size: 20px;
}

.single-post .meta {
    color: gray;
    font-size: 16px;
    font-family: "Nunito Sans", sans-serif;
}

.single-post .card_image {
    width: 800px;
    height: auto;
    object-fit: cover;
}

.single-post .description {
    color: #444;
    line-height: 1.5;
    padding-top: 30px;
    padding-bottom: 20px;
    font-size: 16px;
    font-family: "Nunito Sans", sans-serif;
}

.single-post .card_footer {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: gray;
    border-top: 1px solid lightgrey;
    padding-top: 7px;
}

.single-post .card_footer span {
    margin-right: 10px;
    font-size: 16px;
    font-family: "Nunito Sans", sans-serif;
}

.single-post .heart {
    cursor: pointer;
    color: #afa8a8;
    /* default color */
    transition: color 0.3s ease;
    position: relative;
    left: 5px;
}

.single-post .heart.liked {
    color: red;
}

.single-post .like-count {
    margin-left: 4px;
    font-weight: normal;
}

.single-post .card_heart {
    cursor: pointer;
    color: #afa8a8;
    /* default color */
    transition: color 0.3s ease;
    position: relative;
    left: 220px;
}

.single-post .card_heart.liked {
    color: red;
}

.single-post .section {
    margin: auto;
}

.single-post .section h2 {
    font-family: "Lexend";
    font-size: 42px;
    padding-bottom: 10px;
}

.single-post .cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 10px auto;
}

.single-post .card {
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    transition: transform 0.2s;
    border: 1px solid lightgrey;
    cursor: pointer;
}

.single-post .card:hover {
    transform: translateY(-4px);
}

.single-post .card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.single-post .card-content {
    padding: 20px;
    font-size: 16px;
    font-family: "Nunito Sans", sans-serif;
    padding-left: 16px;
}

.single-post .card-content p {
    font-size: 16px;
    font-family: "Nunito Sans", sans-serif;
}

.single-post .card-content h3 {
    font-size: 16px;
    font-family: "Lexend";
    margin-bottom: 16px;
    color: #222;
}

.single-post .card-meta {
    display: flex;
    gap: 10px;
    padding: 0 20px 20px;
    font-size: 14px;
    color: #666;
}

.single-post .card-meta div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.single-post .card-meta i {
    color: #999;
}

.single-post .like {
    color: red;
}

.single-post .comment-section {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    background-color: white;
    border: 1px solid #ddd;
    padding: 45px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.single-post .comment-section h3 {
    margin-bottom: 10px;
    font-weight: bold;
    font-family: "Lexend";
    font-size: 24px;
    color: #800000;
    padding-bottom: 10px;
}

.single-post .comment-box {
    width: 100%;
    border: 1px solid #ccc;
    padding: 15px;
    font-size: 16px;
    resize: vertical;
    min-height: 20px;
    outline: none;
    transition: border-color 0.3s;
    font-family: "Nunito Sans", sans-serif;
}

.single-post .form_button {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
}

.single-post .comment_button {
    width: 100%;
    max-width: 140px;
    background-color: #800000;
    color: white;
    padding: 10px;
    border: 1px solid #800000;
    cursor: pointer;
    border-radius: 5px;
    font-family: "Lexend";
}

.single-post .cancel_button {
    width: 100%;
    max-width: 140px;
    background-color: white;
    color: #800000;
    padding: 10px;
    border: 1px solid #800000;
    cursor: pointer;
    border-radius: 5px;
    font-family: "Lexend";
}

.single-post .comment-box:focus {
    border-color: #666;
}

.single-post .recent_post {
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-post .card-link {
    text-decoration: none;
    color: inherit;
}

.single-post .card-options {
    position: absolute;
    top: 0;
    right: 5px;
    /* adjust as needed */
    font-size: 18px;
    color: #2d3250;
    cursor: pointer;
}

.single-post .card_container {
    min-height: 100vh;
    padding-bottom: 0px;
    background-color: #f5f5f5;
}

.single-post .left-section {
    display: flex;
    justify-content: center;
    padding-top: 0px;
}

.single-post .left-section img {
    width: 100%;
    max-width: 1200px;
    height: 100%;
    max-height: 430px;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

.single-post .card_whole_container h1 {
    padding-bottom: 10px;
    font-family: "Lexend";
}

.single-post .right-section {
    flex: 1;
    padding: 40px;
    min-width: 300px;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding-top: 10px;
    background: white;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.single-post .recent_divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
}

.single-post .right-section h1 {
    font-family: "Lexend";
    font-size: 24px;

    padding-bottom: 10px;
}

.single-post .line_quote {
    border: 2px solid #800000;
    width: 50%;
}

.single-post .line_quote1 {
    border: 2px solid #800000;
    width: 10%;
}

.single-post .activity {
    line-height: 1.5;
    padding-top: 20px;
    font-size: 16px;
    font-family: "Nunito Sans", sans-serif;
}

.single-post .quote-box {
    border-left: 4px solid #800000;
    /* Red vertical line */
    padding-left: 10px;
    margin-top: 30px;
    font-style: italic;
    font-size: 18px;
    font-family: "Nunito Sans", sans-serif;
    max-width: 600px;
    line-height: 1.6;
    color: #212121;
    font-family: "Nunito Sans", sans-serif;
    height: 85px;
    padding-top: 12px;
}

.single-post .form_box {
    display: flex;
    gap: 20px;
    padding-top: 25px;
}

.single-post .comment_input,
.single-post textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: white;
    color: gray;
    font-size: 1rem;
    width: 100%;
}

.single-post .share-container {
    display: flex;
    align-items: center;
}

.single-post .share-label {
    font-weight: bold;
    margin-right: 10px;
    color: white;
}

.single-post .share_box {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 20px;
    background-color: white;
    margin-top: 10px;
    padding-left: 0px;
    padding-right: 0px;
}

.single-post .card_social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.single-post .card_social-icons a {
    display: inline-block;
    background-color: #800000;
    color: white;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-right: 6px;
    font-size: 18px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.single-post .card_social-icons a:hover {
    color: #800000;
    background-color: white;
}

.single-post .card-meta_share {
    display: flex;
    gap: 17px;
    padding: 0px;
    font-size: 14px;
    color: #800000;
}

.single-post .card-meta_share div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.single-post .card-meta_share i {
    color: #800000;
}

.single-post .card_button {
    width: 100%;
    max-width: 330px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: white;
    color: white;
    display: flex;
    border: none;
    gap: 13px;
    align-items: baseline;
}

@media (max-width: 768px) {
    .single-post .right-section {
        flex: 1;
        padding: 40px;
        min-width: 300px;
        margin: 0;
        padding-top: 0px;
    }

    .single-post .card_whole_container {
        padding: 100px 20px;
        padding-bottom: 0px;
        margin: 0px;
    }

    .single-post .card-meta_share {
        display: flex;
        gap: 17px;
        padding: 0px;
        font-size: 14px;
        color: #800000;
    }

    .single-post .share_box {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        padding: 20px;
        background-color: white;
        margin-top: 10px;
        flex-direction: column;
        gap: 0px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .single-post .share-container {
        display: block;
    }

    .single-post .left-section {
        display: flex;
        justify-content: center;
        padding: 25px;
    }

    .single-post .quote-box {
        border-left: 4px solid #800000;
        /* Red vertical line */
        padding-left: 10px;
        margin-top: 30px;
        font-style: italic;
        font-size: 18px;
        font-family: "Nunito Sans", sans-serif;
        max-width: 600px;
        line-height: 1.6;
        color: #212121;
        font-family: "Nunito Sans", sans-serif;
        height: auto;
        padding-top: 12px;
    }

    .single-post .line_quote1 {
        border: 2px solid #800000;
        width: 17%;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .single-post .line_quote1 {
        border: 2px solid #800000;
        width: 25%;
        margin-bottom: 25px;
    }
}