
    /* Hero Carousel - Images FULL WIDTH, maintain original height */
    .hero-carousel {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 500px;
        overflow: hidden;
        background-color: #1a1a2e;
    }
    
    .hero-carousel .carousel-slide {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 500px;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        display: none;
    }
    
    .hero-carousel .carousel-slide.active {
        display: block;
    }
    
    .hero-carousel .carousel-slide::before {
        content: "";
        display: block;
        padding-top: 56.25%;
    }
    
    .carousel-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(90deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4), transparent);
        color: white;
        padding: 40px 0;
        z-index: 10;
    }
    
    .carousel-overlay h1 {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 15px;
    }
    
    .carousel-overlay p {
        font-size: 18px;
    }
    
    /* Welcome Section - Heart Icon as BIG DROP CAP on LEFT */
    .welcome-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #ffffff 0%, #f0f7f0 100%);
    }
    
    .welcome-wrapper {
        display: flex;
        align-items: flex-start;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
        flex-wrap: wrap;
    }
    
    .welcome-icon-large {
        flex: 0 0 auto;
        text-align: center;
    }
    
    .static-icon i {
        font-size: 180px;
        color: #dc3545;
        background: linear-gradient(135deg, #dc3545, #ff6b6b);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        display: block;
        line-height: 1;
        margin-top: 10px;
    }
    
    .welcome-content {
        flex: 1;
        text-align: left;
    }
    
    .welcome-title {
        font-size: 28px;
        font-weight: 700;
        color: #ffd700;
        margin-bottom: 20px;
        line-height: 1.3;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    }
    
    .welcome-text {
        font-size: 1.05rem;
        line-height: 1.8;
        color: #555;
        margin-bottom: 25px;
    }
    
    .welcome-buttons {
        display: flex;
        gap: 20px;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .btn-donate-welcome, .btn-about {
        padding: 10px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        font-size: 0.9rem;
        background: transparent;
    }
    
    .btn-donate-welcome {
        color: #dc3545;
        border: 2px solid #dc3545;
    }
    
    .btn-donate-welcome:hover {
        background: #dc3545;
        color: white;
        transform: translateY(-3px);
    }
    
    .btn-about {
        color: #2c7a4d;
        border: 2px solid #2c7a4d;
    }
    
    .btn-about:hover {
        background: #2c7a4d;
        color: white;
        transform: translateY(-3px);
    }
    
    /* Team & Testimonials Section */
    .team-testimonials-section {
        padding: 60px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
    }
    
    .team-column, .testimonials-column {
        display: flex;
    }
    
    .team-messages-card {
        background: white;
        border-radius: 24px;
        padding: 30px;
        height: 100%;
        width: 100%;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        transition: transform 0.3s ease;
    }
    
    .testimonials-card {
        background: white;
        border-radius: 24px;
        padding: 25px;
        height: 100%;
        width: 100%;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        transition: transform 0.3s ease;
    }
    
    .team-messages-card:hover, .testimonials-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }
    
    .team-messages-header, .testimonials-header {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 28px;
        font-weight: 700;
        color: #2c7a4d;
        margin-bottom: 12px;
    }
    
    .title-underline {
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #2c7a4d, #ffd700);
        margin: 0 auto 15px auto;
        border-radius: 3px;
    }
    
    .team-intro-text, .testimonials-intro {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.5;
    }
    
    .team-video-card {
        border-radius: 20px;
        overflow: hidden;
        background: white;
        transition: transform 0.3s ease;
        border: 3px solid #2c7a4d;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .team-video-card:hover {
        transform: scale(1.02);
        border-color: #ffd700;
    }
    
    .team-video-wrapper {
        position: relative;
        cursor: pointer;
    }
    
    .team-large-photo {
        width: 100%;
        height: auto;
        display: block;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }
    
    .team-video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .team-video-wrapper:hover .team-video-overlay {
        opacity: 1;
    }
    
    .instagram-play-btn {
        display: flex;
        align-items: center;
        gap: 12px;
        background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
        color: white;
        padding: 10px 20px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: transform 0.3s ease;
    }
    
    .instagram-play-btn i {
        font-size: 1.4rem;
    }
    
    .instagram-play-btn:hover {
        transform: scale(1.05);
        color: white;
    }
    
    .team-message-caption {
        padding: 15px;
        text-align: center;
        background: #f9f9f9;
        border-top: 2px solid #2c7a4d;
    }
    
    .team-message-caption span {
        font-size: 0.85rem;
        color: #333;
        font-style: italic;
    }
    
    .welcome-testimonials {
        margin-top: 10px;
    }
    
    .testimonials-carousel {
        overflow: hidden;
        position: relative;
    }
    
    .testimonials-container {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }
    
    .testimonial-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .reduced-card {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 12px;
        padding: 15px 20px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        margin: 5px;
    }
    
    .reduced-card:hover {
        transform: scale(1.02);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    
    .testimonial-quote-icon i {
        font-size: 28px;
        color: #2c7a4d;
        opacity: 0.5;
        margin-bottom: 10px;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #555;
        margin-bottom: 12px;
        font-style: italic;
    }
    
    .testimonial-author {
        font-size: 0.95rem;
        font-weight: 700;
        color: #2c7a4d;
        margin-bottom: 2px;
    }
    
    .testimonial-role {
        font-size: 0.75rem;
        color: #888;
        margin-bottom: 8px;
    }
    
    .testimonial-rating i {
        color: #ffc107;
        font-size: 11px;
        margin: 0 1px;
    }
    
    .floating-card {
        animation: float 3s ease-in-out infinite;
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-5px); }
    }
    
    .testimonial-dots {
        text-align: center;
        margin-top: 15px;
    }
    
    .testimonial-dot {
        display: inline-block;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255,255,255,0.7);
        margin: 0 4px;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .testimonial-dot.active {
        background: #ffd700;
        width: 20px;
        border-radius: 10px;
    }
    
    /* News & Events Section */
    .two-column-section {
        padding: 60px 0;
        background: white;
    }
    
    .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
    }
    
    .btn-view-all {
        color: hsl(341, 100%, 54%);
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
    }
    
    .news-card {
        display: flex;
        background: #f8f9fa;
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s;
        height: 100%;
    }
    
    .news-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px #5308e91a;
    }
    
    .news-image {
        width: 120px;
        height: 120px;
        object-fit: cover;
        flex-shrink: 0;
    }
    
    .news-content {
        padding: 15px;
        flex: 1;
    }
    
    .news-date {
        font-size: 12px;
        color: hsl(20, 88%, 45%);
        margin-bottom: 8px;
        font-weight: 500;
    }
    
    .news-title {
        font-size: 16px;
        font-weight: 700;
        color: #333;
        margin-bottom: 8px;
    }
    
    .news-excerpt {
        font-size: 13px;
        color: #666;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    
    .btn-read {
        color: #2c7a4d;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
    }
    
    .events-carousel-container {
        overflow: hidden;
        position: relative;
    }
    
    .events-carousel-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
        gap: 20px;
    }
    
    .event-card {
        flex: 0 0 calc(33.333% - 14px);
        background: #f8f9fa;
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s;
    }
    
    .event-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    
    .event-image {
        width: 100%;
        height: 160px;
        object-fit: cover;
    }
    
    .event-content {
        padding: 15px;
    }
    
    .event-date-badge {
        background: hsl(95, 96%, 42%);
        color: white;
        padding: 3px 10px;
        border-radius: 20px;
        font-size: 11px;
        display: inline-block;
        margin-bottom: 10px;
    }
    
    .event-card-title {
        font-size: 16px;
        font-weight: 700;
        color: #333;
        margin-bottom: 8px;
    }
    
    .event-card-excerpt {
        font-size: 13px;
        color: #666;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    
    .event-card-location {
        font-size: 12px;
        color: #888;
    }
    
    .carousel-nav {
        display: flex;
        gap: 10px;
    }
    
    .carousel-btn {
        background: #2c7a4d;
        color: white;
        border: none;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .carousel-btn:hover {
        background: #1e5a38;
        transform: scale(1.05);
    }
    
    .gallery-item {
        overflow: hidden;
        border-radius: 12px;
        cursor: pointer;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
    }
    
    .gallery-item.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .gallery-img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: transform 0.3s;
    }
    
    .gallery-img:hover {
        transform: scale(1.05);
    }
    
    .lightbox {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.9);
        z-index: 9999;
        cursor: pointer;
    }
    
    .lightbox.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .lightbox-close {
        position: absolute;
        top: 20px;
        right: 35px;
        color: white;
        font-size: 40px;
        cursor: pointer;
    }
    
    .lightbox img {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
    }
    
    /* Responsive */
    @media (max-width: 1200px) {
        .carousel-overlay h1 {
            font-size: 36px;
        }
    }
    
    @media (max-width: 992px) {
        .welcome-title {
            font-size: 24px;
        }
        .section-title {
            font-size: 24px;
        }
        .event-card {
            flex: 0 0 calc(50% - 10px);
        }
        .carousel-overlay h1 {
            font-size: 32px;
        }
        .carousel-overlay p {
            font-size: 16px;
        }
        .hero-carousel {
            min-height: 400px;
        }
        .hero-carousel .carousel-slide {
            min-height: 400px;
        }
    }
    
    @media (max-width: 768px) {
        .hero-carousel {
            min-height: 300px;
        }
        .hero-carousel .carousel-slide {
            min-height: 300px;
        }
        .carousel-overlay {
            background: linear-gradient(90deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
            padding: 25px 0;
        }
        .carousel-overlay h1 {
            font-size: 24px;
        }
        .carousel-overlay p {
            font-size: 14px;
        }
        .welcome-section {
            padding: 50px 0;
        }
        .welcome-wrapper {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 20px;
        }
        .static-icon i {
            font-size: 100px;
            margin-top: 0;
        }
        .welcome-content {
            text-align: center;
        }
        .welcome-buttons {
            justify-content: center;
        }
        .welcome-title {
            font-size: 22px;
        }
        .team-messages-card, .testimonials-card {
            padding: 20px;
            margin-bottom: 20px;
        }
        .reduced-card {
            padding: 12px 15px;
        }
        .testimonial-text {
            font-size: 0.8rem;
        }
        .event-card {
            flex: 0 0 100%;
        }
        .news-card {
            flex-direction: column;
        }
        .news-image {
            width: 100%;
            height: 150px;
        }
        .gallery-img {
            height: 180px;
        }
    }
    
    @media (max-width: 480px) {
        .hero-carousel {
            min-height: 250px;
        }
        .hero-carousel .carousel-slide {
            min-height: 250px;
        }
        .carousel-overlay h1 {
            font-size: 20px;
        }
        .carousel-overlay p {
            font-size: 12px;
        }
        .welcome-section {
            padding: 40px 0;
        }
        .static-icon i {
            font-size: 70px;
        }
        .welcome-title {
            font-size: 18px;
        }
        .welcome-text {
            font-size: 0.9rem;
            margin-bottom: 25px;
        }
        .btn-donate-welcome, .btn-about {
            padding: 8px 18px;
            font-size: 0.8rem;
        }
        .reduced-card {
            padding: 10px 12px;
        }
        .testimonial-text {
            font-size: 0.75rem;
        }
        .testimonial-author {
            font-size: 0.85rem;
        }
    }

    /* Video Play Indicator Styles */
    .team-video-wrapper {
        position: relative;
        cursor: pointer;
    }
    
    .video-play-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 5;
        transition: all 0.3s ease;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    
    .play-button i {
        font-size: 28px;
        color: #2c7a4d;
        margin-left: 5px;
    }
    
    .play-text {
        color: white;
        font-size: 14px;
        font-weight: 600;
        margin-top: 12px;
        background: rgba(0,0,0,0.6);
        padding: 5px 15px;
        border-radius: 30px;
        letter-spacing: 1px;
    }
    
    .team-video-wrapper:hover .video-play-overlay {
        background: rgba(0, 0, 0, 0.5);
    }
    
    .team-video-wrapper:hover .play-button {
        transform: scale(1.1);
        background: white;
    }
    
    .team-video-wrapper:hover .play-button i {
        color: #dc3545;
    }
    
    /* Hide the main overlay initially, show on hover */
    .team-video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 10;
    }
    
    .team-video-wrapper:hover .team-video-overlay {
        opacity: 1;
    }
    
    .team-video-wrapper:hover .video-play-overlay {
        opacity: 0;
    }
    
    @media (max-width: 768px) {
        .play-button {
            width: 50px;
            height: 50px;
        }
        .play-button i {
            font-size: 20px;
        }
        .play-text {
            font-size: 11px;
            padding: 4px 12px;
        }
    }

