/* Reset and General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #f8f9fa;
    color: #333;
    text-align: center;
    padding-top: 80px;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ff6f61;
    color: white;
    padding: 15px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo {
    width: 80px;
    height: auto;
    animation: fadeIn 1.5s ease-in-out;
}

header h1 {
    font-size: 24px;
    font-weight: bold;
    flex: 1;
    text-align: center;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    display: none;
}

/* Navigation Bar */
nav {
    background: #343a40;
    padding: 15px 0;
    margin-top: 80px;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    transition: 0.3s;
}

.nav-links a:hover {
    background: #ff9800;
    border-radius: 5px;
}

/* Sections */
section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
    animation: fadeIn 1s ease-in-out;
}

h2 {
    color: #ff5722;
    margin-bottom: 15px;
    font-size: 28px;
}

/* We Provide Section */
.we-provide {
    background: #fff3e0;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    animation: slideIn 1s ease-in-out;
}

.we-provide h3 {
    margin-bottom: 10px;
    color: #ff9800;
}

.we-provide ul {
    list-style: none;
    padding-left: 20px;
}

.we-provide li {
    padding: 8px 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-in-out forwards;
}

.we-provide li:nth-child(1) { animation-delay: 0.2s; }
.we-provide li:nth-child(2) { animation-delay: 0.4s; }
.we-provide li:nth-child(3) { animation-delay: 0.6s; }
.we-provide li:nth-child(4) { animation-delay: 0.8s; }

.we-provide li::before {
    content: '✔';
    color: #ff5722;
    margin-right: 10px;
    font-weight: bold;
}

/* Programs */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.program-card {
    background: linear-gradient(135deg, #ffa726, #ff7043);
    padding: 20px;
    border-radius: 10px;
    font-weight: bold;
    color: white;
    transition: transform 0.3s ease, background 0.3s ease;
    text-align: center;
}

.program-card:hover {
    transform: scale(1.05);
    background: #ff9800;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Contact */
#contact p {
    font-size: 18px;
    margin-bottom: 10px;
}

#contact a {
    color: #ff5722;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

#contact a:hover {
    color: #ff9800;
}

/* Footer */
footer {
    background: #343a40;
    color: white;
    padding: 15px 0;
    margin-top: 20px;
    font-size: 16px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
