     *{
        outline: none;
     }
     .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }
                 .hero-marquee {
                     position: absolute;
                     top: 0;
                     left: 0;
                     width: 100%;
                     background-color: #ffffff;
                     color: #0f172a;
                     z-index: 25;
                     overflow: hidden;
                     border-bottom: 1px solid rgba(15, 23, 42, 0.15);
                 }
        
                 .hero-marquee__track {
                     display: flex;
                     width: max-content;
                     animation: hero-marquee-scroll 28s linear infinite;
                 }
        
                 .hero-marquee__group {
                     display: flex;
                     align-items: center;
                     gap: 1.5rem;
                     white-space: nowrap;
                     padding: 0.65rem 1.5rem;
                     font-size: 0.95rem;
                     font-weight: 600;
                 }
        
                 .hero-marquee__label {
                     text-transform: uppercase;
                     letter-spacing: 0.08em;
                     color: #E68B31;
                 }
        
                 .hero-marquee__status {
                     font-weight: 700;
                 }
        
                 .hero-marquee:hover .hero-marquee__track {
                     animation-play-state: paused;
                 }
        
                 @keyframes hero-marquee-scroll {
                     0% {
                         transform: translateX(0);
                     }
        
                     100% {
                         transform: translateX(-50%);
                     }
                 }
        .hero-overlay {
            background: linear-gradient(to right, rgba(0,0,0,0.8) 0%,2 rgba(0,0,0,0.) 100%);
        }
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background: #011535;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }
        .trustee-card:hover img {
            transform: scale(1.05);
        }
        .event-date {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color:rgb(30 58 138 / var(--tw-text-opacity, 1));
            color: white;
            padding: 8px 16px;
            border-radius: 9999px;
            font-weight: 600;
        }
          .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }
        /* .event-date {
            position: relative;
        } */
        /* .event-date::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            bottom: -8px;
            left: 0;
            background-color: #d4af37;
        } */
        .timeline-item:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 7px;
            top: 24px;
            height: calc(100% - 24px);
            width: 2px;
            background-color: #e5e7eb;
        }
        .modal-overlay {
            background-color: rgba(0,0,0,0.7);
        }
        .modal-content {
            max-height: 90vh;
            overflow-y: auto;
        }
        .section-title {
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            bottom: -8px;
            left: 0;
            background-color: #E68B31;
        }
        .team-card:hover img {
            transform: scale(1.05);
        }
        .social-icon {
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            transform: translateY(-3px);
            color: #E68B31;
        }
        .contact-input:focus {
            border-color: #E68B31;
            box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
        }

                
        .program-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }
        .accordion-item {
            border-bottom: 1px solid #e5e7eb;
        }
        .accordion-header {
            transition: all 0.3s ease;
        }
        .accordion-header:hover {
            color: #d4af37;
        }
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .accordion-content.active {
            max-height: 500px;
        }
        .rotate-180 {
            transform: rotate(180deg);
        }
         .volunteer-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }
        .volunteer-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            margin-bottom: 20px;
        }
         .donation-option:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        .donation-option.selected {
            border-color: #d4af37;
            background-color: rgba(212, 175, 55, 0.05);
        }
        .form-input:focus {
            border-color: #d4af37;
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
        }
        .payment-method {
            transition: all 0.3s ease;
        }
        .payment-method.selected {
            border-color: #d4af37;
            background-color: rgba(212, 175, 55, 0.05);
        }