/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4; /* Light background */
    color: #333; /* Text color */
}

/* Header Styling */
header {
    background-color: #0044cc; /* Blue background for header */
    color: #fff; /* White text */
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header .logo {
    font-size: 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #fff;
}
header .logo a{
    font-size: 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #fff;
	text-decoration:none;
}


header .tagline {
    font-size: 11px;
    margin-top: 5px;
    color: #fff;
	margin-left: 16px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

nav .nav-links {
    display: flex;
    list-style: none;
}

nav .nav-links li {
    margin-left: 20px;
}

nav .nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

nav .nav-links .btn {
    background-color: #0066cc; /* Lighter blue button */
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
}

nav .hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

nav .hamburger .line {
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: url('hero.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    background-color: #0066cc; /* Blue background for hero */
}

.hero-content h2 {
    font-size: 50px;
    font-family: 'Montserrat', sans-serif;
}

.hero-content p {
    font-size: 20px;
    margin-top: 10px;
}

.hero .hero-btn {
    background-color: #0044cc; /* Dark blue button */
    padding: 15px 25px;
    font-size: 18px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    margin-top: 20px;
}

/* Features Section */
.features {
    background-color: #fff; /* White background for features */
    padding: 50px 20px;
    text-align: center;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #0044cc; /* Blue text for headings */
}

.feature-cards {
    display: flex;
    justify-content: space-around;
}

.feature-cards .card {
    background-color: #f8f8f8; /* Light background for cards */
    padding: 30px;
    width: 30%;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	    margin: auto;
}

.feature-cards .card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0044cc; /* Blue text for card headings */
}

.feature-cards .card p {
    font-size: 16px;
    margin-bottom: 20px;
}

.feature-cards .card .btn {
    background-color: #0066cc; /* Light blue button */
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
}

/* Course Plan Section */
.course-plan {
    background-color: #fff; /* White background */
    padding: 50px 20px;
    text-align: center;
}

.course-plan h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #0044cc; /* Blue heading */
}

.plan-cards {
    display: flex;
    justify-content: space-around;
}

.plan-cards .card {
    background-color: #f8f8f8; /* Light background */
    padding: 30px;
    width: 30%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.plan-cards .card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0044cc; /* Blue text */
}

.plan-cards .card p {
    font-size: 16px;
}

.plan-cards .card ul {
    list-style: none;
    margin-bottom: 20px;
}

.plan-cards .card ul li {
    font-size: 16px;
    margin-bottom: 10px;
}

.plan-cards .card .btn {
    background-color: #0044cc; /* Dark blue button */
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
}

/* Our Features Section */
.our-features {
    background-color: #f8f8f8; /* Light gray background */
    padding: 50px 20px;
    text-align: center;
}

.our-features h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #0044cc; /* Blue heading */
}

.feature-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.feature-item {
    background-color: #fff; /* White background for feature items */
    padding: 30px;
    width: 22%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: center;
	    margin: auto;
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0044cc; /* Blue text for feature items */
}

.feature-item p {
    font-size: 16px;
}

/* Footer Styling */
footer {
    background-color: #0044cc; /* Blue footer */
    color: white;
    text-align: center;
    padding: 20px;
}

/* Form Styles */
form {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

form label {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

form input, form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

form button {
    background-color: #0044cc;
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    width: 100%;
    font-size: 18px;
    cursor: pointer;
}

form button:hover {
    background-color: #0066cc;
}



/* Courses Section */
.courses {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.courses h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.course-cards {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.course-cards .card {
    background-color: #f8f8f8;
    padding: 30px;
    width: 30%;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.course-cards .card:hover {
    transform: translateY(-10px);
}

.course-cards .card img {
    width: 100%;
    border-radius: 10px;
}

.course-cards .card h3 {
    font-size: 24px;
    margin: 15px 0;
}

.course-cards .card p {
    font-size: 16px;
    margin-bottom: 20px;
}

.course-cards .card .btn {
    background-color: #0044cc;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
}

/* About Section */
.about {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.about .mission, .about .vision {
    margin-top: 30px;
    font-size: 18px;
    color: #333;
}

/* Blog Section */
.blog {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.blog h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.blog-cards {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.blog-cards .card {
    background-color: #f8f8f8;
    padding: 30px;
    width: 30%;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-cards .card:hover {
    transform: translateY(-10px);
}

.blog-cards .card h3 {
    font-size: 24px;
    margin: 15px 0;
}

.blog-cards .card p {
    font-size: 16px;
    margin-bottom: 20px;
}

.blog-cards .card .btn {
    background-color: #0044cc;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
}


/* Main Content Styling */
.jobs {
    padding: 40px 0;
    background-color: #fff;
}

.jobs h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

/* Job Cards Styling */
.job-listings .job-card {
    background-color: #f8f8f8;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.job-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.job-card p {
    font-size: 16px;
    margin-bottom: 15px;
}

.job-card a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0044cc;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

.job-card a:hover {
    background-color: #0066cc;
}

/* Pagination Styling */
.pagination {
    text-align: center;
    margin-top: 30px;
}

.pagination .pagination-links a {
    text-decoration: none;
    padding: 8px 16px;
    margin: 0 5px;
    background-color: #0044cc;
    color: white;
    border-radius: 5px;
}

.pagination .pagination-links .active {
    background-color: #0066cc;
    color: white;
}
/* Responsive Design */
@media screen and (max-width: 768px) {
    nav .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
    }

    nav .nav-links li {
        margin: 15px 0;
        text-align: center;
    }

    nav .hamburger {
        display: flex;
    }

    nav.active .nav-links {
        display: flex;
    }

    .feature-cards,
    .plan-cards {
        flex-direction: column;
    }

    .feature-cards .card,
    .plan-cards .card {
        width: 80%;
        margin-bottom: 20px;
		align-self:center:
    }

    .feature-list {
        flex-direction: column;
    }

    .feature-item {
        width: 80%;
        margin-bottom: 20px;
		align-self:center:
    }
	
	.course-cards,
    .blog-cards {
        flex-direction: column;
    }

    .course-cards .card,
    .blog-cards .card {
        width: 80%;
        margin: 0 auto 20px;
		align-self:center:
		}
}
