* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Nunito', sans-serif;
}
/*
https://www.tiktok.com/@nellys.mentoring?_t=ZM-8xiGFhmiF44&_r=1


https://www.instagram.com/nellysmentoring24?igsh=MTEyNmJjdHQ1cTZrZw==


https://www.facebook.com/share/1Y4UddX1eh/
*/
.rip{
  width: 3%;
  height: 4%;
  margin: 2px;
  background: #0012ff;
}
body {
  background: linear-gradient(135deg, #e0eaff, #f3e8ff);
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 100px;
}

header {
  background: #0012ff;
  color: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

header h1 {
  font-size: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

nav a {
  color: white;
  margin-left: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3rem;
  margin: 16px;
  transition: red 0.3s ease;
}

nav a:hover {
  color: #ffd1fa;
}

.hero {
  padding: 60px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 2.8rem;
  color: #0012ff;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  color: #222;
}

.section-heading {
  text-align: center;
  font-size: 2.2rem;
  color: #2b3e50;
  font-weight: 700;
  letter-spacing: 1px;
  border-bottom: 3px solid #f8b400;
  padding-bottom: 10px;
  margin: 60px auto 30px;
  display: inline-block;
}

.slideshow-wrapper {
  border-bottom: 4px solid #ffc107;
  padding-bottom: 30px;
  margin-bottom: 40px;
}

.slideshow-flex {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.slideshow-container {
  width: 500px;
  height: 350px;
  overflow: hidden;
  border-radius: 15px;
  background: #000;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}

.slide img:hover {
  transform: scale(1.05);
}

.dots {
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 100%;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
  background-color: #f8b400;
}

.mentoring-info {
  max-width: 500px;
  padding: 10px;
}

.mentoring-info h3 {
  font-size: 1.6rem;
  color: #0012ff;
  margin-bottom: 15px;
}

.mentoring-info p {
  margin-bottom: 12px;
  color: #333;
}

.sick {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.mentor-slide {
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.mentor-slide.active {
  display: flex;
  opacity: 1;
}

.mentor-card {
  width: 100%;
  max-width: 600px;
  background-color: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.mentor-card img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 20px;
}

.mentor-card h1 {
  color: #0012ff;
  margin-bottom: 10px;
}

.mentor-card h4 {
  color: #444;
  margin-bottom: 15px;
  font-style: italic;
}

.mentor-card p {
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 12px;
  font-size: 24px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #0012ff;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%);
  transition: background-color 0.3s;
  z-index: 10;
}

.prev:hover, .next:hover {
  background-color: #0012ff;
  color: #fff;
}

.prev { left: 15px; }
.next { right: 15px; }

.mentor-dots {
  text-align: center;
  margin-top: 20px;
}

.mentor-dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.mentor-dot.active, .mentor-dot:hover {
  background-color: #f8b400;
}

.memories {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.memories h2 {
  font-size: 2.2rem;
  color: #0012ff;
  margin-bottom: 30px;
  border-bottom: 3px solid #d4af37;
  display: inline-block;
  padding-bottom: 10px;
}

.memory-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.memory-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.memory-gallery img:hover {
  transform: scale(1.05);
}
/* Footer Styles */
.footer {
  background-color: #fff;
  padding: 30px 10px;
  text-align: center;
  color: #333;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-box {
  background: linear-gradient(135deg, #e0eaff, #f3e8ff);
  border-radius: 12px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.footer-box:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.footer-box h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #5a4fcf;
}

.footer-box p {
  font-size: 1rem;
 
}
/* new footer*/
.sec-foot{
  background-color:#0012ff;
}
.foot-logo{
  margin: 20px;
  opacity: 200%;
}
.logo{
  margin-top: 10px;
}
.foot-logo p{
  font-size: 1.3rem;
  color: #f8b400;
}
.ul{
  margin-top: 10px;
  text-align: center;
}
.ul a{
  margin: 23px;
  color: rgb(253, 227, 77);
  font-size: 1.3rem;
  text-decoration: none;
  text-transform: capitalize;
  transition: step-start;

}
.ul:hover{
  color: red 2px;
}
/* Responsive for larger screens */
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-box {
    flex: 1;
    margin: 0 10px;
  }
}
.memory-slideshow-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  max-height: 200vw;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.memory-slide {
  display: none;
}

.memory-slide.active {
  display: block;
  opacity: 2000%;
}

.memory-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.memory-prev, .memory-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 10px;
  font-size: 24px;
  background-color: rgba(255, 255, 255, 0.85);
  color: #0012ff;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 5;
  transition: background-color 0.3s;
}

.memory-prev:hover, .memory-next:hover {
  background-color: #0012ff;
  color: #fff;
}

.memory-prev { left: 10px; }
.memory-next { right: 10px; }

.memory-dots {
  text-align: center;
  padding-top: 15px;
}

.memory-dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
  cursor: pointer;
}

.memory-dot.active, .memory-dot:hover {
  background-color: #f8b400;
}


@media (max-width: 768px) {
  .mentor-card {
    width: 90%;
  }

  .slideshow-container {
    width: 90%;
    height: auto;
  }

  .prev, .next {
    font-size: 20px;
    padding: 10px;
  }
}

.sec-foot {
  background-color: #007bff; /* Blue */
  padding: 15px 10px;
  color: #fff;
  margin-top: 20px;
  font-size: 14px;
  border-radius: 20px;
}

.footer-content {
  max-width: 1000px;
  margin: auto;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.foot-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.foot-logo p {
  margin: 0;
  font-weight: bold;
}

.social-links {
  flex: 1;
  text-align: center;
}

.social-links h4 {
  margin: 0 0 5px;
  font-size: 14px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.nav-links {
  flex: 1;
  text-align: right;
}

.nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li {
  display: inline;
  margin-left: 15px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.nav-links a:hover {
  text-decoration: underline;
  color: rgb(248, 191, 248);
}

/* Mobile friendly */
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    text-align: center;
  }

  .nav-links {
    text-align: center;
  }

  .nav-links li {
    display: block;
    margin: 5px 0;
  }

  .foot-logo {
    justify-content: center;
  }
}
