@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

a {
    color: black;
    text-decoration: none;
}
body {
  background: #f5f5f5;
  color: #111;
}

.header {
    background: #1d0938;
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* ---------- Header Base Styles ---------- */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 30px;
    background-color: #56DFCF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
    position: relative;
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
}

.highlight {
  color: #D67AB1;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #0000;
}

.login-btn {
  background-color: #D67AB1;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.login-btn:hover {
  background-color: #c05d9a;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ---------- Mobile Styles ---------- */
@media (max-width: 768px) {
 .menu-toggle {
    display: block;
    color: #ffffff;
}

nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #56dfcf;
    position: absolute;
    top: 70px;
    left: 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}
  nav.show {
    display: flex;
  }

  nav a {
    padding: 10px 20px;
    text-align: left;
  }

  .login-btn {
    margin-top: 10px;
    width: 90%;
    max-width: 200px;
  }

  .header {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }

  .logo {
    flex: 1;
  }
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.logo .highlight {
    color: #000000;
    font-weight: 600;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    /* text-shadow: 1px 2px 2px #00000096; */
    font-size: 15px;
    letter-spacing: 1px;
}

.login-btn {
    background-color: #000000;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}
.hero {
  position: relative;
  background-image: url(assets/image/female-founder1.png);
  background-size: contain;
  background-position: center;
  color: white;
  text-align: center;
  border-bottom-left-radius: 50% 10%;
  border-bottom-right-radius: 50% 10%;
  overflow: hidden; /* Ensure the overlay doesn't overflow */
  z-index: 1;
}

/* Overlay using ::before */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(0 0 0 / 67%);
    z-index: 0;
}
/* Make sure actual content stays above overlay */
.hero > * {
  position: relative;
  z-index: 1;
}


.hero h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.hero .highlight {
    color: #56dfcf;
    text-shadow: 1px 1px 2px #000000;
    text-stroke: 1px #000000!important;
}
.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.features span {
  margin: 0 10px;
  font-size: 16px;
}

.explore-btn {
    display: inline-block;
    margin-top: 20px;
    background-color: #56dfcf;
    padding: 12px 24px;
    color: #000000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    box-shadow: 1px 2px 20px 1px #ffffff61;
}
.hero-video {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.courses-section {
  padding: 60px 40px;
  text-align: center;
  background-color: #f9f9ff;
}

.courses-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.blue {
    color: #d67ab1;
}

.filter-buttons {
  margin: 20px 0;
}

.filter-buttons button {
  border: none;
  background-color: #fff;
  color: #333;
  padding: 8px 16px;
  margin: 5px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  border: 1px solid #ccc;
}

.filter-buttons .active {
  background-color: #56DFCF;
  color: #fff;
  border: none;
}

.course-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.course-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px #00000010;
  overflow: hidden;
  width: 280px;
  text-align: left;
  transition: transform 0.3s ease;
}

.course-card:hover {
  transform: translateY(-5px);
}

.course-card img {
  width: 100%;
  height: auto;
}

.course-info {
  padding: 15px;
}

.course-info h3 {
  font-size: 18px;
  margin: 10px 0;
}

.meta {
  font-size: 14px;
  color: #555;
  margin: 8px 0;
}

.badge {
  background-color: #e3f0ff;
  display: inline-block;
  padding: 3px 8px;
  font-size: 12px;
  color: #0077ff;
  border-radius: 5px;
  margin-bottom: 5px;
}

.price {
  font-weight: bold;
  color: #ff6c00;
  margin-top: 10px;
}

.price.green {
  color: #00b894;
}
.why-webveda {
  padding: 60px 40px;
  background-color: #f5f7ff;
  text-align: center;
}

.why-webveda h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.why-webveda .blue {
  color: #d67ab1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1325px;
    margin: auto;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for tablet */
  }
}

@media (max-width: 500px) {
  .features-grid {
    grid-template-columns: 1fr; /* 1 column for mobile */
  }
}


.feature {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px #00000010;
  transition: 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.feature h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.feature p {
  color: #444;
  font-size: 14px;
}
.webveda-for {
  padding: 60px 40px;
  background: radial-gradient(circle at top, #0c1f48, #3D2065);
  color: #fff;
  text-align: center;
}

.webveda-for h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.webveda-for .blue {
  color: #3d988d;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1337px;
    margin: 0 auto;
}
.audience-card {
    background-color: #56DFCF;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: left;
    border: 1px solid #0cbba7;
    transition: 0.3s ease;
}

.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px #00000040;
}

.audience-card img {
  width: 40px;
  margin-bottom: 15px;
}

.audience-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
}

.audience-card p {
    font-size: 14px;
    color: #000000;
    text-shadow: 1px 1px 2px #00000000;
}
@media (max-width: 900px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}
.student-feedback {
    padding: 32px 156px;
    background-color: #f9f5ff;
    text-align: center;
}
.student-feedback h2 {
  font-size: 30px;
  margin-bottom: 40px;
  color: #111;
}

.student-feedback .blue {
    color: #000000;
}
.feedback-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 20px;
  align-items: stretch;
}

.testimonial-box {
    background: linear-gradient(135deg, #0b1c41, #213f97);
    color: #fff;
    padding: 72px;
    border-radius: 20px;
    position: relative;
    text-align: left;
}

.testimonial-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.testimonial-box p {
  font-size: 14px;
  margin-bottom: 20px;
}

.author {
  font-size: 13px;
}

.student-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  border-radius: 12px 0 20px 0;
}

.nav-btns {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.nav-btns button {
  background: #111;
  color: #fff;
  border: none;
  margin-right: 5px;
  border-radius: 50%;
  padding: 8px 12px;
  font-size: 16px;
}

.student-count-box {
  background: #fff;
  border: 1px solid #d4dcff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.count-circle {
  text-align: center;
  margin-bottom: 20px;
}

.count-circle h3 {
  font-size: 36px;
  margin: 0;
  color: #3d988d;
}

.count-circle p {
  margin: 0;
  color: #333;
}

.avatars {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.quote-box {
  background: #3d988d;
  color: #fff;
  padding: 30px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.quote {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 10px;
}

.quote-author {
  font-size: 14px;
}

.photo-box {
  border-radius: 16px;
  overflow: hidden;
}

.photo-box img {
  /* width: 100%;
  height: 100%; */
  object-fit: cover;
}
@media (max-width: 900px) {
  .feedback-grid {
    grid-template-columns: 1fr;
  }
}
.creators-section {
  background-color: #f9f5ff;
  padding: 60px 150px; /* Keeps left-right padding */
  text-align: center;
  overflow: hidden;
}

.creators-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #111;
}

.creators-section h2 span {
  color: #3d988d;
}

.creator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* 👈 narrower cards */
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.scroll-container {
  height: 300px; /* Fixed visible height */
  overflow: hidden;
  position: relative;
}

.scroll-content {
  display: flex;
  flex-direction: column;
  animation: scrollUp 15s linear infinite;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}

.creators-section {
  background-color: #f9f5ff;
  padding: 60px 40px;
  text-align: center;
  overflow: hidden;
}

.creators-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #111;
}

.creators-section h2 span {
  color:#3d988d;
}

.scroll-container {
  height: 400px; /* Show ~2 rows */
  overflow: hidden;
  position: relative;
}

.scroll-content {
  display: flex;
  flex-direction: column;
  animation: scrollUp 20s linear infinite;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%); /* Adjust based on row count */
  }
}

.creator-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.creator-card {
  background-color: white;
  border: 1px solid #d3d3d3;
  border-radius: 12px;
  padding: 20px;
  min-height: 200px;
  width: 300px;
  box-shadow: 0 0 10px #e0e0e0;
  position: relative;
  padding-bottom: 70px;
  text-align: left;
}

.creator-card p {
    margin-bottom: -1px;
    font-size: 15px;
    color: #333;
}

.creator-card img {
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
}

.creator-card .name {
  position: absolute;
  bottom: 10px;
  left: 80px;
  font-weight: bold;
  color: #3d988d;
}

.creator-card .handle {
  position: absolute;
  bottom: -2px;
  left: 80px;
  font-size: 14px;
  color: #555;
}

@media (max-width: 768px) {
 .creators-section {
    padding: 40px 0px;
    text-align: center;
}
.founder-section {
    padding: 0px 5%;
    background-color: #fff;
    font-family: 'Segoe UI', sans-serif;
}
.courses-section {
    padding: 60px 1px;
    text-align: center;
    background-color: #f9f9ff;
}
  .creators-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .scroll-container {
    height: 500px; /* Taller for stacked layout */
  }

  .scroll-content {
    animation: scrollUpMobile 20s linear infinite;
  }

  @keyframes scrollUpMobile {
    0% {
      transform: translateY(0%);
    }
    100% {
      transform: translateY(-60%); /* Adjust based on total rows */
    }
  }

  .creator-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
  }

  .creator-card {
    width: 100%;
    max-width: 90%;
    padding: 20px;
    min-height: 200px;
  }

  .creator-card p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .creator-card img {
    width: 45px;
    height: 45px;
    bottom: 10px;
    left: 20px;
  }

  .creator-card .name {
    bottom: 18px;
    left: 75px;
    font-size: 15px;
  }

  .creator-card .handle {
    bottom: 4px;
    left: 75px;
    font-size: 13px;
  }
}


@media(min-width:767px){
  .faq-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  display: flex!important;
}
}

.faq-section h2 {
  font-size: 36px;
  text-align: left;
  color: #111;
}

.faq-section h2 span {
  color: #3d988d;
}

.faq-container {
  margin-top: 30px;
}

.faq-item {
  border: 1px solid #D67AB1;
  border-radius: 10px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  background: #fff;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  text-align: left;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f9f5ff;
}

.faq-answer {
  padding: 20px;
  background: #f4f6ff;
  border-top: 1px solid #d0d0ff;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.toggle-icon {
  font-size: 24px;
  color: #3d988d;
  margin-left: 10px;
}

.icon {
    margin-right: 12px;
    font-size: 30px;
    text-decoration: none;
    color: #000000;
}
@media (max-width: 768px) {
  .faq-section {
    padding: 40px 16px;
  }

  .faq-section h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
  }

  .faq-container {
    margin-top: 20px;
  }

  .faq-question {
    font-size: 16px;
    padding: 16px;
    flex-wrap: wrap;
  }

  .faq-answer {
    padding: 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .icon {
    font-size: 24px;
    margin-right: 10px;
  }

  .toggle-icon {
    font-size: 20px;
  }
}

.founder-section {
    padding: 69px 14%;
    background-color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.founder-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.founder-text {
  flex: 1 1 50%;
  max-width: 600px;
}

.founder-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.founder-text h2 span {
    color: #3d988d;
}

.founder-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #333;
}

.founder-text .highlight {
  font-weight: 600;
  color: #111;
}

.founder-image-wrapper {
  flex: 1 1 40%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.blob-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 400px;
  max-height: 400px;
  background-color: #4e6ef2;
  border-radius: 50% 35% 60% 40% / 60% 40% 50% 50%;
  z-index: 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: blobFloat 8s ease-in-out infinite;
}

.founder-image {
    max-width: 100%;
    width: 405px;
    z-index: 1;
    position: relative;
    border-radius: 12px;
}
@keyframes blobFloat {
  0%, 100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.05);
  }
}

@media (max-width: 768px) {
  .founder-container {
    flex-direction: column;
    text-align: center;
  }

  .founder-image-wrapper {
    margin-top: 30px;
  }

  .blob-bg {
    width: 80%;
    height: 80%;
    max-width: none;
    max-height: none;
  }
}
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.footer {
    background-color: #56DFCF;
    color: #000000;
    padding: 40px 60px;
    font-size: 16px;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-left {
  max-width: 600px;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  margin: 0;
  color: #ffffff;
}

.highlight {
  color: #4F77E3;
}

.subtext {
    margin: 0;
    font-size: 13px;
    color: #000000;
}

.description {
    margin-top: 20px;
    line-height: 1.6;
    color: #000000;
    /* text-shadow: 1px 1px 0px #00000054; */
}
.footer-right {
    display: flex;
    gap: 11px;
    flex-direction: column-reverse;
}

.social, .support {
    color: #000000;
}

.icons a img,
.support a img {
  height: 32px;
  width: 32px;
  margin-right: 10px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.icons a img:hover,
.support a img:hover {
  transform: scale(1.1);
}

hr {
  border: none;
  border-top: 1px solid #334155;
  margin: 40px 0 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}

.footer-bottom .links a {
    margin-left: 20px;
    text-decoration: none;
    color: #000000;
}

.footer-bottom .links a:hover {
  text-decoration: underline;
}
.scroll-wrapper {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin-top: 30px;
}

.creator-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 🟦 3 cards per row */
  gap: 20px;
  animation: scrollUpGrid 40s linear infinite;
  width: fit-content;
}

/* Make the container tall enough for scrolling */
@keyframes scrollUpGrid {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); } /* Adjust depending on item count */
}

/* Gradient blur overlays */
.scroll-fade {
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 2;
  pointer-events: none;
}

.top-fade {
  top: 0;
  background: linear-gradient(to bottom, #f9f5ff, transparent);
}

.bottom-fade {
  bottom: 0;
  background: linear-gradient(to top, #f9f5ff, transparent);
}

/* Creator card style for clarity */
.creator-card {
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  padding-bottom: 70px;
  min-height: 180px;
  box-shadow: 0 0 10px #e0e0e0;
  text-align: left;
}

.creator-card img {
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
}

.creator-card .name {
    position: absolute;
    bottom: 27px;
    left: 80px;
    font-weight: bold;
    color: #3d988d;
}

.creator-card .handle {
    position: absolute;
    bottom: 10px;
    left: 80px;
    font-size: 14px;
    color: #555;
}
/* Adjust the new layout */
.custom-feedback-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* Right side flex layout: quote + photo */
.right-side {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

/* Make sure photo and quote box are responsive */
.quote-box,
.photo-box {
  flex: 1 1 50%;
}

/* For mobile screens */
@media (max-width: 768px) {
  .custom-feedback-layout {
    grid-template-columns: 1fr;
  }

  .right-side {
    flex-direction: column;
  }
}
.testimonial-carousel {
    max-width: 800px;
    margin: 2px auto;
    overflow: hidden;
    position: relative;
    padding: 20px;
}
.testimonial-wrapper {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 300%; /* 3 slides */
}

.testimonial-box {
    flex: 0 0 100%;
    padding: 20px;
    background: #56DFCF;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.08);
    text-align: left;
    box-sizing: border-box;
}
section.testimonial-carousel {
    background: #56DFCF;
}
.testimonial-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.blue {
    color: #3d988d;
}
.testimonial-box p {
  font-style: italic;
  margin-bottom: 20px;
}

.author {
    font-size: 14px;
    color: #000000;
    margin-bottom: 10px;
}
.student-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-btns {
  text-align: center;
  margin-top: 20px;
}

.nav-btns button {
    font-size: 20px;
    padding: 8px 16px;
    margin: 0 10px;
    border: none;
    background-color: #000000;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}



@media(max-width:767px){
  /* Mobile-first adjustments */
.student-feedback {
  padding: 40px 20px;
  background: #f9f5ff;
}

.student-feedback h2 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 30px;
}

.feedback-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Testimonial Carousel */
.testimonial-carousel {
  width: 100%;
}

.testimonial-wrapper {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 300%; /* for 3 slides */
}

.testimonial-box {
    flex: 0 0 100%;
    background: #56dfcf;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    text-align: left;
    box-sizing: border-box;
}
.testimonial-box h3 {
  font-size: 18px;
}

.testimonial-box p {
  font-size: 14px;
  line-height: 1.5;
}

.student-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 10px;
}

.nav-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.nav-btns button {
  padding: 8px 16px;
  font-size: 20px;
  background-color: #4b9cfa;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* Student Count Box */
.student-count-box {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  text-align: center;
}

.count-circle h3 {
  font-size: 28px;
  color: #4b9cfa;
  margin-bottom: 5px;
}

.count-circle p {
  font-size: 14px;
  color: #555;
}

.avatars {
  margin: 15px 0;
}

.avatars img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin: 0 3px;
}

/* Quote + Photo box stacked for mobile */
.right-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.quote-box {
  font-size: 15px;
  font-style: italic;
}

.quote-author {
  display: block;
  font-size: 13px;
  margin-top: 5px;
  color: #777;
}

.photo-box img {
  max-width: 100%;
  border-radius: 10px;
}


}
/* Optional media query for better spacing on very small screens */
@media (max-width: 400px) {
  .testimonial-box h3 {
    font-size: 16px;
  }

  .testimonial-box p {
    font-size: 13px;
  }
}
.podcast-video-section {
  padding: 60px 20px;
  background-color: #f9f5ff;
  text-align: center;
}

.podcast-video-section h2 {
  font-size: 32px;
  color: #111;
  margin-bottom: 30px;
}

.podcast-content {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
}

.video-wrapper {
  flex: 1 1 500px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.podcast-description {
  flex: 1 1 400px;
  text-align: left;
}

.podcast-description h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #3d988d;
}

.podcast-description p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

.listen-btn {
  background-color: #D67AB1;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.listen-btn:hover {
  background-color: #c05d9a;
}

@media (max-width: 768px) {
  .podcast-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .podcast-description {
    text-align: center;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .podcast-content {
    padding: 0 15px;
  }
  .video-wrapper {
  position: relative;
  width: 100%;
  max-width: 720px; /* optional cap for desktop */
  margin: 0 auto;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}
}


.blog-section {
  padding: 40px 20px;
  background-color: #fdf9f9;
  text-align: center;
}

.blog-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.blog-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.blog-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  max-width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card h3 {
  font-size: 1.25rem;
  color: #ff4b77;
}

.blog-card p {
  color: #555;
  font-size: 0.95rem;
  margin: 10px 0 20px;
}

.blog-card .read-more {
  text-decoration: none;
  color: #3d988d;
  font-weight: bold;
}
@media (max-width: 768px) {
  .blog-cards {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .blog-card {
    max-width: 90%;
    padding: 16px;
  }

  .blog-section h2 {
    font-size: 1.5rem;
  }

  .blog-card h3 {
    font-size: 1.1rem;
  }

  .blog-card p {
    font-size: 0.9rem;
  }

  .blog-card .read-more {
    font-size: 0.9rem;
  }
}
@media(max-width:767px){
.logo {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    color: #ffffff;
}
.login-btn {
    background-color: #56DFCF;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    display: none;
}
.author {
    font-size: 14px;
    color: #000000;
    margin-bottom: 32px;
}
section.Voicevilla-for {
    padding: 10px;
}
section.why-Voicevilla {
    padding: 10px;
}
.course-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px #00000010;
    overflow: hidden;
    width: 345px;
    text-align: left;
    transition: transform 0.3s ease;
}
}

.Voicevilla-for .audience-card img {
    filter: brightness(0) invert(1);
    /* box-shadow: 1px 1px 3px rgb(0 0 0 / 40%); */
    width: 50px;
    height: 50px;
}
.why-Voicevilla .feature img {
    filter: invert(59%) sepia(12%) saturate(1223%) hue-rotate(145deg) brightness(93%) contrast(89%);
}

