:root {
    --primary: #004d40; /* Deep Islamic Green */
    --secondary: #d4af37; /* Gold */
    --accent: #f39c12;
    --light: #f8f9fa;
    --dark: #1a1a1a;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background-color: var(--light); color: var(--dark); line-height: 1.6; }

/* Sticky Professional Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.logo-container { display: flex; align-items: center; gap: 12px; }
.site-logo { height: 55px; width: auto; transition: 0.3s; }
.logo-text { font-size: 20px; font-weight: 700; color: var(--primary); line-height: 1.2; }
.logo-text span { color: var(--secondary); display: block; font-size: 14px; font-weight: 400; }

.nav-links { list-style: none; display: flex; gap: 25px; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 500; font-size: 15px; transition: 0.3s; }
.nav-links a:hover { color: var(--secondary); }

/* CEO Spotlight */
.ceo-section { padding: 100px 8%; background: var(--white); }
.ceo-flex { display: flex; align-items: center; gap: 60px; max-width: 1200px; margin: 0 auto; }
.ceo-image { flex: 1; position: relative; }
.ceo-image img { 
    width: 100%; border-radius: 20px; 
    box-shadow: var(--shadow); 
    filter: grayscale(20%); transition: 0.5s;
}
.ceo-image::after { 
    content: ''; position: absolute; top: -20px; left: -20px; 
    width: 100px; height: 100px; border-top: 5px solid var(--secondary); border-left: 5px solid var(--secondary); 
}
.ceo-text { flex: 1.5; }
.ceo-text h2 { font-family: 'Amiri', serif; font-size: 42px; color: var(--primary); margin-bottom: 20px; }
.ceo-quote { font-style: italic; border-left: 4px solid var(--secondary); padding-left: 20px; margin-bottom: 20px; font-size: 18px; }

/* Interactive Schedule Cards */
.schedule-section { padding: 80px 8%; background: #f1f3f5; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 36px; color: var(--primary); position: relative; padding-bottom: 15px; }
.section-header h2::after { 
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); 
    width: 60px; height: 4px; background: var(--secondary); 
}

.schedule-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.schedule-card { 
    background: var(--white); border-radius: 20px; overflow: hidden; 
    box-shadow: var(--shadow); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
}
.schedule-card:hover { transform: translateY(-15px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }

.card-img-placeholder { 
    height: 180px; background: var(--primary); 
    display: flex; align-items: center; justify-content: center; color: white; font-size: 40px;
}
.card-content { padding: 25px; }
.card-tag { 
    background: var(--secondary); color: white; padding: 4px 12px; 
    border-radius: 50px; font-size: 11px; text-transform: uppercase; font-weight: 700; 
}
.schedule-card h3 { margin: 15px 0 10px; color: var(--primary); font-size: 22px; }
.card-info { display: flex; justify-content: space-between; font-size: 14px; color: #666; margin-bottom: 20px; }

.btn-card { 
    display: block; text-align: center; background: var(--primary); color: white; 
    text-decoration: none; padding: 12px; border-radius: 10px; font-weight: 600; transition: 0.3s;
}
.btn-card:hover { background: var(--secondary); }

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; 
    background: #25d366; color: white; width: 60px; height: 60px; 
    border-radius: 50px; display: flex; align-items: center; justify-content: center;
    font-size: 30px; box-shadow: 0 10px 20px rgba(0,0,0,0.2); z-index: 1000;
    transition: 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* Testimonials */
.testi-section { padding: 80px 8%; text-align: center; }
.testi-container { display: flex; gap: 20px; overflow-x: auto; padding: 20px 0; scroll-snap-type: x mandatory; }
.testi-item { 
    min-width: 300px; background: white; padding: 40px; border-radius: 15px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); scroll-snap-align: center;
}

@media (max-width: 768px) {
    .ceo-flex { flex-direction: column; text-align: center; }
    .nav-links { display: none; } /* Simplified for demo */
}
/* Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    height: 70vh; /* Adjust height for desktop */
    overflow: hidden;
    background: #000;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active { opacity: 1; z-index: 1; }

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Makes text pop */
}

.slide-content {
    position: absolute;
    text-align: center;
    color: white;
    z-index: 2;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease-out;
}

.slide-content h1 {
    font-size: 52px;
    font-family: 'Amiri', serif;
    margin-bottom: 15px;
    color: var(--secondary);
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 300;
}

.btn-slider {
    padding: 12px 30px;
    background: var(--secondary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-slider:hover { background: var(--primary); }

/* Animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active { background: var(--secondary); }

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .slider-container { height: 50vh; } /* Shorter on mobile */
    .slide-content h1 { font-size: 30px; }
    .slide-content p { font-size: 14px; }
    .btn-slider { padding: 8px 20px; font-size: 14px; }
    
    .logo-text { font-size: 16px; }
    .site-logo { height: 40px; }
    
    /* CEO Section Mobile Fix */
    .ceo-flex { flex-direction: column !important; text-align: center; }
    .ceo-image::after { display: none; }
}