* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --main-color: #0f1111;
  --pane-padding: 5px 42px;
  --heading_1: 4.5rem;
  --bg-secondary: #ffffff;
}

body {
  font-family: 'Segoe UI', sans-serif;
  width: 100%;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}


/* navbar code start */
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0px 200px;
  background-color: var(--bg-secondary);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 100;
  
}

.logo {
  height: auto;
  max-height: 50px;
  width: 150px;
}

.logo img {
  max-height: 100%;
  height: auto;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 30px;
  margin-left: auto;
  margin-right: auto;
}

.nav-links a {
  text-decoration: none;
  color: #1f2937;
  font-size: 18px;
  font-weight: 300;
}

.login-btn {
  background-color: #418B3D;
  color: white;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.login-btn:hover {
  background-color: #019444;
}

/* hamburger Icon - hidden on desktop */
.hamburger {
  display: none;
  font-size: 15px;
  color: white;
  cursor: pointer;
  background: #3ba950;
  padding: 5px 10px;
  box-sizing: border-box;
  user-select: none;
  border-radius: 8px;
}

/* Desktop / Mobile login visibility */
.desktop-login {
  display: inline-block;
}

.mobile-login {
  display: none;
}

/* Responsive styles */
@media (max-width: 768px) {
  .nav-bar {
    padding: 0px 20px;
    flex-direction: row;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .nav-links a {
    margin: 10px 0;
    font-size: 16px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .desktop-login {
    display: none;
  }
   .logo {
    max-height: 40px;
    max-width: 100px;
  }

  .logo img {
    max-height: 100%;
    width: auto;
    height: auto;
  }
  .mobile-login {
    display: inline-block;
  }
}
/* navbar code end */

/* Hero page start */

.hero-section {
  background-color: var(--main-color);
  color: white;
  text-align: center;
  padding: 40px 20px;
  margin-top: 80px;
}

.tagline-h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: bold;
  margin: 10px 0;
  color: white;
}

.hero-section h5 {
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(90deg, #29ff00, #ac8374, #003853, #00ff0f, #d348c3, #f4864d, #0148ff, #031749, #3E85FE, #883EEC, #2bff03) !important;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text !important;
}

.description {
  color: #838485 !important;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 30px auto;
  padding: 0 10px;
}

.explore-button {
  background-color: #418B3D;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  margin: 20px;
  transition: background-color 0.3s ease;
}

.explore-button:hover {
  background-color: #019444;
}

.video-container {
  position: relative;
  width: 90%;
  max-width: 800px;
  margin: 40px auto;
  /* padding-top: 56.25%; 16:9 Aspect Ratio */
  border-radius: 12px;
  height: 50vh;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
  max-height: 60vh;
}


.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 15px 20px;
  transition: background-color 0.3s ease;
}

.play-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Responsive Typography */
@media (max-width: 768px) {
  .tagline-h1 {
    font-size: 2rem;
  }

  .hero-section h5 {
    font-size: 1.1rem;
  }

  .explore-button {
    font-size: 14px;
    padding: 8px 16px;
  }

  .play-button {
    font-size: 30px;
    padding: 12px 16px;
  }
}


/* Hero page end */

/* our offering start */

.our-offerings {
  position: relative;
  padding: 100px 0;
  margin: auto;
  
}

.timeline-container{
  width: 79%;
  margin: auto;
  
}

.line,.line1, .line2,.line3,.line4,.line5 {
      position: absolute;
      top: 0;
      left: 40px;
      width: 4px;
      height: 100%;
      background-color:transparent;
      border-left: 4px dotted #ccc;
      z-index: 0;
    }

    .line-fill,.line-fill1,.line-fill2,.line-fill3,.line-fill4,.line-fill5 {
      position: absolute;
      top: 0;
      left: 40px;
      width: 4px;
      background-color: black;
      z-index: 1;
      height: 0;
      transition: height 0.2s ease-out;
    }


    .line{
      left: 200px;
    }

    .line-fill{
     
      left: 200px;
    }

    .line1{
      left: 200px;
    }

    .line-fill1{
      background-color: white;
      left: 200px;
    }

    .line2{
      left: 200px;
    }

    .line-fill2{
      background-color: #65B168;
      left: 200px;
    }

    .line3{
      left: 200px;
    }

    .line-fill3{
      background-color: #65B168;
      left: 200px;
    }

    .line4{
      left: 200px;
    }

    .line-fill4{
      background-color: #65B168;
      left: 200px;
    }

    .line5{
      left: 200px;
    }

    .line-fill5{
      background-color: #65B168;
      left: 200px;
    }

.offerings-heading {
  font-size: var(--heading_1);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  text-align: center;
}



.timeline-item {
  display: flex;
  margin-bottom: 50px;
  position: relative;
}


 
.timeline-content{
  padding: 20px;
  margin-left: 60px;
}


.item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.item-header h3 {
  font-size: 16px;
  font-weight: 600;
}

.badge-offer {
  background: #f1f1f1;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 12px;
  font-weight: 500;
}

.card-cont {
  padding: 20px;
  background: #ebf8f2;
  border-radius: 10px;
  display: flex;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-width: 450px;
  height: 170px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-cont:hover{
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card-left {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img{
  width: 80px;
  height: 80px;
  background: #ffffff;
   display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}


.card-right {
  padding: 20px 15px;
}

.card-right h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.card-right p {
  font-size: 13px;
  color: #444;
  margin-bottom: 10px;
}

 .info-bar {
      margin-top: 15px;
      display: flex;
      gap: 15px;
    }

    .info-box {
      background: white;
      /* padding: 5px 10px; */
      padding: 5px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: bold;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }


/* Responsive Design */

@media (min-width: 992px) {}
@media (min-width: 992px) {}
@media (min-width: 992px) {}
@media (min-width: 992px) {}
@media (min-width: 992px) {}

@media (max-width: 1400px) {

  .line,
  .line-fill,
  .line1,
  .line-fill1,
  .line2,
  .line-fill2,
  .line3,
  .line-fill3,
  .line4,
  .line-fill4,
  .line5,
  .line-fill5 {
    left: 176px;
  }
 
}
@media (max-width: 1200px) {

  .line,
  .line-fill,
  .line1,
  .line-fill1,
  .line2,
  .line-fill2,
  .line3,
  .line-fill3,
  .line4,
  .line-fill4,
  .line5,
  .line-fill5 {
    left: 165px;
  }
 
}

@media (max-width: 1100px) {

  .line,
  .line-fill,
  .line1,
  .line-fill1,
  .line2,
  .line-fill2,
  .line3,
  .line-fill3,
  .line4,
  .line-fill4,
  .line5,
  .line-fill5 {
    left: 155px;
  }
 
}

@media (max-width: 1000px) {

  .line,
  .line-fill,
  .line1,
  .line-fill1,
  .line2,
  .line-fill2,
  .line3,
  .line-fill3,
  .line4,
  .line-fill4,
  .line5,
  .line-fill5 {
    left: 145px;
  }
 
}

@media (min-width: 992px) {

  .timeline-item .timeline-dot {
      position: absolute;
      top: 0;
      width: 100px ;
      height: 100px;
      left: -8px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
    }

  .timeline-item .timeline-dot img{
    height: 100% !important;
    width: 100% !important;
  }


}
@media (max-width: 992px) {
  .our-offerings {
    padding: 60px 20px;
  }

  .timeline-container {
    width: 100%;
  }

  .line,
  .line-fill,
  .line1,
  .line-fill1,
  .line2,
  .line-fill2,
  .line3,
  .line-fill3,
  .line4,
  .line-fill4,
  .line5,
  .line-fill5 {
    display: none; /* hide timeline lines and motion in mobile */
  }

  

  .timeline-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .timeline-dot {
    position: default;
    margin-bottom: 15px;
    left: 0;
    width: 60px;
    height: 60px;
  }


  .timeline-dot img {
    width: 100%;
    height: 100%;
  }

  .timeline-content {
    margin-left: 0;
    width: 100%;
    padding: 0;
  }

  .card-cont {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    height: auto;
  }

  .card-left {
    width: 100%;
    margin-bottom: 10px;
  }

  .card-img {
    width: 70px;
    height: 70px;
  }

  .card-right {
    padding: 10px;
  }

  .card-right h4 {
    font-size: 16px;
  }

  .card-right p {
    font-size: 14px;
  }

  .info-bar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .info-box {
    margin: 5px;
    font-size: 12px;
  }

  .offerings-heading {
    font-size: 28px;
  }

  .offer-heading-icon{
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  
}

/* .offerings-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 48px;
  color: #d9d9d9;
  font-weight: 800;
  text-align: left;
  margin-bottom: 60px;
}

.timeline {
  position: relative;
  border-left: 2px dotted #ccc;
  padding-left: 30px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  position: relative;
}

.timeline-icon {
  position: absolute;
  left: -20px;
  top: 0;
  background-color: #fff;
  border-radius: 50%;
  z-index: 1;
}

.timeline-icon img {
  width: 24px;
  height: 24px;
}

.content {
  margin-left: 20px;
}

.top-labels {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.label {
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid #ddd;
}

.tag {
  background: #f0f0f0;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 500;
}

.card {
  background: #fff5f5;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  max-width: 400px;
}

.card h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
}

.card p {
  margin: 4px 0;
  font-size: 14px;
  color: #555;
}

.details {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 10px;
}

.details p {
  margin: 5px 0;
  flex: 1 1 30%;
  font-weight: bold;
} */

.sect3-timeline-section {
      background: #0f0f0f;
      font-family: 'Inter', sans-serif;
      color: white;
    }

    .sect3-timeline {
      max-width: 100%;
      margin: 0 auto;
      position: relative;
      padding: 0 20px;
    }

    .sect3-timeline-item {
      position: relative;
      text-align: center;
      padding: 100px 20px;
      opacity: 0.2;
      transform: scale(0.95);
      transition: all 0.5s ease-out;
      color: gray;
    }

    .sect3-timeline-item.visible {
      opacity: 1;
      transform: scale(1);
      color: white;
    }

    .sect3-timeline-item:not(:first-child)::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      height: 60px;
      background: gray;
      transition: background 0.5s ease;
      z-index: 0;
    }

    .sect3-timeline-item:not(:last-child)::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      height: 60px;
      background: gray;
      transition: background 0.5s ease;
      z-index: 0;
    }

    .sect3-timeline-item.visible:not(:first-child)::before,
    .sect3-timeline-item.visible:not(:last-child)::after {
      background: #000;
    }

    .sect3-timeline-icon {
      background: gray;
      color: white;
      width: 64px;
      height: 64px;
      margin: 0 auto 20px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      z-index: 1;
      position: relative;
      transition: background 0.5s ease;
    }

    .sect3-timeline-item.visible .sect3-timeline-icon {
      /* background: #7c3aed; */
    }

    .sect3-timeline-content h2 {
      font-size: 5.2rem;
      line-height: 1.4;
      margin: 0 0 12px;
      font-weight: 700;
      color: white;
    }

    .sect3-timeline-content p {
      font-size: 1.15rem;
      line-height: 1.6;
      margin: 0;
    }

    .box {
      height: 100vh;
      width: 100%;
    }

    .sect3-timeline-item.sect3-no-line::before,
    .sect3-timeline-item.sect3-no-line::after {
      display: none;
    }

    @media (max-width: 768px) {
      .sect3-timeline-content h2 {
        font-size: 2.5rem;
      }
    }


.why-us {
  background: #15181A;
  color: #F8F8F8;
  width: 100%;
}

.why-us-section {
  padding: 80px 20px;
  text-align: center;
  background: #15181A;
}

.why-us-section h2 {
  font-size: 10rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px #66B848;
  margin-bottom: 60px;
  fill: var(--color-black-solid, #000);
  opacity: var(--opacity-100, 1);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-item {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-item:hover {
  background-color: #272727;
}

.feature-item img {
  width: 40px;
  height: 40px;
}

.feature-item span {
  font-size: 1rem;
  font-weight: 600;
  color: #F8F8F8;
}

/* Responsive styles for tablets */
@media (max-width: 768px) {
  .why-us-section {
    padding: 60px 15px;
  }

  .why-us-section h2 {
    font-size: 5rem;
    margin-bottom: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 15px;
  }

  .feature-item img {
    width: 50px;
    height: 50px;
  }

  .feature-item span {
    font-size: 1rem;
  }
}

/* Responsive styles for mobile devices */
@media (max-width: 480px) {
  .why-us-section h2 {
    font-size: 3.5rem;
  }

  .feature-item img {
    width: 40px;
    height: 40px;
  }

  .feature-item span {
    font-size: 0.9rem;
  }
}


/* SECTION: Advantage */
.advantage-section {
  background-color: #15181A;
  color: white;
  padding-top: 1px;
  padding-bottom: 100px;
}

.advantage-container {
  max-width: 896px;
  margin: 4rem auto 0;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #374151;
}

.advantage-title {
  text-align: center;
  color: #60A5FA;
  /* Tailwind's blue-400 */
  font-weight: 600;
  font-size: 1.125rem;
  /* 18px */
  margin-bottom: 1.5rem;
}

.advantage-table-wrapper {
  overflow-x: auto;
}

.advantage-table {
  width: 100%;
  text-align: left;
  border-collapse: separate;
  border-spacing: 0 1rem;
}


.advantage-header-row {
  color: white;
}

.half-width {
  width: 50%;
}

.logo-img {
  display: block;
  margin: 0 auto;
  height: 1.5rem;
  /* 24px */
}

.text-center {
  text-align: center;
}

.cell {
  padding: 1rem 0.5rem;
  color: white;
}

.highlight-row {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
}

.text-center i{
  font-size: 24px;
  background: linear-gradient(-45deg, #8ab86b, #a59858);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.muted {
  color: #9CA3AF;
  /* Tailwind's gray-400 */
}


#our-alumni-list {
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #f9f9f9;
  /* padding: 20px 0; */
}

.alumni-hading-section {
  text-align: center;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-title {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 10px;
}

.download-link {
  text-decoration: none;
  font-size: 1em;
  color: #007bff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.alumni-content {
  overflow: hidden;
  width: 75%;
  margin: auto;
  position: relative;
    overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.alumni-main-card {
  display: flex;
  gap: 15px;
  animation: scroll-left 30s linear infinite;
  padding: 10px;

}

.alumni-main-card:hover {
  animation-play-state: paused;
}

.alumni-card {
  flex: 0 0 auto;
  width: 180px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  text-align: center;
}

.alumni-card img {
  width: 70px;
  height: 70px;
  /* border-radius: 50%; */
  object-fit: cover;
  margin-bottom: 10px;
}

.palcement-logo {
  width: 100px;
  max-height: 50px;
  margin-bottom: 10px;
}

.palcement-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.degree {
  font-size: 14px;
  font-weight: 500;
}

/* Keyframe for horizontal scroll */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Background image styling */
#our-alumni-list img[alt=""] {
  width: 100%;
  height: auto;
  opacity: 0.8;
}

/* Responsive Queries */
@media (max-width: 768px) {
  .header-title {
    font-size: 1.5em;
  }

  .download-link {
    font-size: 0.9em;
  }

  .alumni-card {
    width: 140px;
    padding: 10px;
  }

  .alumni-card img {
    width: 60px;
    height: 60px;
  }

  .palcement-logo {
    width: 80px;
    max-height: 40px;
  }

  .degree {
    font-size: 12px;
  }
  .advantage-header-row{
  font-size: 11px !important;
}
.highlight-row,tr .cell{
  font-size: 11px !important;
}

}

@media (max-width: 480px) {
  .alumni-hading-section {
    padding: 20px 10px;
  }

  .header-title {
    font-size: 1.3em;
  }

  .alumni-main-card {
    gap: 10px;
    padding: 5px;
  }

  .alumni-card {
    width: 120px;
    padding: 8px;
  }

  .alumni-card img {
    width: 50px;
    height: 50px;
  }

  .palcement-logo {
    width: 70px;
    max-height: 35px;
  }

  .degree {
    font-size: 11px;
  }
}


/* Section Header */
.header-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  /* 48px top/bottom, 24px sides */
}

.header-flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .header-flex {
    flex-direction: row;
    align-items: center;
  }

  .header-title {
    text-align: left;
  }

}

.header-title {
  font-size: 1.25rem;
  /* 20px */
  font-weight: 600;
  text-align: center;
}

@media (min-width: 768px) {
  .header-title {
    font-size: 1.5rem;
    /* 24px */
  }
}

.download-link {
  display: inline-flex;
  align-items: center;
  color: #16A34A;
  /* Tailwind's green-600 */
  font-weight: 500;
  font-size: 0.875rem;
  /* 14px */
  text-decoration: none;
}

.download-link:hover {
  text-decoration: underline;
}

.download-icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.25rem;
}


/* Container for continuous horizontal scroll */
.scroll-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.scroll-content {
  display: inline-flex;
  animation: scroll-left 30s linear infinite;
}

.scroll-content:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}



/* Section placement  */
.flex-sec {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin: auto;
  width: 70%;
}

.stories-main-container-heading{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  color: white;
}
.stories-main-container-heading h2{
  font-size: 1.3rem;
  font-weight: 600;
}

.stories-main-container-heading .success-link{
  text-decoration: underline;
  color: green;
}

.Placement-cards {
  /* box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); */
  transition: 0.3s;
  width: 30%;
  padding-bottom: 40px;
}

.Place-cont {
  text-align: center;
  background-color: white;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  padding: 10px 16px;
  border-radius: 10px;
  height: 115px;
}

.Place-cont img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.logo-inline {
  display: inline-block !important;
}

*/

/* Section Testinomial */
.Test-sec {
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

.filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.filter-btn {
  background: #2a2a2a;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  border: none;
  color: white;
}

.filter-btn.active {
  background: white;
  color: black;
}

/*  Stories cards*/



.Stories-sec {
  background-color: #000 !important;
  position: relative;
  padding: 100px 0;

}

.stories-main-container{
  background-color: #000 !important;
  width: 70%;
  margin: auto;
}

.stories-cards {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap; 
  padding-top: 50px;
  justify-content: center;
  justify-content: flex-start;
  overflow-x: auto;
}

.stories-card {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
  width: 300px;
  position: relative;
  flex-shrink: 0;
  margin-bottom: 20px;
}

.stories-cards::-webkit-scrollbar {
  height: 5px;          /* Horizontal scrollbar height */
  background-color: #222; /* Track background */
}

.stories-cards::-webkit-scrollbar-thumb {
  background-color: #555; /* Scrollbar handle color */
  border-radius: 4px;
}

.stories-cards::-webkit-scrollbar-thumb:hover {
  background-color: #888; /* Hover color */
}

/* For Firefox */
.stories-cards {
  scrollbar-width: thin;
  scrollbar-color: #555 #222;
}

.Stories-img {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 4px solid #111;
}

.name {
  color: #838485;
  text-align: center;
  margin-top: 40px;
  font-weight: bold;
  font-size: 20px;
}

.title-stories {
  text-align: center;
  font-size: 15px;
  color: #838485;
  margin-bottom: 10px;
}

.description-stories {
  font-size: 14px;
  color: rgb(186, 186, 186);
  margin-bottom: 20px;
}

.post {
  font-size: 14px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  justify-content: space-between;
}

.company_logo{
  width: 50%;
  padding: 2px;
}
.company_logo img{
  width: 100%;
  height: 100%;
  object-fit: fill;
  
}
/* .logo {
  height: 20px;
} */


.Trusted-stories {
  background-color: #000000;
  width: 100%;
  color: white;
}

.Trust-sec {
  padding: 60px 20px;
  text-align: center;
  position: relative;
}


.explore-section{
  width: 100%;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.explore-button {
  background-color: #3ba950;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  
}

.explore-button i {
  margin-left: 8px;
}

.trusted-text {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.subtext {
  font-size: 14px;
  color: #bbbbbb;
  margin-bottom: 40px;
}

.reviews {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  position: relative;
  padding: 30px;
  width: 70%;
  margin: auto;
}

.trust-left,.trust-right{
  position: absolute;
}
.trust-left{
  left:0px;
  bottom: 0;
}

.trust-right{
  right:0;
  bottom: 0;
  transform: scaleX(-1);
}
.review-item {
  text-align: center;
}

.review-item i {
  font-size: 28px;
  margin-bottom: 8px;
}

.img-review {
  max-width: 100%;
  height: 30px;
  display: inline;
  margin: auto;
}

.rating {
  font-size: 18px;
  font-weight: bold;
  display: inline;
  margin: 4px 0;
  color: white;
}

.rating .star {
  color: gold;
}

.review-count {
  font-size: 14px;
  color: #cccccc;
}

.Leave {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.07;
}

.Leave.left {
  left: 0;
}

.Leave.right {
  right: 0;
}

.mcc-logo {
  height: 20px;
  margin-bottom: 8px;
}

/* 5 Stage learning model */

.learning-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 3%;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.left {
  flex: 1;
  min-width: 280px;
}

.left h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 40px;
}

.stage {
  margin-bottom: 30px;
  border-left: 4px solid transparent;
  padding-left: 16px;
}

.stage.active {
  border-left-color: rgb(201, 201, 201);
}

.stage.active h3 {
  color: #777;
  font-weight: 500;
  font-size: 19px;
}

.stage.active:hover {
  border-left-color: black;
}

.stage.active h3:hover {
  color: #000000;
}

.stage h3 {
  margin: 0;
  font-size: 16px;
  color: #aaa;
}

.stage p {
  margin-top: 6px;
  font-size: 14px;
  color: #777;
}

.right {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  min-width: 280px;
}

.photo {
  width: 48%;
  border-radius: 4px;
  overflow: hidden;
  transform: rotate(-2deg);
}

.photo:nth-child(2),
.photo:nth-child(4) {
  transform: rotate(2deg);
}

.photo img {
  width: 100%;
  display: block;
}

/* Tablet view */
@media (max-width: 900px) {
  .learning-section {
    flex-direction: column;
    align-items: stretch;
  }

  .right {
    justify-content: space-between;
    gap: 12px;
  }

  .photo {
    width: 48%;
    margin: auto;
  }

  .explore-section{
    padding: 10px;
  }

  .stories-main-container{
    width: 85%;
  }
  .reviews{
    width: 100%;
  }
  .stories-main-container-heading h2{
    font-size: 1rem;
    font-weight: 400;
  }
}

/* Mobile view */
@media (max-width: 600px) {
  .left h2 {
    font-size: 20px;
  }

  .stage.active h3 {
    font-size: 17px;
  }

  .stage p {
    font-size: 13px;
  }

  .right {
    justify-content: space-between;
    gap: 10px;
  }

  .photo {
    width: 48%;
    margin: auto;
  }
}


/* Industry expert */
.badge-body {
  background-color: #0f0f0f;
  width: 100%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px; /* Reduced padding on smaller screens */
  position: relative;
  box-sizing: border-box;
}

.badge-container {
  max-width: 75%;
}

.badge {
  display: flex;
  align-items: center;
  background-color: #1a1a1a;
  padding: 8px 12px;
  border-radius: 8px;
  width: fit-content;
  margin-bottom: 30px;
  font-size: 1rem;
  flex-wrap: wrap;
}

.icon-badge img {
  width: 28px;
  height: 28px;
}

.text {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 1rem;
}

/* Muted lines section */
.muted-lines {
  scroll-behavior: smooth;
}

p.muted-line {
  color: #2b2b2b;
  font-weight: 700;
  font-size: 2rem;
  margin: 10px 0;
  line-height: 4rem;
  transition: all 0.4s ease;
  text-align: left;
}

p.muted-line.muted-line-hover {
  color: #65B168;
  transform: scale(1.02);
}

/* ------------------- Responsive ------------------- */
@media screen and (max-width: 1024px) {
  .badge-body {
    padding: 60px 20px;
  }

  p.muted-line {
    font-size: 1.75rem;
    line-height: 3.5rem;
  }

  .text {
    font-size: 0.95rem;
    padding: 15px;
  }
}

@media screen and (max-width: 768px) {
  .badge-body {
    padding: 40px 15px;
  }

  .badge {
    font-size: 0.95rem;
    flex-direction: column;
    text-align: center;
  }

  .icon-badge img {
    width: 24px;
    height: 24px;
  }

  .text {
    padding: 10px 0 0;
  }

  p.muted-line {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}

@media screen and (max-width: 480px) {
  .badge-body {
    padding: 30px 10px;
  }

  p.muted-line {
    font-size: 1.25rem;
    line-height: 2rem;
    text-align: center;
  }

  .badge {
    width: 100%;
    justify-content: center;
  }
}


/* Next next Section */
.Mentoring {
  background: #ffffff;
  padding: 2rem 1rem;
  position: relative;
}

.Mentorship {
  max-width: 70%;
  margin: auto;
}

.mentoring-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
}

.mentorship_icon {
  width: 50px;
  height: 50px;
}

.heading-text {
  font-weight: bold;
  font-size: 2rem;
  color: #000;
}

.subtext {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.mentor-card {
  display: flex;
  width: 100%;
  background: #fff;
  height: 300px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
  flex-wrap: wrap;
}

.mentor-card:hover {
  transform: translateY(-5px);
}

.card-content-img {
  width: 40%;
  min-width: 280px;
  height: 100%;
}

.card-content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  width: 60%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #222;
  font-weight: 600;
}

.card-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .heading-text {
    font-size: 1.75rem;
  }

  .subtext {
    font-size: 1rem;
  }

  .card-content h2 {
    font-size: 1.75rem;
  }

  .card-content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .mentor-card {
    flex-direction: column;
    min-height:450px ;
  }

  .card-content-img,
  .card-content {
    width: 100%;
  }

  .card-content-img {
    height: 250px;
  }

  .card-content {
    padding: 1.5rem;
    text-align: center;
  }

  .mentoring-heading {
    flex-direction: column;
    text-align: center;
  }

  .heading-text {
    font-size: 1.5rem;
  }

  .subtext {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .Mentoring {
    padding: 1.5rem 1rem;
  }

  .card-content h2 {
    font-size: 1.5rem;
  }

  .card-content p {
    font-size: 0.95rem;
  }

  .card-content-img {
    height: 200px;
  }
}


.project-section {
  display: flex;
  align-items: center;
  position: relative;
  max-height: 100vh;
  padding: 40px 20px;
  box-sizing: border-box;
}

.project-section-main-container {
  max-width: 1200px;
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  position: relative;
  gap: 30px;
}

.curv_line {
  position: absolute;
  top: 50%;
  left: -10px;
   transform: translate(-50%, -50%);
  z-index: 0;
}

.line-logo-four {
  position: absolute;
  left: 25px;
  top: 30%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.project-text {
  flex: 1 1 300px;
  padding: 10px 40px;
  position: relative;
}

.project-text h2 {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.project-text p {
  font-size: 1rem;
  color: #444;
}

.project-images {
  flex: 1 1 300px;
  display: flex;
  gap: 20px;
  height: 500px;
  overflow: hidden;
  border-radius: 15px;
  position: relative;
}

.image-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.image-track img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Animation */
.scroll-up {
  animation: scrollUp 15s linear infinite;
}

.scroll-down {
  animation: scrollDown 15s linear infinite;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes scrollDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0%);
  }
}

/* Responsive Styles */
@media (max-width: 900px) {
  .project-section-main-container {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .project-text{
    flex: 1 1 200px;
  }


  .project-text h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .project-text p {
    text-align: center;
    font-size: 0.95rem;
  }

  .curv_line{
    display: none;
  }

  .project-images {

    flex: 1 1 150px;
    flex-direction: row;
    height: 200px;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .image-track {
    flex-direction: row;
    animation: scrollLeft 4s linear infinite;
  }

  .image-track img {
    width: 180px;
    height: auto;
  }

  @keyframes scrollLeft {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  .scroll-up,
  .scroll-down {
    animation: scrollLeft 15s linear infinite !important;
  }
}

@media (max-width: 600px) {
  .project-text h2 {
    font-size: 1.3rem;
  }

  .project-text p {
    font-size: 0.9rem;
  }

  .image-track img {
    width: 150px;
  }
}


/* Experts Section */



.experts_icon{
  z-index: 1;  
}
@media (min-width: 992px){
  .experts_icon{
    position: absolute;
    left: -10px;
    top: 30px;
  }
}
.experts {
  padding: 100px 0;
  position: relative;
}

.experts-container{
  width: 75%;
  margin: auto;
  padding: 40px;
  position: relative;
}

.expert-heading{
  display: flex;
  align-items: center;
}

.experts-title {
  font-size: 18px;
  font-weight: 700;
  color: #141414;
  /* margin-bottom: 40px; */
}

.experts-grid {
 display: flex;
  overflow-x: auto;
  margin-bottom: 20px;
}



/* For Firefox */
.experts-grid {
  scrollbar-width: none;
  scrollbar-color: #555 #222;
}

.expert-card {
  background-color: #fff;
  border-radius: 12px;
  max-width: 300px;
  padding: 20px;
  margin: 10px;
  text-align: center;
  box-shadow: 0px 12px 32px #ececec;
  flex-shrink: 0;
}



.expert-avatar {
  width: 144px;
  height: 144px;
  border-radius: 72px;
  margin: 0 auto 20px;
  overflow: hidden;
  /* background: linear-gradient(180deg, #5b83e9 0%, #d5dff9 100%); */
}

.expert-avatar.yellow {
  background: linear-gradient(180deg, #ffc14e 0%, #d5dff9 100%);
}

.expert-name {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.expert-position {
  font-size: 14px;
  font-weight: 500;
  color: #3d3d3d;
  margin-bottom: 20px;
}

.expert-teaches {
  font-size: 16px;
  font-weight: 700;
  color: #838485;
  margin-bottom: 10px;
}

.expert-subjects {
  font-size: 13px;
  font-weight: 400;
  color: #474747;
  margin-bottom: 30px;
}

.expert-linkedin {
  font-size: 14px;
  font-weight: 700;
  color: #5780e9;
  text-decoration: underline;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .experts-container {
    padding: 10px;
  }

  .expert-card {
    max-width: 45%;
  }
}

@media (max-width: 768px) {
  .experts-container{
    width: 90%;
  }
  .experts-title {
    font-size: 18px;
  }

  .expert-card {
    max-width: 100%;
  }

  .expert-subjects {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .experts {
    padding: 60px 0;
  }

  .experts-title {
    font-size: 16px;
  }

  .expert-name {
    font-size: 15px;
  }

  .expert-subjects,
  .expert-teaches,
  .expert-position {
    font-size: 12px;
  }
}

/* Spotlight Section */
.spotlight {
  background-color: #fff;
  padding-bottom: 30px;
}

.container-spot {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.spotlight-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin: 20px 0 40px;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 15px;
}

.spotlight-main {
  grid-column: 1;
  grid-row: 1 / span 3;
  border-radius: 15px;
  background: red;
  overflow: hidden;
  height: 250px; 
}

.spotlight-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spotlight-card {
  background-color: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 16px;
  padding: 10px;
  display: flex;
  align-items: center;
}

.spotlight-logo {
  max-width: 80px;
  margin-right: 10px;
}

.spotlight-text {
  font-size: 14px;
  font-weight: 400;
  color: #141414;
}

/* Tablet (medium) screens */
@media (max-width: 1024px) {
  .spotlight-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .spotlight-main {
    grid-column: 1 / -1;
    grid-row: auto;

  }
}

/* Mobile (small) screens */
@media (max-width: 768px) {
  .spotlight-grid {
    display: flex;
    flex-direction: column;
  }

  .spotlight-main {
    width: 100%;
    order: -1;
    height: 200px;
  }

  .spotlight-card {
    flex-direction: row;
    width: 100%;
  }

  .spotlight-logo {
    max-width: 60px;
  }

  .spotlight-title {
    font-size: 16px;
  }
}

.footer {
  background-color: #281e16;
  padding: 100px 100px;
  color: #fff;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  padding-left: 30px;
}

.footer-logo {
  width: 139px;
  margin-bottom: 20px;
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer-link {
  font-size: 16px;
  font-weight: 700;
  color: #bbbbbb;
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
}

.footer-contact {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-contact-icon {
  width: 25px;
  height: 24px;
  margin-right: 15px;
}

.footer-contact-text {
  font-size: 16px;
  font-weight: 400;
  color: #bbbbbb;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  align-items: center;
}

.footer-social-icon {
  width: 32px;
  height: 32px;
}

.footer-copyright {
  font-size: 12px;
  font-weight: 700;
  color: #bbbbbb;
  margin-top: 50px;
  text-align: center;
}
.footer-social a i{
  font-size: 25px;
}
@media (max-width: 1024px) {
  .footer {
    padding: 60px 40px;
  }

  .footer-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 30px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-left: 0;
  }

  .footer-logo {
    width: 120px;
  }

  .footer-heading {
    font-size: 13px;
  }

  .footer-link,
  .footer-contact-text {
    font-size: 14px;
  }

  .footer-social {
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .footer-social a i {
    font-size: 20px;

  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 40px 20px;
    text-align: left;
  }

  .footer-contact {
    flex-direction: row;
    align-items: flex-start;
  }

  .footer-contact-icon {
    width: 22px;
    height: 22px;
  }

  .footer-contact-text {
    font-size: 14px;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-social-icon {
    width: 24px;
    height: 24px;
  }
}


.stories-card[data-group]{
  display: none;
}

.stories-card.active{
  display: block;
}
