/* Hero Section */
:root {
    --primary: #0A1F44;
    --gold: #D4AF37;
    --white: #FFFFFF;
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(145deg, #0A1F44 0%, #000000 100%);
    position: relative;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-icon-main {
    margin-bottom: 2.5rem;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: pulse 2s infinite;
}

.hero-badge {
    margin-bottom: 0.5rem;
}

.badge-ribbon {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-block;
}

.badge-ribbon {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    color: var(--bs-gold);
    font-size: 0.9rem;
    display: inline-block;
    text-align: center;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin: 0.25rem 0 1.5rem 0;
    position: relative;
    line-height: 1;
    color: var(--gold) !important;
}

.tagline-text {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.tagline-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    color: var(--gold);
    margin: 0.25rem 0 1.5rem 0;
}

.tagline-icons i {
    transition: transform 0.3s ease;
}

.tagline-icons i:hover {
    transform: scale(1.2);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Gallery Preview Section */
.gallery-preview {
    background: linear-gradient(to bottom, var(--darker) 0%, var(--dark) 100%);
}

.preview-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: all 0.3s ease;
}

.preview-content {
    color: white;
    text-align: center;
    width: 100%;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.preview-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.preview-card:hover img {
    transform: scale(1.1);
}

.preview-card:hover .preview-overlay {
    opacity: 1;
}

.preview-card:hover .preview-content {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .preview-card {
        aspect-ratio: 16/9;
    }
}

.title-accent {
    display: block;
    width: 80px;
    height: 4px;
    background: var(--bs-gold);
    margin: 1rem auto;
}

/* Impact Section */
.impact-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 5rem 0;
}

.impact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-icon {
    width: 60px;
    height: 60px;
    background: var(--bs-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

/* Programs Grid */
.program-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.program-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}

.program-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.program-card:hover .program-image {
    transform: scale(1.05);
}

/* Call to Action */
.cta-section {
    background: linear-gradient(45deg, var(--primary) 0%, #000000 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') repeat;
    opacity: 0.1;
}

/* Stats Counter */
.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bs-gold);
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    margin: 1rem;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}