/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
  text-align: center;
}

/* Container */
.container {
  width: 90%;
  margin: auto;
  max-width: 1200px;
}

/* Header Styles */
header {
  background-color: #4CAF50;
  padding: 1rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-links li {
  margin: 0 1rem;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffdd57;
}

.btn {
  background-color: #ff5733;
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
  background-color: #333;
  transform: scale(1.05);
}

.create-account {
  background-color: #333;
}

/* Hero Section */
.hero {
  background: #f4f4f4;
  padding: 2rem 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-text {
  flex: 1;
  padding: 1rem;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #4CAF50;
}

.hero-text p {
  margin-bottom: 1.5rem;
  color: #555;
}

.hero-image {
  flex: 1;
  max-width: 400px;
  padding: 1rem;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.stats-box {
  background: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 1rem;
  width: 200px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon {
  font-size: 2rem;
  color: #4CAF50;
}

.primary-btn {
  background-color: #4CAF50;
}

.play-btn {
  background-color: #ff5733;
  margin-left: 1rem;
}

/* Categories Section */
.categories-section {
  padding: 2rem 0;
}

.categories-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #4CAF50;
  text-align: center;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.category-card {
  background: #fff;
  text-align: center;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.category-card img {
  width: 100px;
  height: 100px;
  margin-bottom: 1rem;
}

.category-card h3 {
  font-size: 1.25rem;
  margin: 0.5rem 0;
}

.category-card p {
  color: #777;
}

.playlist-btn {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: #4CAF50;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.playlist-btn:hover {
  background-color: #333;
}

.browse-all-btn {
  display: block;
  margin: 2rem auto;
  padding: 0.75rem 1.5rem;
  background-color: #ff5733;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.browse-all-btn:hover {
  background-color: #333;
}

/* Footer */
footer {
  background-color: #4CAF50;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

footer p {
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-image {
    max-width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }
}
/* Footer Section */
footer {
  background-color: #2b2d42;
  color: #fff;
  padding: 2rem 0;
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  width: 90%;
  margin: auto;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffdd57;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #ffdd57;
}

/* Social Icons */
.social-icons a {
  text-decoration: none;
  color: #ccc;
  margin-right: 10px;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffdd57;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #444;
  font-size: 0.8rem;
}

.footer-bottom a {
  text-decoration: none;
  color: #ccc;
  margin: 0 5px;
}

.footer-bottom a:hover {
  color: #ffdd57;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}


/* Dropdown container styling */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown button styling */
.dropdown .create-account {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.dropdown .create-account:hover {
  background-color: #0056b3;
}

/* Dropdown menu styling */
.dropdown-menu {
  display: none; /* Hidden by default */
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 150px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  z-index: 1000;
}

/* Dropdown menu items */
.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.dropdown-menu li a:hover {
  background-color: #f1f1f1;
  color: #007bff;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}


/* AboutUs*/


h1 {
  color: #222;
  font-size: 2.5rem;
}
.highlight {
  color: #007bff;
  font-weight: bold;
}
.description {
  font-size: 1.2rem;
  color: #555;
  margin: 20px 0;
}
.image-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.circle-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ddd;
}
.main-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #007bff;
}
.stats {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}
.stat {
  background: #eef5ff;
  padding: 20px;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  width: 160px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.stat span {
  font-size: 1.5rem;
  color: #007bff;
}

/*   Meet Our Mentors   */

/* General Styles */


h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

/* Mentors Section */
.mentors {
  background-color:#429788;
  padding: 50px 0;
}

.mentor-container {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.mentor {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  width: 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mentor img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
}

.mentor h3 {
  font-size: 18px;
  margin: 10px 0;
}

.mentor p {
  color: gray;
  font-size: 14px;
}

.social-icons i {
  margin: 5px;
  color: #0077b5;
  cursor: pointer;
}

/* Navigation Buttons */
.navigation {
  margin-top: 20px;
}

.navigation button {
  padding: 10px 15px;
  font-size: 20px;
  background: #0077b5;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.navigation button:hover {
  background: #005f8d;
}

/* Testimonials Section */
.testimonials {
  background-color: #eef2f7;
  padding: 50px 0;
}

.testimonial-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.testimonial img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.testimonial p {
  font-size: 14px;
  color: gray;
  margin-bottom: 10px;
}

.testimonial h4 {
  font-size: 16px;
  font-weight: bold;
}
