/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: clamp(350px, 60vh, 600px);
    overflow: hidden;
    background: var(--primary);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 58, 92, 0.7);
}

.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: clamp(1.8rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: clamp(10px, 2vw, 20px);
    animation: fadeUp 1s ease;
    line-height: 1.2;
}

.slide-content p {
    font-size: clamp(0.9rem, 1.8vw, 1.3rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: clamp(15px, 2.5vw, 30px);
    max-width: 600px;
    animation: fadeUp 1s ease 0.3s both;
    line-height: 1.5;
}

.slide-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    animation: fadeUp 1s ease 0.6s both;
}

.slide-buttons a {
    flex-shrink: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SLIDER CONTROLS ===== */
.slider-controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: none;
    width: clamp(35px, 4vw, 50px);
    height: clamp(35px, 4vw, 50px);
    border-radius: 50%;
    font-size: clamp(0.9rem, 1.2vw, 1.2rem);
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.slider-controls button:hover {
    background: var(--accent);
}

.slider-prev {
    left: clamp(10px, 2vw, 20px);
}

.slider-next {
    right: clamp(10px, 2vw, 20px);
}

.slider-dots {
    position: absolute;
    bottom: clamp(15px, 3vw, 30px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: clamp(6px, 1vw, 10px);
    z-index: 2;
}

.slider-dots button {
    width: clamp(10px, 1.2vw, 12px);
    height: clamp(10px, 1.2vw, 12px);
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dots button.active {
    background: var(--accent);
    border-color: var(--accent);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: clamp(40px, 8vw, 80px) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: clamp(20px, 3vw, 30px);
    margin-bottom: clamp(30px, 5vw, 50px);
}

.about-item {
    text-align: center;
    padding: clamp(20px, 3vw, 30px) clamp(15px, 2vw, 20px);
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    transition: var(--transition);
}

.about-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.about-icon {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--accent);
    margin-bottom: 12px;
}

.about-item h3 {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    margin-bottom: 8px;
}

.about-item p {
    opacity: 0.9;
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    line-height: 1.6;
}

/* ===== STATS ===== */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
    gap: clamp(15px, 3vw, 30px);
    background: var(--primary-light);
    padding: clamp(20px, 4vw, 40px);
    border-radius: var(--radius);
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
}

.stat-label {
    font-size: clamp(0.85rem, 1vw, 1rem);
    opacity: 0.9;
}

/* ===== PROGRAMS SECTION ===== */
.programs-section {
    padding: clamp(40px, 8vw, 80px) 0;
    background: var(--primary);
}

.programs-section .section-title {
    color: var(--white);
}

.programs-section .section-title::after {
    background: var(--white);
}

.programs-section .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(20px, 3vw, 30px);
}

.program-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.program-image {
    position: relative;
    height: clamp(180px, 25vw, 220px);
    background-size: cover;
    background-position: center;
}

.program-icon {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: clamp(40px, 4.5vw, 50px);
    height: clamp(40px, 4.5vw, 50px);
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
}

.program-content {
    padding: clamp(18px, 2.5vw, 25px);
}

.program-content h3 {
    color: var(--primary);
    font-size: clamp(1.1rem, 1.3vw, 1.2rem);
    margin-bottom: 8px;
}

.program-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: clamp(0.85rem, 0.95vw, 0.95rem);
    line-height: 1.6;
}

/* ===== LEADERSHIP SECTION ===== */
.leadership-section {
    padding: clamp(40px, 8vw, 80px) 0;
    background: #f0f2f5;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(20px, 3vw, 30px);
}

.leadership-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.leader-image {
    width: 100%;
    height: clamp(200px, 28vw, 250px);
    background-size: cover;
    background-position: center;
}

.leader-content {
    padding: clamp(18px, 2.5vw, 25px);
}

.leader-content h3 {
    color: var(--primary);
    font-size: clamp(1rem, 1.2vw, 1.2rem);
}

.leader-content h4 {
    color: var(--accent);
    font-size: clamp(0.85rem, 0.95vw, 0.95rem);
    margin-bottom: 12px;
}

.leader-message {
    position: relative;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.leader-message i {
    color: var(--accent);
    font-size: 1.1rem;
    opacity: 0.5;
}

.leader-message p {
    font-size: clamp(0.85rem, 0.9vw, 0.95rem);
    color: #555;
    margin-top: 4px;
    line-height: 1.6;
}

/* ===== EVENTS SECTION ===== */
.events-section {
    padding: clamp(40px, 8vw, 80px) 0;
    background: var(--white);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(20px, 3vw, 30px);
}

.event-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.event-image {
    position: relative;
    height: clamp(180px, 25vw, 220px);
    background-size: cover;
    background-position: center;
}

.event-date {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 58, 92, 0.9));
    padding: clamp(12px, 2vw, 20px);
    color: var(--white);
    font-weight: 500;
    font-size: clamp(0.85rem, 0.95vw, 1rem);
}

.event-date i {
    margin-right: 8px;
    color: var(--accent);
}

.event-content {
    padding: clamp(18px, 2.5vw, 25px);
}

.event-content h3 {
    color: var(--primary);
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    margin-bottom: 8px;
}

.event-content p {
    color: #666;
    font-size: clamp(0.85rem, 0.9vw, 0.95rem);
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: clamp(40px, 8vw, 80px) 0;
    background: var(--primary-light);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* ===== RESPONSIVE TABLET ===== */
@media (max-width: 1024px) {
    .slide-content h1 {
        font-size: clamp(1.8rem, 4.5vw, 3rem);
    }
    
    .slide-content p {
        font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    }
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 768px) {
    .hero-slider {
        height: clamp(300px, 50vh, 450px);
    }
    
    .slide-content {
        text-align: center;
        padding: 0 15px;
    }
    
    .slide-content h1 {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }
    
    .slide-content p {
        font-size: clamp(0.85rem, 2vw, 1rem);
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .slide-buttons {
        justify-content: center;
    }
    
    .slide-buttons a {
        flex: 1 1 auto;
        min-width: 120px;
    }
    
    .slider-controls button {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .slider-prev {
        left: 8px;
    }
    
    .slider-next {
        right: 8px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
}

/* ===== RESPONSIVE SMALL MOBILE ===== */
@media (max-width: 480px) {
    .hero-slider {
        height: clamp(250px, 45vh, 350px);
    }
    
    .slide-content h1 {
        font-size: 1.4rem;
    }
    
    .slide-content p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .slide-buttons a {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .slider-controls button {
        width: 25px;
        height: 25px;
        font-size: 0.6rem;
    }
    
    .slider-dots button {
        width: 8px;
        height: 8px;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
        padding: 15px;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.4rem;
    }
    
    .cta-content p {
        font-size: 0.85rem;
    }
}
/* ===== LEADERSHIP CIRCLE IMAGES ===== */
.leader-image-circle {
    padding-top: clamp(20px, 3vw, 30px);
    text-align: center;
}

.leader-image-circle img {
    transition: transform 0.3s ease;
}

.leadership-card:hover .leader-image-circle img {
    transform: scale(1.05);
}

/* ===== RESPONSIVE LEADERSHIP ===== */
@media (max-width: 768px) {
    .leader-image-circle div {
        width: clamp(100px, 25vw, 150px) !important;
        height: clamp(100px, 25vw, 150px) !important;
    }
}

@media (max-width: 480px) {
    .leader-image-circle div {
        width: clamp(80px, 30vw, 120px) !important;
        height: clamp(80px, 30vw, 120px) !important;
    }
}
