
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #222;
  line-height: 1.6;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: #e4fce1;
 
}
.post-img{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}
.post-img img{
    width: 350px;
    border-radius: 10px;
    box-shadow: 2px 4px 5px 4px rgba(0, 0, 0, 0.24);   
}
.post-img img:hover{
    transform:translateY(-20px);
    transition: 0.6s ease-in-out;
}
.logo {
  font-weight: bold;
  font-size: 1.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li {
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.3s;
}

nav ul li.active {
  font-weight: bold;
}

nav ul li:hover {
  color: #00fc22;
}


.search-bar {
  display: flex;
  align-items: center;
}

.search-bar input {
  padding: 8px 15px;
  border-radius: 20px;
  border: none;
  outline: none;
  font-size: 1rem;
  background-color: #fff;
  margin-right: -35px;
  z-index: 1;
}

.search-bar button {
  background-color: #02f737;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  z-index: 2;
}


.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
  gap: 40px;
  flex-wrap: wrap;
}

.content {
  max-width: 50%;
}

.content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #000;
  line-height: 1.3;
}

.content h1 span {
  color: #05fa26;
  display: block;
}

.content p {
  margin: 20px 0;
  color: #444;
  font-size: 1rem;
}


.mentors {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
}

.mentor-imgs {
  display: flex;
  gap: 10px;
}

.mentor-imgs img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #00f829;
  object-fit: cover;
}

.cta {
  display: inline-block;
  background-color: #01f50e;
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: 20px;
}

.cta:hover {
  background-color: #1ba300;
}


.hero-img {
  position: relative;
}

.hero-img img {
  width: 350px;
  border-radius: 20px;
}
 .mentor-imgs {
            display: flex;
            gap: 20px;
        }
        .mentor-imgs i {
            font-size: 30px; 
            color: #333; 
            cursor: pointer;
        }
        .mentor-imgs i:hover{
            transform: scale(1.25);
            transition: 0.5s ease-in-out;
            color: tomato;
        }
.badge {
  position: absolute;
  background-color: white;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 0.9rem;
  width: 140px;
}

.badge.chart {
  top: 30px;
  right: -30px;
}

.badge.rating {
  bottom: 20px;
  left: -20px;
}

.badge strong {
  font-size: 1.6rem;
  color: #222;
}
.text{
    text-align: center;
    font-size: 14px;
    background-color: #222;
    color: #00f829;
    width: 80%;
    height: 100px;
    margin: auto;
    border-radius: 10px;
}
.text h3{
    text-align: center;
    justify-content: center;
}

@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    padding: 40px;
  }

  .content,
  .hero-img {
    max-width: 100%;
  }

  .hero-img img {
    width: 100%;
  }
}
