/* ============================================
   FONT IMPORTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/* ============================================
   CSS VARIABLES - COLOR PALETTE
   ============================================ */
:root {
    --primary-color: #e30b17;
    --secondary-color: #ffd101;
    --white: #ffffff;
    --black: #000000;
    --text-dark: #2d3748;
    --text-light: #718096;
    --text-gray: #a0aec0;
    --bg-light: #f7fafc;
    --bg-gray: #edf2f7;
    --border-color: #e2e8f0;
    --heading-font: 'Josefin Sans', sans-serif;
    --body-font: 'Nunito', sans-serif;
}

/* ============================================
   COMMON CSS - RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section Spacing */
section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}
.btn-white{
    background-color: var(--white);
}

.btn-primary:hover {
    background: #c00913;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 11, 23, 0.3);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: #e6bc00;
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 209, 1, 0.3);
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border: none;
}

.gradient-bg:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 11, 23, 0.3);
}

.orange-border {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.orange-border:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ============================================
   HEADER SECTION
   ============================================ */

/* Top Header Bar */
.top-header-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 7px 0;
}

.header-bar-email,
.header-bar-text {
    font-family: var(--body-font);
    font-size: 14px;
    color: var(--white);
    display: flex;
    align-items: center;
}

.header-bar-email a,
.header-bar-text span {
    color: var(--white);
    text-decoration: none;
    margin-left: 5px;
}

.header-bar-email a:hover {
    color: var(--secondary-color);
}

.header-bar-text {
    margin-left: 30px;
}

.header-bar-text p {
    margin: 0;
    color: var(--white);
}

/* Donate Button in Top Bar */
.donate-btn a {
    display: inline-block;
    padding: 12px 28px;
    background: var(--secondary-color);
    color: var(--text-dark);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.donate-btn a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 209, 1, 0.3);
}

/* Main Navigation */
.navbar {
    background: var(--white) !important;
    padding:  0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    max-height: 70px;
    width: auto;
}

.navbar-light .navbar-nav .nav-link {
    font-family: var(--heading-font);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 10px 10px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color);
}





/* Dropdown Menu */
.navbar-light .navbar-nav .dropdown-menu {
    background: var(--white);
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin-top: 10px;
}

.navbar-light .navbar-nav .dropdown-item {
    font-family: var(--body-font);
    font-size: 14px;
    color: var(--text-dark);
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.navbar-light .navbar-nav .dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 25px;
}

.navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(227, 11, 23, 0.25);
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        margin-top: 15px;
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-light .navbar-nav .nav-link::after {
        display: none;
    }
    
    .header-bar-text {
        margin-left: 0;
        margin-top: 10px;
    }
}


/* ============================================
   HERO SLIDER SECTION - TWO COLUMN LAYOUT
   ============================================ */
.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.hero-slider .swiper-slide {
    position: relative;
    width: 100%;
    height: 700px;
}

/* Background Image with Overlay */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 11, 23, 0.92) 0%, rgba(255, 209, 1, 0.85) 100%);
    z-index: 1;
}

/* Content Container */
.hero-slider .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

/* Left Column - Content */
.hero-content {
    padding: 40px 0;
    animation: slideInLeft 0.8s ease-out;
}

.hero-content .hero-title {
    font-family: var(--heading-font);
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-content .hero-des{
    font-size: 18px;
    color: var(--white);
    font-weight: 600;
}

.hero-content .entry-footer {
    margin-top: 40px;
}

.hero-content .btn {
    padding: 16px 40px;
    font-size: 18px;
}

.hero-content .btn i {
    margin-left: 10px;
    transition: margin-left 0.3s ease;
}

.hero-content .btn:hover i {
    margin-left: 15px;
}

/* Right Column - Image */
.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInRight 0.8s ease-out;
}

.hero-image img {
    max-width: 100%;
    height: 500px;
   
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease;
}








/* Swiper Pagination */
.hero-slider .pagination-wrap {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 0;
    background: transparent;
}

.hero-slider .swiper-pagination {
    position: relative;
}

.hero-slider .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 6px;
    display: none;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--white);
    width: 40px;
    border-radius: 7px;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Tablet Responsive */
@media (max-width: 991px) {
    .hero-slider,
    .hero-slider .swiper-slide {
        height: 600px;
    }
    
    .hero-content .hero-title {
        font-size: 3rem;
    }
    
    .hero-image img {
        max-height: 450px;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .hero-slider,
    .hero-slider .swiper-slide {
        height: auto;
        min-height: 650px;
    }
    
    .hero-content {
        text-align: center;
        padding: 50px 0 30px;
    }
    
    .hero-content .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .hero-content .entry-footer {
        margin-top: 25px;
    }
    
    .hero-image {
        margin-top: 30px;
        padding-bottom: 50px;
    }
    
    .hero-image img {
        max-height: 300px;
    }
    
  
   
}

/* ============================================
   SECTION HEADING
   ============================================ */
.section-heading {
    margin-bottom: 40px;
}

.section-heading h1,
.section-heading h2 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 15px;
}

.section-heading h1::after,
.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.section-heading .entry-title {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.section-heading .entry-title i {
    margin-right: 12px;
    font-size: 2rem;
}

/* ============================================
   HOME PAGE SECTIONS
   ============================================ */

/* Welcome Section */
.home-page-icon-boxes {
    padding: 80px 0;
    background: var(--white);
}

.home-page-icon-boxes .entry-content {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.home-page-icon-boxes hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, transparent 100%);
    margin: 20px 0 30px 0;
}

/* Notice Board */
/* .noticeboard {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
} */

.noticeboard .section-heading h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.noticeboard .cause-content-wrap {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.noticeboard .entry-header h6 {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.noticeboard .entry-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

/* ============================================
   EVENTS & CAUSES SECTION
   ============================================ */
.our-causes {
    padding: 80px 0;
    background: var(--bg-light);
}

.cause-wrap {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.cause-wrap:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cause-wrap figure {
    margin: 0;
    overflow: hidden;
}

.cause-wrap figure img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.cause-wrap:hover figure img {
    transform: scale(1.1);
}

.cause-content-wrap {
    padding: 30px;
}

.cause-content-wrap .entry-title {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cause-content-wrap .entry-title a {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.cause-content-wrap .entry-title a:hover {
    color: var(--primary-color);
}

.cause-content-wrap .entry-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

.cause-content-wrap .entry-footer a {
    color: var(--primary-color);
    font-family: var(--heading-font);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.cause-content-wrap .entry-footer a:hover {
    color: var(--secondary-color);
}

/* Countdown Box */
.countdown-box {
    text-align: center;
    margin-top: 20px;
}

.countdown-box span {
    display: inline-block;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 15px;
    margin: 0 5px;
    min-width: 80px;
}

.countdown-box span span {
    display: block;
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    border: none;
}

.countdown-box span small {
    display: block;
    background: var(--primary-color);
    color: var(--white);
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px;
    margin-top: 8px;
    border-radius: 4px;
}

/* Sidebar Ads */
.sidebarads {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sidebarads img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.sidebarads:hover img {
    transform: scale(1.05);
}

/* ============================================
   NEWS & EVENTS SECTION
   ============================================ */
.home-page-events {
    padding: 80px 0;
    background: var(--white);
}

.upcoming-events {
    margin-bottom: 30px;
}

.event-wrap {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.event-wrap:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.event-wrap figure {
    width: 150px;
    height: 120px;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
}

.event-wrap figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-wrap:hover figure img {
    transform: scale(1.1);
}

.event-content-wrap {
    flex: 1;
    padding-left: 20px;
}

.event-content-wrap .entry-title {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.event-content-wrap .entry-title a {
    color: var(--text-dark);
}

.event-content-wrap .entry-title a:hover {
    color: var(--primary-color);
}

.event-content-wrap .posted-date {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.event-content-wrap .posted-date i {
    color: var(--primary-color);
}

.event-content-wrap .entry-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.event-content-wrap .entry-footer a {
    display: inline-block;
    color: var(--primary-color);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.event-content-wrap .entry-footer a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* Gray Background Section */
.gray-bg {
    background: var(--bg-light);
}

/* Video Section */
.home-page-events iframe {
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.home-page-events iframe:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 576px) {
    .event-wrap {
        flex-direction: column;
    }
    
    .event-wrap figure {
        width: 100%;
        height: 200px;
        margin-bottom: 15px;
    }
    
    .event-content-wrap {
        padding-left: 0;
        width: 100%;
    }
}



/* ============================================
   UPCOMING EVENT SECTION - FULL WIDTH
   ============================================ */

.upcoming-event-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    position: relative;
    overflow: hidden;
}

.upcoming-event-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(227, 11, 23, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.upcoming-event-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 209, 1, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.upcoming-event-section .container {
    position: relative;
    z-index: 1;
}

.upcoming-event-section .section-heading {
    margin-bottom: 50px;
}

.upcoming-event-section .section-heading h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Event Card Wrapper */
.event-card-wrapper {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out;
}

.event-card-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Event Image Container */
.event-image-container {
    position: relative;
    height: 100%;
    overflow: hidden;
    padding: 30px 0px 30px 30px;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: 20px;
}



/* Event Badge */
.event-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(227, 11, 23, 0.3);
    z-index: 2;
    animation: pulse 2s infinite;
}

.event-badge i {
    font-size: 16px;
}

/* Event Content Container */
.event-content-container {
    padding: 50px 40px;
}

/* Event Header */
.event-header {
    margin-bottom: 25px;
}

.event-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0;
}

.event-title a {
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.event-title a:hover {
    opacity: 0.8;
}

/* Event Description */
.event-description {
    margin-bottom: 35px;
}

.event-description p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 15px;
    border: 2px solid var(--border-color);
}

.countdown-item {
    text-align: center;
    flex: 1;
    max-width: 100px;
}

.countdown-value {
    display: block;
    font-family: var(--heading-font);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-label {
    display: block;
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    flex: 0;
    padding: 0 5px;
}

/* Event Action */
.event-action {
    text-align: center;
}

.event-action .btn {
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(227, 11, 23, 0.3);
}

.event-action .btn i {
    margin-left: 10px;
    transition: margin-left 0.3s ease;
}

.event-action .btn:hover i {
    margin-left: 15px;
}

/* Sidebar Ads Section */
.sidebar-ads-section {
    padding: 40px 0 80px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.ad-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: var(--white);
}

.ad-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.ad-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.ad-card:hover img {
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Tablet Responsive */
@media (max-width: 991px) {
    .event-image-container {
        min-height: 400px;
       padding: 0px;
    }
    
    .event-content-container {
        padding: 40px 30px;
    }
    
    .event-title {
        font-size: 2rem;
    }
    
    .countdown-value {
        font-size: 2.5rem;
    }
    
    .countdown-separator {
        font-size: 2rem;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .upcoming-event-section {
        padding: 60px 0;
    }
    
    .event-image-container {
        min-height: 300px;
        margin-bottom: 0;
    }
    
    .event-content-container {
        padding: 30px 20px;
    }
    
    .event-title {
        font-size: 1.75rem;
    }
    
    .event-description p {
        font-size: 15px;
    }
    
    .countdown-timer {
        padding: 20px 10px;
        gap: 5px;
    }
    
    .countdown-item {
        max-width: 70px;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 11px;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
        padding: 0 2px;
    }
    
    .event-action .btn {
        padding: 15px 35px;
        font-size: 14px;
        width: 100%;
    }
    
    .event-badge {
        padding: 10px 20px;
        font-size: 12px;
        top: 15px;
        left: 15px;
    }
    
    .sidebar-ads-section {
        padding: 30px 0 60px;
    }
}

@media (max-width: 480px) {
    .countdown-timer {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .countdown-item {
        flex: 0 0 calc(50% - 7.5px);
        max-width: none;
    }
    
    .countdown-separator {
        display: none;
    }
    
    .countdown-value {
        font-size: 2.5rem;
    }
}



/* ============================================
   OUR SOCIAL WORKS SECTION CSS - START
   ============================================ */
.our-social-works {
    position: relative;
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
    padding-bottom: 0;
}

.our-social-works::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(227, 11, 23, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.our-social-works::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 209, 1, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.our-social-works .container {
    position: relative;
    z-index: 1;
}

/* Section Heading */
.our-social-works .section-heading {
    margin-bottom: 50px;
}

.our-social-works .section-heading .entry-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.our-social-works .section-description {
    font-family: var(--body-font);
    font-size: 17px;
    color: var(--text-light);
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.7;
}

/* Social Work Card */
.social-work-card {
    position: relative;
    background: var(--white);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    overflow: hidden;
}

.social-work-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.social-work-card:hover::before {
    transform: scaleX(1);
}

.social-work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Social Work Icon */
.social-work-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(227, 11, 23, 0.3);
    transition: all 0.4s ease;
}

.social-work-icon i {
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.4s ease;
}

.social-work-card:hover .social-work-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(227, 11, 23, 0.4);
}

.social-work-card:hover .social-work-icon i {
    transform: rotate(-5deg);
}

/* Social Work Content */
.social-work-content {
    padding-top: 10px;
}

.social-work-title {
    font-family: var(--heading-font);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.social-work-card:hover .social-work-title {
    color: var(--primary-color);
}

.social-work-description {
    font-family: var(--body-font);
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Animation */
.social-work-card {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for cards */
.social-work-card:nth-child(1) {
    animation-delay: 0.1s;
}

.social-work-card:nth-child(2) {
    animation-delay: 0.2s;
}

.social-work-card:nth-child(3) {
    animation-delay: 0.3s;
}

.social-work-card:nth-child(4) {
    animation-delay: 0.4s;
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet Design (991px and below) */
@media (max-width: 991px) {
    .our-social-works {
        padding: 60px 0;
         padding-bottom: 0;
    }

    .our-social-works .section-heading {
        margin-bottom: 40px;
    }

    .social-work-card {
        padding: 30px 20px;
    }

    .social-work-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .social-work-icon i {
        font-size: 2.2rem;
    }

    .social-work-title {
        font-size: 1.15rem;
    }

    .social-work-description {
        font-size: 14px;
    }
}

/* Mobile Design (767px and below) */
@media (max-width: 767px) {
    .our-social-works {
        padding: 50px 0;
         padding-bottom: 0;
    }

    .our-social-works .section-heading {
        margin-bottom: 35px;
    }

    .our-social-works .section-description {
        font-size: 16px;
    }

    .social-work-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .social-work-icon {
        width: 75px;
        height: 75px;
        margin-bottom: 20px;
    }

    .social-work-icon i {
        font-size: 2rem;
    }

    .social-work-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .social-work-description {
        font-size: 14px;
    }
}

/* Small Mobile Design (480px and below) */
@media (max-width: 480px) {
    .our-social-works {
        padding: 40px 0;
    }

    .social-work-card {
        padding: 25px 15px;
    }

    .social-work-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 18px;
    }

    .social-work-icon i {
        font-size: 1.8rem;
    }

    .social-work-title {
        font-size: 1rem;
    }

    .social-work-description {
        font-size: 13px;
    }
}

/* ============================================
   OUR SOCIAL WORKS SECTION CSS - END
   ============================================ */


/* ============================================
   FOOTER SECTION
   ============================================ */

/* Footer Widgets */
.footer-widgets {
    position: relative;
    padding: 80px 0 60px;
    background: var(--text-dark);
    color: var(--text-gray);
}

.footer-widgets::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.footer-widgets h2 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.footer-widgets h2 i {
    margin-right: 10px;
}

.footer-widgets p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
}

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

.footer-widgets ul li a {
    color: var(--text-gray);
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-widgets ul li a:hover {
    color: var(--secondary-color);
    padding-left: 8px;
}

.footer-widgets ul li i.fa-angle-right {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Footer About */
.foot-about p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Footer Contact */
.foot-contact ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

.foot-contact ul li .fa {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 16px;
    margin-right: 15px;
    flex-shrink: 0;
}

.foot-contact ul li span {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

.foot-contact ul li span a {
    color: var(--text-gray);
}

.foot-contact ul li span a:hover {
    color: var(--secondary-color);
}

/* Footer Latest News */
.foot-latest-news {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
}

.foot-latest-news h2 {
    color: var(--white);
}

/* Footer Bar - Copyright */
.footer-bar {
    padding: 25px 0;
    background: #1a202c;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bar p {
    margin: 0;
    font-size: 14px;
    color: var(--text-gray);
    font-family: var(--body-font);
}

.footer-bar a {
    color: var(--secondary-color);
    font-weight: 600;
}

.footer-bar a:hover {
    color: var(--white);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 5px 20px rgba(227, 11, 23, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(227, 11, 23, 0.5);
    color: var(--white);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .footer-widgets {
        padding: 60px 0 40px;
    }
    
    .footer-widgets h2 {
        font-size: 1.2rem;
    }
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 991px) {
    .home-page-icon-boxes,
    .our-causes,
    .home-page-events {
        padding: 60px 0;
        
    }
    .home-page-events{
    padding-top: 0;
}
}


@media (max-width: 767px) {
    .top-header-bar {
        text-align: center;
    }
    
    .header-bar-email,
    .header-bar-text {
        justify-content: center;
        margin: 5px 0;
    }
    
    .header-bar-text {
        margin-left: 0;
    }
}

/* ============================================
   ANIMATION & TRANSITIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white);
}




/* pages desgin start  */

/* ============================================
   BREADCRUMB SECTION CSS
   ============================================ */
.breadcrumb-section {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb-title {
    font-family: var(--heading-font);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 0.8s ease-out;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    margin: 0 auto;
    width: fit-content;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.breadcrumb-item {
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '\f105';
    font-family: 'FontAwesome';
    color: var(--white);
    padding: 0 12px;
    font-size: 14px;
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb-item a:hover {
    color: var(--text-dark);
    transform: translateX(-3px);
}

.breadcrumb-item a i {
    font-size: 16px;
}

.breadcrumb-item.active {
    color: var(--white);
    font-weight: 600;
}

/* Breadcrumb Decorative Shapes */
.breadcrumb-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.breadcrumb-shapes .shape-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.breadcrumb-shapes .shape-2 {
    position: absolute;
    bottom: -80px;
    left: 10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.breadcrumb-shapes .shape-3 {
    position: absolute;
    top: 50%;
    left: -100px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 7s ease-in-out infinite;
}

/* Breadcrumb Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Breadcrumb Responsive Design */
@media (max-width: 991px) {
    .breadcrumb-section {
        padding: 100px 0 60px;
    }

    .breadcrumb-title {
        font-size: 2.5rem;
    }

    .breadcrumb {
        padding: 12px 25px;
    }
}

@media (max-width: 767px) {
    .breadcrumb-section {
        padding: 80px 0 50px;
    }

    .breadcrumb-title {
        font-size: 2rem;
    }

    .breadcrumb {
        padding: 10px 20px;
        font-size: 14px;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 8px;
    }

    .breadcrumb-shapes .shape-1,
    .breadcrumb-shapes .shape-2,
    .breadcrumb-shapes .shape-3 {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-title {
        font-size: 1.75rem;
    }

    .breadcrumb {
        padding: 8px 15px;
        font-size: 13px;
    }
}


/* ============================================
   WELCOME/CONTENT SECTION CSS
   ============================================ */
.welcome-wrap {
    position: relative;
    padding: 80px 0;
    background: var(--white);
}

.welcome-content {
    width: 100%;
}

.welcome-content .entry-content {
    margin-top: 0 !important;
}

.welcome-content .entry-content img.pull-right {
    float: right;
    margin: 0 0 30px 40px;
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.welcome-content .entry-content img.pull-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.welcome-content .entry-content p {
    font-family: var(--body-font);
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: justify;
}

.welcome-content .entry-content h2,
.welcome-content .entry-content h3,
.welcome-content .entry-content h4 {
    font-family: var(--heading-font);
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.welcome-content .entry-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.welcome-content .entry-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.welcome-content .entry-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

.welcome-content .entry-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

.welcome-content .entry-content ul,
.welcome-content .entry-content ol {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.welcome-content .entry-content ul li,
.welcome-content .entry-content ol li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

.welcome-content .entry-content ul li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
}

.welcome-content .entry-content ol {
    counter-reset: custom-counter;
}

.welcome-content .entry-content ol li {
    counter-increment: custom-counter;
}

.welcome-content .entry-content ol li::before {
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}

.welcome-content .entry-content blockquote {
    background: var(--bg-light);
    border-left: 5px solid var(--primary-color);
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 8px;
    font-style: italic;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.welcome-content .entry-content blockquote p {
    margin-bottom: 0;
    font-size: 18px;
    color: var(--text-dark);
}

.welcome-content .entry-content a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.welcome-content .entry-content a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.welcome-content .entry-content strong,
.welcome-content .entry-content b {
    color: var(--text-dark);
    font-weight: 700;
}

.welcome-content .entry-content em,
.welcome-content .entry-content i {
    font-style: italic;
}

/* Welcome Section Responsive Design */
@media (max-width: 991px) {
    .welcome-wrap {
        padding: 60px 0;
    }

    .welcome-content .entry-content img.pull-right {
        max-width: 400px;
        margin: 0 0 25px 30px;
    }

    .welcome-content .entry-content h2 {
        font-size: 2rem;
    }

    .welcome-content .entry-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    .welcome-wrap {
        padding: 50px 0;
    }

    .welcome-content .entry-content img.pull-right {
        float: none;
        max-width: 100%;
        margin: 0 0 25px 0;
    }

    .welcome-content .entry-content p,
    .welcome-content .entry-content ul li,
    .welcome-content .entry-content ol li {
        font-size: 16px;
        text-align: left;
    }

    .welcome-content .entry-content h2 {
        font-size: 1.75rem;
    }

    .welcome-content .entry-content h3 {
        font-size: 1.5rem;
    }

    .welcome-content .entry-content h4 {
        font-size: 1.3rem;
    }
}


/* ============================================
   HELP US / CALL TO ACTION SECTION CSS
   ============================================ */
.help-us {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(227, 11, 23, 0.95) 0%, rgba(255, 209, 1, 0.9) 100%);
    overflow: hidden;
}

.help-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.help-us .container {
    position: relative;
    z-index: 2;
}

.help-us h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.help-us .btn {
    padding: 16px 40px;
    font-size: 16px;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.help-us .btn:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* CTA Decorative Shapes */
.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.cta-shapes .cta-shape-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.cta-shapes .cta-shape-2 {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: pulse 5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Help Us Section Responsive Design */
@media (max-width: 991px) {
    .help-us {
        padding: 50px 0;
    }

    .help-us h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .help-us {
        padding: 40px 0;
    }

    .help-us .row .col-12 {
        text-align: center;
        gap: 20px;
    }

    .help-us h2 {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .help-us .btn {
        padding: 14px 35px;
        font-size: 15px;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .help-us h2 {
        font-size: 1.5rem;
    }

    .help-us .btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}


/* ============================================
   ADDITIONAL UTILITY CLASSES FOR ABOUT PAGE
   ============================================ */

/* Text Alignment Utilities */
.text-justify {
    text-align: justify;
}

/* Image Utilities */
.img-shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

.img-rounded {
    border-radius: 15px;
}

.img-border {
    border: 5px solid var(--bg-light);
    padding: 5px;
}

/* Content Spacing */
.content-spacing {
    margin-bottom: 30px;
}

.content-spacing-lg {
    margin-bottom: 50px;
}

/* Highlight Box */
.highlight-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.highlight-box h3 {
    color: var(--primary-color);
    margin-top: 0;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(227, 11, 23, 0.2);
}

.info-box h3,
.info-box p {
    color: var(--white);
    margin-bottom: 15px;    
}

.info-box p:last-child {
    margin-bottom: 0;
}



/* ============================================
   NEWS PAGE - BREADCRUMB SECTION CSS
   ============================================ */
/* Note: The breadcrumb CSS is same as About page, already included in main CSS */


/* ============================================
   NEWS WRAP SECTION CSS
   ============================================ */
.news-wrap {
    position: relative;
    padding: 80px 0;
    background: var(--bg-light);
}

.news-wrap .container {
    position: relative;
    z-index: 1;
}


/* ============================================
   NEWS CONTENT / MAIN LISTING CSS
   ============================================ */
.news-content {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.news-content:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* News Image */
.news-content .news-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.news-content .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-content:hover .news-image img {
    transform: scale(1.1);
}

.news-content .news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 11, 23, 0.8) 0%, rgba(255, 209, 1, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-content:hover .news-overlay {
    opacity: 1;
}

.news-content .news-overlay i {
    font-size: 3rem;
    color: var(--white);
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.news-content:hover .news-overlay i {
    transform: scale(1);
}

/* News Body */
.news-content .news-body {
    padding: 35px;
}

.news-content .entry-title {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-content .entry-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-content .entry-title a:hover {
    color: var(--primary-color);
}

/* Entry Header */
.news-content .entry-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.news-content .header-elements {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.news-content .posted-date,
.news-content .post-author {
    font-family: var(--body-font);
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-content .posted-date i,
.news-content .post-author i {
    color: var(--primary-color);
    font-size: 15px;
}

/* Entry Content */
.news-content .entry-content {
    margin-bottom: 25px;
}

.news-content .entry-content p {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Entry Footer */
.news-content .entry-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.news-content .entry-footer .btn {
    padding: 12px 30px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-content .entry-footer .btn i {
    transition: transform 0.3s ease;
}

.news-content .entry-footer .btn:hover i {
    transform: translateX(5px);
}

/* No Posts Found */
.no-posts-found {
    background: var(--white);
    border-radius: 15px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.no-posts-found i {
    font-size: 5rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.no-posts-found h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.no-posts-found p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 0;
}

/* News Content Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================
   PAGINATION CSS
   ============================================ */
.pagination-wrapper {
    margin-top: 40px;
}

.pagination-wrapper .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.pagination-wrapper .page-item {
    margin: 0;
}

.pagination-wrapper .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pagination-wrapper .page-link:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 11, 23, 0.3);
}

.pagination-wrapper .page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(227, 11, 23, 0.3);
}

.pagination-wrapper .page-item.disabled .page-link {
    background: var(--bg-gray);
    color: var(--text-gray);
    border-color: var(--border-color);
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination-wrapper .page-item.disabled .page-link:hover {
    transform: none;
    box-shadow: none;
}


/* ============================================
   SIDEBAR CSS
   ============================================ */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.sidebar-widget .widget-title {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.sidebar-widget .widget-title i {
    color: var(--primary-color);
    font-size: 1.3rem;
}


/* ============================================
   POPULAR POSTS WIDGET CSS
   ============================================ */
.popular-posts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-post-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.popular-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-post-item:first-child {
    padding-top: 0;
}

.popular-post-item:hover {
    padding-left: 5px;
}

.popular-post-item .post-thumb {
    flex-shrink: 0;
    margin: 0;
}

.popular-post-item .post-thumb a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.popular-post-item .post-thumb img {
    width: 90px;
    height: 75px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.popular-post-item:hover .post-thumb img {
    transform: scale(1.1);
}

.popular-post-item .entry-content {
    flex: 1;
}

.popular-post-item .entry-title {
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.popular-post-item .entry-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-post-item .entry-title a:hover {
    color: var(--primary-color);
}

.popular-post-item .posted-date {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.popular-post-item .posted-date i {
    color: var(--primary-color);
    font-size: 12px;
}

.popular-posts .no-posts {
    text-align: center;
    padding: 20px 0;
}

.popular-posts .no-posts p {
    color: var(--text-light);
    margin: 0;
}





/* ============================================
   NEWS PAGE RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
    .news-wrap {
        padding: 60px 0;
    }

    .news-content {
        margin-bottom: 35px;
    }

    .news-content .news-image {
        height: 300px;
    }

    .news-content .news-body {
        padding: 30px;
    }

    .news-content .entry-title {
        font-size: 1.6rem;
    }

    .sidebar {
        position: relative;
        top: 0;
        margin-top: 40px;
    }

    .sidebar-widget {
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .news-wrap {
        padding: 50px 0;
    }

    .news-content {
        margin-bottom: 30px;
    }

    .news-content .news-image {
        height: 250px;
    }

    .news-content .news-body {
        padding: 25px;
    }

    .news-content .entry-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .news-content .entry-header {
        margin-bottom: 15px;
        padding-bottom: 12px;
    }

    .news-content .header-elements {
        gap: 15px;
    }

    .news-content .posted-date,
    .news-content .post-author {
        font-size: 13px;
    }

    .news-content .entry-content p {
        font-size: 15px;
    }

    .news-content .entry-footer .btn {
        padding: 10px 25px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .pagination-wrapper .page-link {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .sidebar-widget {
        padding: 25px;
        margin-bottom: 20px;
    }

    .sidebar-widget .widget-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .popular-post-item .post-thumb img {
        width: 80px;
        height: 65px;
    }

    .popular-post-item .entry-title {
        font-size: 14px;
    }

    .categories-widget .categories-list li a {
        font-size: 14px;
        padding: 10px 12px;
    }

    .newsletter-form input[type="email"],
    .newsletter-form .btn {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .news-content .news-image {
        height: 220px;
    }

    .news-content .news-body {
        padding: 20px;
    }

    .news-content .entry-title {
        font-size: 1.25rem;
    }

    .news-content .entry-content p {
        font-size: 14px;
    }

    .no-posts-found {
        padding: 60px 30px;
    }

    .no-posts-found i {
        font-size: 4rem;
    }

    .no-posts-found h3 {
        font-size: 1.5rem;
    }

    .pagination-wrapper .page-link {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }

    .sidebar-widget {
        padding: 20px;
    }

    .popular-post-item {
        gap: 12px;
    }

    .popular-post-item .post-thumb img {
        width: 70px;
        height: 60px;
    }
}


/* ============================================
   NEWS PAGE UTILITY CLASSES
   ============================================ */

/* Featured Badge for News */
.news-content.featured {
    border: 2px solid var(--primary-color);
}

.news-content.featured::before {
    content: 'Featured';
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-family: var(--heading-font);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

/* Sticky Sidebar */
@media (min-width: 992px) {
    .sidebar.sticky {
        position: sticky;
        top: 100px;
    }
}



/* ============================================
   POST DETAIL PAGE - BREADCRUMB SECTION CSS
   ============================================ */
/* Note: The breadcrumb CSS is same as About page, already included in main CSS */


/* ============================================
   POST DETAIL - NEWS WRAP SECTION CSS
   ============================================ */
.news-wrap {
    position: relative;
    padding: 80px 0;
    background: var(--bg-light);
}

.news-wrap .container {
    position: relative;
    z-index: 1;
}


/* ============================================
   POST DETAIL - MAIN CONTENT CSS
   ============================================ */
.news-content {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

/* Post Title */
.news-content .entry-title {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 0;
}

.news-content br {
    display: block;
    content: "";
    margin-top: 20px;
}

/* Post Featured Image */
.news-content > img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 25px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Entry Header */
.news-content .entry-header {
    margin-top: 25px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.news-content .entry-header .header-elements {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.news-content .entry-header .posted-date {
    font-family: var(--body-font);
    font-size: 15px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-content .entry-header .posted-date i {
    color: var(--primary-color);
    font-size: 16px;
}

/* Entry Content */
.news-content .entry-content {
    margin-top: 30px;
}

.news-content .entry-content p {
    font-family: var(--body-font);
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: justify;
}

.news-content .entry-content p:last-child {
    margin-bottom: 0;
}

/* Content Typography */
.news-content .entry-content h2,
.news-content .entry-content h3,
.news-content .entry-content h4,
.news-content .entry-content h5,
.news-content .entry-content h6 {
    font-family: var(--heading-font);
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.news-content .entry-content h2 {
    font-size: 2rem;
}

.news-content .entry-content h3 {
    font-size: 1.7rem;
    color: var(--primary-color);
}

.news-content .entry-content h4 {
    font-size: 1.5rem;
}

.news-content .entry-content h5 {
    font-size: 1.3rem;
}

.news-content .entry-content h6 {
    font-size: 1.1rem;
}

/* Content Images */
.news-content .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Content Lists */
.news-content .entry-content ul,
.news-content .entry-content ol {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.news-content .entry-content ul li,
.news-content .entry-content ol li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

.news-content .entry-content ul li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
}

.news-content .entry-content ol {
    counter-reset: custom-counter;
}

.news-content .entry-content ol li {
    counter-increment: custom-counter;
}

.news-content .entry-content ol li::before {
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}

/* Content Blockquotes */
.news-content .entry-content blockquote {
    background: var(--bg-light);
    border-left: 5px solid var(--primary-color);
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 8px;
    font-style: italic;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.news-content .entry-content blockquote p {
    margin-bottom: 0;
    font-size: 18px;
    color: var(--text-dark);
}

/* Content Links */
.news-content .entry-content a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.news-content .entry-content a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Content Text Formatting */
.news-content .entry-content strong,
.news-content .entry-content b {
    color: var(--text-dark);
    font-weight: 700;
}

.news-content .entry-content em,
.news-content .entry-content i {
    font-style: italic;
}

/* Content Tables */
.news-content .entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.news-content .entry-content table th,
.news-content .entry-content table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.news-content .entry-content table th {
    background: var(--bg-light);
    color: var(--text-dark);
    font-weight: 600;
}

.news-content .entry-content table tr:last-child td {
    border-bottom: none;
}

.news-content .entry-content table tr:hover {
    background: var(--bg-light);
}

/* Share Buttons Section */
.sharethis-inline-share-buttons {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}


/* ============================================
   POST DETAIL - SIDEBAR CSS
   ============================================ */
.sidebar {
    position: sticky;
    top: 100px;
}

/* Popular Posts Widget */
.popular-posts {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.popular-posts h2 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
}

.popular-posts h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.popular-posts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-posts ul li {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.popular-posts ul li:first-child {
    padding-top: 0;
}

.popular-posts ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-posts ul li:hover {
    padding-left: 5px;
}

.popular-posts ul li figure {
    margin: 0;
    flex-shrink: 0;
}

.popular-posts ul li figure a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.popular-posts ul li figure img {
    width: 90px;
    height: 75px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.popular-posts ul li:hover figure img {
    transform: scale(1.1);
}

.popular-posts ul li .entry-content {
    flex: 1;
}

.popular-posts ul li .entry-title {
    margin: 0;
    margin-bottom: 8px;
}

.popular-posts ul li .entry-title a {
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: block;
}

.popular-posts ul li .entry-title a:hover {
    color: var(--primary-color);
}

.popular-posts ul li .posted-date {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.popular-posts ul li .posted-date i {
    color: var(--primary-color);
    font-size: 12px;
}


/* ============================================
   POST DETAIL PAGE RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
    .news-wrap {
        padding: 60px 0;
    }

    .news-content {
        padding: 35px;
        margin-bottom: 35px;
    }

    .news-content .entry-title {
        font-size: 2rem;
    }

    .news-content > img {
        max-height: 400px;
    }

    .news-content .entry-content p {
        font-size: 16px;
    }

    .news-content .entry-content h2 {
        font-size: 1.8rem;
    }

    .news-content .entry-content h3 {
        font-size: 1.6rem;
    }

    .sidebar {
        position: relative;
        top: 0;
        margin-top: 40px;
    }

    .popular-posts {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .news-wrap {
        padding: 50px 0;
    }

    .news-content {
        padding: 30px 25px;
        margin-bottom: 30px;
    }

    .news-content .entry-title {
        font-size: 1.75rem;
    }

    .news-content > img {
        max-height: 350px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .news-content .entry-header {
        margin-top: 20px;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .news-content .entry-content {
        margin-top: 25px;
    }

    .news-content .entry-content p {
        font-size: 15px;
        line-height: 1.8;
        text-align: left;
    }

    .news-content .entry-content h2 {
        font-size: 1.6rem;
        margin-top: 25px;
    }

    .news-content .entry-content h3 {
        font-size: 1.4rem;
    }

    .news-content .entry-content h4 {
        font-size: 1.3rem;
    }

    .news-content .entry-content ul li,
    .news-content .entry-content ol li {
        font-size: 15px;
        padding-left: 30px;
    }

    .news-content .entry-content blockquote {
        padding: 20px 25px;
        margin: 25px 0;
    }

    .news-content .entry-content blockquote p {
        font-size: 16px;
    }

    .sharethis-inline-share-buttons {
        margin-top: 25px;
        padding-top: 25px;
    }

    .sidebar {
        margin-top: 30px;
    }

    .popular-posts {
        padding: 25px;
    }

    .popular-posts h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .popular-posts ul li {
        gap: 12px;
    }

    .popular-posts ul li figure img {
        width: 80px;
        height: 65px;
    }

    .popular-posts ul li .entry-title a {
        font-size: 14px;
    }

    .popular-posts ul li .posted-date {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .news-wrap {
        padding: 40px 0;
    }

    .news-content {
        padding: 25px 20px;
    }

    .news-content .entry-title {
        font-size: 1.5rem;
    }

    .news-content > img {
        max-height: 300px;
    }

    .news-content .entry-content p {
        font-size: 14px;
    }

    .news-content .entry-content h2 {
        font-size: 1.4rem;
    }

    .news-content .entry-content h3 {
        font-size: 1.3rem;
    }

    .news-content .entry-content h4 {
        font-size: 1.2rem;
    }

    .news-content .entry-content ul li,
    .news-content .entry-content ol li {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .news-content .entry-content blockquote {
        padding: 18px 20px;
    }

    .news-content .entry-content blockquote p {
        font-size: 15px;
    }

    .news-content .entry-content table th,
    .news-content .entry-content table td {
        padding: 10px;
        font-size: 14px;
    }

    .popular-posts {
        padding: 20px;
    }

    .popular-posts h2 {
        font-size: 1.2rem;
    }

    .popular-posts ul li figure img {
        width: 70px;
        height: 60px;
    }

    .popular-posts ul li .entry-title a {
        font-size: 13px;
    }
}


/* ============================================
   POST DETAIL PAGE UTILITY CLASSES
   ============================================ */

/* Back to News Link */
.back-to-news {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.back-to-news:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(-5px);
}

.back-to-news i {
    font-size: 16px;
}

/* Post Meta Information */
.post-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
    padding: 15px 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.post-meta-item i {
    color: var(--primary-color);
    font-size: 15px;
}

/* Featured Image Caption */
.featured-image-caption {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: -15px;
    margin-bottom: 25px;
}

/* Related Posts Section */
.related-posts-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.related-posts-section h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

/* Print Styles */
@media print {
    .breadcrumb-section,
    .sidebar,
    .sharethis-inline-share-buttons,
    .back-to-news {
        display: none;
    }

    .news-content {
        box-shadow: none;
        padding: 0;
    }

    .news-content .entry-content p {
        text-align: left;
    }
}



/* ============================================
   TEAM PAGE - BREADCRUMB SECTION CSS
   ============================================ */
/* Note: The breadcrumb CSS is same as About page, already included in main CSS */


/* ============================================
   TEAM WRAP SECTION CSS
   ============================================ */
.team-wrap {
    position: relative;
    padding: 80px 0;
    background: var(--bg-light);
}

.team-wrap .container {
    position: relative;
    z-index: 1;
}


/* ============================================
   TEAM DESCRIPTION CSS
   ============================================ */
.team-description {
    background: var(--white);
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.team-description p {
    font-family: var(--body-font);
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
    text-align: justify;
}

.team-description p:last-child {
    margin-bottom: 0;
}

.team-description h2,
.team-description h3,
.team-description h4 {
    font-family: var(--heading-font);
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 700;
}

.team-description h2 {
    font-size: 2rem;
}

.team-description h3 {
    font-size: 1.7rem;
    color: var(--primary-color);
}

.team-description h4 {
    font-size: 1.5rem;
}

.team-description ul,
.team-description ol {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.team-description ul li,
.team-description ol li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

.team-description ul li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-size: 16px;
}


/* ============================================
   TEAM GRID / MEMBER CARDS CSS
   ============================================ */
.team-grid {
    margin-bottom: 40px;
}

.team-member-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.team-member-card:hover::before {
    transform: scaleX(1);
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Member Image */
.member-image {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 5px solid var(--bg-light);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.team-member-card:hover .member-image img {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(227, 11, 23, 0.2);
}

/* Member Info */
.member-info {
    padding-top: 15px;
    border-top: 2px solid var(--border-color);
}

.member-name {
    font-family: var(--heading-font);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.team-member-card:hover .member-name {
    color: var(--primary-color);
}

.member-position {
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 0;
}


/* ============================================
   TEAM TABLE SECTION CSS
   ============================================ */
.team-table-section {
    background: var(--white);
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.team-table-section .section-title {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
}

.team-table-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

/* Team Table */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.team-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.team-table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.team-table thead tr th {
    padding: 18px 20px;
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.team-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.team-table tbody tr:last-child {
    border-bottom: none;
}

.team-table tbody tr:hover {
    background: var(--bg-light);
    transform: scale(1.01);
}

.team-table tbody tr th,
.team-table tbody tr td {
    padding: 16px 20px;
    font-family: var(--body-font);
    font-size: 15px;
    color: var(--text-dark);
    border: none;
}

.team-table tbody tr th {
    font-weight: 700;
    color: var(--primary-color);
    width: 80px;
}

.team-table tbody tr td {
    color: var(--text-light);
}

.team-table tbody tr td:first-of-type {
    font-weight: 600;
    color: var(--text-dark);
}


/* ============================================
   TEAM SIDEBAR CSS
   ============================================ */
.team-sidebar {
    position: sticky;
    top: 100px;
}

.team-sidebar .sidebar-widget {
    background: var(--white);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-sidebar .sidebar-widget:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.team-sidebar .sidebar-widget img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.team-sidebar .sidebar-widget:hover img {
    transform: scale(1.05);
}

.team-sidebar .sidebarads {
    display: block;
}

.team-sidebar .sidebarads a {
    display: block;
    text-decoration: none;
}


/* ============================================
   TEAM PAGE RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
    .team-wrap {
        padding: 60px 0;
    }

    .team-description {
        padding: 30px;
        margin-bottom: 35px;
    }

    .team-description p {
        font-size: 16px;
    }

    .team-grid {
        margin-bottom: 35px;
    }

    .team-member-card {
        padding: 25px 20px;
    }

    .member-image {
        width: 160px;
        height: 160px;
        margin-bottom: 20px;
    }

    .member-name {
        font-size: 1.15rem;
    }

    .member-position {
        font-size: 14px;
    }

    .team-table-section {
        padding: 30px;
        margin-bottom: 25px;
    }

    .team-table-section .section-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .team-table thead tr th {
        padding: 15px 18px;
        font-size: 15px;
    }

    .team-table tbody tr th,
    .team-table tbody tr td {
        padding: 14px 18px;
        font-size: 14px;
    }

    .team-sidebar {
        position: relative;
        top: 0;
        margin-top: 40px;
    }

    .team-sidebar .sidebar-widget {
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .team-wrap {
        padding: 50px 0;
    }

    .team-description {
        padding: 25px;
        margin-bottom: 30px;
    }

    .team-description p {
        font-size: 15px;
        text-align: left;
    }

    .team-description h2 {
        font-size: 1.75rem;
    }

    .team-description h3 {
        font-size: 1.5rem;
    }

    .team-description h4 {
        font-size: 1.3rem;
    }

    .team-grid {
        margin-bottom: 30px;
    }

    .team-member-card {
        padding: 25px 15px;
        margin-bottom: 25px;
    }

    .member-image {
        width: 150px;
        height: 150px;
        margin-bottom: 18px;
    }

    .member-image img {
        border-width: 4px;
    }

    .member-name {
        font-size: 1.1rem;
    }

    .member-position {
        font-size: 13px;
    }

    .team-table-section {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .team-table-section .section-title {
        font-size: 1.4rem;
        margin-bottom: 18px;
    }

    .team-table thead tr th {
        padding: 12px 15px;
        font-size: 14px;
    }

    .team-table tbody tr th,
    .team-table tbody tr td {
        padding: 12px 15px;
        font-size: 13px;
    }

    .team-sidebar {
        margin-top: 30px;
    }

    .team-sidebar .sidebar-widget {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .team-member-card {
        padding: 20px 15px;
    }

    .member-image {
        width: 140px;
        height: 140px;
    }

    .member-name {
        font-size: 1rem;
    }

    .member-position {
        font-size: 12px;
    }

    .team-table-section {
        padding: 20px 15px;
    }

    .team-table-section .section-title {
        font-size: 1.3rem;
    }

    .team-table thead tr th {
        padding: 10px 12px;
        font-size: 13px;
    }

    .team-table tbody tr th,
    .team-table tbody tr td {
        padding: 10px 12px;
        font-size: 12px;
    }

    .team-table tbody tr th {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .team-wrap {
        padding: 40px 0;
    }

    .team-description {
        padding: 20px;
    }

    .team-member-card {
        padding: 20px 10px;
    }

    .member-image {
        width: 130px;
        height: 130px;
    }

    .team-table-section {
        padding: 18px 12px;
    }

    .team-table thead tr th {
        padding: 10px;
        font-size: 12px;
    }

    .team-table tbody tr th,
    .team-table tbody tr td {
        padding: 10px;
        font-size: 11px;
    }
}


/* ============================================
   TEAM PAGE UTILITY CLASSES
   ============================================ */

/* Empty State */
.no-team-members {
    background: var(--white);
    border-radius: 15px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.no-team-members i {
    font-size: 5rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.no-team-members h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.no-team-members p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Social Links for Team Members */
.member-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.member-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(227, 11, 23, 0.3);
}

/* Featured Member Badge */
.team-member-card.featured {
    border: 2px solid var(--primary-color);
}

.team-member-card.featured::after {
    content: 'Featured';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-family: var(--heading-font);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Team Stats Section */
.team-stats {
    display: flex;
    justify-content: space-around;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    padding: 30px 20px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(227, 11, 23, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-label {
    font-family: var(--body-font);
    font-size: 14px;
    color: var(--white);
    opacity: 0.9;
}

/* Print Styles */
@media print {
    .breadcrumb-section,
    .team-sidebar,
    .member-social {
        display: none;
    }

    .team-member-card {
        box-shadow: none;
        border: 1px solid var(--border-color);
        page-break-inside: avoid;
    }

    .team-table {
        box-shadow: none;
        border: 1px solid var(--border-color);
    }
}




/* ============================================
   VIDEO PAGE CSS
   ============================================ */

/* Video Page Container */
.videos-wrap {
    position: relative;
    padding: 80px 0;
    background: var(--bg-light);
}

.videos-wrap .container {
    position: relative;
    z-index: 1;
}

/* Video Item Card */
.video-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Video Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: var(--text-dark);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Overlay - Shows on Hover */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 11, 23, 0.8) 0%, rgba(255, 209, 1, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-item:hover .video-overlay {
    opacity: 1;
}

.video-overlay i {
    font-size: 3rem;
    color: var(--white);
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.video-item:hover .video-overlay i {
    transform: scale(1);
}

/* Video Info */
.video-info {
    padding: 20px;
    background: var(--white);
}

.video-title {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
}

.video-description {
    font-family: var(--body-font);
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
    margin-bottom: 0;
}

/* No Videos Found */
.no-videos-found {
    background: var(--white);
    border-radius: 15px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.no-videos-found i {
    font-size: 5rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.no-videos-found h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.no-videos-found p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 0;
}


/* ============================================
   ALBUMS PAGE CSS
   ============================================ */

/* Albums Page Container */
.albums-wrap {
    position: relative;
    padding: 80px 0;
    background: var(--bg-light);
}

.albums-wrap .container {
    position: relative;
    z-index: 1;
}

/* Albums using cause-wrap structure */
.albums-wrap .cause-wrap {
    position: relative;
}

.albums-wrap .cause-wrap figure {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.albums-wrap .cause-wrap figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.albums-wrap .cause-wrap .entry-header {
    padding: 20px;
    background: var(--white);
}

.albums-wrap .cause-wrap .entry-title {
    font-size: 1.25rem;
}

.albums-wrap .cause-wrap .entry-title a {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.albums-wrap .cause-wrap:hover .entry-title a {
    color: var(--primary-color);
}

/* Album Card */
.album-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.album-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Album Image Container */
.album-image-container {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: var(--bg-gray);
}

.album-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.album-card:hover .album-image-container img {
    transform: scale(1.15);
}

/* Album Overlay */
.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 11, 23, 0.85) 0%, rgba(255, 209, 1, 0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.album-overlay i {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 15px;
    transform: scale(0.5) rotate(-180deg);
    transition: transform 0.4s ease;
}

.album-card:hover .album-overlay i {
    transform: scale(1) rotate(0deg);
}

.album-overlay .view-album-text {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.album-card:hover .album-overlay .view-album-text {
    opacity: 1;
    transform: translateY(0);
}

/* Album Photo Count Badge */
.photo-count-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 25px;
    font-family: var(--heading-font);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.photo-count-badge i {
    font-size: 14px;
}

/* Album Info */
.album-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.album-title {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.album-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.album-title a:hover {
    color: var(--primary-color);
}

.album-description {
    font-family: var(--body-font);
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

/* Album Footer */
.album-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.album-date {
    font-size: 13px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.album-date i {
    color: var(--primary-color);
    font-size: 14px;
}

.view-album-link {
    color: var(--primary-color);
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.view-album-link:hover {
    color: var(--secondary-color);
    gap: 10px;
}

.view-album-link i {
    font-size: 13px;
}

/* No Albums Found */
.no-albums-found {
    background: var(--white);
    border-radius: 15px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.no-albums-found i {
    font-size: 5rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.no-albums-found h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.no-albums-found p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 0;
}


/* ============================================
   PHOTO ALBUM / GALLERY PAGE CSS
   ============================================ */

/* Photo Gallery Container */
.photo-gallery-wrap {
    position: relative;
    padding: 80px 0;
    background: var(--bg-light);
}

.photo-gallery-wrap .container {
    position: relative;
    z-index: 1;
}

/* Album Header Info */
.album-header-info {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.album-header-info .album-main-title {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.album-header-info .album-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
   
}

.album-header-info .album-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.album-header-info .album-meta-item i {
    color: var(--primary-color);
    font-size: 16px;
}

.album-header-info .album-meta-item strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Back to Albums Link */
.back-to-albums {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--white);
    color: var(--text-dark);
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.back-to-albums:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(227, 11, 23, 0.3);
}

.back-to-albums i {
    font-size: 16px;
}

/* Photo Gallery Grid */
.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* Photo Item */
.photo-item {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.photo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Photo Image Container */
.photo-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-gray);
}

.photo-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-item:hover .photo-image-container img {
    transform: scale(1.15);
}

/* Photo Overlay */
.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 11, 23, 0.9) 0%, rgba(255, 209, 1, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay i {
    font-size: 3rem;
    color: var(--white);
    transform: scale(0.5) rotate(-45deg);
    transition: transform 0.3s ease;
}

.photo-item:hover .photo-overlay i {
    transform: scale(1) rotate(0deg);
}

/* Photo Caption */
.photo-caption {
    padding: 15px;
    background: var(--white);
}

.photo-caption p {
    font-family: var(--body-font);
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* LightGallery Customization */
.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.95);
}

.lg-toolbar {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

.lg-actions .lg-next,
.lg-actions .lg-prev {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
    background: var(--primary-color);
}

/* Masonry Layout Option (Alternative to Grid) */
.photo-gallery-masonry {
    column-count: 3;
    column-gap: 20px;
}

.photo-gallery-masonry .photo-item {
    break-inside: avoid;
    margin-bottom: 20px;
}

.photo-gallery-masonry .photo-image-container {
    height: auto;
}

/* No Photos Found */
.no-photos-found {
    background: var(--white);
    border-radius: 15px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.no-photos-found i {
    font-size: 5rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.no-photos-found h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.no-photos-found p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.no-photos-found .btn {
    margin-top: 10px;
}


/* ============================================
   RESPONSIVE DESIGN FOR MEDIA PAGES
   ============================================ */

/* Tablet Design (991px and below) */
@media (max-width: 991px) {
    .videos-wrap,
    .albums-wrap,
    .photo-gallery-wrap {
        padding: 60px 0;
    }

    .album-card,
    .video-item {
        margin-bottom: 25px;
    }

    .album-image-container {
        height: 240px;
    }

    .photo-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 18px;
    }

    .photo-gallery-masonry {
        column-count: 2;
    }

    .album-header-info .album-main-title {
        font-size: 2rem;
    }
}

/* Mobile Design (767px and below) */
@media (max-width: 767px) {
    .videos-wrap,
    .albums-wrap,
    .photo-gallery-wrap {
        padding: 50px 0;
    }

    .video-item,
    .album-card {
        margin-bottom: 20px;
    }

    .video-info,
    .album-info {
        padding: 20px;
    }

    .album-image-container {
        height: 220px;
    }

    .album-title {
        font-size: 1.2rem;
    }

    .album-description {
        font-size: 14px;
    }

    .photo-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .photo-image-container {
        height: 220px;
    }

    .photo-gallery-masonry {
        column-count: 2;
        column-gap: 15px;
    }

    .album-header-info {
        padding: 25px 20px;
        margin-bottom: 30px;
    }

    .album-header-info .album-main-title {
        font-size: 1.75rem;
    }

    .album-header-info .album-meta {
        gap: 15px;
    }

    .back-to-albums {
        padding: 10px 20px;
        font-size: 13px;
        margin-bottom: 25px;
    }

    .no-videos-found,
    .no-albums-found,
    .no-photos-found {
        padding: 60px 30px;
    }

    .no-videos-found i,
    .no-albums-found i,
    .no-photos-found i {
        font-size: 4rem;
    }

    .no-videos-found h3,
    .no-albums-found h3,
    .no-photos-found h3 {
        font-size: 1.5rem;
    }
}

/* Small Mobile Design (480px and below) */
@media (max-width: 480px) {
    .videos-wrap,
    .albums-wrap,
    .photo-gallery-wrap {
        padding: 40px 0;
    }

    .photo-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .photo-gallery-masonry {
        column-count: 1;
    }

    .photo-image-container {
        height: 200px;
    }

    .album-image-container {
        height: 200px;
    }

    .album-header-info {
        padding: 20px 15px;
    }

    .album-header-info .album-main-title {
        font-size: 1.5rem;
    }

    .album-header-info .album-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .photo-count-badge {
        padding: 6px 12px;
        font-size: 12px;
        top: 10px;
        right: 10px;
    }

    .album-overlay i {
        font-size: 3rem;
        margin-bottom: 10px;
    }

    .album-overlay .view-album-text {
        font-size: 1rem;
    }

    .video-overlay i,
    .photo-overlay i {
        font-size: 2.5rem;
    }
}


/* ============================================
   UTILITY CLASSES FOR MEDIA PAGES
   ============================================ */

/* Loading Spinner */
.media-loading {
    text-align: center;
    padding: 60px 20px;
}

.media-loading i {
    font-size: 3rem;
    color: var(--primary-color);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Filter/Sort Bar */
.media-filter-bar {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
}

.media-filter-bar select {
    padding: 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--body-font);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.media-filter-bar select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.media-filter-bar .search-box {
    flex: 1;
    min-width: 250px;
}

.media-filter-bar .search-box input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--body-font);
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.media-filter-bar .search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* View Toggle Buttons */
.view-toggle {
    display: flex;
    gap: 8px;
    background: var(--bg-light);
    padding: 5px;
    border-radius: 8px;
}

.view-toggle button {
    padding: 8px 15px;
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.view-toggle button.active {
    background: var(--primary-color);
    color: var(--white);
}

.view-toggle button:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Featured Badge for Albums/Videos */
.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-family: var(--heading-font);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(227, 11, 23, 0.3);
}

/* Share Button */
.share-album-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-album-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Download Album Button */
.download-album-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--secondary-color);
    color: var(--text-dark);
    border: none;
    border-radius: 8px;
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-album-btn:hover {
    background: #e6bc00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 209, 1, 0.3);
}

/* Pagination for Media Pages */
.media-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print Styles */
@media print {
    .breadcrumb-section,
    .back-to-albums,
    .media-filter-bar,
    .view-toggle,
    .share-album-btn,
    .download-album-btn,
    .album-overlay,
    .photo-overlay,
    .video-overlay {
        display: none;
    }

    .photo-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}




/* ============================================
   PAGE TEMPLATE - GENERAL PAGES CSS
   ============================================ */

/* Page Content Wrapper */
.page-content-wrap {
    position: relative;
    padding: 80px 0;
    background: var(--bg-light);
}

.page-content-wrap .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   PAGE CONTENT CONTAINER
   ============================================ */
.page-content-container {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   PAGE FEATURED IMAGE
   ============================================ */
.page-featured-image {
    position: relative;
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    background: var(--bg-gray);
}

.page-featured-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.page-content-container:hover .page-featured-image img {
    transform: scale(1.05);
}

/* Featured Image Overlay (Optional) */
.page-featured-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, transparent 100%);
    pointer-events: none;
}

/* ============================================
   PAGE MAIN CONTENT
   ============================================ */
.page-main-content {
    padding: 50px 60px;
}

/* Entry Content Styling */
.page-main-content .entry-content {
    font-family: var(--body-font);
    color: var(--text-light);
}

/* Paragraphs */
.page-main-content .entry-content p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 25px;
    text-align: justify;
}

.page-main-content .entry-content p:last-child {
    margin-bottom: 0;
}

/* First Paragraph - Drop Cap (Optional) */
.page-main-content .entry-content p:first-of-type::first-letter {
    font-family: var(--heading-font);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    float: left;
    margin: 0 15px 0 0;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Headings */
.page-main-content .entry-content h1,
.page-main-content .entry-content h2,
.page-main-content .entry-content h3,
.page-main-content .entry-content h4,
.page-main-content .entry-content h5,
.page-main-content .entry-content h6 {
    font-family: var(--heading-font);
    color: var(--text-dark);
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-main-content .entry-content h1 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.page-main-content .entry-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.page-main-content .entry-content h2 {
    font-size: 2rem;
    color: var(--text-dark);
}

.page-main-content .entry-content h3 {
    font-size: 1.7rem;
    color: var(--primary-color);
}

.page-main-content .entry-content h4 {
    font-size: 1.5rem;
}

.page-main-content .entry-content h5 {
    font-size: 1.3rem;
}

.page-main-content .entry-content h6 {
    font-size: 1.1rem;
}

/* Links */
.page-main-content .entry-content a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.page-main-content .entry-content a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Strong & Bold Text */
.page-main-content .entry-content strong,
.page-main-content .entry-content b {
    color: var(--text-dark);
    font-weight: 700;
}

/* Italic & Emphasis */
.page-main-content .entry-content em,
.page-main-content .entry-content i {
    font-style: italic;
}

/* ============================================
   LISTS - UNORDERED & ORDERED
   ============================================ */

/* Unordered Lists */
.page-main-content .entry-content ul {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.page-main-content .entry-content ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

.page-main-content .entry-content ul li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
}

/* Nested Lists */
.page-main-content .entry-content ul ul {
    margin: 10px 0 10px 20px;
}

.page-main-content .entry-content ul ul li::before {
    content: '\f105';
    font-size: 14px;
}

/* Ordered Lists */
.page-main-content .entry-content ol {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
    counter-reset: custom-counter;
}

.page-main-content .entry-content ol li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    counter-increment: custom-counter;
}

.page-main-content .entry-content ol li::before {
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--heading-font);
}

.page-main-content .entry-content ol ol {
    margin: 10px 0 10px 20px;
}

/* ============================================
   BLOCKQUOTES
   ============================================ */
.page-main-content .entry-content blockquote {
    background: var(--bg-light);
    border-left: 5px solid var(--primary-color);
    padding: 30px 35px;
    margin: 35px 0;
    border-radius: 10px;
    font-style: italic;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.page-main-content .entry-content blockquote::before {
    content: '\f10d';
    font-family: 'FontAwesome';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.page-main-content .entry-content blockquote p {
    margin-bottom: 0;
    font-size: 18px;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.page-main-content .entry-content blockquote cite {
    display: block;
    margin-top: 15px;
    font-size: 15px;
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

.page-main-content .entry-content blockquote cite::before {
    content: '— ';
}

/* ============================================
   IMAGES
   ============================================ */
.page-main-content .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.page-main-content .entry-content img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Image Alignment */
.page-main-content .entry-content img.alignleft {
    float: left;
    margin: 10px 30px 20px 0;
}

.page-main-content .entry-content img.alignright {
    float: right;
    margin: 10px 0 20px 30px;
}

.page-main-content .entry-content img.aligncenter {
    display: block;
    margin: 30px auto;
}

/* Image with Caption */
.page-main-content .entry-content figure {
    margin: 30px 0;
}

.page-main-content .entry-content figure img {
    margin: 0 0 15px 0;
}

.page-main-content .entry-content figcaption {
    font-size: 14px;
    color: var(--text-gray);
    font-style: italic;
    text-align: center;
    padding: 0 20px;
}

/* ============================================
   TABLES
   ============================================ */
.page-main-content .entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.page-main-content .entry-content table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.page-main-content .entry-content table thead tr th {
    padding: 18px 20px;
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.page-main-content .entry-content table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.page-main-content .entry-content table tbody tr:last-child {
    border-bottom: none;
}

.page-main-content .entry-content table tbody tr:hover {
    background: var(--bg-light);
}

.page-main-content .entry-content table tbody tr td {
    padding: 16px 20px;
    font-size: 15px;
    color: var(--text-light);
    border: none;
}

.page-main-content .entry-content table tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   CODE BLOCKS & PRE
   ============================================ */
.page-main-content .entry-content code {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.page-main-content .entry-content pre {
    background: var(--text-dark);
    color: #00ff00;
    padding: 25px;
    border-radius: 10px;
    overflow-x: auto;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-main-content .entry-content pre code {
    background: transparent;
    color: #00ff00;
    padding: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   HORIZONTAL RULE
   ============================================ */
.page-main-content .entry-content hr {
    border: none;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, transparent 100%);
    margin: 40px 0;
    border-radius: 2px;
}

/* ============================================
   BUTTONS IN CONTENT
   ============================================ */
.page-main-content .entry-content .btn {
    display: inline-block;
    margin: 10px 10px 10px 0;
}

/* ============================================
   VIDEO EMBEDS
   ============================================ */
.page-main-content .entry-content iframe {
    max-width: 100%;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive Video Container */
.page-main-content .entry-content .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    margin: 30px 0;
    border-radius: 10px;
}

.page-main-content .entry-content .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}

/* ============================================
   HIGHLIGHT BOXES
   ============================================ */
.page-main-content .entry-content .highlight-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-main-content .entry-content .highlight-box h3 {
    color: var(--primary-color);
    margin-top: 0;
}

/* Info Box */
.page-main-content .entry-content .info-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(227, 11, 23, 0.2);
}

.page-main-content .entry-content .info-box h3,
.page-main-content .entry-content .info-box p {
    color: var(--white);
}

.page-main-content .entry-content .info-box h3 {
    margin-top: 0;
}

/* ============================================
   PAGE META FOOTER
   ============================================ */
.page-meta-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 25px 60px;
    background: var(--bg-light);
    border-top: 2px solid var(--border-color);
}

.page-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
}

.page-meta-item i {
    color: var(--primary-color);
    font-size: 16px;
}

.page-meta-item strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet Design (991px and below) */
@media (max-width: 991px) {
    .page-content-wrap {
        padding: 60px 0;
    }

    .page-main-content {
        padding: 40px 45px;
    }

    .page-main-content .entry-content h1 {
        font-size: 2.2rem;
    }

    .page-main-content .entry-content h2 {
        font-size: 1.8rem;
    }

    .page-main-content .entry-content h3 {
        font-size: 1.6rem;
    }

    .page-main-content .entry-content p {
        font-size: 16px;
    }

    .page-meta-footer {
        padding: 20px 45px;
    }

    .page-featured-image {
        max-height: 400px;
    }

    .page-featured-image img {
        max-height: 400px;
    }
}

/* Mobile Design (767px and below) */
@media (max-width: 767px) {
    .page-content-wrap {
        padding: 50px 0;
    }

    .page-main-content {
        padding: 35px 30px;
    }

    .page-main-content .entry-content p {
        font-size: 15px;
        line-height: 1.8;
        text-align: left;
    }

    /* Disable drop cap on mobile */
    .page-main-content .entry-content p:first-of-type::first-letter {
        font-size: inherit;
        float: none;
        margin: 0;
        color: inherit;
        background: none;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: unset;
        background-clip: unset;
    }

    .page-main-content .entry-content h1 {
        font-size: 1.9rem;
        margin-top: 25px;
    }

    .page-main-content .entry-content h2 {
        font-size: 1.6rem;
    }

    .page-main-content .entry-content h3 {
        font-size: 1.4rem;
    }

    .page-main-content .entry-content h4 {
        font-size: 1.3rem;
    }

    .page-main-content .entry-content ul li,
    .page-main-content .entry-content ol li {
        font-size: 15px;
        padding-left: 30px;
    }

    .page-main-content .entry-content blockquote {
        padding: 25px 30px;
        margin: 25px 0;
    }

    .page-main-content .entry-content blockquote p {
        font-size: 16px;
    }

    .page-main-content .entry-content img.alignleft,
    .page-main-content .entry-content img.alignright {
        float: none;
        display: block;
        margin: 25px auto;
    }

    .page-main-content .entry-content table thead tr th {
        padding: 14px 15px;
        font-size: 13px;
    }

    .page-main-content .entry-content table tbody tr td {
        padding: 12px 15px;
        font-size: 14px;
    }

    .page-meta-footer {
        padding: 20px 30px;
        gap: 15px;
    }

    .page-meta-item {
        font-size: 13px;
    }

    .page-featured-image {
        max-height: 350px;
    }

    .page-featured-image img {
        max-height: 350px;
    }
}

/* ============================================
   CONTACT PAGE CSS
   ============================================ */

/* Contact Page Wrapper */
.contact-page-wrap {
    position: relative;
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-page-wrap .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   CONTACT INFORMATION CONTAINER
   ============================================ */
.contact-info-container {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    animation: fadeInLeft 0.8s ease-out;
}

/* Contact Intro */
.contact-intro {
    margin-bottom: 35px;
}

.contact-heading {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.contact-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.contact-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-description p {
    margin-bottom: 15px;
}

/* Contact Details List */
.contact-details-list {
    margin-bottom: 35px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.contact-detail-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(227, 11, 23, 0.3);
}

.contact-info-text {
    flex: 1;
}

.contact-info-text h4 {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-info-text span {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    display: block;
}

/* Social Media Section */
.contact-social-container {
    padding-top: 25px;
    border-top: 2px solid var(--border-color);
}

.social-heading {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-social li a:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(227, 11, 23, 0.3);
}

/* ============================================
   CONTACT FORM CONTAINER
   ============================================ */
.contact-form-container {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    animation: fadeInRight 0.8s ease-out;
}

.form-heading {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.form-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

/* Form Styling */
.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: block;
}

.contact-form label i {
    color: var(--primary-color);
    margin-right: 8px;
}

.contact-form .form-control {
    /* padding: 14px 18px; */
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--body-font);
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: var(--white);
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(227, 11, 23, 0.15);
}

.contact-form .form-control::placeholder {
    color: var(--text-gray);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Captcha Group */
.captcha-group {
    margin-bottom: 30px;
}

.captcha-image {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.captcha-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Form Submit */
.form-submit {
    margin-top: 30px;
}

.form-submit .btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit .btn i {
    font-size: 18px;
}

/* ============================================
   CONTACT MAP CONTAINER
   ============================================ */
.contact-map-container {
    background: var(--white);
    border-radius: 15px;
    padding: 35px;
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.8s ease-out;
}

.map-heading {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.map-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.contact-gmap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-gmap iframe {
    width: 100%;
    height: 450px;
    border: none;
}


/* ============================================
   MEMBERSHIP PAGE CSS
   ============================================ */

/* Membership Page Wrapper */
.membership-page-wrap {
    position: relative;
    padding: 80px 0;
    background: var(--bg-light);
}

.membership-page-wrap .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   MEMBERSHIP FORM CONTAINER
   ============================================ */
.membership-form-container {
    background: var(--white);
    border-radius: 15px;
    padding: 45px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.8s ease-out;
}

/* Form Fieldset */
.form-fieldset {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    background: var(--bg-light);
    transition: all 0.3s ease;
}

.form-fieldset:hover {
    border-color: var(--primary-color);
    background: var(--white);
}

.fieldset-legend {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    padding: 0 15px;
    margin-bottom: 0;
    width: auto;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fieldset-legend i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Form Groups */
.membership-form .form-group {
    margin-bottom: 25px;
}

.membership-form label {
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: block;
}

.membership-form .form-control {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--body-font);
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: var(--white);
}

.membership-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(227, 11, 23, 0.15);
}

.membership-form select.form-control {
    cursor: pointer;
}

.membership-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Required Field Indicator */
.required {
    color: var(--primary-color);
    margin-left: 3px;
}

/* Custom File Upload */
.custom-file-upload {
    position: relative;
}

.custom-file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.custom-file-upload .file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--bg-light);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    color: var(--text-dark);
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.custom-file-upload .file-label:hover {
    background: var(--white);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.custom-file-upload .file-label i {
    font-size: 18px;
}

/* Declaration Radio Buttons */
.declaration-item {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.declaration-label {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 15px;
    display: block;
}

.radio-group {
    display: flex;
    gap: 30px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0;
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.radio-label span {
    cursor: pointer;
}

/* Bank Details Fieldset */
.bank-details-fieldset {
    background: linear-gradient(135deg, rgba(227, 11, 23, 0.05) 0%, rgba(255, 209, 1, 0.05) 100%);
    border-color: var(--primary-color);
}

.bank-info-box {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.bank-info-box h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.bank-info-box h4 i {
    margin-right: 10px;
}

.bank-info-box p {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.bank-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bank-details-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-light);
}

.bank-details-list li:last-child {
    border-bottom: none;
}

.bank-details-list li strong {
    color: var(--text-dark);
    font-weight: 600;
    display: inline-block;
    min-width: 140px;
}

/* Alert Custom */
.alert-custom {
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 30px;
    border-left: 5px solid #dc3545;
}

.alert-custom i {
    margin-right: 10px;
    font-size: 18px;
}

.alert-custom ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}


/* ============================================
   DONATE PAGE CSS
   ============================================ */

/* Donate Page Wrapper */
.donate-page-wrap {
    position: relative;
    padding: 80px 0;
    background: var(--bg-light);
}

.donate-page-wrap .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   DONATION INTRO
   ============================================ */
.donate-intro {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInDown 0.8s ease-out;
}

.donate-main-heading {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.donate-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   DONATE FORM CONTAINER
   ============================================ */
.donate-form-container {
    background: var(--white);
    border-radius: 15px;
    padding: 45px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.8s ease-out;
}

/* Donation Sections */
.donation-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
}

.donation-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-heading {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-heading i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

/* Donation Type Buttons */
.donation-type-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.btn-donation-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 25px 20px;
    background: var(--bg-light);
    border: 3px solid var(--border-color);
    border-radius: 12px;
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-donation-type i {
    font-size: 2rem;
}

.btn-donation-type:hover {
    border-color: var(--primary-color);
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-donation-type.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(227, 11, 23, 0.3);
}

/* Donation Amount Buttons */
.donation-amount-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.btn-donation-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 25px 15px;
    background: var(--bg-light);
    border: 3px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-donation-amount .currency {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-gray);
}

.btn-donation-amount .amount {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.btn-donation-amount i {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.btn-donation-amount:hover {
    border-color: var(--primary-color);
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-donation-amount.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(227, 11, 23, 0.3);
}

.btn-donation-amount.active .currency,
.btn-donation-amount.active .amount,
.btn-donation-amount.active i {
    color: var(--white);
}

/* Custom Amount Input */
.custom-amount-group {
    margin-top: 25px;
}

.custom-amount-group label {
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: block;
}

.custom-amount-group .input-group {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.custom-amount-group .input-group-text {
    background: var(--bg-light);
    border: none;
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    padding: 14px 18px;
}

.custom-amount-group .form-control {
    border: none;
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    padding: 14px;
}

.custom-amount-group .form-control:focus {
    outline: none;
    box-shadow: none;
}

/* Donor Information Form */
.donation-form .form-group {
    margin-bottom: 25px;
}

.donation-form label {
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: block;
}

.donation-form .form-control {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--body-font);
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: var(--white);
}

.donation-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(227, 11, 23, 0.15);
}

.donation-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Donation Submit */
.donation-submit {
    text-align: center;
    margin-top: 40px;
}

.btn-donate-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(227, 11, 23, 0.3);
}

.btn-donate-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(227, 11, 23, 0.4);
}

.btn-donate-submit i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.secure-note {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.secure-note i {
    color: var(--primary-color);
}

/* ============================================
   DONATION IMPACT SECTION
   ============================================ */
.donation-impact {
    margin-top: 50px;
    padding: 40px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.impact-heading {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 35px;
}

.impact-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.impact-card:hover {
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(227, 11, 23, 0.3);
}

.impact-card h4 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.impact-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}


/* ============================================
   RESPONSIVE DESIGN - ALL FORMS
   ============================================ */

/* Tablet Design (991px and below) */
@media (max-width: 991px) {
    .contact-page-wrap,
    .membership-page-wrap,
    .donate-page-wrap {
        padding: 60px 0;
    }

    .contact-info-container,
    .contact-form-container {
        margin-bottom: 30px;
    }

    .membership-form-container,
    .donate-form-container {
        padding: 35px;
    }

    .form-fieldset {
        padding: 25px;
    }

    .donate-main-heading {
        font-size: 2.2rem;
    }

    .donation-amount-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .donation-impact {
        padding: 30px;
    }
}

/* Mobile Design (767px and below) */
@media (max-width: 767px) {
    .contact-page-wrap,
    .membership-page-wrap,
    .donate-page-wrap {
        padding: 50px 0;
    }

    .contact-info-container,
    .contact-form-container {
        padding: 30px 25px;
    }

    .contact-heading,
    .form-heading {
        font-size: 1.7}}