body {
    font-family: 'Poppins', sans-serif;
    background-color: #F4F1DE;
    color: #222222;
    margin: 0;
    padding: 0;
}

header {
    background: #D62828;
    padding: 10px 0;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    transition: 0.3s;
}

.nav-link:hover {
    color: #F77F00 !important;
}

.first {
    background: linear-gradient(to right, #D62828, #F77F00);
    color: white;
    padding: 40px 0;
}

.first h1 {
    font-size: 2rem;
}

.second {
    background-color: #F4F1DE;
    text-align: center;
    padding: 60px 0;
}

.second h1 {
    color: #D62828;
    font-size: 2.5rem;
}

.second p {
    color: #2A9D8F;
    font-size: 1.2rem;
}

.carousel-inner img {
    height: 500px;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
    border-radius: 5px;
}

#mission-vision {
    background: white;
    padding: 60px 0;
}

#mission-vision h2 {
    color: #D62828;
}

#mission-vision p {
    color: #444;
}

.footer {
    background: #D62828;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    color: #F77F00;
}

html {
    scroll-behavior: smooth;
}

.nav-link {
    transition: color 0.3s ease-in-out, transform 0.2s;
}

.nav-link:hover {
    color: #F77F00 !important;
    transform: scale(1.1);
}

button {
    background-color: #D62828;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

button:hover {
    background-color: #F77F00;
    transform: scale(1.1);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.second h1,
.second p {
    animation: fadeInUp 1s ease-in-out;
}

.carousel-item img {
    transition: transform 0.5s ease-in-out;
}

.carousel-item:hover img {
    transform: scale(1.05);
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease-in-out;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #F77F00;
}

