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

html {
  zoom: 0.94;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
}
.user-icon{
    width: 50px;
    height: 50px;
    display: block;
    margin: 0 auto 25px auto;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: auto;
}

/* Header Styles */
.header {
  background: white;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
}

.apply-btn {
  background: #c8102e;
  color: white;
  border: none;
  padding: 12px 35px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulseGlow 2s ease-in-out infinite;
  position: relative;
}

/* Continuous pulse and glow animation */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.7),
                0 0 20px rgba(200, 16, 46, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(200, 16, 46, 0),
                0 0 30px rgba(200, 16, 46, 0.5);
    transform: scale(1.05);
  }
}

.apply-btn:hover {
  background: #a00d25;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
  animation: none; /* Stop animation on hover */
}

/* Hero Section */
.hero {
  height: 139vh;
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.98) 6.7%,
      rgba(84, 84, 84, 0.482) 87.2%
    ),
    url("https://rishihoodmarketingimg.s3.ap-south-1.amazonaws.com/commonLP/Hero.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding: 40px 60px;
  position: relative;
}

/* Mobile User Icon */
.mobile-user-icon {
  display: none;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
}

.hero-text {
  flex: 1;
  color: white;
  margin-left: 2rem;
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 50px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 700px;
}

.program-item {
  border-left: 8px solid #c8102e;
  padding-left: .5rem;
  line-height: normal;
}

.program-item p {
  font-size: 16px;
  opacity: 0.9;
}

/* Form Card */
.form-card {
  background: white;
  border-radius: 10px;
  padding: 16px 28px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  margin-top: 16px;
  /* margin-top: 87px; */
}

.form-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.form-tabs {
  display: flex;
  border-bottom: 4px solid #c8102e;
  margin-bottom: 8px;
  position: relative;
  background: #FAF8F4;
}

.form-tabs::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #FAF8F4;
  transform: translateX(-50%);
}

.tab {
  flex: 1;
  background: none;
  border: none;
  padding: 15px;
  font-size: 20px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.tab.active {
  color: #c8102e;
}

.tab.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: #c8102e;
  z-index: 1;
}

/* Form Styles */
.registration-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group {
  position: relative;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-group.half {
  flex: 1;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 2px;
  background: #FAF8F4;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.input-wrapper:focus-within {
  background: #eeeeee;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.input-icon {
  position: absolute;
  left: 15px;
  pointer-events: none;
}

.input-wrapper input,
.input-wrapper select {
  width: 100%;
  padding: 15px 15px 15px 50px;
  border: none;
  background: transparent;
  font-size: 15px;
  outline: none;
}

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  appearance: none;
  cursor: pointer;
  padding-right: 40px;
}

.dropdown-icon {
  position: absolute;
  right: 15px;
  pointer-events: none;
}

.checkbox-group {
  margin-top: 10px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-custom {
  min-width: 20px;
  height: 20px;
  border: 2px solid #c8102e;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: #c8102e;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  color: #666;
}

.submit-btn {
  background: #c8102e;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #a00d25;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.3);
}

/* Explore Programmes Section */
.explore-programmes {
  padding: 30px 20px;
  background: #FAF8F4;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: #c8102e;
  text-align: center;
  margin-bottom: 60px;
}

.programmes-content {
  display: grid;
  grid-template-columns: 0.8fr 2fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}

/* Programme List (Left Sidebar) */
.programmes-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
}

.programme-tab {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: white;
  border: none;
  border-bottom: 2px solid transparent;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  flex: 1;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.programme-tab:first-child {
  border-radius: 12px;
}

.programme-tab:last-child {
  border-radius: 12px;
  border-bottom: 2px solid transparent;
}

.programme-tab:hover {
  background: #fff5f7;
  border-bottom: 2px solid #c8102e;
}

.programme-tab.active {
  background: #fef5e7;
  border-bottom: 2px solid #c8102e;
  padding-left: 25px;
}

.arrow-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #000;
  stroke-width: 2.5;
}

.programme-tab.active .arrow-icon {
  color: #c8102e;
}

/* Programme Details (Center) */
.programme-details {
  background: white;
  border-radius: 12px;
  padding: 40px 35px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1;
  height: 100%;
}

.programme-details > div:first-child {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.programme-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

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

.programme-name {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.divider {
  width: 100%;
  height: 1px;
  background: #e0e0e0;
  margin-bottom: 25px;
}

.programme-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
  text-align: left;
}

.know-more-btn {
  background: #c8102e;
  color: white;
  border: none;
  padding: 15px 50px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.know-more-btn:hover {
  background: #a00d25;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.3);
}

/* Programme Image (Right) */
.programme-image {
  border-radius: 12px;
  overflow: hidden;
  width: 45%;
  min-width: 400px;
  height: 450px;
  background: #fef5e7;
  flex-shrink: 0;
}

.programme-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile Programme Cards - Hidden on Desktop */
.mobile-programme-cards {
  display: none;
}

/* Programme Note with Star */
.programme-note {
  margin-top: 40px;
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.programme-note p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  font-style: italic;
  padding: 0 20px;
}

.star-mark {
  color: #c8102e;
  font-size: 20px;
  font-weight: bold;
  margin-right: 5px;
  font-style: normal;
}

/* Section Divider */
.section-divider {
  width: 100%;
  display: flex;
  justify-content: center;
}

.section-divider img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Job Ready Section */
.job-ready-section {
  padding: 20px 20px;
  background: white;
}

.job-ready-image {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 60px auto;
  overflow: hidden;
}

.job-ready-image img {
  width: 100%;
  height: auto;
  display: block;
}

.job-ready-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: #FAF8F4;
  padding: 40px 30px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  box-shadow: 0px 3px 6px 0px #00000029;
}

.feature-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-number {
  width: 50px;
  height: 50px;
  background: #c8102e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #c8102e;
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-underline {
  width: 100%;
  height: 3px;
  background: #c8102e;
  margin-bottom: 15px;
}

.feature-description {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* Student Startups Section */
.student-startups-section {
  padding: 80px 0;
  background: #FAF8F4;
  width: 100%;
}

.student-startups-section .container {
  max-width: none;
  width: 100%;
  padding: 0;
}

.startups-container {
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
  margin: 0;
  overflow-x: auto;
  padding: 0 40px;
}

.startup-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
  overflow: hidden;
  min-width: 260px;
  width: 260px;
  height: 360px;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: row;
}

.startup-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.startup-card.active {
  width: auto;
  max-width: 700px;
  height: 360px;
}

.startup-card img {
  width: 260px;
  min-width: 260px;
  height: 370px;
  object-fit: cover;
  object-position:bottom;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.card-content {
  padding: 25px 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 0;
  overflow: hidden;
  opacity: 0;
}

.startup-card.active .card-content {
  width: auto;
  max-width: 440px;
  opacity: 1;
  flex: 1;
}

.startup-card .startup-details {
  color: #333;
  line-height: 1.6;
  margin-top: 15px;
  font-size: 16px;
}

.startup-card .startup-underline {
  width: 100%;
  height: 2px;
  background: #c2185b;
  margin: 8px 0;
}

.startup-card:not(.active) .startup-underline {
  display: none;
}

.startup-name {
  font-size: 28px;
  font-weight: 700;
  color: #c8102e;
  margin: 0;
}

.startup-tagline {
  color: #333;
  font-weight: 400;
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.4;
}

/* Startup Section Scroll Animation */
.student-startups-section .scroll-animation {
  display: none; /* Hide on desktop */
  justify-content: center;
  align-items: center;

  padding-top: 20px
}

/* Seniors Working Section */
.seniors-working-section {
  padding: 40px 20px;
  background: #FAF8F4;
}

.seniors-photos {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 50px 0 60px 0;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.senior-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background: #f5ebe0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.senior-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-logos {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.company-logo-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.company-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.company-logo-card img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
}

/* Student Testimonials Section */
.student-testimonials-section {
  background: white;
  padding: 20px 0;
  display: flex;
  align-items: center;
  position: relative;
}

.testimonials-container {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto 40px auto;
  overflow: hidden;
  padding: 20px;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  min-width: 300px;
  width: 300px;
  height: 400px;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: row;
}

.testimonial-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.testimonial-card.active {
  min-width: 700px;
  width: -webkit-fill-available;
  height: 400px;
}

.testimonial-card img {
  width: 300px;
  min-width: 300px;
  height: 400px;
  object-fit: cover;
  object-position: top;
  transition: all 0.3s ease;
  flex-shrink: 0;
  background-color: #FFEDD2;
}

.testimonial-content {
  padding: 40px 30px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 0;
  overflow: hidden;
  opacity: 0;
}

.testimonial-card.active .testimonial-content {
  width: 100%;
  opacity: 1;
}

.quote-icon {
  font-size: 80px;
  line-height: 1;
  color: #c8102e;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}

.testimonial-text {
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 16px;
}

.testimonial-name {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.testimonial-navigation {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.nav-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #c8102e;
  background: white;
  color: #c8102e;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  background: #c8102e;
  color: white;
}

.nav-arrow.active {
  background: #c8102e;
  color: white;
}

.nav-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Experience Life Section */
.experience-life-section {
  padding: 20px 0;
  background: white;
  display: flex;
  align-items: center;
}

.experience-content {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.experience-text {
  flex: 0 0 350px;
}

.experience-title {
  font-size: 38px;
  font-weight: 700;
  color: #c8102e;
  line-height: 1.2;
  margin-bottom: 20px;
}

.experience-description {
  color: #333;
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 40px;
}

.experience-navigation {
  display: none;
}

.exp-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #999;
  background: white;
  color: #999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.exp-arrow:hover {
  border-color: #c8102e;
  background: white;
  color: #c8102e;
}

.exp-arrow.active,
.next-exp-arrow {
  border-color: #c8102e;
  background: #c8102e;
  color: white;
}

.exp-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.video-cards-container {
  flex: 1;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
}

.video-card {
  flex: 1;
  max-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.video-thumbnail {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 12px;
}

.video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.video-card:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    gap: 40px;
  }

  .hero-title {
    font-size: 48px;
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .programmes-content {
    grid-template-columns: 1fr;
  }

  .programme-image {
    min-height: 350px;
  }

  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 40px 20px;
    background-attachment: scroll;
    background-position: left center;
    align-items: flex-end;
    max-height: 70vh;
  }

  .mobile-user-icon {
    display: block;
    position: absolute;
    top: 120px;
    right: 20px;
    background: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
  }

  .mobile-user-icon img {
    width: 35px;
    height: 35px;
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    justify-content: flex-end;
  }

  .hero-text {
    margin-left: 0;
    width: 100%;
  }

  .hero-title {
    font-size: 48px;
    margin-bottom: 40px;
    line-height: 1.1;
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 100%;
  }

  .program-item {
    border-left: 4px solid #c8102e;
    padding-left: 12px;
  }

  .program-item h2 {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .program-item p {
    font-size: 14px;
  }

  .form-card {
    padding: 30px 20px;
    display: none; /* Hide form on mobile if showing user icon instead */
  }

  .form-row {
    flex-direction: column;
    gap: 20px;
  }

  .tab {
    font-size: 16px;
  }

  .explore-programmes {
    padding: 40px 20px;
  }

  .programmes-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .programmes-list {
    display: none;
  }

  .programme-details {
    display: none;
  }

  .mobile-programme-cards {
    display: flex;
    flex-direction: row;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Hide scrollbar for cleaner look */
  .mobile-programme-cards::-webkit-scrollbar {
    display: none;
  }

  .mobile-programme-cards {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .programme-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    min-width: 77vw;
    max-width: 77vw;
    flex-shrink: 0;
    scroll-snap-align: center;
  }

  .programme-card .programme-image {
    width: 100%;
    min-width: auto;
    height: 220px;
    border-radius: 0;
    background: #f5f5f5;
    margin: 0;
    padding: 0;
    display: block;
    order: 1;
  }

  .programme-card .programme-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
  }

  .programme-content {
    padding: 24px 20px;
    padding-bottom: 0px;;
    background: white;
    order: 2;
  }

  .programme-card .programme-name {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .programme-card .divider {
    width: 100%;
    height: 1px;
    background: #000;
    margin-bottom: 16px;
  }

  .programme-card .programme-description {
    font-size: 15px;
    line-height: 1.5;
    color: #000;
    margin-bottom: 20px;
    text-align: left;
  }

  .programme-card .know-more-btn {
    background: #c8102e;
    color: white;
    border: none;
    padding: 10px 32px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .programme-card .know-more-btn:hover {
    background: #a00d25;
    transform: translateY(-2px);
  }

  /* Hide Know More buttons in mobile view */
  .know-more-btn,
  .programme-card .know-more-btn {
    display: none;
  }

  .section-title {
    font-size: 23px;
    margin-bottom: 30px;
    line-height: 1.3;
  }

  .programme-note {
    margin-top: 30px;
    padding: 0 10px;
  }

  .programme-note p {
    font-size: 14px;
    line-height: 1.5;
  }

  .star-mark {
    font-size: 18px;
  }

  .job-ready-section {
    padding: 40px 20px;
  }

  .job-ready-image {
    margin-bottom: 40px;
    overflow: hidden;
  }

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

  .feature-card {
    padding: 10px 24px;
    background: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }

  .feature-number {
    width: 50px;
    height: 50px;
    font-size: 22px;
    margin-bottom: 20px;
  }

  .feature-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .feature-underline {
    height: 2px;
    margin-bottom: 16px;
  }

  .feature-description {
    font-size: 15px;
    line-height: 1.6;
  }

  .startups-layout {
    flex-direction: column;
  }

  .startup-cards {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    gap: 15px;
  }

  .startup-card {
    min-width: 250px;
  }

  .startup-details-container {
    min-height: auto;
  }

  .startup-detail-content {
    flex-direction: column;
    padding: 35px 25px;
    gap: 30px;
  }

  .startup-name {
    font-size: 28px;
  }

  .startup-tagline {
    font-size: 18px;
  }

  .startup-description {
    font-size: 16px;
  }

  /* Mobile Student Startups Section */
  .student-startups-section {
    padding: 20px 0;
  }

  .student-startups-section .container {
    padding: 0 20px;
  }

  /* Mobile: make Study alongside students horizontally scrollable */
  .startups-container {
    flex-wrap: nowrap;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 0 12px;
    justify-content: flex-start;
  }

  /* Compact card sizing so cards are shorter and images are clearly visible */
  .startups-container > .startup-card {
    scroll-snap-align: center;
    flex: 0 0 70%;
    max-width: 70%;
    display: flex;
    width: auto;
    align-items: stretch;
    height: 150px; /* compact height */
    padding: 6px;
    box-sizing: border-box;
    border-radius: 12px;
  }

  .startup-card.active {
    min-width: 100%;
    width: 100%;
    height: auto;
  }

  .startup-card img {
    width: 36%;
    min-width: 36%;
    max-width: 180px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #f5ebe0;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .card-content {
    width: 64%;
    height: 100%;
    opacity: 1;
    padding: 10px 12px;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .startup-card.active .card-content {
    width: 70%;
    height: auto;
  }

  .startup-card .startup-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1.2;
  }

  .startup-card .startup-tagline {
    font-size: 13px;
    font-weight: 400;
    color: #000;
    margin: 0;
    padding: 0;
    line-height: 1.3;
  }

  .startup-card .startup-underline {
    display: block;
    width: 100%;
    height: 2px;
    background: #c8102e;
    margin: 0;
    padding: 0;
  }

  .startup-card:not(.active) .startup-underline {
    display: block;
  }

  .startup-card .startup-details {
    font-size: 12px;
    line-height: 1.5;
    color: #333;
    margin: 0;
    padding: 0;
  }

  /* Show scroll animation on mobile for startup section */
  .student-startups-section .scroll-animation {
    display: flex;
  }

  .seniors-photos {
    gap: 20px;
    margin: 30px 0 40px 0;
  }

  .senior-photo {
    width: 150px;
    height: 150px;
  }

  .company-logos {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }

  /* Mobile Testimonials Section */
  .student-testimonials-section {
    padding: 60px 20px;
  }

  .testimonials-container {
    /* flex-direction: column; */
    gap: 24px;
    overflow-x: visible;
    padding: 20px 0;
  }

  /* Mobile: compact, horizontally scrollable testimonials with snap */
  .testimonials-container {
    flex-wrap: nowrap;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 10px 12px;
    justify-content: flex-start;
  }

  .testimonial-card {
    flex: 0 0 70%;
    max-width: 70%;
    scroll-snap-align: center;
    height: 140px;
    flex-direction: row;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    display: flex !important;
    cursor: grab;
    pointer-events: auto;
    align-items: stretch;
    overflow: hidden;
  }

  .testimonial-card.active {
    min-width: 70%;
    width: 70%;
    height: 140px;
  }

  .testimonial-card img {
    width: 36%;
    min-width: 36%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #FFEDD2;
    border-radius: 0;
  }

  .testimonial-card .testimonial-content {
    width: 64% !important;
    opacity: 1 !important;
    padding: 12px 12px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    overflow: visible !important;
  }

  .testimonial-card.active .testimonial-content {
    width: 64% !important;
    opacity: 1 !important;
  }

  .testimonial-card .quote-icon {
    font-size: 36px;
    margin-bottom: 8px;
    line-height: 1;
    display: block !important;
    opacity: 1 !important;
  }

  .testimonial-card .testimonial-text {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 8px;
    display: block !important;
    opacity: 1 !important;
  }

  .testimonial-card .testimonial-name {
    font-size: 14px;
    font-weight: 700;
    display: block !important;
    opacity: 1 !important;
  }

  /* Hide testimonial navigation on mobile as requested */
  .testimonial-navigation {
    display: none;
  }

  .experience-content {
    flex-direction: column;
    gap: 40px;
  }

  .experience-text {
    flex: 1;
  }

  .experience-title {
    font-size: 32px;
    text-align: center;
  }

  /* Mobile: make Experience Life videos horizontally scrollable with snap */
  .video-cards-container {
    flex-wrap: nowrap;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    justify-content: flex-start;
  }

  /* Anchor wrappers for cards become the snap points and fixed width */
  .video-cards-container > a {
    scroll-snap-align: center;
    flex: 0 0 82%;
    max-width: 82%;
    display: block;
  }

  .video-card {
    width: 100%;
    max-width: none;
  }

  /* Show navigation arrows on mobile and make them touch-friendly */
  .experience-navigation {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
  }

  .exp-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: none;
    background: rgba(0,0,0,0.06);
    color: inherit;
  }

  .exp-arrow[disabled] {
    opacity: 0.35;
    pointer-events: none;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 30px;
  }

  .apply-btn {
    padding: 10px 25px;
    font-size: 14px;
  }

  .hero-title {
    font-size: 28px;
  }

  .seniors-photos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 30px 0 40px 0;
    overflow-x: visible;
  }

  .senior-photo {
    width: 100px;
    height: 100px;
  }

  .company-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .company-logo-card {
    padding: 15px 10px;
    min-height: 70px;
  }

  .company-logo-card img {
    max-height: 40px;
  }

  /* Hide Dream11 logo on mobile */
  .dream11-logo {
    display: none;
  }

  /* Small Mobile Testimonials */
  .student-testimonials-section {
    padding: 40px 16px;
  }

  .testimonials-container {
    gap: 20px;
  }

  .testimonial-card {
    min-width: 100%;
    width: 100%;
    flex-direction: row;
    display: flex !important;
    cursor: default;
    pointer-events: auto; /* allow swipe */
    height: auto;
  }

  .testimonial-card.active {
    min-width: 100%;
    width: 100%;
    height: auto;
  }

  .testimonial-card img {
    width: 40%;
    min-width: 40%;
    max-width: 250px;
    height: auto;
    border-radius: 16px 0 0 0;
    object-fit: cover;
    object-position: center;
  }

  .testimonial-card .testimonial-content {
    width: 60% !important;
    padding: 20px 16px;
    opacity: 1 !important;
    overflow: visible !important;
    display: flex !important;
  }

  .testimonial-card.active .testimonial-content {
    width: 60% !important;
    opacity: 1 !important;
  }

  .testimonial-card .quote-icon {
    font-size: 40px;
    margin-bottom: 10px;
    display: block !important;
    opacity: 1 !important;
  }

  /* Hide nav on very small screens as well */
  .testimonial-navigation {
    display: none;
  }

  .testimonial-card .testimonial-text {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 14px;
    display: block !important;
    opacity: 1 !important;
  }

  .testimonial-card .testimonial-name {
    font-size: 16px;
    font-weight: 700;
    display: block !important;
    opacity: 1 !important;
  }

  .nav-arrow {
    width: 40px;
    height: 40px;
  }

  .experience-title {
    font-size: 28px;
  }

  .experience-description {
    font-size: 14px;
    text-align: center;
    margin: 0;
  }

  .exp-arrow {
    width: 40px;
    height: 40px;
  }

  .video-card {
    width: 100%;
    max-width: 400px;
  }
}

/* ========== FACULTY SECTION STYLES ========== */
.faculty-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 48px 48px;
  background-color: #FAF8F4;
  overflow-x: hidden;
}

.faculty-title {
  color: #CC0033;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  padding: 0 16px;
  margin-bottom: 24px;
}

.faculty-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
  overflow-x: hidden;
  width: 80%;
}

/* Tabs */
.faculty-tabs {
  border-radius: 16px;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 40px;
  padding: 8px;
  justify-content: space-around;
  background-color: white;
}

.faculty-tab {
  padding: 8px 64px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
  background-color: white;
  color: #4B5563;
  border: none;
  cursor: pointer;
}

.faculty-tab.active {
  background-color: #ffc9d4;
  color: #c41e3a;
}

.faculty-tab:hover {
  opacity: 0.9;
}

/* Carousel Wrapper */
.faculty-carousel-wrapper {
  position: relative;
  padding: 0 64px;
}

.carousel-title {
  display: none;
  font-size: 22px;
  font-weight: 700;
  color: #CC0033;
  margin-bottom: 16px;
  padding: 0 8px;
}

.carousel-container {
  overflow: hidden;
  width: 100%;
}

.carousel-container.hidden {
  display: none;
}

.carousel {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease-in-out;
  padding: 16px;
}

/* Faculty Card */
.faculty-card {
  flex-shrink: 0;
  width: calc(33.333% - 22px);
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.faculty-image {
  width: 100%;
  height: 320px;
  background: linear-gradient(180deg, #f5f0e8 0%, #e8dcc0 100%);
  object-fit: cover;
  object-position: center top;
}

.faculty-info {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 180px;
}

.faculty-text {
  width: 100%;
}

.faculty-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #000000;
  line-height: 1.3;
}

.faculty-degree {
  font-size: 15px;
  color: #6B7280;
  margin-bottom: 0;
  line-height: 1.4;
  font-weight: 400;
}

.faculty-divider {
  width: 100%;
  height: 1px;
  background-color: #E5E7EB;
  margin: 16px 0;
}

.faculty-logo {
  height: 48px;
  max-width: 140px;
  object-fit: contain;
  margin-top: auto;
}

/* Special End Card Styles */
.faculty-card.special-card {
  background: linear-gradient(135deg, #ffffff 0%, #fef8f9 100%);
}

.faculty-card.special-card .faculty-image {
  height: 320px;
  object-fit: cover;
}

.faculty-info.special-info {
  padding: 40px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.special-content {
  text-align: center;
  width: 100%;
}

.special-number {
  font-size: 72px;
  font-weight: 800;
  color: #CC0033;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.special-title {
  font-size: 28px;
  font-weight: 700;
  color: #CC0033;
  line-height: 1.3;
  margin: 0;
}

/* Arrow Buttons */
.carousel-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: white;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  color: #CC0033;
}

.carousel-arrow:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.arrow-left {
  left: 0;
}

.arrow-right {
  right: 0;
}

/* Scroll Animation Indicator */
.scroll-animation {
  display: none;
  justify-content: center;
  align-items: center;
}

.arrow-animation {
  display: flex;
  gap: 8px;
  align-items: center;
}

.animated-arrow {
  width: 32px;
  height: 32px;
  opacity: 0;
  animation: arrowSlide 2s ease-in-out infinite;
}

.animated-arrow:nth-child(1) {
  animation-delay: 0s;
}

.animated-arrow:nth-child(2) {
  animation-delay: 0.2s;
}

.animated-arrow:nth-child(3) {
  animation-delay: 0.4s;
}

.animated-arrow:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes arrowSlide {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  50% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}

/* Mobile Styles */
@media (max-width: 767px) {
  .faculty-section {
    padding: 32px 16px;
    min-height: 70vh;
  }

  .faculty-title {
    font-size: 28px;
  }

  .faculty-tabs {
    display: none !important;
  }

  .faculty-tab {
    display: none !important;
  }

  .faculty-carousel-wrapper {
    padding: 0 8px;
  }

  .carousel-title {
    display: block;
  }

  /* Show scroll animation on mobile */
  .scroll-animation {
    display: flex;
  }

  /* Make faculty carousel horizontally scrollable on mobile */
  .carousel-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    display: block !important;
    margin-bottom: 24px;
    scroll-snap-type: x mandatory;
  }

  .carousel-container.hidden {
    display: block !important;
  }

  .carousel-container::before {
    display: none;
  }

  .carousel {
    gap: 16px;
    padding: 12px 8px;
    flex-direction: row;
    flex-wrap: nowrap;
    transform: none !important;
    justify-content: flex-start;
    align-items: stretch;
    /* allow the carousel to size to content for smooth horizontal scroll */
  }

  .faculty-card {
    /* make each card a scroll snap item and compact on mobile */
    flex: 0 0 50%;
    width: 50%;
    min-width: 50%;
    max-width: 50%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    min-height: auto;
    display: flex !important;
  }

  .faculty-card.special-card {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }

  .carousel-controls {
    display: none !important;
  }

  .faculty-image {
    height: 180px;
  }

  .faculty-info {
    padding: 12px 10px;
    min-height: 140px;
  }

  .faculty-name {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .faculty-degree {
    font-size: 11px;
    line-height: 1.3;
  }

  .faculty-divider {
    margin: 8px 0;
  }

  .faculty-logo {
    height: 32px;
    max-width: 100px;
  }

  .special-number {
    font-size: 56px;
    margin-bottom: 12px;
  }

  .special-title {
    font-size: 22px;
  }

  .faculty-info.special-info {
    padding: 32px 20px;
  }

  .carousel-arrow {
    display: none !important;
  }
}

/* Desktop Styles */
@media (min-width: 768px) {
  .carousel-arrow {
    display: flex;
  }
}


:root {
	--brand-red: #CC0033;
}

*, *::before, *::after {
	box-sizing: border-box;
}

html, body {
	font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
}

/* Shared Helpers */
.section-divider {
	width: 100%;
	display: flex;
	justify-content: center;
}

.section-divider img {
	max-width: 100%;
	height: auto;
	display: block;
}

.mobile-only {
	display: block;
}

@media (min-width: 768px) {
	.mobile-only {
		display: none;
	}
}

.desktop-only {
	display: none;
}

@media (min-width: 768px) {
	.desktop-only {
		display: block;
	}
}

.object-fit {
	object-fit: contain;
}

/* Advantage Section */
.advantage-section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 60vh;
	padding-top: 2rem;
	padding-bottom: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
	.advantage-section {
		padding-top: 0;
		padding-bottom: 0;
	}
}

.advantage-title {
	color: var(--brand-red);
	font-weight: 700;
	text-align: center;
	font-size: 28px;
	padding-top: 1.5rem;
	padding-left: 1rem;
	padding-right: 1rem;
}

@media (min-width: 768px) {
	.advantage-title {
		font-size: 48px;
		padding-top: 2.5rem;
	}
}

.advantage-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
	padding: 0.75rem;
	margin-top: 1.5rem;
	width: 100%;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 640px) {
	.advantage-grid {
		gap: 1rem;
		padding: 1rem;
	}
}

@media (min-width: 768px) {
	.advantage-grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
		gap: 1rem;
		padding: 1.5rem;
	}
}

.advantage-card {
	position: relative;
	width: 100%;
	height: 280px;
	margin: 0;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	background-color: #f5f5f5;
}

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

.advantage-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--brand-red);
	color: #fff;
	border-top-right-radius: 20px;
	padding: 8px 12px;
	line-height: 1.3;
	box-shadow: 0 3px 10px rgba(204, 0, 51, 0.3);
}

.advantage-caption .caption-top {
	font-weight: 700;
	font-size: 14px;
}

.advantage-caption .caption-bottom {
	font-weight: 500;
	font-size: 14px;
	opacity: 0.95;
}

@media (min-width: 768px) {
	.advantage-card {
		height: 480px;
	}

	.advantage-caption {
		padding: 14px 18px;
	}

	.advantage-caption .caption-top {
		font-size: 16px;
	}

	.advantage-caption .caption-bottom {
		font-size: 16px;
	}
}

.advantage-image {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-top-right-radius: 50px;
}

/* Exposure Section */
.exposure-section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #FAF8F4;
	padding: 16px;
}

@media (min-width: 768px) {
	.exposure-section {
		padding: 40px 40px;
	}
}

.exposure-title {
	color: var(--brand-red);
	font-weight: 700;
	text-align: center;
	font-size: 28px;
	margin-bottom: 24px;
	padding-left: 1rem;
	padding-right: 1rem;
}

@media (min-width: 768px) {
	.exposure-title {
		font-size: 40px;
		margin-bottom: 40px;
	}
}

.exposure-card {
	position: relative;
	width: 100%;
	max-width: 340px;
	margin-top: 1rem;
	margin-bottom: 1rem;
	margin-left: auto;
	margin-right: auto;
	background: #fff;
	display: flex;
	flex-direction: column;
	border: 2px solid #e5e7eb;
	border-radius: 1.5rem;
	box-shadow: 0 8px 12px -3px rgba(0, 0, 0, 0.1), 0 3px 5px -2px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

@media (min-width: 768px) {
	.exposure-card {
		height: 420px;
		max-width: 1300px;
		margin-top: 1.5rem;
		margin-bottom: 1.5rem;
		margin-left: 0;
		margin-right: 0;
		flex-direction: row;
		border-radius: 1.5rem;
	}
}

.exposure-left,
.exposure-right {
	width: 100%;
}

@media (min-width: 768px) {
	.exposure-left,
	.exposure-right {
		width: 50%;
	}
}

.exposure-left {
	display: flex;
	flex-direction: column;
	padding: 1.25rem;
	order: 2;
	gap: 0.5rem;
	justify-content: center;
}

@media (min-width: 768px) {
	.exposure-left {
		padding: 2rem 2.5rem;
		order: 1;
		position: relative;
		gap: 1rem;
		justify-content: center;
	}
}

.exposure-heading {
	color: var(--brand-red);
	font-weight: 700;
	font-size: 1.15rem;
	margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
	.exposure-heading {
		font-size: 1.8rem;
		margin-bottom: 1rem;
	}
}

.exposure-text {
	font-size: 0.9rem;
	line-height: 1.5;
	color: #374151;
}

@media (min-width: 768px) {
	.exposure-text {
		font-size: 1.1rem;
		line-height: 1.6;
	}
}

.exposure-icon {
	position: absolute;
	top: 1rem;
	left: 1rem;
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
	.exposure-icon {
		top: auto;
		left: auto;
		right: 1.5rem;
		bottom: 1.5rem;
		width: auto;
		height: auto;
		border-radius: 0;
		box-shadow: none;
	}
}

.exposure-right {
	order: 1;
}

@media (min-width: 768px) {
	.exposure-right {
		order: 2;
	}
}

.exposure-image {
	width: 100%;
	display: block;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-top-left-radius: 1.5rem;
	border-top-right-radius: 1.5rem;
}

@media (min-width: 768px) {
	.exposure-image {
		height: 100%;
		aspect-ratio: auto;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
		border-bottom-right-radius: 0.75rem;
	}
}

/* Exposure Cards Container */
.exposure-cards-container {
	position: relative;
	width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Residential Section */
.residential-section {
	background-color: white;
	padding: 48px 16px;
}

@media (min-width: 768px) {
	.residential-section {
		padding: 40px 40px;
	}
}

.residential-container {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
}

.residential-title {
	color: var(--brand-red);
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 40px;
}

@media (min-width: 768px) {
	.residential-title {
		font-size: 48px;
		line-height: 1.23;
	}
}

.residential-image-wrap {
	width: 100%;
	overflow: hidden;
	box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.25);
}

.residential-image {
	width: 100%;
	height: auto;
	display: block;
}

.residential-grid {
	width: 100%;
	display: flex;
	flex-direction: column;
	/* border-top: 1px dashed rgba(204, 0, 51, 0.3); */
	/* border-bottom: 1px dashed rgba(204, 0, 51, 0.3); */
}

.residential-item {
	padding: 0 18px;
	text-align: center;
	display: block;
}

.residential-item + .residential-item {
	border-top: 1px dashed rgba(204, 0, 51, 0.3);
}

@media (min-width: 768px) {
	.residential-grid {
		margin-top: 32px;
		flex-direction: row;
		flex-wrap: wrap;
		/* border-left: 1px dashed rgba(204, 0, 51, 0.3); */
		/* border-right: 1px dashed rgba(204, 0, 51, 0.3); */
	}

	.residential-item {
		width: 33.3333%;
		border-top: none;
		border-left: 1px dashed rgba(204, 0, 51, 0.3);
	}

	.residential-item:nth-child(-n + 3) {
		border-bottom: 1px dashed rgba(204, 0, 51, 0.3);
	}

	.residential-item:nth-child(3n + 1) {
		border-left: none;
	}

	.residential-item + .residential-item {
		border-top: none;
	}
}

.residential-item-title {
	color: var(--brand-red);
	font-size: 1.4rem;
	line-height: 1.25;
	font-weight: 700;
}

@media (min-width: 1024px) {
	.residential-item-title {
		font-size: 2.25rem;
		line-height: 1.22;
	}
}

.residential-item-text {
	color: #000;
	font-size: 1rem;
	line-height: 1.55;
	font-weight: 500;
}

@media (min-width: 1024px) {
	.residential-item-text {
		font-size: 1.5rem;
		line-height: 1.2;
	}
	
	/* Laptop screen font size for startup section title */
	.startup-section-title {
		font-size: 2.15rem !important;
	}
}

/* Program Fees Section */
.program-fees-section {
	background-color: #FAF8F4;
	padding: 48px 16px 60px;
}

@media (min-width: 768px) {
	.program-fees-section {
		padding: 50px 40px;
	}
}

.program-fees-container {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.program-fees-title {
	color: var(--brand-red);
	font-size: 30px;
	font-weight: 700;
	text-align: center;
}

@media (min-width: 768px) {
	.program-fees-title {
		font-size: 48px;
	}
}

.program-fees-subtitle {
	font-size: 1.125rem;
	font-weight: 700;
	text-align: center;
	color: #111827;
}

@media (min-width: 768px) {
	.program-fees-subtitle {
		font-size: 1.5rem;
	}
}

.program-fees-visual {
	display: block;
	width: 100%;
}

.program-fees-image {
	width: 100%;
	display: block;
	box-shadow: 0 20px 35px -18px rgba(0, 0, 0, 0.25);
	background-color: #F8F8F8;
}

.program-fees-footnote {
	font-size: 0.95rem;
	line-height: 1.5;
	font-weight: 500;
	color: #000;
	text-align: center;
}

/* Scholarship Opportunities Section */
.scholarship-section {
	background-color: white;
	padding: 48px 16px 60px;
}

@media (min-width: 768px) {
	.scholarship-section {
		padding: 45px 30px 15px;
	}
}

.scholarship-container {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
}

.scholarship-title {
	color: var(--brand-red);
	font-size: 30px;
	font-weight: 700;
	text-align: center;
}

@media (min-width: 768px) {
	.scholarship-title {
		font-size: 48px;
		margin-bottom: 0px;
	}
}

.scholarship-content {
	display: flex;
	flex-direction: column-reverse;
	gap: 10px;
	align-items: center;
}

@media (min-width: 1024px) {
	.scholarship-content {
		flex-direction: row;
		gap: 60px;
		align-items: flex-start;
		padding-bottom: 30px;
	}
}

.scholarship-list {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
	padding-right: 40px;
}

@media (min-width: 768px) {
	.scholarship-list {
		gap: 30px;
		padding-right: 50px;
		padding-top: 50px;
	}
}

.scholarship-card {
	background-color: white;
	border-radius: 12px;
	padding: 24px;
	padding-right: 50px;
	display: flex;
	align-items: center;
	gap: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
}

.scholarship-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
	.scholarship-card {
		padding: 0px 32px;
		padding-right: 60px;
	}
}

.scholarship-icon {
	width: 60px;
	height: 60px;
	min-width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: absolute;
	right: -30px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}

@media (min-width: 768px) {
	.scholarship-icon {
		width: 70px;
		height: 70px;
		min-width: 70px;
		right: -35px;
	}
}

.scholarship-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media (min-width: 768px) {
	.scholarship-icon img {
		width: 100%;
		height: 100%;
	}
}

.scholarship-info {
	flex: 1;
}

.scholarship-name {
	color: var(--brand-red);
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 8px;
}

@media (min-width: 768px) {
	.scholarship-name {
		font-size: 24px;
		margin-bottom: 12px;
	}
}

.scholarship-description {
	color: #374151;
	font-size: 14px;
	line-height: 1.6;
	font-weight: 400;
}

@media (min-width: 768px) {
	.scholarship-description {
		font-size: 17px;
		line-height: 1.7;
	}
}

.scholarship-image {
	flex: 0 0 auto;
	width: 70%;
  height: 70%;
	display: flex;
	justify-content: center;
	align-items: center;
  padding-top: 30px;
  padding-bottom: 10px;
}

@media (min-width: 1024px) {
	.scholarship-image {
		width: 50%;
    height: 50%;
	}
}

.scholarship-image img {
	width: 85%;
	height: 85%;
}

/* Admission Steps Section */
.admission-section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	padding: 1.5rem 2.5rem;
	background-color: #FAF8F4;
}

@media (min-width: 768px) {
	.admission-section {
		padding: 2.5rem 5rem;
	}
}

.admission-title {
	color: var(--brand-red);
	font-weight: 700;
	text-align: center;
	font-size: 28px;
	padding-top: 1.5rem;
	padding-left: 1rem;
	padding-right: 1rem;
}

@media (min-width: 768px) {
	.admission-title {
		font-size: 48px;
		padding-top: 0rem;
	}
}

.admission-image {
	width: 90%;
	max-width: 1460px;
	margin-top: 1.4rem;
}

@media (min-width: 768px) {
	.admission-image {
		margin-top: 2.5rem;
	}
}

/* FAQ Section */
.faq-section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0.5rem;
  background-color: white;
}

@media (min-width: 768px) {
	.faq-section {
		padding: 1.5rem;
	}
}

.faq-title {
	color: var(--brand-red);
	font-weight: 700;
	text-align: center;
	font-size: 28px;
	padding-top: 1rem;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}

@media (min-width: 768px) {
	.faq-title {
		font-size: 40px;
		padding-top: 1.5rem;
	}
}

.faq-wrapper {
	width: 100%;
	padding: 1rem 1.5rem;
}

@media (min-width: 768px) {
	.faq-wrapper {
		padding: 1.5rem 5.5rem;
	}
}

.faq-list {
	width: 100%;
	max-width: 1460px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.faq-item {
	background-color: #ffffff;
	border-radius: 0.75rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
	overflow: hidden;
}

.faq-button {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem;
	background-color: #FAF8F4;
	text-align: left;
	cursor: pointer;
	border: none;
	outline: none;
	transition: background-color 0.3s ease;
}

@media (min-width: 768px) {
	.faq-button {
		padding: 1rem 1.25rem;
	}
}

.faq-button:hover {
	background-color: #f1ede8;
}

.faq-question {
	font-size: 0.9rem;
	font-weight: 500;
	color: #111827;
	padding-right: 0.75rem;
}

@media (min-width: 768px) {
	.faq-question {
		font-size: 1.25rem;
		padding-right: 1.5rem;
	}
}

.faq-icon {
	font-size: 1.25rem;
	font-weight: 300;
	color: #ef4444;
	flex-shrink: 0;
}

@media (min-width: 768px) {
	.faq-icon {
		font-size: 1.5rem;
	}
}

.faq-answer {
	display: none;
}

.faq-item.active .faq-answer {
	display: block;
}

.faq-answer-content {
	font-size: 0.9rem;
	padding: 0.75rem;
	color: #374151;
	line-height: 1.6;
}

@media (min-width: 768px) {
	.faq-answer-content {
		padding: 1rem;
		font-size: 1.2rem;
	}
}

.faq-answer-content p + p {
	margin-top: 1rem;
}

/* Footer Section */
.footer-section {
	background-color: var(--brand-red);
	color: #fff;
	padding: 1.5rem 1rem;
}

@media (min-width: 1024px) {
	.footer-section {
    padding-top: 0rem;
    padding-bottom: 0rem;
		padding-left: 3.5rem;
		padding-right: 3.5rem;
	}
}

.footer-container {
	width: 100%;
	max-width: 1500px;
	margin: 0 auto;
	padding: 0.5rem;
}

@media (min-width: 768px) {
	.footer-container {
		padding: 1.5rem;
	}
}

.footer-top {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	justify-content: space-between;
	margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
	.footer-top {
		margin-bottom: 2rem;
	}
}

@media (min-width: 1024px) {
	.footer-top {
		flex-direction: row;
		gap: 16rem;
	}
}

.footer-brand {
	flex-shrink: 0;
}

.footer-logo-group {
	margin-bottom: 1rem;
}

@media (min-width: 768px) {
	.footer-logo-group {
		margin-bottom: 1.5rem;
	}
}

.footer-logo {
	display: inline-block;
	border-radius: 0.75rem;
	margin-bottom: 0.5rem;
}

.footer-logo-image {
	width: 10rem;
	height: auto;
}

@media (min-width: 768px) {
	.footer-logo-image {
		width: 12rem;
	}
}

.footer-motto {
	font-size: 1.25rem;
	font-weight: 500;
}

@media (min-width: 768px) {
	.footer-motto {
		font-size: 1.5rem;
	}
}

.footer-about {
	display: flex;
	flex-direction: column;
}

.footer-heading {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
	.footer-heading {
		font-size: 1.875rem;
		margin-bottom: 1rem;
	}
}

@media (min-width: 1024px) {
	.footer-heading {
		font-size: 2.25rem;
	}
}

.footer-description {
	font-size: 0.875rem;
	line-height: 1.5;
	max-width: 64rem;
}

@media (min-width: 768px) {
	.footer-description {
		font-size: 0.95rem;
	}
}

@media (min-width: 1024px) {
	.footer-description {
		font-size: 1.125rem;
	}
}

.footer-divider {
	height: 1px;
	background-color: rgba(255, 255, 255, 0.3);
	margin-bottom: 1rem;
}

@media (min-width: 768px) {
	.footer-divider {
		margin-bottom: 1.5rem;
	}
}

.footer-bottom {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: flex-start;
}

@media (min-width: 768px) {
	.footer-bottom {
		gap: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.footer-bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

.footer-links {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
	flex: 1;
}

@media (min-width: 768px) {
	.footer-links {
		flex-direction: row;
		align-items: center;
		gap: 1.25rem;
	}
}

@media (min-width: 1024px) {
	.footer-links {
		gap: 2rem;
	}
}

.footer-socials {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.footer-social-link {
	width: 2rem;
	height: 2rem;
	background-color: #fff;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 768px) {
	.footer-social-link {
		width: 2.5rem;
		height: 2.5rem;
	}
}

.footer-social-link:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.footer-social-icon {
	width: 100%;
	height: 100%;
	border-radius: 999px;
}

.footer-address {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
	.footer-address {
		gap: 0.75rem;
		margin-bottom: 0;
	}
}

.footer-address-icon {
	width: 1.25rem;
	height: 1.25rem;
	flex-shrink: 0;
	margin-top: 0.25rem;
}

@media (min-width: 768px) {
	.footer-address-icon {
		width: 1.5rem;
		height: 1.5rem;
		margin-top: 0;
	}
}

.footer-address-link {
	font-size: 0.875rem;
	font-weight: 500;
	color: #fff;
	text-decoration: underline;
	transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
	.footer-address-link {
		font-size: 0.95rem;
	}
}

@media (min-width: 1024px) {
	.footer-address-link {
		font-size: 1rem;
	}
}

.footer-address-link:hover {
	opacity: 0.8;
}

.footer-directions-btn {
	width: 100%;
	background: transparent;
	border: 1px solid #fff;
	color: #fff;
	padding: 0.5rem 1.25rem;
	font-size: 0.875rem;
	font-weight: 300;
	border-radius: 0.75rem;
	transition: background-color 0.3s ease, color 0.3s ease;
	white-space: nowrap;
}

@media (min-width: 768px) {
	.footer-directions-btn {
		padding: 0.625rem 2rem;
		font-size: 0.95rem;
	}
}

@media (min-width: 1024px) {
	.footer-directions-btn {
		width: auto;
		font-size: 1rem;
	}
}

.footer-directions-btn:hover {
	background-color: #fff;
	color: var(--brand-red);
}

.footer-legal {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	text-align: center;
	font-size: 0.75rem;
	opacity: 0.9;
}

@media (min-width: 768px) {
	.footer-legal {
		margin-top: 1.5rem;
		padding-top: 1.5rem;
		font-size: 1rem;
	}
}

/* Form Popup Overlay */
.form-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.45);
  z-index: 1001;
}

.form-card.popup-active {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1002;
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
  display: block !important;
}

.form-close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #c8102e;
  cursor: pointer;
  z-index: -1;
}

@media (max-width: 768px) {
  .form-card {
    display: none;
  }
}



	/* .exposure-cards-container {
		padding-bottom: 20px;
	} */

	.exposure-card {
		position: sticky;
		top: 80px;
		margin-bottom: 40px;
		transform-origin: center top;
		transition: transform 0.2s ease-out;
		will-change: transform;
	}

	/* Each successive card has a higher z-index */
	.exposure-card[data-card="0"] { z-index: 10; }
	.exposure-card[data-card="1"] { z-index: 11; }
	.exposure-card[data-card="2"] { z-index: 12; }
	.exposure-card[data-card="3"] { z-index: 13; }

	/* Animation states controlled by JavaScript */
	.exposure-card.card-active {
		transform: scale(1) translateY(0);
	}

	.exposure-card.card-scaling {
		transform: scale(0.95) translateY(-20px);
	}

.loginWithOtp.text-right {
    text-align: end;
}
@media (min-width: 1200px) {
    .h2,h2 {
        font-size: 1.6rem;
    }
}