/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    background-color: #f4f4f4;
    line-height: 1.6;
}

/* Navigation Bar Styles */
nav {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo-img, .footer-logo-img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-links li a i {
    margin-right: 8px;
}

.menu-btn {
    display: none;
    color: #fff;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Main Button Styles */
.main-btn {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
    transition-duration: 0.4s;
}

.main-btn:hover {
    background-color: #45a049; /* Darker Green */
}

.main-btn i {
    margin-left: 8px;
}

/* Section Styles */
.section {
    padding: 60px 20px;
    text-align: center;
    margin-top: 70px; /* Adjust for fixed navigation bar */
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.hero {
    background: url('image/courses.jpeg') no-repeat center center/cover;
    color: #fff;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
}

.course-category {
    text-align: left;
    margin: 20px 0;
}

.course-category h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.course-category ul {
    list-style: none;
    padding: 0;
}

.course-category ul li {
    margin: 5px 0;
}

.course-category ul li i {
    margin-right: 10px;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

.footer-links li {
    margin: 0 15px;
}

.footer-links li a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.footer-links li a i {
    margin-right: 8px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #333;
        position: absolute;
        top: 60px;
        left: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }
}
/* Style for Apply Now Buttons */
.apply-btn {
    display: inline-block;
    background-color: #ff6600; /* Bright, eye-catching color */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.apply-btn i {
    margin-right: 8px; /* Space between icon and text */
}

/* Hover and Focus Effects */
.apply-btn:hover,
.apply-btn:focus {
    background-color: #ff4500; /* Darken the button on hover */
    transform: translateY(-3px); /* Lift effect on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
    text-decoration: none;
}

/* Apply button container (aligning buttons) */
.course-category {
    margin-bottom: 40px;
}

.course-category .apply-btn {
    margin-top: 15px;
    display: inline-block;
    text-align: center;
    width: 200px; /* Set a consistent button width */
}

@media (max-width: 768px) {
    .apply-btn {
        width: 100%; /* Full-width buttons on smaller screens */
    }
}
