/* style.css for PIPS School - Modern UI */
body {
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    background: #f4f7fa;
    color: #222;
}
.navbar {
    background: linear-gradient(90deg, #00A551 80%, #007a3d 100%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.navbar-brand {
    font-size: 2rem;
    letter-spacing: 2px;
}
.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin-right: 1rem;
    transition: color 0.2s;
}
.navbar-nav .nav-link:hover {
    color: #e0e0e0 !important;
}
.hero-banner {
    background: linear-gradient(120deg, #00A551 60%, #007a3d 100%);
    color: #fff;
    padding: 80px 0 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-banner img {
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    margin-bottom: 32px;
}
.hero-banner h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.hero-banner p {
    font-size: 1.3rem;
    margin-bottom: 32px;
}
.cta-btn {
    background: #fff;
    color: #00A551;
    border-radius: 30px;
    padding: 14px 38px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
    background: #00A551;
    color: #fff;
}
.mission-section {
    background: #fff;
    padding: 60px 0;
    border-radius: 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    margin-top: -40px;
}
.mission-section img {
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.quick-links .card {
    border: none;
    background: linear-gradient(120deg, #e9ecef 80%, #d1e7dd 100%);
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.2s;
}
.quick-links .card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.quick-links a {
    font-size: 1.1rem;
    color: #00A551 !important;
    font-weight: 600;
    letter-spacing: 1px;
}
.news-events {
    background: #fff;
    padding: 60px 0;
    border-radius: 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    margin-top: 40px;
}
.news-events img {
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.list-group-item {
    font-size: 1.05rem;
    background: #f4f7fa;
    border: none;
    border-bottom: 1px solid #e0e0e0;
}
footer {
    background: #e9ecef;
    color: #222;
    font-size: 1rem;
    border-top: 1px solid #d1e7dd;
}
/* Animations */
.hero-banner, .mission-section, .quick-links, .news-events {
    animation: fadeInUp 1s ease;
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}
/* Responsive */
@media (max-width: 768px) {
    .hero-banner h1 { font-size: 2.1rem; }
    .mission-section, .news-events { padding: 30px 0; }
    .quick-links .card { margin-bottom: 16px; }
}
