/* Premium Navbar Base */
:root {
    --color-primary: #7B2C2C;
    --color-accent: #F28C28;
    --color-gold: #FFD700;
    --color-bg: #F8F9FA;
    --color-text: #333333;
}

body {
    color: var(--color-text);
    background-color: var(--color-bg);
    font-feature-settings: "liga" on, "kern" on;
}

.btn:focus,
.nav-link:focus,
.form-control:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Ensure AOS elements are visible by default */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

/* AOS will override these when animating */
[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Dark Premium Navbar */
.custom-navbar {
    background: linear-gradient(90deg, #3A0D0D, #4A1111, #5A1515);
    /* Deep maroon tones */
    width: 100%;
    overflow-x: hidden;
    padding: 0.6rem 0;
    border-top: 3px solid rgba(255, 215, 0, 0.35);
    /* subtle gold line */
    border-bottom: 2px solid rgba(0, 0, 0, 0.35);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.30);
    transition: all 0.4s ease-in-out;
}

/* Navbar Hover Glow */
.custom-navbar:hover {
    filter: brightness(1.08);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.45);
}

/* Navbar Links — more crisp on dark */
.custom-navbar .nav-link {
    color: #FFFBEA !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Underline effect remains same */
.custom-navbar .nav-link::after {
    background-color: #FFD700;
}

/* Active Link brighter */
.custom-navbar .nav-link.active {
    color: #FFFFFF !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Menu Toggle Icon for Mobile */
.navbar-dark .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.6);
}

.navbar-dark .navbar-toggler-icon {
    filter: brightness(1.8) drop-shadow(0 0 3px rgba(0, 0, 0, 0.7));
}


/* Navbar Links */
.custom-navbar .nav-link {
    color: #FFFFFF !important;
    font-weight: 600;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.7px;
    text-shadow: none;
}

/* Underline Animation from Center */
.custom-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 0%;
    height: 3px;
    background-color: var(--color-gold);
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}

/* Hover Effects for Links */
.custom-navbar .nav-link:hover {
    color: #FFF9E6 !important;
    transform: translateY(-2px);
}

.custom-navbar .nav-link:hover::after {
    width: 70%;
}

/* Active Link Highlight */
.custom-navbar .nav-link.active {
    color: #FFFFFF !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.custom-navbar .nav-link.active::after {
    width: 70%;
    background-color: var(--color-gold);
}

/* Donate Button Premium Style */
.donate-btn {
    background: var(--color-accent);
    border: none;
    display: block;
    width: 100%;
    padding: 8px 20px;
    border-radius: 6px;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Donate Button Hover Effect */
.donate-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
    color: #111;
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .nav-fill {
        flex-direction: column;
    }

    .custom-navbar .nav-link::after {
        bottom: 0;
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-bottom: 2px solid var(--color-accent);
}

.hero-slider.enhanced {
    height: 650px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    /* Add perspective for 3D effects */
    perspective: 1200px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Add zoom effect on active slide */
    transform: scale(1);
    transition: opacity 1.2s ease-in-out, transform 12s linear;
    /* Add parallax effect */
    transform-style: preserve-3d;
}

.slide.active {
    opacity: 1;
    /* Slow zoom effect when slide is active */
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Enhanced gradient overlay for better text readability */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0.7) 100%);
}

/* Bottom Aligned Slide Content */
.slide-content {
    position: absolute;
    bottom: 5%;
    /* bottom space */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 85%;
    max-width: 1100px;
}

/* Slight fade behind text for readability */
.slide-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.10),
            rgba(0, 0, 0, 0));
}



.slide-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.slide-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.slide-title .highlight {
    color: var(--color-gold);
}

.slide-description {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.slide-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 8px;
}

/* Premium Yellow-Gold Gradient Header */
.header-banner {
    background: linear-gradient(to right, #FFF9DC, #FFE37A, #FFD040);
    padding: 16px 0;
    border-bottom: 2px solid var(--color-gold);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Header ke andar text ko thoda dark rakhna for contrast */
.header-banner h1,
.header-banner div {
    color: #7A3E00;
}

/* Yellow-Gold Gradient Address Bar */
.address-banner {
    background: linear-gradient(to right, #FFDD55, #FFC733, #FFB400);
    color: #FFFFFF;
    padding: 8px 0;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    border-top: 2px solid var(--color-gold);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}


.stat-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slide-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.slide-btn {
    background: linear-gradient(135deg, #8B1E1E, #A52A2A);
    border: none;
    padding: 14px 35px;
    border-radius: 35px;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.slide-btn:hover {
    background: linear-gradient(135deg, #A52A2A, #C43838);
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
}

.slide-btn-outline {
    background: transparent;
    border: 3px solid #FFD700;
    padding: 14px 35px;
    border-radius: 35px;
    color: #FFD700;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.slide-btn-outline:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.slider-control:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.slider-control.prev {
    left: 20px;
}

.slider-control.next {
    right: 20px;
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-indicators.enhanced {
    bottom: 60px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #F28C28;
    transform: scale(1.2);
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: #F28C28;
    transition: width 0.1s linear;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-slider.enhanced {
        height: 500px;
    }

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

    .slide-description {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
    }

    .hero-slider.enhanced {
        height: 450px;
    }

    .slide-icon {
        font-size: 3rem;
    }

    .slide-title {
        font-size: 2.2rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .slide-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .slide-buttons {
        gap: 15px;
    }

    .slide-btn,
    .slide-btn-outline {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .slider-control {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 350px;
    }

    .hero-slider.enhanced {
        height: 400px;
    }

    .slide-icon {
        font-size: 2.5rem;
    }

    .slide-title {
        font-size: 1.8rem;
    }

    .slide-content {
        padding: 0 15px;
    }

    .slide-description {
        font-size: 0.9rem;
    }

    .slide-stats {
        flex-direction: column;
        gap: 15px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .slide-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .slide-btn,
    .slide-btn-outline {
        width: 80%;
        margin: 0 auto;
    }

    .slider-control {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .slider-control.prev {
        left: 10px;
    }

    .slider-control.next {
        right: 10px;
    }
}

/* About the Trust Section */
.about-trust {
    /* Premium Yellow Gradient Background */
    background: linear-gradient(135deg, #FFF9E6 0%, #FFF0D1 100%);
    position: relative;
    overflow: hidden;
}

.about-trust::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(165, 42, 42, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(242, 140, 40, 0.05) 0%, transparent 20%);
    background-size: 150px 150px;
    background-repeat: no-repeat;
    background-position: left top, right bottom;
    pointer-events: none;
}

.section-heading {
    color: #A52A2A;
    font-weight: 700;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
    /* Allow width to fit content */
}

.section-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Match the width of the text */
    height: 4px;
    background: linear-gradient(90deg, #F28C28, #A52A2A);
    border-radius: 2px;
}

.mission-text,
.vision-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.highlight-item {
    font-size: 1rem;
    color: #666;
}

.highlight-item i {
    color: #F28C28;
}

.read-more-btn {
    background: #F28C28;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(242, 140, 40, 0.3);
}

.read-more-btn:hover {
    background: #e07a1e;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(242, 140, 40, 0.4);
    color: white;
}

.about-image {
    position: relative;
    /* Removed border frame ::before */
}

/* Removed .about-image::before styles */

.about-image img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.03);
}

/* About Slider Image Auto-Adjustment */
.about-slide-img {
    width: 100%;
    height: 400px;
    /* Fixed height for consistency */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    /* Removed box-shadow for cleaner look */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .section-heading {
        font-size: 2.2rem;
    }

    .about-image {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 2rem;
    }

    .mission-text,
    .vision-text {
        font-size: 1rem;
    }
}

/* Our Impact Section */
.our-impact {
    background: linear-gradient(135deg, #FFF0D1 0%, #FFF9E6 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.our-impact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(165, 42, 42, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(242, 140, 40, 0.03) 0%, transparent 20%);
    background-size: 200px 200px;
    background-repeat: no-repeat;
    background-position: left top, right bottom;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.our-impact .section-heading {
    position: relative;
    padding-bottom: 20px;
}

.our-impact .section-heading::after {
    left: 50%;
    transform: translateX(-50%);
}

.impact-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(242, 140, 40, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.impact-icon {
    color: #A52A2A;
    transition: all 0.3s ease;
}

.impact-card:hover .impact-icon {
    transform: scale(1.1);
}

.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: #F28C28;
    margin: 10px 0;
}

.impact-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Responsive adjustments for Our Impact section */
@media (max-width: 992px) {
    .counter {
        font-size: 2.2rem;
    }

    .impact-label {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .our-impact {
        padding: 60px 0;
    }

    .counter {
        font-size: 2rem;
    }

    .impact-card {
        padding: 25px 15px;
    }
}

@media (max-width: 576px) {
    .counter {
        font-size: 1.8rem;
    }

    .impact-icon .fa-3x {
        font-size: 2.5rem;
    }
}

/* Programs & Initiatives Section */
.programs-initiatives {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFF0D1 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.programs-initiatives::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(165, 42, 42, 0.02) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(242, 140, 40, 0.02) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(165, 42, 42, 0.01) 0%, transparent 30%);
    background-size: 300px 300px, 250px 250px, 400px 400px;
    background-repeat: no-repeat;
    background-position: left top, right bottom, center center;
    pointer-events: none;
    animation: subtleFloat 8s ease-in-out infinite;
}

@keyframes subtleFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-5px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.programs-initiatives .section-heading {
    position: relative;
    padding-bottom: 20px;
}

.programs-initiatives .section-heading::after {
    left: 50%;
    transform: translateX(-50%);
}

.program-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(242, 140, 40, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.program-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(242, 140, 40, 0.02) 0%, rgba(165, 42, 42, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.program-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.program-card:hover::before {
    opacity: 1;
}

.program-icon {
    color: #F28C28;
    transition: all 0.4s ease;
    margin-bottom: 20px;
}

.program-card:hover .program-icon {
    transform: scale(1.15) rotateY(10deg);
    color: #E6761A;
}

.program-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #A52A2A;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.program-card:hover .program-title {
    color: #8B1E1E;
}

.program-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
    min-height: 24px;
}

.program-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Responsive adjustments for Programs & Initiatives section */
@media (max-width: 1200px) {
    .program-card {
        padding: 35px 25px;
    }

    .program-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .programs-initiatives {
        padding: 60px 0;
    }

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

    .program-title {
        font-size: 1.25rem;
    }

    .program-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .program-card {
        padding: 25px 20px;
    }

    .program-icon .fa-3x {
        font-size: 2.5rem;
    }

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

@media (max-width: 576px) {
    .program-card {
        padding: 20px 15px;
    }

    .program-icon .fa-3x {
        font-size: 2.2rem;
    }

    .program-title {
        font-size: 1.1rem;
    }

    .program-description {
        font-size: 0.9rem;
    }
}

/* Success Stories & Testimonials Section */
.testimonials {
    background-color: #FFF5E1;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="60" fill="rgba(165,42,42,0.03)">"</text></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="60" fill="rgba(242,140,40,0.03)">"</text></svg>');
    background-size: 150px 150px, 120px 120px;
    background-repeat: no-repeat;
    background-position: 10% 20%, 90% 80%;
    pointer-events: none;
    animation: quotesFloat 10s ease-in-out infinite;
}

@keyframes quotesFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.testimonials .section-heading {
    position: relative;
    padding-bottom: 20px;
}

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

.testimonials-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.testimonials-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 600%;
    /* 6 testimonials */
}

.testimonial-card {
    flex: 0 0 16.666%;
    /* 1/6 of container width */
    padding: 0 15px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-card .testimonial-photo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.testimonial-card .testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 4px solid #F28C28;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-photo img {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: #A52A2A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(165, 42, 42, 0.3);
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(242, 140, 40, 0.1);
    position: relative;
    margin-top: 20px;
}

.testimonial-content::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid rgba(255, 255, 255, 0.9);
}

.testimonial-quote {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

.testimonial-quote::before {
    content: "\201C";
    font-size: 3rem;
    color: #F28C28;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #A52A2A;
    margin-bottom: 8px;
}

.testimonial-role {
    font-size: 1rem;
    color: #F28C28;
    font-style: italic;
    font-weight: 500;
    margin: 0;
}

/* Navigation Controls */
.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #A52A2A;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(165, 42, 42, 0.3);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #8B1E1E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(165, 42, 42, 0.4);
}

/* Indicators */
.testimonials-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonials-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(165, 42, 42, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-indicators .indicator.active {
    background: #A52A2A;
    transform: scale(1.2);
}

.testimonials-indicators .indicator:hover {
    background: #F28C28;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .testimonial-content {
        padding: 35px 25px;
    }

    .testimonial-quote {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonial-card .testimonial-photo {
        width: 100px;
        height: 100px;
    }

    .testimonial-content {
        padding: 30px 20px;
    }

    .testimonial-quote {
        font-size: 0.95rem;
    }

    .testimonial-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .testimonials-container {
        width: 600%;
        /* Still 6 testimonials but mobile view */
    }

    .testimonial-card {
        flex: 0 0 16.666%;
        padding: 0 10px;
    }

    .testimonial-card .testimonial-photo {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .quote-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
        bottom: -5px;
        right: -5px;
    }

    .testimonial-content {
        padding: 25px 15px;
        margin-top: 15px;
    }

    .testimonial-quote {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

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

    .testimonial-role {
        font-size: 0.9rem;
    }

    .testimonials-controls {
        margin-top: 30px;
        gap: 15px;
    }

    .testimonial-prev,
    .testimonial-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .testimonial-content {
        padding: 20px 12px;
    }

    .testimonial-quote {
        font-size: 0.85rem;
    }

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

    .testimonial-role {
        font-size: 0.85rem;
    }
}

/* Events & Announcements Section */
.events-announcements {
    background: linear-gradient(135deg, #FFF0D1 0%, #FFF9E6 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.events-announcements::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(165, 42, 42, 0.02) 0%, transparent 30%),
        radial-gradient(circle at 85% 75%, rgba(242, 140, 40, 0.02) 0%, transparent 30%);
    background-size: 400px 400px, 350px 350px;
    background-repeat: no-repeat;
    background-position: left top, right bottom;
    pointer-events: none;
    animation: eventsFloat 12s ease-in-out infinite;
}

@keyframes eventsFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-6px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.events-announcements .section-heading {
    position: relative;
    padding-bottom: 10px;
}

.events-announcements .section-heading::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-intro {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
}

/* Events Ticker */
.events-ticker {
    background: rgba(165, 42, 42, 0.1);
    border-radius: 25px;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}

.ticker-wrapper {
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-block;
    animation: tickerScroll 20s linear infinite;
    font-size: 1rem;
    color: #A52A2A;
    font-weight: 500;
}

.ticker-label {
    background: #A52A2A;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    margin-right: 15px;
    font-weight: 600;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Events Controls */
.events-controls {
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(242, 140, 40, 0.1);
}

.search-box {
    position: relative;
}

.search-box input {
    padding: 12px 45px 12px 15px;
    border: 2px solid rgba(165, 42, 42, 0.2);
    border-radius: 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: #F28C28;
    box-shadow: 0 0 0 0.2rem rgba(242, 140, 40, 0.25);
    outline: none;
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #A52A2A;
    font-size: 1.1rem;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.filter-btn {
    padding: 8px 16px;
    border: 2px solid rgba(165, 42, 42, 0.3);
    background: transparent;
    color: #A52A2A;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #A52A2A;
    color: white;
    border-color: #A52A2A;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.event-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(242, 140, 40, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #A52A2A 0%, #F28C28 100%);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.event-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #A52A2A;
    color: white;
    border-radius: 12px;
    padding: 8px 12px;
    text-align: center;
    min-width: 60px;
}

.event-day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    font-size: 0.8rem;
    background: #F28C28;
    margin: 2px -12px -8px;
    padding: 2px 0;
    border-radius: 0 0 12px 12px;
}

.event-content {
    margin-right: 80px;
}

.event-category {
    display: inline-block;
    background: #F28C28;
    color: #A52A2A;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #A52A2A;
    margin-bottom: 10px;
    line-height: 1.3;
}

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

.event-meta i {
    color: #F28C28;
    width: 16px;
}

.event-description {
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
}

.event-actions {
    display: flex;
    gap: 10px;
}

.event-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.event-btn.primary {
    background: #A52A2A;
    color: white;
}

.event-btn.primary:hover {
    background: #8B1E1E;
    transform: scale(1.05);
}

.event-btn.secondary {
    background: transparent;
    color: #F28C28;
    border: 2px solid #F28C28;
}

.event-btn.secondary:hover {
    background: #F28C28;
    color: white;
}

/* View All Button */
.view-all-btn {
    background: #A52A2A;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.view-all-btn:hover {
    background: #8B1E1E;
    transform: scale(1.05);
    color: white;
}

/* Mini Calendar */
.mini-calendar-wrapper {
    position: sticky;
    top: 20px;
}

.mini-calendar {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(242, 140, 40, 0.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #A52A2A;
    margin: 0;
}

.calendar-nav {
    background: none;
    border: none;
    color: #A52A2A;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background: rgba(165, 42, 42, 0.1);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.calendar-day.header {
    font-weight: 600;
    color: #A52A2A;
    cursor: default;
}

.calendar-day.other-month {
    color: #ccc;
}

.calendar-day.has-event::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #F28C28;
    border-radius: 50%;
}

.calendar-day:hover:not(.header) {
    background: rgba(242, 140, 40, 0.2);
}

.calendar-day.selected {
    background: #A52A2A;
    color: white;
}

/* Event Modal */
.modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #A52A2A 0%, #F28C28 100%);
    color: white;
    border-bottom: none;
}

.modal-title {
    font-weight: 700;
}

.btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 30px;
}

.event-modal-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.event-modal-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(242, 140, 40, 0.1);
    border-radius: 15px;
}

.modal-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-meta-item i {
    color: #A52A2A;
    width: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .events-announcements {
        padding: 60px 0;
    }

    .mini-calendar-wrapper {
        margin-top: 40px;
        position: static;
    }

    .filter-buttons {
        justify-content: flex-start;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .events-controls {
        padding: 15px;
    }

    .events-controls .row {
        flex-direction: column;
    }

    .filter-buttons {
        margin-top: 15px;
        flex-wrap: wrap;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .event-card {
        padding: 20px;
    }

    .event-content {
        margin-right: 70px;
    }

    .event-date-badge {
        min-width: 50px;
        padding: 6px 8px;
    }

    .event-day {
        font-size: 1.3rem;
    }

    .mini-calendar {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .ticker-content {
        font-size: 0.9rem;
    }

    .event-title {
        font-size: 1.1rem;
    }

    .event-meta {
        flex-direction: column;
        gap: 8px;
    }

    .event-actions {
        flex-direction: column;
    }

    .calendar-grid {
        gap: 1px;
    }

    .calendar-day {
        font-size: 0.8rem;
    }
}

/* Photo & Video Gallery Section */
.gallery {
    background-color: #FFF5E1;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.gallery::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(165, 42, 42, 0.02) 0%, transparent 35%),
        radial-gradient(circle at 80% 80%, rgba(242, 140, 40, 0.02) 0%, transparent 35%);
    background-size: 500px 500px, 400px 400px;
    background-repeat: no-repeat;
    background-position: left top, right bottom;
    pointer-events: none;
    animation: galleryFloat 15s ease-in-out infinite;
}

@keyframes galleryFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.gallery .section-heading {
    position: relative;
    padding-bottom: 10px;
}

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

/* Gallery Filters */
.gallery-filters {
    background: rgba(255, 255, 255, 0.8);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(242, 140, 40, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.filter-label {
    font-weight: 600;
    color: #A52A2A;
    margin-bottom: 8px;
    display: block;
}

.filter-select {
    border: 2px solid rgba(165, 42, 42, 0.2);
    border-radius: 15px;
    padding: 10px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.filter-select:focus {
    border-color: #F28C28;
    box-shadow: 0 0 0 0.2rem rgba(242, 140, 40, 0.25);
    outline: none;
}

.reset-btn {
    border: 2px solid #A52A2A;
    color: #A52A2A;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.reset-btn:hover {
    background: #A52A2A;
    color: white;
    transform: scale(1.05);
}

/* Featured Gallery */
.featured-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #A52A2A;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.featured-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #A52A2A 0%, #F28C28 100%);
    border-radius: 2px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}



/* Load More Button */
.load-more-btn {
    background: #A52A2A;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #8B1E1E;
    transform: scale(1.05);
    color: white;
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content {
    max-width: 100%;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-content video {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(242, 140, 40, 0.8);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(242, 140, 40, 1);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-info {
    margin-top: 20px;
    text-align: center;
    color: white;
    max-width: 600px;
}

.lightbox-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #F28C28;
}

.lightbox-info p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 992px) {
    .gallery {
        padding: 60px 0;
    }

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

    .featured-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .gallery-filters {
        padding: 20px;
    }

    .gallery-filters .row {
        flex-direction: column;
    }

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

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .lightbox-prev {
        left: -60px;
    }

    .lightbox-next {
        right: -60px;
    }

    .lightbox-close {
        top: -40px;
        right: -40px;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-play-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .lightbox-container {
        max-width: 95vw;
        max-height: 95vh;
    }

    .lightbox-content {
        max-height: 60vh;
    }

    .lightbox-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .lightbox-info {
        margin-top: 15px;
        padding: 0 20px;
    }

    .lightbox-info h3 {
        font-size: 1.2rem;
    }

    .lightbox-info p {
        font-size: 0.9rem;
    }
}

/* How You Can Help Section */
.how-you-can-help {
    background-color: #FFF5E1;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.how-you-can-help::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(165, 42, 42, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(242, 140, 40, 0.03) 0%, transparent 40%);
    background-size: 600px 600px, 500px 500px;
    background-repeat: no-repeat;
    background-position: left top, right bottom;
    pointer-events: none;
    animation: helpFloat 20s ease-in-out infinite;
}

@keyframes helpFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.how-you-can-help .section-heading {
    position: relative;
    padding-bottom: 15px;
}

.how-you-can-help .section-heading::after {
    left: 50%;
    transform: translateX(-50%);
}

.how-you-can-help .section-intro {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Help Cards */
.help-cards-container {
    max-width: 1200px;
    margin: 0 auto;
}

.help-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(242, 140, 40, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.help-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(242, 140, 40, 0.02) 50%, transparent 70%);
    transform: rotate(-45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.help-card:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translate(50px, 50px);
}

.help-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(242, 140, 40, 0.3);
}

.help-card:focus-within {
    outline: 3px solid rgba(242, 140, 40, 0.5);
    outline-offset: 2px;
}

.help-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #A52A2A 0%, #8B1E1E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.help-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.help-card:hover .help-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #F28C28 0%, #E67E22 100%);
}

.help-card:hover .help-icon i {
    transform: scale(1.1);
}

.help-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #A52A2A;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.help-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.help-btn {
    background: #A52A2A;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 2;
    min-width: 200px;
}

.help-btn:hover {
    background: #8B1E1E;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(165, 42, 42, 0.3);
}

.help-btn:focus {
    outline: 3px solid rgba(165, 42, 42, 0.5);
    outline-offset: 2px;
}

.help-btn i {
    margin-right: 8px;
}

/* Trust Signals */
.trust-signals {
    position: relative;
    z-index: 2;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.9);
    color: #A52A2A;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(165, 42, 42, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(165, 42, 42, 0.1);
    transform: scale(1.05);
}

.trust-badge i {
    margin-right: 8px;
    color: #F28C28;
}

.impact-snippet {
    background: rgba(255, 255, 255, 0.8);
    padding: 15px 25px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(242, 140, 40, 0.2);
    max-width: 400px;
    margin: 0 auto;
}

.impact-text {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.impact-link {
    color: #F28C28;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.impact-link:hover {
    color: #E67E22;
    text-decoration: underline;
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, #A52A2A 0%, #8B1E1E 100%);
    color: white;
    border-radius: 15px 15px 0 0;
    border-bottom: none;
    padding: 20px 25px;
}

.modal-title {
    font-weight: 700;
    font-size: 1.3rem;
}

.modal-title i {
    margin-right: 10px;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 30px 25px;
    background: #FEFEFE;
}

.modal-footer {
    background: #F8F9FA;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0 0 15px 15px;
    padding: 20px 25px;
}

/* Form Styles */
.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 2px solid rgba(165, 42, 42, 0.2);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus,
.form-select:focus {
    border-color: #F28C28;
    box-shadow: 0 0 0 0.2rem rgba(242, 140, 40, 0.25);
    outline: none;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    display: block;
    font-size: 0.875rem;
    color: #dc3545;
    margin-top: 5px;
}

/* Donation Amount Buttons */
.amount-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 15px;
}

.amount-btn {
    background: rgba(165, 42, 42, 0.1);
    color: #A52A2A;
    border: 2px solid rgba(165, 42, 42, 0.3);
    padding: 12px 20px;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 100px;
}

.amount-btn:hover,
.amount-btn.active {
    background: #A52A2A;
    color: white;
    border-color: #A52A2A;
    transform: scale(1.05);
}

.custom-amount-btn {
    background: rgba(242, 140, 40, 0.1);
    color: #F28C28;
    border-color: rgba(242, 140, 40, 0.3);
}

.custom-amount-btn:hover,
.custom-amount-btn.active {
    background: #F28C28;
    color: white;
    border-color: #F28C28;
}

/* Frequency Toggle */
.btn-group .btn-outline-primary {
    border-color: rgba(165, 42, 42, 0.3);
    color: #A52A2A;
}

.btn-group .btn-outline-primary:hover,
.btn-group .btn-check:checked+.btn-outline-primary {
    background: #A52A2A;
    border-color: #A52A2A;
    color: white;
}

/* Payment Options */
.payment-options .form-check {
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(165, 42, 42, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(165, 42, 42, 0.1);
    transition: all 0.3s ease;
}

.payment-options .form-check:hover {
    background: rgba(165, 42, 42, 0.1);
    border-color: rgba(165, 42, 42, 0.2);
}

.payment-options .form-check-input:checked~.form-check-label {
    color: #A52A2A;
    font-weight: 600;
}

.payment-options .form-check-label {
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
}

.payment-options .form-check-label i {
    margin-right: 10px;
    width: 20px;
    color: #F28C28;
}

/* Success/Error States */
.alert {
    border-radius: 10px;
    border: none;
    padding: 15px 20px;
}

.alert-info {
    background: rgba(23, 162, 184, 0.1);
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Loading States */
.btn-loading {
    position: relative;
    pointer-events: none;
}

.btn-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.btn-loading .btn-text {
    opacity: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .help-card {
        padding: 35px 25px;
    }

    .help-icon {
        width: 70px;
        height: 70px;
    }

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

@media (max-width: 992px) {
    .how-you-can-help {
        padding: 60px 0;
    }

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

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .trust-badge {
        text-align: center;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .help-card {
        padding: 25px 20px;
    }

    .help-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .help-icon i {
        font-size: 1.5rem;
    }

    .help-title {
        font-size: 1.3rem;
    }

    .help-description {
        font-size: 0.95rem;
    }

    .help-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
        min-width: 180px;
    }

    .amount-buttons {
        flex-direction: column;
        align-items: center;
    }

    .amount-btn {
        width: 100%;
        max-width: 200px;
    }

    .modal-dialog {
        margin: 10px;
    }

    .modal-body {
        padding: 20px 15px;
    }
}

@media (max-width: 576px) {
    .how-you-can-help .section-intro {
        font-size: 1rem;
    }

    .help-card {
        padding: 20px 15px;
    }

    .help-icon {
        width: 50px;
        height: 50px;
    }

    .help-icon i {
        font-size: 1.3rem;
    }

    .help-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .help-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .help-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 160px;
    }

    .trust-badge {
        font-size: 0.8rem;
        padding: 8px 15px;
        min-width: 180px;
    }

    .impact-snippet {
        padding: 12px 20px;
    }

    .impact-text {
        font-size: 0.9rem;
    }

    .modal-header {
        padding: 15px 20px;
    }

    .modal-title {
        font-size: 1.1rem;
    }

    .modal-body {
        padding: 15px 10px;
    }

    .modal-footer {
        padding: 15px 20px;
    }
}

/* Our Trustees Section */
.our-trustees {
    background-color: #FFF5E1;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.our-trustees::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 30% 30%, rgba(165, 42, 42, 0.02) 0%, transparent 35%),
        radial-gradient(circle at 70% 70%, rgba(242, 140, 40, 0.02) 0%, transparent 35%);
    background-size: 500px 500px, 400px 400px;
    background-repeat: no-repeat;
    background-position: left top, right bottom;
    pointer-events: none;
    animation: trusteesFloat 18s ease-in-out infinite;
}

@keyframes trusteesFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-6px) rotate(0.5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.our-trustees .section-heading {
    position: relative;
    padding-bottom: 15px;
}

.our-trustees .section-heading::after {
    left: 50%;
    transform: translateX(-50%);
}

.our-trustees .section-intro {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Trustees Grid */
.trustees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.trustee-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(242, 140, 40, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.trustee-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(242, 140, 40, 0.02) 50%, transparent 70%);
    transform: rotate(-45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.trustee-card:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translate(30px, 30px);
}

.trustee-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(242, 140, 40, 0.3);
}

.trustee-card:focus-within {
    outline: 3px solid rgba(242, 140, 40, 0.5);
    outline-offset: 2px;
}

/* Trustee Photo */
.trustee-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.trustee-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #A52A2A;
    box-shadow: 0 8px 25px rgba(165, 42, 42, 0.2);
    transition: all 0.4s ease;
}

.trustee-card:hover .trustee-photo img {
    transform: scale(1.05);
    border-color: #F28C28;
    box-shadow: 0 12px 35px rgba(242, 140, 40, 0.3);
}

/* Trustee Info */
.trustee-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #A52A2A;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.trustee-designation {
    font-size: 1rem;
    font-style: italic;
    color: #F28C28;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.trustee-address,
.trustee-mobile {
    color: #777;
    font-size: 0.85rem;
    margin-bottom: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.trustee-address i,
.trustee-mobile i {
    color: #F28C28;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.trustee-mobile {
    margin-bottom: 15px;
}

.trustee-quote {
    font-size: 0.9rem;
    font-style: italic;
    color: #888;
    margin-bottom: 20px;
    padding: 10px 15px;
    background: rgba(242, 140, 40, 0.05);
    border-left: 3px solid #F28C28;
    border-radius: 0 10px 10px 0;
    position: relative;
    z-index: 2;
}

.trustee-quote::before {
    content: "\201C";
    font-size: 2rem;
    color: #F28C28;
    position: absolute;
    top: -5px;
    left: 5px;
    font-family: serif;
}

/* Social Links */
.trustee-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(165, 42, 42, 0.1);
    color: #A52A2A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: #A52A2A;
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.social-link.linkedin:hover {
    background: #0077B5;
}

.social-link.email:hover {
    background: #EA4335;
}

/* Profile Link */
.profile-link {
    display: inline-block;
    color: #F28C28;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 20px;
    border: 2px solid rgba(242, 140, 40, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.profile-link:hover {
    background: #F28C28;
    color: white;
    border-color: #F28C28;
    transform: scale(1.05);
    text-decoration: none;
}

.profile-link i {
    margin-right: 5px;
}

/* View All Button */
.view-all-btn {
    background: transparent;
    color: #A52A2A;
    border: 2px solid #A52A2A;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.view-all-btn:hover {
    background: #A52A2A;
    color: white;
    border-color: #A52A2A;
    transform: scale(1.05);
    text-decoration: none;
}

.view-all-btn i {
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .trustees-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .trustee-card {
        padding: 25px 20px;
    }

    .trustee-photo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 992px) {
    .our-trustees {
        padding: 60px 0;
    }

    .trustees-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 20px;
    }

    .trustee-card {
        padding: 25px 20px;
    }

    .trustee-name {
        font-size: 1.3rem;
    }

    .trustee-designation {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .trustees-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trustee-card {
        padding: 20px 15px;
        margin: 0 10px;
    }

    .trustee-photo {
        width: 90px;
        height: 90px;
        margin-bottom: 15px;
    }

    .trustee-name {
        font-size: 1.2rem;
    }

    .trustee-designation {
        font-size: 0.9rem;
    }

    .trustee-bio {
        font-size: 0.9rem;
    }

    .trustee-quote {
        font-size: 0.85rem;
        padding: 8px 12px;
    }

    .trustee-social {
        gap: 10px;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .profile-link {
        font-size: 0.85rem;
        padding: 6px 15px;
    }

    .view-all-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .our-trustees .section-intro {
        font-size: 1rem;
    }

    .trustee-card {
        padding: 15px 10px;
        margin: 0 5px;
    }

    .trustee-photo {
        width: 80px;
        height: 80px;
    }

    .trustee-name {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .trustee-designation {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .trustee-bio {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .trustee-quote {
        font-size: 0.8rem;
        padding: 6px 10px;
        margin-bottom: 15px;
    }

    .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .profile-link {
        font-size: 0.8rem;
        padding: 5px 12px;
    }

    .view-all-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Contact & Location Section */
.contact-location {
    background-color: #FFF5E1;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* Section Headings */
.section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding: 15px 0;
}

.section-heading h2 {
    font-size: 2.8rem;
    color: #8B1E1E;
    margin-bottom: 1.2rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.section-heading h2::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #E67314, #FFD700, #E67314);
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.section-heading p {
    font-size: 1.2rem;
    color: #555;
    max-width: 750px;
    margin: 1.2rem auto 0;
    line-height: 1.7;
    font-weight: 500;
}

.contact-location .section-heading {
    color: #A52A2A;
    position: relative;
    margin-bottom: 1rem;
}

.contact-location .section-heading::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #F28C28, #A52A2A);
    border-radius: 3px;
}

.contact-location .section-intro {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.contact-card {
    background: #fff;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

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

.contact-subheading {
    color: #A52A2A;
    font-weight: 600;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.contact-subheading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #F28C28, #A52A2A);
    border-radius: 3px;
}

.contact-btn {
    background-color: #A52A2A;
    color: white;
    border: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    padding: 12px;
    font-size: 1.1rem;
}

.contact-btn:hover {
    background-color: #F28C28;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 140, 40, 0.4);
}

.contact-btn:focus {
    box-shadow: 0 0 0 0.25rem rgba(165, 42, 42, 0.25);
}

.directions-btn {
    background-color: #A52A2A;
    color: white;
    border: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
}

.directions-btn:hover {
    background-color: #F28C28;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 140, 40, 0.4);
}

.directions-btn:focus {
    box-shadow: 0 0 0 0.25rem rgba(165, 42, 42, 0.25);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F28C28 0%, #E27B1E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-item h5 {
    color: #A52A2A;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info:hover {
    color: #F28C28;
    text-decoration: underline;
}

.map-container {
    height: 250px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* WhatsApp Chat Button */
.whatsapp-chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Form Validation Styles */
.form-control {
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    padding: 12px 15px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #F28C28;
    box-shadow: 0 0 0 0.25rem rgba(242, 140, 40, 0.25);
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.form-control.is-valid {
    border-color: #198754;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.form-control.is-invalid~.invalid-feedback {
    display: block;
}

/* Success and Error Messages */
.alert {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-location {
        padding: 60px 0;
    }

    .contact-location .section-heading {
        font-size: 2rem;
    }

    .contact-subheading {
        font-size: 1.3rem;
    }

    .whatsapp-chat-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .map-container {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .contact-location {
        padding: 40px 0;
    }

    .contact-location .section-heading {
        font-size: 1.8rem;
    }

    .contact-location .section-intro {
        font-size: 1rem;
    }

    .contact-card {
        padding: 1.5rem !important;
    }

    .contact-btn {
        padding: 10px;
        font-size: 1rem;
    }
}

/* Progress Reports Section */
.progress-reports {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFF0D1 100%);
    position: relative;
    overflow: hidden;
}

/* Home Gallery Section */
.home-gallery-section {
    background: linear-gradient(135deg, #FFF0D1 0%, #FFF9E6 100%);
    position: relative;
    overflow: hidden;
}