/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

.logo{
    font-size: 32px;
    margin: 0 auto;
}
/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f39c12;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), 
                url('assets/images/header.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    background-color: #f39c12;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #d35400;
}
.partners {
    text-align: center;
    padding: 40px 20px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partner-logo {
    width: 150px;
    height: auto;
}

/* Courses Section */
.courses {
    text-align: center;
    padding: 50px 20px;
}

.course-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.course-card {
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.course-card h3 {
    color: #333;
    margin-bottom: 10px;
}

.course-card p {
    margin-bottom: 20px;
}


/* General styles for the Our Courses section */
.courses {
    padding: 50px;
    background-color: #f9f9f9;
    text-align: center;
}

.courses h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.course-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Course Card Styles */
.course-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    max-width: 300px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.course-card h3 {
    font-size: 1.5rem;
    color: #0056b3;
    margin-bottom: 10px;
}

.course-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

/* Details and Summary */
details {
    text-align: left;
    margin-bottom: 15px;
    color: #333;
    font-size: 0.9rem;
}

details summary {
    font-weight: bold;
    cursor: pointer;
    outline: none;
    margin-bottom: 8px;
}

details summary:hover {
    color: #0056b3;
}

details ul {
    margin-left: 20px;
    list-style-type: disc;
}

details ul li {
    margin-bottom: 5px;
}

/* Button Styles */
.course-card .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    background: #0056b3;
    color: #fff;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.course-card .btn:hover {
    background-color: #003d82;
}

/* Testimonials */
.testimonials {
    background-color: #f8f9fa;
    padding: 50px 20px;
    text-align: center;
}

.testimonial-card {
    margin: 20px auto;
    padding: 20px;
    max-width: 600px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}
/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px; /* Adjust vertical position */
    right: 20px; /* Ensure it's on the right side */
    background-color: #25d366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 24px;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #20b359;
}
