* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    /* ================= COLORS ================= */
    --primary-color: #364F75;
    --secondary-color: #FBCC36;
    --success-color: #198754;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #212529;

    /* ================= TYPOGRAPHY ================= */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;

    --font-size-sm: 14px;
    --font-size-md: 16px;
    --font-size-lg: 20px;
    --font-size-xl: 32px;

    /* ================= SPACING ================= */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 16px;
    --space-4: 24px;
    --space-5: 40px;

    /* ================= BORDER & RADIUS ================= */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* ================= SHADOW ================= */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.15);

    /* ================= TRANSITION ================= */
    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s ease;
}


/* *************comman_css*********** */

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.topbar {
    background: #374C47;
    color: var(--light-color);
    font-size: var(--font-size-sm);
}

.topbar a {
    color: var(--light-color);
    text-decoration: none;
}

.topbar .icons i {
    color: var(--secondary-color);
}

.social-icons a {
    font-size: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    width: 25px;
    border-radius: 50px;
    border: 1px solid rgb(110, 110, 110);
}

/* ================= NAVBAR ================= */
.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-color);
}

.navbar-toggler {
    border: 2px solid var(--dark-color);
    background-color: var(--dark-color);
    color: var(--light-color);
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color);
}

/* ================= BUTTON ================= */
.donate-btn {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    font-weight: 600;
    transition: all 0.3s linear;
}

.donate-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transition: all 0.3s linear;
}

/* ================= CAROUSEL ================= */
.carousel-inner .carousel-item img {
    width: 200px;
    height: 500px;
    /* object-fit: cover; */
}

/* ================= FOUR CARDS ================= */
.fourCards .content h1 {
    padding: 30px;
    /* font-size: 50px; */
    font-weight: bold;
}

.fourCards .lines {
    border-right: 1px solid rgb(202, 200, 200);
    height: 100%;
    padding: 0 20px;
}

/* ================= ABOUT ================= */

.about-section {
    background: #f8f5ef;
}

/* Common Image Style */
.about-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 30px;
}

/* Borders */
.img-border-bottom {
    border-bottom: 10px solid #FBE7AB;
}

.img-border-left {
    border-left: 10px solid #A8ABA3;
    border-bottom: 10px solid #A8ABA3;
}

/* Image Positioning */
.about-section .img1 {
    position: relative;
    left: 40px;
}

.about-section .img2 {
    position: relative;
    top: -40px;
}

/* Experience Box */
.exp-box {
    background: var(--secondary-color);
    border-radius: 30px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: var(--primary-color);
}

.exp-box i {
    font-size: 40px;
}

.exp-box h2 {
    font-weight: 700;
    margin: 0;
    font-size: 35px;
}

/* CEO Card */
.ceoCard {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.ceo-img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 50%;
}

/* Heading */
.about-heading {
    font-size: 53px;
}

/* Stats */
.stats-number {
    font-size: 45px;
    color: #364F75;
}

.btnWrapper123 {
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--primary-color);
}

.btnWrapper123:hover {
    background: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
    transform: translateY(-3px);
}

/* ========================= */
/* 📱 Responsive Fixes */
/* ========================= */

@media (max-width: 991px) {

    .about-heading {
        font-size: 38px;
        text-align: center;
    }

    .about-section .img1 {
        left: 0;
    }

    .about-section .img2 {
        top: 0;
    }

    .about-img {
        height: 150px;
    }

    .exp-box {
        height: auto;
        padding: 15px;
        flex-direction: column;
    }

    .stats-number {
        font-size: 30px;
    }

    .carousel-inner .carousel-item img {
        height: 400px;
    }
}

@media (max-width: 576px) {

    .about-heading {
        font-size: 28px;
    }

    .about-img {
        height: 130px;
    }

    .col-6 {
        width: 100%;
    }

    .img2 {
        margin-top: 15px;
    }

    .carousel-inner .carousel-item img {
        height: 300px;
    }
}

@media (max-width: 400px) {
    .carousel-inner .carousel-item img {
        height: 200px;
    }
}

/* ================= CEO CARD ================= */
.ceoCard {
    background: var(--light-color);
    border-radius: 30px;
    padding: 10px;
}

.ceoCard i {
    color: var(--secondary-color);
}

/* ================= DONATION ================= */
.donation-section {
    background: #243b36;
    margin-bottom: 50px;
}

.donation-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 22px;
    padding: 18px;
    height: 100%;
    color: var(--light-color);
}

.donation-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 18px;
}

.progress-box {
    background: var(--light-color);
    border-radius: 30px;
    padding: 14px 18px;
    margin-top: -28px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.progress {
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    background: #2fbf71;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: #333;
    margin-top: 6px;
}

.donation-card .content {
    padding: 22px 10px 10px;
}

.donation-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.donation-card p {
    font-size: var(--font-size-sm);
    opacity: 0.85;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.donation-card a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.donation-card a:hover {
    color: var(--secondary-color);
}

/* ================= TESTIMONIAL ================= */
.testimonial .testWrapper .btn a {
    text-decoration: none;
    background: var(--secondary-color);
    color: #384744;
    padding: 13px 35px;
    border-radius: 50px;
    transition: var(--transition-fast);
    font-weight: 600;
}

.testimonial .testWrapper .btn a:hover {
    background: #B39548;
    color: var(--light-color);
    transform: translateY(-3px);
}

.testimonial .testContent {
    /* position: relative;
    border:1px solid; */
    border-right: 5px solid var(--primary-color);
    border-left: 5px solid var(--primary-color);
    border-radius: 50px;
    /* padding: 15px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); */
}

.testimonial .testContent img {
    position: absolute;
    top: 5px;
    left: 380px;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
}

.testimonial .testContent .imageContent .iconsWrapper i {
    color: #C5CCD7;
    font-size: 50px;
}

@media screen and (max-width: 550px) {
    .testimonial .testContent img {
        position: inherit;
        top: 0;
        left: 0;
    }
}


/* Section Background */
.testimonial234 {
    background: #f9f9f9;
}

/* Button */
.review-btn {
    display: inline-block;
    text-decoration: none;
    background: var(--secondary-color);
    color: #384744;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.review-btn:hover {
    background: #B39548;
    color: #fff;
    transform: translateY(-3px);
}

/* Testimonial Card */
.testContent {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

/* Profile Image */
/* .testContent img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
} */

/* Quote Icon */
/* .quote-icon {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.quote-icon i {
    font-size: 40px;
    color: #e0e0e0;
} */

/* Tablet */
@media (max-width: 991px) {
    .testWrapper {
        text-align: center;
    }

    .review-btn {
        margin: auto;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .testContent {
        padding: 20px;
    }

    .testContent img {
        width: 60px;
        height: 60px;
    }

    .quote-icon i {
        font-size: 30px;
    }
}

/* ================= NEWS ================= */
.newsWrapper {
    background: #FCF6EA;
}

.custom-card {
    border-radius: 20px;
    border: 1px solid #e6e0d4;
    transition: var(--transition-fast);
    height: 100%;
}

.custom-card img {
    border-radius: 16px;
    height: 200px;
    object-fit: cover;
}

.learn-more {
    color: #f4a100;
    font-weight: 600;
    text-decoration: none;
}

.learn-more:hover {
    color: #af8721;
}

/* ================= FOOTER ================= */
.footer {
    background: linear-gradient(180deg, #2f4f4f, #1f3b3b);
    color: var(--light-color);
}

.footer .footericons {
    display: flex;
    justify-content: end;
    gap: 10px;
}

.footer .footericons a i {
    font-size: 13px;
    color: #f4b400;
    border: 1px solid #f4b400;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
}

.footer .footericons a i:hover {
    background: #f4b400;
    color: var(--light-color);
}

.footer a {
    color: var(--light-color);
}

.footer a:hover {
    color: #f4b400;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: var(--font-size-sm);
}

.footer ul li i {
    color: #f4b400;
    margin-right: 8px;
}

.footer ul {
    padding: 0;
}

.footer .footerTop {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer ul li {
    margin-bottom: 10px;
}

.footer-h3 {
    font-weight: 600;
    margin-bottom: 20px;
}

.testimonial-slider-wrapper {
    overflow: hidden;
    position: relative;
}

.testimonial-slider-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding-bottom: 20px;
}

/* optional thoda better look */
.testContent img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}


/* ********** Contact Us ************ */
.container-3a8b7 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.contact-section-c4f2e {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 40px;
}

.header-container-d9e1f {
    text-align: center;
    margin-bottom: 40px;
}

.title-main-7b3a9 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.subtitle-5d8c2 {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.content-wrapper-f6a3d {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

@media (max-width: 992px) {
    .content-wrapper-f6a3d {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.form-container-e8b7c {
    padding-right: 20px;
    background-color: #3a52744f;
    padding: 20px;
    border-right: 5px solid #3A5274;
    border-radius: 20px;
}

@media (max-width: 992px) {
    .form-container-e8b7c {
        padding-right: 0;
    }
}

.form-title-2c9f1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-form-a3d8e {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group-8e4a1 {
    display: flex;
    flex-direction: column;
}

.form-label-b5c7d {
    color: #34495e;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.input-wrapper-3f9a2 {
    position: relative;
}

.textarea-wrapper-7b2d1 {
    position: relative;
}

.icon-user-7d3b2,
.icon-email-2c8d4,
.icon-subject-5e9a1,
.icon-message-4c8a2 {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
}

.icon-message-4c8a2 {
    top: 20px;
    transform: none;
}

.form-input-9d2f4 {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9fbfc;
}

.form-input-9d2f4:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-textarea-2d9f1 {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9fbfc;
    resize: vertical;
    font-family: inherit;
}

.form-textarea-2d9f1:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.submit-btn-8a3d7 {
    background: linear-gradient(to right, #768ba8, var(--primary-color));
    color: white;
    border: none;
    border-radius: 10px;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn-8a3d7:hover {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: translateY(-3px);
    box-shadow: 0 7px 15px var(--primary-color);
}

.submit-btn-8a3d7:active {
    transform: translateY(-1px);
}

.icon-send-6c9b2 {
    font-size: 1.2rem;
}

.info-container-b8e2c {
    background-color: #f7d4616c;
    border-radius: 12px;
    padding: 30px;
    border-left: 5px solid var(--secondary-color);
}

.info-title-7d2a4 {
    color: #b38a04;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-info-3a9d7 {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.info-item-5c8b3 {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon-wrapper-9d2a1 {
    background-color: #f8bf0557;
    width: 55px;
    height: 55px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: #ddaa04;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-content-8e3a2 {
    flex: 1;
}

.info-heading-7d2b4 {
    color: #b39228;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-text-9c3a1 {
    color: #f0b906;
    line-height: 1.5;
}

.social-links-2d8a7 {
    border-top: 1px solid var(--secondary-color);
    padding-top: 30px;
}

.social-title-4b9c1 {
    color: #b38a04;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-icons-7c2d3 {
    display: flex;
    gap: 15px;
}

.social-link-9a2d4 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: white;
    border-radius: 10px;
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link-9a2d4:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 5px 15px var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-section-c4f2e {
        padding: 30px 20px;
    }

    .title-main-7b3a9 {
        font-size: 2rem;
    }

    .info-container-b8e2c {
        padding: 25px 20px;
    }

    .info-icon-wrapper-9d2a1 {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* ****************************************************************************
POST CSS
*************************************************************************** */
#blog-post-wrapper-9d343 {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
}

/* Blog post container */
.blog-post-container-9d343 {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.blog-post-container-9d343:hover {
    transform: translateY(-5px);
}

/* Post header */
.post-header-a7f21 {
    padding: 40px 40px 20px;
    border-bottom: 1px solid #eaeaea;
}

.meta-info-b5e12 {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.post-category-f3c89 {
    background-color: #4a6ee0;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.post-date-e8d76,
.read-time-d4a32 {
    display: flex;
    align-items: center;
}

.post-title-main-c9b14 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #222;
    line-height: 1.2;
}

.author-info-f8e23 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar-c2d87 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
}

.author-name-a3e91 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.author-title-d9f34 {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

/* Featured image */
.featured-image-container-g7h12 {
    position: relative;
    margin: 0;
}

.featured-image-main-h5i23 {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.image-caption-f4g67 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 40px;
    font-size: 0.9rem;
    text-align: center;
}

/* Post content */
.post-content-wrapper-e3j98 {
    padding: 40px;
}

.content-section-intro-j8k76 {
    margin-bottom: 30px;
}

.lead-paragraph-k9l87 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #444;
    line-height: 1.7;
    margin-bottom: 25px;
}

.content-block-primary-m2n34,
.content-block-secondary-n6r78,
.conclusion-section-v8b12 {
    margin-bottom: 40px;
}

.section-heading-l4p56 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    border-left: 4px solid #4a6ee0;
    padding-left: 15px;
}

.content-text-o5q12 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.7;
}

.highlight-term-i8u90 {
    background-color: #e8f0fe;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    color: #1a73e8;
}

.trend-item-p7s89 {
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 2px solid #eaeaea;
}

.trend-title-q3t45 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.trend-description-r4u56 {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

/* Quote section */
.quote-section-s5v67 {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
    position: relative;
    border-left: 4px solid #4a6ee0;
}

.quote-icon-t6w78 {
    font-size: 4rem;
    color: #4a6ee0;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-weight: bold;
    line-height: 1;
}

.blockquote-content-u7x89 {
    font-size: 1.4rem;
    font-style: italic;
    color: #333;
    margin-bottom: 15px;
    padding-left: 30px;
    line-height: 1.6;
}

.quote-author-y9z90 {
    text-align: right;
    font-weight: 600;
    color: #666;
    padding-left: 30px;
}

/* Tags section */
.tags-section-w9c23 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eaeaea;
}

.tag-label-x0d34 {
    font-weight: 600;
    color: #666;
}

.tag-item-y1e45 {
    background-color: #f1f3f4;
    color: #5f6368;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.tag-item-y1e45:hover {
    background-color: #4a6ee0;
    color: white;
    cursor: pointer;
}

/* Post footer */
.post-footer-z2f56 {
    padding: 30px 40px;
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.engagement-stats-a3g67 {
    display: flex;
    gap: 25px;
}

.stat-item-b4h78 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
}

.stat-icon-c5i89 {
    font-size: 1.3rem;
}

.stat-count-d6j90 {
    font-weight: 600;
    color: #444;
}

.action-buttons-e7k12 {
    display: flex;
    gap: 15px;
}

.btn-action-f8l23 {
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .post-header-a7f21,
    .post-content-wrapper-e3j98 {
        padding: 25px;
    }

    .post-title-main-c9b14 {
        font-size: 2rem;
    }

    .featured-image-main-h5i23 {
        height: 250px;
    }

    .post-footer-z2f56 {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .engagement-stats-a3g67 {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    #blog-post-wrapper-9d343 {
        padding: 10px;
    }

    .meta-info-b5e12 {
        flex-wrap: wrap;
        gap: 10px;
    }

    .post-title-main-c9b14 {
        font-size: 1.7rem;
    }

    .featured-image-main-h5i23 {
        height: 200px;
    }

    .section-heading-l4p56 {
        font-size: 1.5rem;
    }

    .lead-paragraph-k9l87 {
        font-size: 1.1rem;
    }
}

/* ***************__page-header__**************** */


.page-header {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 120px;
    color: white;
    /* background: linear-gradient(45deg,rgba(54, 79, 117, 1) 0%, #FBCC36 50%); */
    background: #364F75;
    background: linear-gradient(90deg, rgba(54, 79, 117, 1) 0%, rgba(251, 204, 54, 1) 30%);
    background-size: 300% 300%;
    /* animation: gradientMove 8s ease infinite; */
}

/* Gradient Animation */
/* @keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
} */

/* Heading Style */
.page-header h1 {
    /* font-size: 55px; */
    font-weight: 300;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Glass Breadcrumb */
.breadcrumb-box {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 15px;
}

.breadcrumb-box a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

.breadcrumb-box a:hover {
    color: #ffd700;
}

.breadcrumb-box span {
    opacity: 0.8;
}

/* ****** fixed donation button ******* */
.donation-relative {
    margin:0 5px 0 0;
}

.donationBtnRound {
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--secondary-color);
    font-size:20px;
    transition: all 0.3s linear;
}

.donationBtnRound:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
    transition: all 0.3s linear;
}