* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f0f4f8; /* Light gray background */
    color: #333;
}

.header {
    background-color: #ff7f50; /* Coral */
    padding: 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .logo img {
    max-width: 150px;
}

.navbar {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.navbar-list {
    list-style-type: none;
    display: flex;
    gap: 20px;
}

.navbar-links {
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s, transform 0.2s;
}

.navbar-links:hover {
    background-color: #ff6347; /* Tomato */
    transform: translateY(-2px);
}

.courses-intro {
    text-align: center;
    padding: 40px 20px;
    background: #ffe4e1; /* Misty Rose */
    color: #333;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 800px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.courses-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.courses-intro p {
    font-size: 1.2rem;
}

.courses-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 80px; /* Increased gap between course sections */
    padding: 20px;
    margin-left: 115px;
}

.course-section {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s; /* Added transition for shadow */
}

.course-section:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.course-section ion-icon {
    font-size: 3rem;
    color: #ff7f50; /* Coral */
    margin-bottom: 10px;
}

.course-section h3 {
    margin: 15px 0;
    font-size: 1.6rem;
}

.course-section p {
    color: #666;
    margin-bottom: 15px;
}

.course-section .btn {
    background-color: #ffa07a; /* Light Salmon */
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.course-section .btn:hover {
    background-color: #ff7f50; /* Coral */
    transform: translateY(-2px);
}

.categories-section {
    background-color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 40px; /* Added margin for separation */
}

.categories-section h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #333;
}

.category-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px; /* Gap between category items */
}

.category-item {
    background: #fff5ee; /* Light Peach */
    border-radius: 8px;
    padding: 20px;
    flex: 1 1 200px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s; /* Added transition for shadow */
}

.category-item:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.testimonials-section {
    background: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

.testimonials-section h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #ff7f50; /* Coral */
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}
.category-item {
    background: #ffebcd; /* Blanched Almond */
    color: #333;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 0.9rem;
    margin: 10px 0; /* Space above and below */
    display: inline-block; /* Ensure it fits within the card */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Light shadow */
    transition: transform 0.3s, box-shadow 0.3s; /* Add transitions */
}

.category-item:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Darker shadow on hover */
}
.btn {
    background-color: #ff8c00; /* Orange */
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    display: inline-block; /* Ensure it behaves like a block element */
    border: none; /* Remove any border */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Shadow for button */
}

.btn:hover {
    background-color: #ff7b00; /* Darker Orange on hover */
    transform: translateY(-2px); /* Lift effect */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Darker shadow on hover */
}

.containers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: hsl(216, 19%, 16%);
    height: 60px;
    width: 1500px;
    margin-top: 0px;
  }
  
  .nav-links {
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #fff;
  }
  
  .btn {
    background-color: #00c8c8;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
  }