/**
 * Custom Theme CSS - Chuwal Gram Vikas Trust Ahmedabad
 * Primary: RED (#E31E24) from GVT logo
 * Secondary: Dark Red/Maroon (#B71C1C)
 * Accent: Orange (#FF5722)
 */

/* ========================================
   CSS Variables (Override Default Theme)
======================================== */
:root {
    --primary-color: #E31E24;
    --secondary-color: #B71C1C;
    --accent-color: #FF5722;
    --heading-color: #1E1E1E;
    --dark-color: #1E1E1E;
    --light-bg: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #E31E24 0%, #ff4444 100%);
    --gradient-secondary: linear-gradient(135deg, #B71C1C 0%, #d32f2f 100%);
    --shadow-primary: 0 10px 40px rgba(227, 30, 36, 0.3);
    --shadow-secondary: 0 10px 40px rgba(183, 28, 28, 0.3);
}

/* ========================================
   Top Bar Styling
======================================== */
.bgc-primary {
    background: var(--primary-color) !important;
}

.navbar-top.bgc-primary {
    background: var(--primary-color) !important;
}

.navbar-top.bgc-primary .topbar-left li,
.navbar-top.bgc-primary .topbar-right li,
.navbar-top.bgc-primary .social-area span,
.navbar-top.bgc-primary .social-area a {
    color: #fff !important;
}

.navbar-top.bgc-primary .social-area a:hover {
    color: rgba(255,255,255,0.8) !important;
}

/* ========================================
   Logo Styling - Square, Not Compressed
======================================== */
.logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    gap: 12px;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Logo Text Styling */
.logo-text {
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--primary-color);
    padding-left: 12px;
}

.logo-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (min-width: 1200px) {
    .logo-img {
        height: 75px;
    }

    .logo-title {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .logo-img {
        height: 50px;
    }

    .logo-text {
        padding-left: 8px;
        border-left-width: 1px;
    }

    .logo-title {
        font-size: 12px;
        letter-spacing: 0;
    }

    .logo-link {
        gap: 8px;
    }
}

@media (max-width: 575px) {
    .logo-img {
        height: 45px;
    }

    .logo-title {
        font-size: 10px;
    }

    .logo-text {
        padding-left: 6px;
    }

    .logo-link {
        gap: 6px;
    }
}

/* Footer Logo Text Styling */
.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--primary-color);
    padding-left: 12px;
}

.footer-logo-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 575px) {
    .footer-logo-text {
        padding-left: 8px;
    }

    .footer-logo-title {
        font-size: 11px;
    }
}

/* ========================================
   Navigation - Single Line
======================================== */
.navbar-bg {
    background: #fff;
    border-radius: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 5px 20px;
}

.sticky-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    transition: all 0.3s ease;
}

.sticky-navbar.scrolled {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

/* Force navigation in single line */
.menu-single-line {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.menu-single-line > li {
    white-space: nowrap;
}

.menu-single-line > li > a {
    padding: 10px 12px !important;
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color) !important;
    transition: all 0.3s ease;
}

.menu-single-line > li > a:hover,
.menu-single-line > li.active > a {
    color: var(--primary-color) !important;
}

/* Responsive - smaller screens */
@media (min-width: 992px) and (max-width: 1199px) {
    .menu-single-line > li > a {
        padding: 10px 8px !important;
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .menu-single-line {
        flex-wrap: wrap !important;
    }

    .menu-single-line > li > a {
        padding: 12px 15px !important;
        font-size: 15px;
        display: block;
        border-bottom: 1px solid #eee;
    }
}

/* ========================================
   Button Styles
======================================== */
.btn--primary,
.btn {
    background: var(--gradient-primary) !important;
    border: none !important;
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-primary);
}

.btn--primary:hover,
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(227, 30, 36, 0.4);
    background: var(--gradient-secondary) !important;
}

.btn--secondary {
    background: var(--gradient-secondary) !important;
    box-shadow: var(--shadow-secondary);
}

.btn--style-two {
    background: transparent !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    box-shadow: none;
}

.btn--style-two:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

/* ========================================
   Section Title Styling
======================================== */
.section-title__subtitle {
    color: var(--primary-color);
    font-family: 'Pacifico', cursive;
    font-size: 18px;
    position: relative;
    padding-left: 60px;
}

.section-title__subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.section-title h2 span,
.section-title h3 span {
    color: var(--primary-color);
}

/* ========================================
   Card & Component Styling
======================================== */
.cause-item,
.event-item,
.blog-item,
.feature-item {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.cause-item:hover,
.event-item:hover,
.blog-item:hover,
.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Progress Bar Colors */
.progress-bar {
    background: var(--primary-color);
}

/* ========================================
   Icon Styling
======================================== */
.feature-item__icon,
.counter-item__icon {
    background: var(--gradient-primary);
    color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: var(--shadow-primary);
    transition: all 0.3s ease;
}

.feature-item__icon--green,
.counter-item__icon--green {
    background: var(--gradient-secondary);
    box-shadow: var(--shadow-secondary);
}

/* ========================================
   Page Banner - Image Only
======================================== */
.page-banner-area {
    background-position: center;
    background-size: cover;
    position: relative;
    height: 250px;
}

.page-banner-area::before {
    display: none;
}

@media (max-width: 991px) {
    .page-banner-area {
        height: 200px;
    }
}

@media (max-width: 575px) {
    .page-banner-area {
        height: 150px;
    }
}

/* ========================================
   Breadcrumb Strip
======================================== */
.breadcrumb-strip {
    background: var(--light-bg);
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-strip__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.breadcrumb-strip__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0;
}

.breadcrumb-strip__title span {
    color: var(--primary-color);
}

.breadcrumb-strip__nav {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-strip__nav li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--base-color);
}

.breadcrumb-strip__nav li a {
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.breadcrumb-strip__nav li a:hover {
    color: var(--secondary-color);
}

.breadcrumb-strip__nav li::after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 8px;
    color: var(--primary-color);
    font-size: 12px;
}

.breadcrumb-strip__nav li:last-child::after {
    display: none;
}

.breadcrumb-strip__nav li:last-child {
    color: var(--heading-color);
    font-weight: 600;
}

@media (max-width: 575px) {
    .breadcrumb-strip__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .breadcrumb-strip__title {
        font-size: 20px;
    }

    .breadcrumb-strip__nav li {
        font-size: 13px;
    }
}

/* Old page-title and page-list kept for compatibility */
.page-title {
    position: relative;
    z-index: 1;
}

.page-list {
    position: relative;
    z-index: 1;
}

.page-list li a {
    color: #fff;
}

.page-list li a:hover {
    color: var(--accent-color);
}

/* ========================================
   Footer Styling
======================================== */
.footer-area {
    position: relative;
}

.footer-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(227, 30, 36, 0.1) 100%);
}

.footer-logo {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.widget-title {
    color: #fff;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.widget_nav_menu ul li a:hover,
.contact-info-list a:hover {
    color: var(--primary-color) !important;
}

.social-style-one a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.social-style-one a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}

.footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 20px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Contact Info List */
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-list li i {
    color: var(--primary-color);
    width: 20px;
    margin-top: 3px;
}

/* ========================================
   Preloader
======================================== */
.spinner .dot1,
.spinner .dot2 {
    background-color: var(--primary-color);
}

/* ========================================
   Back to Top
======================================== */
.back-to-top .back-top {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-primary);
}

.back-to-top .back-top:hover {
    transform: translateY(-5px);
}

/* ========================================
   Quick Stats (Home Page)
======================================== */
.quick-stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c41a1f 100%);
    padding: 40px 0;
    position: relative;
}

.quick-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/background/pattern.png') repeat;
    opacity: 0.05;
}

.quick-stats-wrap {
    position: relative;
    z-index: 10;
}

.stat-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border-bottom: 4px solid var(--primary-color);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.stat-card .stat-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.3);
}

.stat-card--green .stat-icon,
.stat-card--secondary .stat-icon {
    background: var(--gradient-secondary);
    box-shadow: 0 8px 20px rgba(183, 28, 28, 0.3);
}

.stat-card--green {
    border-bottom-color: var(--secondary-color);
}

.stat-card--yellow .stat-icon {
    background: linear-gradient(135deg, #FFB840 0%, #ffc960 100%);
    box-shadow: 0 8px 20px rgba(255, 184, 64, 0.3);
}

.stat-card--yellow {
    border-bottom-color: #FFB840;
}

.stat-card .stat-content h3 {
    font-size: 32px;
    margin-bottom: 5px;
    color: var(--heading-color);
    font-weight: 700;
}

.stat-card .stat-content p {
    margin-bottom: 0;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

/* ========================================
   Hero Banner (Image Only)
======================================== */
.hero-banner {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ========================================
   Responsive Adjustments
======================================== */
@media (max-width: 767px) {
    .navbar-bg {
        padding: 10px 15px;
    }

    .footer-bottom__inner {
        justify-content: center;
        text-align: center;
    }

    .footer-links {
        width: 100%;
        margin-top: 10px;
    }

    .footer-links a {
        margin: 0 10px;
    }

    .quick-stats-section {
        padding: 30px 0;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-card .stat-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .stat-card .stat-content h3 {
        font-size: 26px;
    }
}

/* ========================================
   Link Hover Effects
======================================== */
a {
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

/* ========================================
   Form Elements
======================================== */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
}

/* ========================================
   Selection Color
======================================== */
::selection {
    background: var(--primary-color);
    color: #fff;
}

::-moz-selection {
    background: var(--primary-color);
    color: #fff;
}

/* ==========================================================================
   About Page - Vision Section
   ========================================================================== */

.vision-area {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d63d33 100%);
}

.vision-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/background/pattern.png') repeat;
    opacity: 0.1;
}

.vision-content {
    position: relative;
    z-index: 1;
}

.vision-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.vision-icon i {
    font-size: 50px;
    color: #fff;
    line-height: 1;
}

.vision-title {
    color: #fff;
}

.vision-text {
    font-size: 20px;
    line-height: 1.8;
    opacity: 0.95;
}

/* ==========================================================================
   About Page - Mission Section
   ========================================================================== */

.mission-area {
    background-color: var(--light-bg);
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.mission-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.mission-icon i {
    color: var(--primary-color);
    font-size: 24px;
}

/* ==========================================================================
   About Page - Values Section
   ========================================================================== */

.value-card {
    --card-color: var(--primary-color);
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--card-color);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.value-card__icon {
    width: 80px;
    height: 80px;
    background: var(--card-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-card__icon i {
    font-size: 35px;
    color: #fff;
    line-height: 1;
}

.value-card__icon i.fas,
.value-card__icon i.far,
.value-card__icon i.fab {
    font-size: 32px;
}

.value-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--heading-color);
}

.value-card p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: var(--base-color);
}

/* Value Card Color Variants */
.value-card--green {
    --card-color: var(--green-color);
}

.value-card--yellow {
    --card-color: var(--yellow-color);
}

.value-card--purple {
    --card-color: #6c5ce7;
}

.value-card--teal {
    --card-color: #00b894;
}

.value-card--orange {
    --card-color: #e17055;
}

.value-card--blue {
    --card-color: #0984e3;
}

/* ==========================================================================
   Footer Dark Background
   ========================================================================== */

.footer-area.footer-dark {
    background-color: #1E1E1E;
}

.footer-area.footer-dark::before {
    display: none;
}

/* ==========================================================================
   CTA Buttons
   ========================================================================== */

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Donation Page - Gallery Image Cards
   ========================================================================== */

.gallery-image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    text-align: center;
}

.gallery-caption h5 {
    color: #fff;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

/* ==========================================================================
   Donation Page - Activities & Projects Lists
   ========================================================================== */

.activities-list,
.projects-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activities-list li,
.projects-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 15px;
    color: var(--heading-color);
}

.activities-list li:last-child,
.projects-list li:last-child {
    border-bottom: none;
}

.activities-list li i {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
}

.projects-list li i {
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
}

/* Activities Grid List */
.activities-grid-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activities-grid-list li {
    padding: 10px 15px;
    background: #fff;
    margin-bottom: 8px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--heading-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 3px solid var(--primary-color);
}

.activities-grid-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Donation Page - Activity & Project Images
   ========================================================================== */

.activity-image,
.project-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.activity-image img,
.project-image img {
    width: 100%;
    height: auto;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(227, 30, 36, 0.9));
    padding: 25px 20px;
    text-align: center;
}

.image-caption span {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Donation Page - Quote Section
   ========================================================================== */

.quote-section {
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    position: relative;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.quote-content {
    position: relative;
}

.quote-icon {
    margin-bottom: 20px;
}

.quote-icon i {
    font-size: 50px;
    color: var(--primary-color);
    opacity: 0.3;
}

.quote-text {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.quote-translation {
    font-size: 20px;
    color: var(--heading-color);
    font-style: italic;
    margin-bottom: 0;
}

.quote-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 25px auto 0;
    border-radius: 2px;
}

/* ==========================================================================
   Donation Page - Contact CTA Section
   ========================================================================== */

.contact-cta-section {
    background-color: var(--light-bg);
}

.contact-cta-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.president-info {
    text-align: center;
}

.president-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-primary);
}

.president-icon i {
    font-size: 45px;
    color: #fff;
}

.president-info h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.president-info .designation {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.president-info .role {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.office-info {
    padding: 20px;
    background: var(--light-bg);
    border-radius: 15px;
    height: 100%;
}

.office-info h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.office-info h5 i {
    color: var(--primary-color);
    font-size: 18px;
}

.office-info p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Button Green Variant */
.btn--green {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%) !important;
    box-shadow: 0 10px 40px rgba(39, 174, 96, 0.3);
}

.btn--green:hover {
    background: linear-gradient(135deg, #219a52 0%, #27ae60 100%) !important;
    box-shadow: 0 15px 45px rgba(39, 174, 96, 0.4);
}

/* ==========================================================================
   Donation Page - Responsive Adjustments
   ========================================================================== */

@media (max-width: 991px) {
    .contact-cta-card {
        padding: 40px 25px;
    }

    .quote-text {
        font-size: 28px;
    }

    .gallery-image-card img {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .quote-text {
        font-size: 24px;
    }

    .quote-translation {
        font-size: 16px;
    }

    .president-icon {
        width: 80px;
        height: 80px;
    }

    .president-icon i {
        font-size: 35px;
    }

    .gallery-image-card img {
        height: 200px;
    }

    .activities-grid-list li {
        font-size: 13px;
        padding: 8px 12px;
    }
}

/* ==========================================================================
   Trust Documents Page
   ========================================================================== */

.transparency-section {
    background-color: #fff;
}

.transparency-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
}

.transparency-list li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--heading-color);
}

.transparency-list li i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.trust-info-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.trust-info-card h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    font-size: 22px;
}

.trust-info-card h4 i {
    color: var(--primary-color);
    font-size: 24px;
}

.trust-info-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.trust-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.trust-info-item .label {
    font-weight: 600;
    color: var(--heading-color);
    flex-shrink: 0;
}

.trust-info-item .value {
    color: var(--base-color);
    text-align: right;
}

/* Certificate Image Section */
.certificate-section {
    background-color: var(--light-bg);
}

.certificate-image-wrapper {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.certificate-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.certificate-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-primary);
}

.certificate-badge i {
    font-size: 18px;
}

/* Trust Documents Page - Responsive */
@media (max-width: 991px) {
    .trust-info-card {
        margin-top: 30px;
    }

    .trust-info-item {
        flex-direction: column;
        gap: 5px;
    }

    .trust-info-item .value {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .trust-info-card {
        padding: 25px 20px;
    }

    .certificate-badge {
        right: 15px;
        padding: 10px 15px;
        font-size: 12px;
    }
}

/* ==========================================================================
   Awards Page - Image Gallery
   ========================================================================== */

.awards-gallery-section {
    background: #fff;
}

.award-gallery-item {
    display: block;
    text-decoration: none;
}

.award-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 3px solid #e0e0e0;
    background: #fff;
    transition: all 0.3s ease;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-image-wrapper:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.2);
}

.award-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #fff;
}

.award-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(227, 30, 36, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.award-overlay i {
    color: #fff;
    font-size: 32px;
}

.award-image-wrapper:hover .award-overlay {
    opacity: 1;
}

/* ==========================================================================
   Awards Page - Awards List
   ========================================================================== */

.awards-list-section {
    background-color: var(--light-bg);
}

.awards-timeline {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.award-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.award-list-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.award-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.award-details {
    flex: 1;
}

.award-details h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--heading-color);
    line-height: 1.4;
}

.award-details p {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.award-year-badge {
    display: inline-block;
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
}

/* Awards Page - Responsive */
@media (max-width: 991px) {
    .award-image-wrapper {
        height: 180px;
    }
}

@media (max-width: 767px) {
    .award-image-wrapper {
        height: 160px;
    }

    .award-list-item {
        padding: 15px;
    }

    .award-number {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .award-details h5 {
        font-size: 14px;
    }
}