/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.hero h1 span {
    color: #ffc107;  /* Yellow highlight for NAV bar*/
}

.hero .btn {
    padding: 12px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.hero .btn:hover {
    background-color: #ffc107;
    color: #000;
    transform: translateY(-5px);
}

/* About Section */
.about-section {
    background-color: #ffffff;
    border-top: 5px solid #0d6efd;
    border-bottom: 5px solid #0d6efd;
    padding: 60px 20px;
}

.about-section h2 {
    color: #0d6efd;
}

.about-section p {
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: #0d6efd;
    color: #fff;
}

footer a {
    color: #ffc107;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about-section {
        text-align: center;
    }

    .about-section img {
        margin-bottom: 20px;
    }
}
