* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* ============================================
   SECTION 1 - HERO SECTION
   ============================================ */

.section1-container {
  overflow: hidden;
  position: relative;
  /* min-height: 100vh; */
}

.section1-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(1);
  object-position: 69% 0%;
}

.section1-content-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 100px 10px 0px 10px;
  color: #fff;
  max-width: 1400px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}

.section1-bar {
  height: 80px;
  padding: 30px;
}

/* LEFT SIDE */
.section1-left {
  flex: 1 1 500px;
  max-width: 100%;
}

.section1-logo {
  width: 100px;
  position: absolute;
  top: -50px;
  left: 10px;
  opacity: 0;
  transform: translateY(-80px) scale(0.8);
  animation: logoPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.2s;
}

.section1-logo img {
  width: 100%;
  height: 100%;
}

@keyframes logoPop {
  0% {
    opacity: 0;
    transform: translateY(-80px) scale(0.8);
  }

  60% {
    opacity: 1;
    transform: translateY(10px) scale(1.05);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.section1-title {
  font-size: 52px;
  font-weight: 600;
  line-height: 1.2;
  opacity: 0;
  color: black;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* STATS SECTION */
.section1-stats {
  width: fit-content;
  display: flex;
  margin: 30px 0;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(90deg, rgb(1, 147, 166), rgb(11, 149, 112));
  transition: transform 0.3s ease, background 0.3s;
}

.section1-stats:hover {
  transform: scale(1.03);
}

.section1-stat {
  width: 200px;
  padding: 15px;
}

.section1-stat:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.section1-stat h2 {
  font-size: 30px;
  font-weight: 700;
}

.section1-stat p {
  font-size: 20px;
}

.counter {
  font-weight: bold;
}

/* SUBTITLE */
.section1-subtitle {
  font-size: 34px;
  margin: 25px 0;
  opacity: 0;
  color: black;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.4s;
}

/* BUTTONS */
.section1-buttons {
  display: flex;
  gap: 15px;
}

.section1-btn-primary {
  padding: 13px 26px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #ff512f, #f09819);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.section1-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: 0.5s;
}

.section1-btn-primary:hover::before {
  left: 100%;
}

.section1-btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
}

/* MIDDLE - GIRL IMAGE */
.section1-girl-image {
  flex-shrink: 0;
  width: 375px;
  margin: 0 -40px 0 -80px;
  z-index: 5;
  position: absolute;
  left: 50%;
  top: 3%;
}

.section1-girl-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
  padding-top: 110px;
}

/* RIGHT SIDE - FORM */
.section1-right {
  max-width: 400px;
  width: 100%;
  height: auto;
  min-height: 350px;
  background: linear-gradient(90deg, rgb(1, 147, 166), rgb(11, 149, 112));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  opacity: 0;
  transform: translateX(50px);
  animation: slideIn 1s ease forwards;
  animation-delay: 0.6s;
  position: relative;
  top: -125px;
  z-index: 10;
}

.section1-right h2 {
  color: white;
  text-transform: uppercase;
  padding: 20px;
  font-size: 28px;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================
   RESPONSIVE STYLES (Mobile & Tablet)
   ============================================ */

@media (max-width: 1000px) {
  .section1-bg {
    height: auto;
    min-height: 100%;
    object-position: 50% 0%;
  }

  .section1-bar {
    height: 0px;
    padding: 0px;
  }

  .section1-content-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px 0px 20px;
    gap: 20px;
  }

  .section1-title {
    font-size: 32px;
  }

  .section1-subtitle {
    font-size: 22px;
  }

  .section1-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .section1-stats {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }

  .section1-stat {
    padding: 15px;
    width: auto;
    min-width: 180px;
  }

  .section1-stat:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: none;
  }

  /* HIDE GIRL IMAGE ON TABLET & MOBILE */
  .section1-girl-image {
    display: none;
  }

  /* FIX LOGO POSITION */
  .section1-logo {
    position: relative;
    top: 0;
    left: 0;
    margin: 0 auto 20px auto;
  }

  /* FIX FORM POSITION */
  .section1-right {
    margin-top: 20px;
    max-width: 100%;
    position: relative;
    top: 0;
  }

  .section1-left {
    text-align: center;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .section1-title {
    font-size: 28px;
  }

  .section1-subtitle {
    font-size: 20px;
  }

  .section1-stat h2 {
    font-size: 24px;
  }

  .section1-stat p {
    font-size: 16px;
  }

  /* STACK STATS VERTICALLY ON MOBILE */
  .section1-stats {
    flex-direction: column;
  }

  .section1-stat:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .section1-stat {
    width: 100%;
  }

  .section1-btn-primary {
    width: 100%;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .section1-title {
    font-size: 24px;
  }

  .section1-subtitle {
    font-size: 18px;
  }

  .section1-content-wrapper {
    padding: 30px 15px 0px 15px;
  }

  .section1-stat h2 {
    font-size: 22px;
  }

  .section1-stat p {
    font-size: 14px;
  }

  .section1-btn-primary {
    font-size: 14px;
    padding: 10px 16px;
  }

  .section1-right h2 {
    font-size: 22px;
  }

  .section1-right {
    padding: 0 10px;
  }
}

/* CIRCLE ANIMATIONS (keep as is) */
.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 8s infinite linear;
  z-index: 1;
}

.circle:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
}

.circle:nth-child(2) {
  width: 100px;
  height: 100px;
  top: 9%;
  left: 47%;
}

.circle:nth-child(3) {
  width: 80px;
  height: 80px;
  top: 23%;
  left: 38%;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

.section2-container {
  font-family: Arial, sans-serif;
  padding: 0 0 50px 0;
  text-align: center;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}



.section2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1300px;
  padding: 0px 10px;
  margin: auto;
}

.section2-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.section2-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.section2-card img {
  /* border: 1px solid red; */
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
  transform: scale(1.5);
}

.section2-card:hover img {
  transform: rotate(10deg) scale(1.1);
}

.section2-text {
  font-size: 16px;
  color: #555;
}

.section2-text strong {
  display: block;
  margin-top: 5px;
  color: #000;
}

/* Hover overlay effect */
.section2-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 79, 114, 0.08);
  opacity: 0;
  transition: 0.3s;
}

.section2-card:hover::after {
  opacity: 1;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .section2-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .section2-title {
    font-size: 24px;
    padding: 0px 5px;
  }

  .section2-grid {
    grid-template-columns: 1fr;
  }

  .section2-card {
    padding: 15px;
  }
}

/* BACKGROUND */
.section3-container {
  background: linear-gradient(to right, #ffffff, #dcdcdc);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 0px;
}

/* WRAPPER */
.section3-wrapper {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 15px;
  align-items: center;
}

/* LEFT */
.section3-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARD (GRID FIX FOR PERFECT ALIGNMENT) */
.section3-card {
  display: grid;
  grid-template-columns: 74px 104px 1px auto;
  align-items: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 1px;
  min-height: 90px;
  gap: 60px;
  transition: 0.3s;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.7);
}

.section3-card:hover {
  transform: translateY(-4px);
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.7);
}

/* ICON */
.section3-icon {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgb(1, 147, 166), rgb(11, 149, 112));
  display: flex;
  align-items: center;
  justify-content: center;
}

.section3-icon img {
  width: 36px;
  height: 36px;
}

/* NUMBER */
.section3-card h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1e4c7a;
  white-space: nowrap;
}

/* DIVIDER */
.section3-divider {
  width: 1px;
  height: 45px;
  background: #1e4c7a;
}

/* TEXT */
.section3-card p {
  font-size: 15px;
  color: #1e4c7a;
}

/* RIGHT CAROUSEL CONTAINER */
.s3-carousel-container {
  position: relative;
  width: 104%;
  display: flex;
  align-items: center;
  gap: 7px;
}

.s3-carousel-viewport {
  overflow: hidden;
  width: 100%;
  flex: 1;
  min-width: 0;
  border-radius: 12px;
}

.s3-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.s3-slide {
  flex: 0 0 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  box-sizing: border-box;
  align-content: start;
  margin-bottom: 10px;
}

/* LOGO CARD */
.section3-logo {
  background: #ffffff;
  border-radius: 8px;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  height: 64px;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.7);
}

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

.section3-logo:hover {
  transform: scale(1.05);
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.7);
}

/* NAVIGATION BUTTONS */
.s3-nav-btn {
  background: #1e4c7a;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  flex-shrink: 0;
  z-index: 10;
}

.s3-nav-btn:hover:not(:disabled) {
  background: #0bb3a6;
}

.s3-nav-btn:disabled {
  background: #a0b3c6;
  cursor: not-allowed;
  opacity: 0.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .section3-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .s3-slide {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 10px;
  }

  .s3-carousel-container {
    width: 100%;
    min-width: 0;
    margin: auto;
    box-sizing: border-box;
  }
}

@media (max-width: 600px) {
  .s3-slide {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 10px;
  }

  .s3-nav-btn {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .s3-carousel-container {
    gap: 8px;
  }

  .section3-card {
    grid-template-columns: 60px 75px 1px auto;
    padding: 12px 10px;
    gap: 10px;
  }

  .section3-card h2 {
    font-size: 16px;
  }

  .section3-icon {
    width: 60px;
    height: 60px;
  }

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

  .section3-card p {
    font-size: 13px;
    white-space: normal;
  }
}

/* SECTION */
.section4-container {
  background: linear-gradient(90deg, rgb(1, 147, 166), rgb(11, 149, 112));
  padding: 50px 20px;
  color: #fff;
  overflow: hidden;
}

/* MAIN WRAPPER */
.section4-wrapper {
  max-width: 1130px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* HEADER */
.section4-header {
  text-align: center;
  margin-bottom: 20px;
}

.section4-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 15px;
}

.section4-subtitle {
  font-size: 22px;
  color: #e4f7f5;
  max-width: 800px;
  margin: auto;
  font-weight: 400;
}

/* RIGHT SIDE - CAROUSEL */
.section4-carousel-container {
  position: relative;
  width: 100%;
}

.section4-cards {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 80px 20px 40px 20px;
  /* Space for avatars */
}

.section4-cards::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

/* CARD */
.section4-card {
  flex: 0 0 calc(33.333% - 20px);
  background: linear-gradient(180deg, #b8e0da 0%, #9bc7c0 100%);
  padding: 53px 31px 31px 30px;
  border-radius: 40px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  scroll-snap-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.section4-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* IMAGE */
.section4-image {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 4px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.section4-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  filter: invert(0.5);
}

/* STARS */
.section4-stars {
  color: #fbbc05;
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

/* TEXT */
.section4-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a4f4b;
  margin-bottom: 2px;
}

.section4-batch {
  font-size: 15px;
  color: #2c645f;
  font-weight: 600;
  margin-bottom: 15px;
}

.section4-desc {
  font-size: 16px;
  color: #2a5551;
  line-height: 1.5;
  font-weight: 500;
}

/* NAV BUTTONS */
.section4-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ff6a2b;
  color: white;
  border: none;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.section4-nav-btn:hover {
  background: #e55a1e;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.section4-prev-btn {
  left: -30px;
}

.section4-next-btn {
  right: -30px;
}

.section4-nav-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* DOTS */
.section4-dots {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.section4-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.section4-dot.active {
  background: #fff;
  transform: scale(1.3);
}

@media (max-width: 1100px) {
  .section4-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .section4-container {
    padding: 60px 20px;
  }

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

  .section4-subtitle {
    font-size: 18px;
  }

  .section4-card {
    flex: 0 0 100%;
    padding: 60px 20px 30px 20px;
  }

  .section4-nav-btn {
    width: 45px;
    height: 45px;
  }

  .section4-prev-btn {
    left: 0;
  }

  .section4-next-btn {
    right: 0;
  }
}

/* MODAL STYLES */
.section4-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.section4-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.section4-modal-content {
  background: #fff;
  color: #333;
  max-width: 650px;
  width: 100%;
  border-radius: 20px;
  position: relative;
  /* padding: 40px; */
  padding: 55px 25px 25px 25px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.section4-modal-overlay.active .section4-modal-content {
  transform: translateY(0);
}

.section4-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f0f0f0;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #444;
  transition:
    background 0.2s,
    transform 0.2s;
}

.section4-modal-close:hover {
  background: #e0e0e0;
  transform: rotate(90deg);
}

.section4-modal-title {
  font-size: 26px;
  font-weight: 700;
  color: #0ea996;
  margin-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 15px;
}

.section4-modal-body {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 10px;
}

/* Custom scrollbar for modal body */
.section4-modal-body::-webkit-scrollbar {
  width: 6px;
}

.section4-modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.section4-modal-body::-webkit-scrollbar-thumb {
  background: #0ea996;
  border-radius: 10px;
}

@media (max-width: 600px) {
  .section4-modal-content {
    padding: 30px 20px;
  }

  .section4-modal-title {
    font-size: 22px;
  }

  .section4-modal-body {
    font-size: 15px;
  }
}

/* ============================================
   SECTION 5 - EXPLORE THE TITE DIFFERENCE
   ============================================ */

.section5-container {
  padding: 60px 20px;
  background: #ffffff;
  max-width: 1300px;
  margin: 0 auto;
  font-family: 'Open Sans', sans-serif;
  overflow: hidden;
}

.section5-header {
  text-align: left;
  margin-bottom: 50px;
}

.section5-title {
  font-size: 52px;
  font-weight: 800;
  color: #1a4f8a;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.section5-subtitle {
  font-size: 24px;
  color: #666;
  font-weight: 400;
  line-height: 1.4;
}

.section5-content {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

/* TABS - Left Side */
.section5-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 440px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 10px;
}

/* Custom scrollbar for tabs */
.section5-tabs::-webkit-scrollbar {
  width: 5px;
}

.section5-tabs::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 10px;
}

.section5-tabs::-webkit-scrollbar-thumb {
  background: #14b8a6;
  border-radius: 10px;
}

.section5-tab {
  background: #fff;
  padding: 10px 22px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e8e8e8;
  flex-shrink: 0;
}

.section5-tab span {
  font-size: 15px;
  font-weight: 600;
  color: #444;
  transition: color 0.3s;
  line-height: 1.4;
}

.section5-arrow {
  width: 10px;
  height: 10px;
  border-right: 2.5px solid #ccc;
  border-bottom: 2.5px solid #ccc;
  transform: rotate(-45deg);
  transition: all 0.3s;
  flex-shrink: 0;
  margin-left: 10px;
}

.section5-tab:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.section5-tab.active {
  background: #f0fdf9;
  border-color: #14b8a6;
  transform: translateX(8px);
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.15);
}

.section5-tab.active span {
  color: #14b8a6;
}

.section5-tab.active .section5-arrow {
  border-color: #14b8a6;
}

/* FEATURED CARD - Right Side */
.section5-featured-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  aspect-ratio: 16/10;
  background: #f5f5f5;
  transition: opacity 0.3s ease;
}

.section5-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section5-featured-card:hover .section5-featured-img {
  transform: scale(1.03);
}

.section5-featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(11, 149, 112, 0.95), rgba(11, 149, 112, 0.7), transparent);
  padding: 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.section5-featured-overlay h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.section5-featured-overlay p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 90%;
}

/* Navigation Circle Buttons */
.section5-nav-btn-circle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ff5e3a;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 94, 58, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10;
}

.section5-nav-btn-circle:hover {
  transform: translateY(-50%) scale(1.1);
  background: #ff7a18;
}

.section5-nav-btn-circle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.section5-prev-btn-circle {
  left: 15px;
}

.section5-next-btn-circle {
  right: 15px;
}

/* BOTTOM CAROUSEL */
.section5-carousel-wrapper {
  position: relative;
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.section5-carousel {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scrollbar-width: thin;
  -ms-overflow-style: auto;
  flex: 1;
  padding-bottom: 10px;
  padding-top: 10px;
  scroll-behavior: smooth;
}

.section5-carousel::-webkit-scrollbar {
  height: 5px;
}

.section5-carousel::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 10px;
}

.section5-carousel::-webkit-scrollbar-thumb {
  background: #14b8a6;
  border-radius: 10px;
}

.section5-thumb {
  flex: 0 0 200px;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section5-thumb:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.section5-thumb.active {
  border: 3px solid #14b8a6;
  transform: scale(1.02);
}

.section5-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section5-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  transition: 0.3s;
}

.section5-thumb:hover .section5-thumb-overlay {
  background: rgba(20, 184, 166, 0.6);
}

.section5-thumb-overlay span {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Carousel Navigation Buttons */
.section5-carousel-btn {
  background: #ff5e3a;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 94, 58, 0.3);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.section5-carousel-btn:hover {
  background: #ff7a18;
  transform: scale(1.08);
}

.section5-carousel-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ============================================
   SECTION 5 - RESPONSIVE STYLES
   ============================================ */

/* Tablet Landscape (992px - 1200px) */
@media (max-width: 1200px) {
  .section5-content {
    grid-template-columns: 420px 1fr;
    gap: 30px;
  }

  .section5-featured-overlay h4 {
    font-size: 24px;
  }

  .section5-featured-overlay p {
    font-size: 14px;
  }

  .section5-title {
    font-size: 42px;
  }

  .section5-subtitle {
    font-size: 20px;
  }
}

/* Tablet Portrait (768px - 992px) */
@media (max-width: 992px) {
  .section5-container {
    padding: 40px 20px;
  }

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

  .section5-tabs {
    order: 2;
    max-height: 400px;
  }

  .section5-featured-card {
    order: 1;
    aspect-ratio: 16/11;
  }

  .section5-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .section5-title {
    font-size: 36px;
    text-align: center;
  }

  .section5-subtitle {
    font-size: 18px;
    text-align: center;
  }

  .section5-tab span {
    font-size: 14px;
  }

  .section5-featured-overlay {
    padding: 25px;
  }

  .section5-featured-overlay h4 {
    font-size: 22px;
  }

  .section5-featured-overlay p {
    font-size: 14px;
    max-width: 100%;
  }

  .section5-thumb {
    flex: 0 0 170px;
  }
}

/* Mobile Large (576px - 768px) */
@media (max-width: 768px) {
  .section5-container {
    padding: 30px 16px;
  }

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

  .section5-subtitle {
    font-size: 16px;
  }

  .section5-tab {
    padding: 12px 18px;
  }

  .section5-tab span {
    font-size: 13px;
  }

  .section5-featured-card {
    aspect-ratio: 4/3;
  }

  .section5-featured-overlay {
    padding: 20px;
  }

  .section5-featured-overlay h4 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .section5-featured-overlay p {
    font-size: 12px;
    line-height: 1.5;
  }

  .section5-nav-btn-circle {
    width: 32px;
    height: 32px;
  }

  .section5-nav-btn-circle svg {
    width: 18px;
    height: 18px;
  }

  .section5-prev-btn-circle {
    left: 10px;
  }

  .section5-next-btn-circle {
    right: 10px;
  }

  .section5-carousel-wrapper {
    gap: 10px;
  }

  .section5-carousel-btn {
    width: 32px;
    height: 32px;
  }

  .section5-carousel-btn svg {
    width: 16px;
    height: 16px;
  }

  .section5-thumb {
    flex: 0 0 140px;
  }

  .section5-thumb-overlay span {
    font-size: 10px;
  }
}

/* Mobile Medium (480px - 576px) */
@media (max-width: 576px) {
  .section5-title {
    font-size: 24px;
  }

  .section5-subtitle {
    font-size: 14px;
  }

  .section5-header {
    margin-bottom: 30px;
  }

  .section5-tab {
    padding: 10px 15px;
  }

  .section5-tab span {
    font-size: 12px;
  }

  .section5-featured-overlay {
    padding: 15px;
  }

  .section5-featured-overlay h4 {
    font-size: 16px;
  }

  .section5-featured-overlay p {
    font-size: 11px;
    line-height: 1.4;
  }

  .section5-thumb {
    flex: 0 0 120px;
  }

  .section5-carousel {
    gap: 10px;
  }

  .section5-carousel-btn {
    width: 28px;
    height: 28px;
  }

  .section5-nav-btn-circle {
    width: 28px;
    height: 28px;
  }
}

/* Mobile Small (below 480px) */
@media (max-width: 480px) {
  .section5-container {
    padding: 25px 12px;
  }

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

  .section5-subtitle {
    font-size: 13px;
  }

  .section5-tabs {
    gap: 8px;
  }

  .section5-tab {
    padding: 10px 12px;
  }

  .section5-tab span {
    font-size: 11px;
  }

  .section5-featured-overlay h4 {
    font-size: 14px;
  }

  .section5-featured-overlay p {
    font-size: 10px;
    line-height: 1.4;
  }

  .section5-thumb {
    flex: 0 0 100px;
  }

  .section5-thumb-overlay {
    padding: 8px;
  }

  .section5-thumb-overlay span {
    font-size: 9px;
  }

  .section5-carousel-btn,
  .section5-nav-btn-circle {
    width: 26px;
    height: 26px;
  }

  .section5-carousel-btn svg,
  .section5-nav-btn-circle svg {
    width: 14px;
    height: 14px;
  }
}

/* Extra Small Mobile (below 380px) */
@media (max-width: 380px) {
  .section5-thumb {
    flex: 0 0 85px;
  }

  .section5-thumb-overlay span {
    font-size: 8px;
  }

  .section5-featured-overlay h4 {
    font-size: 13px;
  }

  .section5-featured-overlay p {
    font-size: 9px;
  }

  .section5-title {
    font-size: 20px;
  }

  .section5-subtitle {
    font-size: 12px;
  }
}

/* Fix for active tab on mobile */
@media (max-width: 768px) {
  .section5-tab.active {
    transform: translateX(4px);
  }

  .section5-tab:hover {
    transform: translateX(2px);
  }
}

/* ============================================
   SECTION 6 - DISCOVER EXCELLENCE (AI-Powered MBA)
   ============================================ */

.section6-container {
  width: 100%;
  max-width: 1300px;
  margin: 20px auto 0px auto;
  display: flex;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  background: #fff;
  border-radius: 4px;
  overflow: visible;
}

/* Left Side */
.section6-left {
  flex: 1;
  background: linear-gradient(90deg, rgb(1, 147, 166), rgb(11, 149, 112));
  color: #ffffff;
  padding: 20px 35px 110px 40px;
  position: relative;
  z-index: 2;
}

/* Circuit Pattern SVG overlay */
.section6-circuit-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  opacity: 0.15;
  pointer-events: none;
}

.section6-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
  max-width: 500px;
  word-wrap: break-word;
}

.section6-description {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  opacity: 0.85;
  margin-bottom: 25px;
  max-width: 540px;
  word-wrap: break-word;
}

/* Right Side */
.section6-right {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 670px;
}

.section6-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.6s ease, transform 10s linear;
}

.section6-container:hover .section6-main-img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Floating Info Card Overlay */
.section6-info-card {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  background: white;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  z-index: 10;
  overflow: hidden;
  width: 440px;
  animation: cardFloat 2s ease-in-out infinite alternate;
  cursor: pointer;
}

@keyframes cardFloat {
  from {
    transform: translateY(0) translateX(-50%);
  }

  to {
    transform: translateY(-5px) translateX(-50%);
  }
}

.section6-line {
  width: 2px;
  border-radius: 100px;
  height: 50px;
  background-color: #ddd;
}

.section6-eligibility {
  padding: 20px 30px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section6-eligibility h4 {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  text-align: center;
}

.section6-eligibility p {
  color: #ff6624;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  word-wrap: break-word;
}

.section6-eligibility p:hover {
  color: #ff4422;
  transform: scale(1.02);
}

.section6-date-box {
  background: linear-gradient(135deg, #ff8e4d 0%, #ff6624 100%);
  color: white;
  padding: 15px;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.section6-indicator-dot {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  border: 4px solid #ff6624;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 11;
}

.section6-date-label {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
  opacity: 0.95;
}

.section6-date-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section6-day-container {
  display: flex;
  align-items: flex-start;
}

.section6-day {
  font-size: 38px;
  font-weight: 800;
  line-height: 0.9;
}

.section6-th {
  font-size: 14px;
  font-weight: 700;
  margin-top: 5px;
  margin-left: 2px;
}

.section6-month {
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
  letter-spacing: 0.5px;
}

/* Apply Now Vertical Tag Ribbon */
.section6-apply-now {
  position: absolute;
  right: 0;
  top: 30%;
  transform: translateY(0);
  background: linear-gradient(135deg, #ff8e4d 0%, #ff6624 100%);
  color: white;
  padding: 40px 12px;
  writing-mode: vertical-lr;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 19px;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: -8px 5px 20px rgba(0, 0, 0, 0.2);
  letter-spacing: 1.5px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section6-apply-now:hover {
  padding-right: 30px;
  background: linear-gradient(135deg, #ff9b66 0%, #ff7a40 100%);
}

/* ============================================
   SECTION 6 - RESPONSIVE STYLES (NO TEXT CUTTING)
   ============================================ */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .section6-container {
    flex-direction: column;
    min-height: auto;
    margin: 0;
    border-radius: 0;
  }

  .section6-left {
    flex: 0 0 auto;
    width: 100%;
    padding: 40px 30px;
  }

  .section6-right {
    flex: 0 0 auto;
    width: 100%;
    height: 500px;
  }

  .section6-title {
    font-size: 36px;
    max-width: 100%;
  }

  .section6-description {
    font-size: 15px;
    max-width: 100%;
  }

  .section6-info-card {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    animation: none;
  }

  .section6-apply-now {
    writing-mode: horizontal-tb;
    bottom: 30%;
    top: auto;
    right: auto;
    font-size: 18px;
    border-radius: 0 10px 10px 0;
    padding: 12px 25px;
    left: 0;
  }
}

/* Mobile Large (576px - 768px) */
@media (max-width: 768px) {
  .section6-left {
    padding: 30px 25px;
  }

  .section6-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .section6-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .section6-right {
    height: 400px;
  }

  .section6-info-card {
    flex-direction: column;
    width: 90%;
    max-width: 350px;
    border-radius: 12px;
    bottom: 20px;
  }

  .section6-eligibility {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #eee;
    text-align: center;
    padding: 15px 20px;
  }

  .section6-eligibility h4 {
    font-size: 16px;
  }

  .section6-eligibility p {
    font-size: 12px;
  }

  .section6-indicator-dot {
    display: none;
  }

  .section6-date-box {
    justify-content: center;
    gap: 20px;
    padding: 15px 20px;
  }

  .section6-date-label {
    font-size: 10px;
  }

  .section6-day {
    font-size: 28px;
  }

  .section6-th {
    font-size: 11px;
  }

  .section6-month {
    font-size: 11px;
  }

  .section6-line {
    height: 30px;
  }

  .section6-apply-now {
    position: relative;
    writing-mode: horizontal-tb;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    margin: 20px auto;
    display: inline-block;
    width: auto;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 16px;
  }
}

/* Mobile Medium (480px - 576px) */
@media (max-width: 576px) {
  .section6-left {
    padding: 25px 20px;
  }

  .section6-title {
    font-size: 24px;
  }

  .section6-description {
    font-size: 13px;
  }

  .section6-right {
    height: 350px;
  }

  .section6-info-card {
    width: 95%;
    max-width: 320px;
  }

  .section6-eligibility {
    padding: 12px 15px;
  }

  .section6-eligibility h4 {
    font-size: 15px;
  }

  .section6-eligibility p {
    font-size: 11px;
  }

  .section6-date-box {
    padding: 12px 15px;
    gap: 15px;
  }

  .section6-date-label {
    font-size: 9px;
  }

  .section6-day {
    font-size: 24px;
  }

  .section6-th {
    font-size: 10px;
  }

  .section6-month {
    font-size: 10px;
  }

  .section6-line {
    height: 25px;
  }

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

/* Mobile Small (below 480px) */
@media (max-width: 480px) {
  .section6-left {
    padding: 20px 15px;
  }

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

  .section6-description {
    font-size: 12px;
    line-height: 1.5;
  }

  .section6-right {
    height: 300px;
  }

  .section6-info-card {
    width: 95%;
    max-width: 280px;
  }

  .section6-eligibility h4 {
    font-size: 14px;
  }

  .section6-eligibility p {
    font-size: 10px;
  }

  .section6-date-label {
    font-size: 8px;
  }

  .section6-day {
    font-size: 22px;
  }

  .section6-th {
    font-size: 9px;
  }

  .section6-month {
    font-size: 9px;
  }

  .section6-apply-now {
    font-size: 13px;
    padding: 8px 20px;
  }
}

/* Extra Small Mobile (below 380px) */
@media (max-width: 380px) {
  .section6-title {
    font-size: 20px;
  }

  .section6-description {
    font-size: 11px;
  }

  .section6-info-card {
    max-width: 260px;
  }

  .section6-eligibility h4 {
    font-size: 13px;
  }

  .section6-day {
    font-size: 20px;
  }

  .section6-date-label {
    font-size: 7px;
  }
}

/* Fix for very narrow screens */
@media (max-width: 320px) {
  .section6-title {
    font-size: 18px;
  }

  .section6-description {
    font-size: 10px;
  }

  .section6-info-card {
    max-width: 240px;
  }

  .section6-eligibility h4 {
    font-size: 12px;
  }

  .section6-day {
    font-size: 18px;
  }
}

/* Modal CSS - Keep as is but ensure responsive */
.section6-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.section6-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.section6-modal-content {
  background: #fff;
  width: 90%;
  max-width: 600px;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.section6-modal-overlay.active .section6-modal-content {
  transform: translateY(0);
}

.section6-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.section6-modal-close:hover {
  color: #333;
}

.section6-modal-heading {
  color: #1a1a1a;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 5px;
  padding-right: 20px;
  word-wrap: break-word;
}

.section6-modal-subheading {
  color: #ff6624;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.4;
  word-wrap: break-word;
}

.section6-modal-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.section6-modal-block {
  background: #f8fbfd;
  padding: 25px;
  border-radius: 20px;
  border: 1px solid #eef2f5;
}

.section6-modal-block h4 {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  word-wrap: break-word;
}

.section6-modal-block ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.section6-modal-block ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  font-weight: 500;
  word-wrap: break-word;
}

.section6-modal-block ul li::before {
  content: "•";
  color: #ff6624;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 16px;
}

/* Modal Responsive */
@media (max-width: 600px) {
  .section6-modal-content {
    padding: 30px 20px;
  }

  .section6-modal-heading {
    font-size: 22px;
  }

  .section6-modal-subheading {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .section6-modal-body {
    gap: 20px;
  }

  .section6-modal-block {
    padding: 18px;
  }

  .section6-modal-block h4 {
    font-size: 16px;
  }

  .section6-modal-block ul li {
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  .section6-modal-content {
    padding: 25px 15px;
  }

  .section6-modal-heading {
    font-size: 20px;
  }

  .section6-modal-subheading {
    font-size: 12px;
  }

  .section6-modal-block {
    padding: 15px;
  }

  .section6-modal-block h4 {
    font-size: 15px;
  }

  .section6-modal-block ul li {
    font-size: 12px;
  }
}

/* ============================================
   SECTION 7 - DISCOVER OUR AI-ENABLED MBA PROGRAMS
   ============================================ */

.section7-main-wrapper {
  width: 100%;
  position: relative;
  padding: 100px 20px 120px 20px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("./images/section7/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.section7-header {
  text-align: center;
  margin-bottom: 60px;
}

.section7-main-heading {
  font-size: 52px;
  font-weight: 800;
  color: #000;
  margin-bottom: 25px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
  word-wrap: break-word;
}

.section7-sub-heading {
  font-size: 20px;
  color: #777;
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
  word-wrap: break-word;
}

/* General Container Structure */
.section7-content-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.section7-tab-title {
  font-size: 28px;
  font-weight: 700;
  color: #00847b;
  margin-bottom: 30px;
  text-align: left;
  border-left: 5px solid #00847b;
  padding-left: 15px;
  text-transform: uppercase;
  word-wrap: break-word;
}

/* The Grid */
.section7-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.section7-card {
  width: calc(20% - 20px);
  min-width: 200px;
  flex: 0 0 auto;
}

/* The Card Design */
.section7-card {
  display: flex;
  background: #fff;
  border: 1px solid #333;
  border-radius: 20px;
  overflow: hidden;
  height: 110px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.section7-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.section7-card-left {
  flex: 1;
  background: #fff;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.section7-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.section7-course-name {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.section7-card-right {
  width: 75px;
  background: linear-gradient(90deg, rgb(1, 147, 166), rgb(11, 149, 112));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-left: 1px solid #333;
  flex-shrink: 0;
}

.section7-seats {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
}

/* ============================================
   SECTION 7 - RESPONSIVE STYLES
   ============================================ */

/* Large Desktop (1200px - 1400px) */
@media (max-width: 1400px) {
  .section7-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .section7-card {
    width: calc(25% - 20px);
  }
}

/* Desktop (992px - 1200px) */
@media (max-width: 1200px) {
  .section7-main-heading {
    font-size: 44px;
  }

  .section7-sub-heading {
    font-size: 18px;
  }

  .section7-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section7-card {
    width: calc(33.33% - 20px);
  }
}

/* Tablet Landscape (768px - 992px) */
@media (max-width: 992px) {
  .section7-main-wrapper {
    padding: 60px 20px 80px 20px;
  }

  .section7-main-heading {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .section7-sub-heading {
    font-size: 16px;
    padding: 0 15px;
  }

  .section7-header {
    margin-bottom: 40px;
  }

  .section7-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .section7-card {
    width: calc(50% - 15px);
    height: 100px;
  }

  .section7-card-left {
    padding: 12px;
    gap: 10px;
  }

  .section7-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .section7-course-name {
    font-size: 13px;
  }

  .section7-card-right {
    width: 65px;
  }

  .section7-seats {
    font-size: 12px;
  }
}

/* Tablet Portrait (576px - 768px) */
@media (max-width: 768px) {
  .section7-main-wrapper {
    padding: 50px 15px 60px 15px;
  }

  .section7-main-heading {
    font-size: 30px;
    letter-spacing: 0.5px;
  }

  .section7-sub-heading {
    font-size: 15px;
  }

  .section7-card {
    height: 95px;
  }

  .section7-card-left {
    padding: 10px;
    gap: 8px;
  }

  .section7-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
  }

  .section7-course-name {
    font-size: 12px;
  }

  .section7-card-right {
    width: 60px;
    padding: 8px;
  }

  .section7-seats {
    font-size: 11px;
  }
}

/* Mobile Large (480px - 576px) */
@media (max-width: 576px) {
  .section7-main-wrapper {
    padding: 40px 12px 50px 12px;
  }

  .section7-main-heading {
    font-size: 24px;
  }

  .section7-sub-heading {
    font-size: 13px;
  }

  .section7-grid {
    gap: 12px;
  }

  .section7-card {
    height: 85px;
  }

  .section7-card-left {
    padding: 8px;
    gap: 8px;
  }

  .section7-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

  .section7-course-name {
    font-size: 11px;
  }

  .section7-card-right {
    width: 55px;
    padding: 6px;
  }

  .section7-seats {
    font-size: 10px;
  }
}

/* Mobile Medium (380px - 480px) */
@media (max-width: 480px) {
  .section7-main-wrapper {
    padding: 35px 10px 45px 10px;
  }

  .section7-main-heading {
    font-size: 22px;
  }

  .section7-sub-heading {
    font-size: 12px;
  }

  .section7-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section7-card {
    width: 100%;
    height: auto;
    min-height: 75px;
  }

  .section7-card-left {
    padding: 10px 12px;
    gap: 10px;
  }

  .section7-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .section7-course-name {
    font-size: 12px;
  }

  .section7-card-right {
    width: 60px;
    padding: 10px 8px;
  }

  .section7-seats {
    font-size: 11px;
  }
}

/* Mobile Small (below 380px) */
@media (max-width: 380px) {
  .section7-main-heading {
    font-size: 20px;
  }

  .section7-sub-heading {
    font-size: 11px;
  }

  .section7-card-left {
    padding: 8px 10px;
    gap: 8px;
  }

  .section7-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }

  .section7-course-name {
    font-size: 11px;
  }

  .section7-card-right {
    width: 55px;
    padding: 8px 6px;
  }

  .section7-seats {
    font-size: 10px;
  }
}

/* Extra Small Mobile (below 320px) */
@media (max-width: 320px) {
  .section7-main-heading {
    font-size: 18px;
  }

  .section7-sub-heading {
    font-size: 10px;
  }

  .section7-course-name {
    font-size: 10px;
  }

  .section7-icon {
    width: 25px;
    height: 25px;
    min-width: 25px;
  }

  .section7-seats {
    font-size: 9px;
  }

  .section7-card-right {
    width: 50px;
  }
}

.section8-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  background: url("images/section8/bg.png") no-repeat center/cover;
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

/* FIX: contain overflow */
.section8-container {
  max-width: 1300px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0px;
  min-width: 0;
}

/* LEFT */
.section8-content {
  flex: 0 0 38%;
  color: white;
  min-width: 0;
}

.section8-content h2 {
  font-size: 42px;
  /* margin-bottom: 25px; */
  font-weight: 700;
  margin: 10px 0px !important;
}

.section8-content h3 {
  font-size: 40px;
  font-weight: 700;
  margin: 20px 0px !important;
}

.section8-accent {
  color: #f55a00;
  font-size: 46px;
  background: linear-gradient(to right, #f55a00, #ff8c00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CTA */
.section8-cta-btn {
  display: inline-block;
  /* margin-top: 35px; */
  padding: 16px 36px;
  background: linear-gradient(to right, #f55a00, #ff8c00);
  color: white;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

/* RIGHT */
.section8-gallery-wrapper {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

/* SLIDER */
.section8-gallery {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  align-items: flex-end;
  min-width: 0;
  padding: 20px 30px 40px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.section8-gallery::-webkit-scrollbar {
  display: none;
}

.section8-pill {
  flex: 0 0 175px;
  width: 175px;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  position: relative;
}

.section8-pill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

/* hover effect */
.section8-pill:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.section8-pill:hover img {
  filter: grayscale(0%);
}

/* heights */
.section8-pill:nth-child(1) {
  height: 320px;
}

.section8-pill:nth-child(2) {
  height: 350px;
}

.section8-pill:nth-child(3) {
  height: 380px;
}

.section8-pill:nth-child(4) {
  height: 410px;
}

.section8-pill:nth-child(5) {
  height: 440px;
}

.section8-pill:nth-child(6) {
  height: 470px;
}

.section8-pill:nth-child(7) {
  height: 500px;
}

/* BUTTONS */
.section8-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f55a00;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.section8-prev-btn {
  left: 0;
}

.section8-next-btn {
  right: 0;
}

.section8-nav-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

/* MOBILE */
@media (max-width: 1024px) {
  .section8-wrapper {
    padding: 60px 0 20px;
  }

  .section8-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .section8-pill.active-pill {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    z-index: 2;
  }

  .section8-pill.active-pill img {
    filter: grayscale(0%);
  }

  .section8-content {
    flex: 0 0 auto;
    width: 100%;
  }

  .section8-content h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .section8-content h3 {
    font-size: 28px;
    line-height: 1.3;
  }

  .section8-accent {
    font-size: 36px;
    display: inline-block;
    margin: 5px 0;
  }

  .section8-gallery-wrapper {
    width: 100%;
  }

  .section8-gallery {
    padding: 10px calc(50vw - 87.5px) 30px;
    /* Center alignment padding */
    scroll-snap-type: x mandatory;
  }

  .section8-pill {
    scroll-snap-align: center;
  }

  .section8-nav-btn {
    width: 40px;
    height: 40px;
  }
}

.section9-wrapper {
  position: relative;
  background: #ffffff;
  padding-top: 80px;
  padding-bottom: 40px;
  /* Included some bottom padding for balance */
  overflow: hidden;
  width: 100%;
}

/* The "Short Bar" Background */
.section9-wrapper::before {
  content: "";
  position: absolute;
  top: 62%;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(90deg, rgb(1, 147, 166), rgb(11, 149, 112));
  /* Teal Bar Color */
  transform: translateY(-50%);
  z-index: 1;
}

.section9-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section9-header {
  text-align: center;
  margin-bottom: 40px;
}

.section9-header h2 {
  margin: 0;
  color: #0d5c9e;
  /* Professional Blue */
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
}

.section9-header h3 {
  font-size: 1.2rem;
  color: #555;
  margin-top: 10px;
}

/* Slider Styles */
.section9-slider-wrapper {
  position: relative;
  z-index: 5;
  /* Space for buttons */
}

.section9-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 40px 0;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.section9-slider::-webkit-scrollbar {
  display: none;
}

.section9-card {
  flex: 0 0 calc(33.333% - 20px);
  aspect-ratio: 1 / 1;
  /* Square Boxes */
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  scroll-snap-align: center;
  position: relative;
}

.section9-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.section9-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.5s ease;
}

.section9-card.active img,
.section9-card:hover img {
  filter: grayscale(0);
}

/* Nav Buttons */
.section9-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9800, #f55a00);
  color: white;
  border: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(245, 90, 0, 0.4);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.section9-nav-btn:hover {
  background: linear-gradient(135deg, #ffa726, #ff7143);
  transform: translateY(-50%) scale(1.1);
}

.section9-prev-btn {
  left: -20px;
}

.section9-next-btn {
  right: -20px;
}

.section9-nav-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Responsive */
@media (max-width: 1024px) {
  .section9-card {
    flex: 0 0 calc(50% - 12.5px);
  }

  .section9-header h2 {
    font-size: 2rem;
  }

  .section9-prev-btn {
    left: 5px;
  }

  .section9-next-btn {
    right: 5px;
  }
}

@media (max-width: 768px) {
  .section9-card {
    flex: 0 0 100%;
    min-height: 400px;
  }

  .section9-slider {
    padding: 40px 0 50px 0;
  }

  .section9-header h2 {
    font-size: 24px;
  }

  .section9-wrapper {
    padding: 40px 0 20px 0;
  }
}

@media (max-width: 480px) {
  .section9-header h2 {
    font-size: 24px;
  }

  .section9-container {
    padding: 0 20px;
  }

  .section9-nav-btn {
    width: 40px;
    height: 40px;
  }

  .section9-header h3 {
    font-size: 0.95rem;
    margin: 10px 0px;
  }
}

.section11-wrapper {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background image */
.section11-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.section11-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Teal overlay */
.section11-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(10, 80, 75, 0.88) 0%,
      rgba(12, 120, 100, 0.82) 50%,
      rgba(10, 70, 65, 0.9) 100%);
  z-index: 2;
}

/* Subtle grid lines */
.section11-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.section11-container {
  position: relative;
  z-index: 5;
  max-width: 1300px;
  width: 100%;
  padding: 60px 50px 60px 50px;
}

/* Title */
.section11-title {
  text-align: center;
  color: #ffffff;
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(-30px);
  animation: section11FadeDown 0.8s ease forwards;
}

/* Steps Container */
.section11-steps {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 360px;
  padding: 0 10px;
}

/* The dotted wave SVG path */
.section11-path-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.section11-path-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 3;
  stroke-dasharray: 8 8;
  stroke-dashoffset: 1000;
  /* animation: section11DashDraw 3s ease forwards 0.5s; */
  animation: section11DashDraw 10s ease 0.5s infinite;
}

/* Individual Step */
.section11-step {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 160px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(30px);
}

/* Stagger positions: odd=bottom, even=top */
.section11-step:nth-child(odd) {
  align-self: flex-end;
}

.section11-step:nth-child(even) {
  align-self: flex-start;
}

/* Icon Circle */
.section11-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition:
    transform 0.4s ease,
    background 0.4s ease,
    box-shadow 0.4s ease;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.section11-icon svg {
  width: 36px;
  height: 36px;
  fill: rgba(255, 255, 255, 0.85);
  transition:
    fill 0.3s ease,
    transform 0.3s ease;
}

.section11-icon img {
  width: 36px;
  height: 36px;
  /* fill: rgba(255, 255, 255, 0.85); */
  transition:
    fill 0.3s ease,
    transform 0.3s ease;
}

.section11-step:hover .section11-icon {
  transform: scale(1.15);
  background: rgba(255, 255, 255, 0.25);
  box-shadow:
    0 0 25px rgba(255, 255, 255, 0.2),
    0 0 60px rgba(14, 169, 150, 0.3);
}

.section11-step:hover .section11-icon svg {
  fill: #ffffff;
  transform: scale(1.1);
}

/* Step Label */
.section11-label {
  color: white;
}

.section11-label .section11-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 4px;
}

.section11-step-num .section11-line {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  margin-right: 8px;
}

.section11-step-num span {
  /* font-size: 0.95rem; */
  font-size: 24px;
  font-weight: 800;
  /* color: #f55a00; */
  color: #ffa137;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section11-label p {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  margin: 0;
}

/* APPLY NOW button */
.section11-apply-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 25px 16px;
  background: linear-gradient(to bottom, #f55a00, #ff8c00);
  color: white;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 10px 0 0 10px;
  box-shadow: -4px 0 20px rgba(245, 90, 0, 0.4);
  transition:
    padding 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
}

.section11-apply-btn:hover {
  padding: 25px 22px;
  box-shadow: -6px 0 30px rgba(245, 90, 0, 0.6);
}

/* Animations */
@keyframes section11FadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes section11FadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes section11DashDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes section11Pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
}

.section11-step.section11-visible .section11-icon {
  animation: section11Pulse 2.5s ease infinite;
}

/* Responsive */
@media (max-width: 1024px) {
  .section11-title {
    font-size: 2.4rem;
    margin-bottom: 60px;
  }

  .section11-step {
    width: 140px;
  }

  .section11-icon {
    width: 70px;
    height: 70px;
  }

  .section11-icon svg {
    width: 30px;
    height: 30px;
  }

  /* .section11-container {
                padding: 50px 30px;
            } */
}

@media (max-width: 850px) {
  .section11-wrapper {
    min-height: auto;
  }

  .section11-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .section11-steps {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 40px;
    min-height: auto;
  }

  .section11-step {
    flex-direction: row;
    text-align: left;
    width: 100% !important;
    align-self: flex-start !important;
    gap: 18px;
  }

  .section11-step:nth-child(odd),
  .section11-step:nth-child(even) {
    align-self: flex-start !important;
  }

  .section11-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .section11-step-num {
    justify-content: flex-start !important;
  }

  .section11-path-svg {
    display: none;
  }

  .section11-apply-btn {
    position: relative;
    writing-mode: horizontal-tb;
    text-orientation: initial;
    border-radius: 10px;
    margin: 40px auto 0;
    display: block;
    text-align: center;
    right: auto;
    top: auto;
    transform: none;
    padding: 18px 50px;
  }

  .section11-container {
    padding: 40px 25px 50px;
  }
}

@media (max-width: 480px) {
  .section11-title {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .section11-icon {
    width: 60px;
    height: 60px;
  }

  .section11-icon svg {
    width: 26px;
    height: 26px;
  }

  .section11-label p {
    font-size: 0.82rem;
  }
}

.section12-container {
  /* max-width: 1300px; */
  /* max-height: 100vh; */
  /* height: 100vh; */
  width: 100vw;
  height: auto;
  margin: auto;
  /* overflow: hidden; */
  /* border: 5px solid red;  */
}

.section12-container img {
  width: 100%;
  /* height: 100%; */
  display: block;
  object-fit: cover;
}



/* ============================================
   SECTION 14 - THE MBA THAT MAKES YOU IRREPLACEABLE
   ============================================ */

.section14-wrapper {
  background: linear-gradient(180deg, #f8f8f8 0%, #e0e6e8 100%);
  position: relative;
  width: 100%;
}

.section14-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px 60px 20px;
  text-align: center;
}

.section14-title {
  color: #124d85;
  font-size: 52px;
  font-weight: 800;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 90px;
  word-wrap: break-word;
}

.section14-bottom-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.section14-privacy {
  color: #3b7bb5;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  flex: 1;
  text-align: left;
  word-wrap: break-word;
  transition: color 0.3s ease;
}

.section14-privacy:hover {
  text-decoration: underline;
  color: #124d85;
}

.section14-btn {
  display: inline-block;
  background: linear-gradient(180deg, #ff8a3d, #ff5a1f);
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  word-wrap: break-word;
}

.section14-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}

.section14-location {
  color: #3b7bb5;
  font-size: 14px;
  line-height: 1.4;
  text-align: right;
  justify-self: end;
  word-wrap: break-word;
}

/* ============================================
   SECTION 14 - RESPONSIVE STYLES
   ============================================ */

/* Large Desktop (1200px - 1400px) */
@media (max-width: 1200px) {
  .section14-title {
    font-size: 44px;
    margin-bottom: 70px;
  }

  .section14-btn {
    padding: 14px 35px;
    font-size: 18px;
  }

  .section14-privacy {
    font-size: 15px;
  }

  .section14-location {
    font-size: 13px;
  }
}

/* Desktop (992px - 1200px) */
@media (max-width: 1024px) {
  .section14-container {
    padding: 70px 20px 50px 20px;
  }

  .section14-title {
    font-size: 40px;
    margin-bottom: 60px;
  }

  .section14-bottom-row {
    gap: 25px;
  }

  .section14-btn {
    padding: 12px 30px;
    font-size: 17px;
  }

  .section14-privacy {
    font-size: 14px;
  }

  .section14-location {
    font-size: 12px;
  }
}

/* Tablet Landscape (768px - 992px) */
@media (max-width: 992px) {
  .section14-container {
    padding: 60px 20px 45px 20px;
  }

  .section14-title {
    font-size: 36px;
    margin-bottom: 50px;
  }

  .section14-bottom-row {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .section14-privacy {
    text-align: center;
    order: 2;
  }

  .section14-btn {
    order: 1;
    white-space: normal;
    display: inline-block;
    width: auto;
    min-width: 200px;
  }

  .section14-location {
    text-align: center;
    order: 3;
    justify-self: center;
  }
}

/* Tablet Portrait (576px - 768px) */
@media (max-width: 768px) {
  .section14-container {
    padding: 50px 15px 40px 15px;
  }

  .section14-title {
    font-size: 32px;
    margin-bottom: 45px;
  }

  .section14-bottom-row {
    gap: 18px;
  }

  .section14-btn {
    padding: 12px 28px;
    font-size: 16px;
  }

  .section14-privacy {
    font-size: 13px;
  }

  .section14-location {
    font-size: 11px;
    line-height: 1.5;
  }
}

/* Mobile Large (480px - 576px) */
@media (max-width: 576px) {
  .section14-container {
    padding: 45px 12px 35px 12px;
  }

  .section14-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .section14-bottom-row {
    gap: 15px;
  }

  .section14-btn {
    padding: 10px 25px;
    font-size: 15px;
  }

  .section14-privacy {
    font-size: 12px;
  }

  .section14-location {
    font-size: 10px;
    line-height: 1.5;
  }
}

/* Mobile Medium (380px - 480px) */
@media (max-width: 480px) {
  .section14-container {
    padding: 40px 10px 30px 10px;
  }

  .section14-title {
    font-size: 24px;
    margin-bottom: 35px;
  }

  .section14-bottom-row {
    gap: 12px;
  }

  .section14-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .section14-privacy {
    font-size: 11px;
  }

  .section14-location {
    font-size: 9px;
  }
}

/* Mobile Small (below 380px) */
@media (max-width: 380px) {
  .section14-container {
    padding: 35px 8px 25px 8px;
  }

  .section14-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .section14-bottom-row {
    gap: 10px;
  }

  .section14-btn {
    padding: 8px 18px;
    font-size: 13px;
  }

  .section14-privacy {
    font-size: 10px;
  }

  .section14-location {
    font-size: 8px;
  }
}

/* Extra Small Mobile (below 320px) */
@media (max-width: 320px) {
  .section14-container {
    padding: 30px 6px 20px 6px;
  }

  .section14-title {
    font-size: 20px;
  }

  .section14-btn {
    padding: 8px 15px;
    font-size: 12px;
  }

  .section14-privacy {
    font-size: 9px;
  }

  .section14-location {
    font-size: 8px;
  }
}

/* ============================================
   FOOTER SECTION
   ============================================ */

:root {
  --footer-color-1: #1c3a66;
  --footer-color-2: rgb(14, 235, 176);
  --footer-color-3: #17345c;
  --footer-color-4: rgb(1, 147, 166);
}

/* MAIN FOOTER */
.footer-container {
  background: var(--footer-color-1);
  color: #ffffff;
  padding: 50px 0px 0px 0px;
}

.footer-inner {
  max-width: 1300px;
  padding: 0px 20px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

/* COLUMN */
.footer-col {
  flex: 1 1 300px;
}

/* HEADINGS */
.footer-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
  word-wrap: break-word;
}

.footer-title::after {
  position: absolute;
  left: 5px;
  bottom: -11px;
  content: "";
  background: var(--footer-color-2);
  height: 3px;
  width: 50px;
  border-radius: 100px;
  transition: all 0.4s ease;
}

.footer-title:hover::after {
  width: 100px;
}

/* TEXT */
.footer-text {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  word-wrap: break-word;
}

/* ICON ROW */
.footer-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  text-decoration: none;
  gap: 12px;
}

.footer-icon {
  margin-right: 10px;
  font-size: 18px;
  flex-shrink: 0;
}

.footer-icon img {
  width: 20px;
  height: 20px;
}

.footer-item .footer-text {
  flex: 1;
}

/* SOCIAL */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  margin-right: 0px;
  margin-bottom: 10px;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-item:hover {
  transform: translateY(-2px);
  text-decoration: underline;
  text-decoration-color: var(--footer-color-2);
  text-underline-offset: 2px;
}

.footer-item:hover .footer-text {
  color: var(--footer-color-2);
}

.footer-social span {
  margin-left: 8px;
}

.footer-social img {
  width: 20px;
  filter: brightness(0) invert(1);
}

/* BOTTOM BAR */
.footer-bottom {
  background: linear-gradient(90deg, rgb(1, 147, 166), rgb(11, 149, 112));
  text-align: center;
  padding: 18px 10px;
  margin-top: 40px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  word-wrap: break-word;
}

/* SCROLL TO TOP */
.footer-top-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: var(--footer-color-4);
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  z-index: 10;
  display: none;
}

.footer-top-btn:hover {
  filter: brightness(1.3);
  transform: translateY(-3px);
}

/* ============================================
   FOOTER - RESPONSIVE STYLES
   ============================================ */

/* Large Desktop (1200px - 1400px) */
@media (max-width: 1200px) {
  .footer-title {
    font-size: 20px;
    margin-bottom: 35px;
  }

  .footer-text {
    font-size: 15px;
  }

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

/* Desktop (992px - 1200px) */
@media (max-width: 1024px) {
  .footer-inner {
    gap: 35px;
  }

  .footer-col {
    flex: 1 1 280px;
  }

  .footer-title {
    font-size: 19px;
    margin-bottom: 32px;
  }

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

/* Tablet Landscape (768px - 992px) */
@media (max-width: 992px) {
  .footer-container {
    padding: 45px 0px 0px 0px;
  }

  .footer-inner {
    flex-wrap: wrap;
    gap: 35px;
  }

  .footer-col {
    flex: 1 1 250px;
  }

  .footer-title {
    font-size: 18px;
    margin-bottom: 30px;
  }

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

  .footer-social {
    gap: 12px;
  }

  .footer-social img {
    width: 18px;
  }
}

/* Tablet Portrait (576px - 768px) */
@media (max-width: 768px) {
  .footer-container {
    padding: 40px 0px 0px 0px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 30px;
  }

  .footer-col {
    flex: unset;
    width: 100%;
  }

  .footer-title {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .footer-title::after {
    width: 40px;
  }

  .footer-title:hover::after {
    width: 80px;
  }

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

  .footer-item {
    gap: 10px;
  }

  .footer-icon img {
    width: 18px;
    height: 18px;
  }

  .footer-social {
    gap: 20px;
  }

  .footer-bottom {
    padding: 15px 10px;
    margin-top: 35px;
    font-size: 12px;
  }

  .footer-top-btn {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* Mobile Large (480px - 576px) */
@media (max-width: 576px) {
  .footer-container {
    padding: 35px 0px 0px 0px;
  }

  .footer-inner {
    gap: 25px;
    padding: 0px 15px;
  }

  .footer-title {
    font-size: 17px;
    margin-bottom: 22px;
  }

  .footer-text {
    font-size: 13px;
    line-height: 1.5;
  }

  .footer-item {
    margin-bottom: 10px;
    gap: 8px;
  }

  .footer-icon img {
    width: 16px;
    height: 16px;
  }

  .footer-social {
    gap: 15px;
  }

  .footer-social img {
    width: 16px;
  }

  .footer-bottom {
    padding: 12px 10px;
    margin-top: 30px;
    font-size: 11px;
  }

  .footer-top-btn {
    bottom: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}

/* Mobile Medium (380px - 480px) */
@media (max-width: 480px) {
  .footer-container {
    padding: 30px 0px 0px 0px;
  }

  .footer-inner {
    gap: 22px;
    padding: 0px 12px;
  }

  .footer-title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .footer-title::after {
    width: 35px;
    bottom: -8px;
  }

  .footer-text {
    font-size: 12px;
    line-height: 1.5;
  }

  .footer-item {
    margin-bottom: 8px;
    gap: 8px;
  }

  .footer-icon img {
    width: 15px;
    height: 15px;
  }

  .footer-social {
    gap: 12px;
  }

  .footer-social img {
    width: 15px;
  }

  .footer-bottom {
    padding: 10px 10px;
    margin-top: 25px;
    font-size: 10px;
  }

  .footer-top-btn {
    bottom: 12px;
    right: 12px;
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

/* Mobile Small (below 380px) */
@media (max-width: 380px) {
  .footer-container {
    padding: 25px 0px 0px 0px;
  }

  .footer-inner {
    gap: 20px;
    padding: 0px 10px;
  }

  .footer-title {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .footer-text {
    font-size: 11px;
    line-height: 1.4;
  }

  .footer-item {
    margin-bottom: 8px;
    gap: 6px;
  }

  .footer-icon img {
    width: 14px;
    height: 14px;
  }

  .footer-social {
    gap: 10px;
  }

  .footer-social img {
    width: 14px;
  }

  .footer-bottom {
    padding: 8px 10px;
    margin-top: 20px;
    font-size: 9px;
  }

  .footer-top-btn {
    bottom: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

/* Social Media Icons Specific Adjustments */
.footer-twitter-logo,
.footer-facebook-logo,
.footer-youtube-logo,
.footer-instagram-logo {
  padding: 2px !important;
}

.footer-youtube-logo {
  padding: 1px !important;
}

/* CSS reset just for this component if necessary */
/* ==========================================================================
   WHY CHOOSE MBA SECTION
   ========================================================================== */
/* ============================================
   WHY CHOOSE MBA SECTION
   ============================================ */

.section-why-choose {
  position: relative;
  width: 100%;
  padding: 100px 20px;
  background: url("./images/section7/bg.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.why-choose-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 132, 123, 0.9);
  /* Deep teal overlay */
  z-index: 1;
}

.why-choose-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  color: #ffffff;
  padding: 0 20px;
}

.why-choose-heading {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 30px;
  letter-spacing: 1px;
  word-wrap: break-word;
}

.why-choose-text {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 400;
  opacity: 0.95;
  word-wrap: break-word;
}

/* ============================================
   WHY CHOOSE SECTION - RESPONSIVE STYLES
   ============================================ */

/* Tablet Landscape (992px - 1200px) */
@media (max-width: 1200px) {
  .section-why-choose {
    padding: 80px 20px;
  }

  .why-choose-heading {
    font-size: 42px;
    margin-bottom: 25px;
  }

  .why-choose-text {
    font-size: 18px;
    line-height: 1.7;
  }
}

/* Tablet Portrait (768px - 992px) */
@media (max-width: 992px) {
  .section-why-choose {
    padding: 70px 20px;
  }

  .why-choose-heading {
    font-size: 36px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
  }

  .why-choose-text {
    font-size: 16px;
    line-height: 1.7;
  }
}

/* Mobile Large (576px - 768px) */
@media (max-width: 768px) {
  .section-why-choose {
    padding: 60px 15px;
  }

  .why-choose-content {
    padding: 0 15px;
  }

  .why-choose-heading {
    font-size: 32px;
    margin-bottom: 18px;
  }

  .why-choose-text {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* Mobile Medium (480px - 576px) */
@media (max-width: 576px) {
  .section-why-choose {
    padding: 50px 12px;
  }

  .why-choose-content {
    padding: 0 10px;
  }

  .why-choose-heading {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .why-choose-text {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Mobile Small (380px - 480px) */
@media (max-width: 480px) {
  .section-why-choose {
    padding: 45px 10px;
  }

  .why-choose-heading {
    font-size: 24px;
    margin-bottom: 12px;
    letter-spacing: 0;
  }

  .why-choose-text {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* Extra Small Mobile (below 380px) */
@media (max-width: 380px) {
  .section-why-choose {
    padding: 40px 8px;
  }

  .why-choose-heading {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .why-choose-text {
    font-size: 12px;
    line-height: 1.5;
  }
}

/* Very Small Mobile (below 320px) */
@media (max-width: 320px) {
  .section-why-choose {
    padding: 35px 8px;
  }

  .why-choose-heading {
    font-size: 20px;
  }

  .why-choose-text {
    font-size: 11px;
    line-height: 1.4;
  }
}

/* ==========================================================================
   SECTION 15: PLACEMENT ACHIEVEMENT BANNER
/* ==========================================================================
  /* ============================================
   SECTION 15 - PLACEMENT ACHIEVEMENT BANNER
   ============================================ */

.section15-wrapper {
  width: 100%;
  background: radial-gradient(circle at 100% 0%, #f4f6f8 0%, #ffffff 100%);
  position: relative;
  font-family: inherit;
  overflow: hidden;
}

.section15-top {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0 40px 0 40px;
}

.section15-left {
  flex: 1;
  padding-top: 75px;
  padding-bottom: 0px;
  z-index: 2;
}

.section15-main-title {
  font-size: 42px;
  color: #1b8979;
  line-height: 1.2;
  margin-bottom: 36px;
  font-weight: 600;
}

.section15-main-title strong {
  font-weight: 800;
}

.section15-package-amount {
  font-size: 90px;
  font-weight: 900;
  color: #f18a22;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}

.section15-package-amount span {
  font-size: 50px;
  font-weight: 800;
}

.section15-student-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.student-name {
  font-size: 28px;
  font-weight: 600;
  color: #1b8979;
}

.student-batch {
  display: inline-block;
  background: #1b8979;
  color: #fff;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 600;
}

.section15-right {
  position: absolute;
  bottom: -50px;
  right: 342.5px;
  transform: translateX(50%);
  z-index: 1;
}

.section15-main-student {
  max-height: 520px;
  display: block;
}

.section15-bottom-bar {
  background: linear-gradient(90deg, rgb(1, 147, 166), rgb(11, 149, 112));
  width: 100%;
  position: relative;
  z-index: 3;
  margin-top: 50px;
}

.section15-bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  height: 125px;
}

.student-gallery {
  display: flex;
  gap: 0px;
  position: absolute;
  right: 20px;
  top: -110px;
  cursor: pointer;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 160px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 0.5px solid #ccc;
}

.gallery-info {
  text-align: center;
  color: #fff;
}

.g-name {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.g-pkg {
  font-size: 22px;
  font-weight: 800;
  display: block;
}

.g-pkg-small {
  font-size: 12px;
  font-weight: 700;
}

/* ============================================
   SECTION 15 - RESPONSIVE STYLES
   ============================================ */

/* Tablet Landscape (992px - 1200px) */
@media (max-width: 1200px) {
  .section15-package-amount {
    font-size: 70px;
  }

  .section15-package-amount span {
    font-size: 35px;
  }

  .section15-right {
    right: 242.5px;
    bottom: -60px;
  }

  .section15-main-student {
    max-height: 420px;
  }

  .gallery-item img {
    width: 140px;
    height: 140px;
  }

  .gallery-item {
    width: 140px;
  }

  .student-gallery {
    top: -80px;
    right: 20px;
  }

  .section15-bottom-container {
    height: 120px;
  }

  .g-pkg {
    font-size: 18px;
  }

  .student-name {
    font-size: 24px;
  }
}

/* Tablet Portrait (768px - 992px) */
@media (max-width: 992px) {
  .section15-top {
    flex-direction: column;
    padding: 40px 20px 0 20px;
    align-items: center;
    text-align: center;
  }

  .section15-left {
    padding-bottom: 20px;
  }

  .section15-student-info {
    justify-content: center;
  }

  .section15-right {
    position: relative;
    bottom: 0;
    right: 0;
    transform: none;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    width: 100%;
    top: auto;
    height: auto;
  }

  .section15-main-student {
    height: auto;
    max-height: 350px;
    display: block;
    margin: 0 auto;
  }

  .section15-bottom-bar {
    margin-top: 0;
    padding-top: 16px;
    padding-bottom: 0px;
    height: auto;
  }

  .section15-bottom-container {
    height: auto;
    padding: 0 15px;
  }

  .student-gallery {
    position: relative;
    top: auto;
    right: auto;
    justify-content: center;
    flex-wrap: nowrap;
    /* Keep them in one line */
    overflow-x: auto;
    margin-top: -100px;
    z-index: 4;
    gap: 15px;
    padding: 0 15px 15px 15px;
    scrollbar-width: thin;
  }

  .gallery-item {
    width: auto;
    min-width: 100px;
    flex-shrink: 0;
  }

  .gallery-item img {
    width: 100px;
    height: 100px;
  }

  .g-name {
    font-size: 11px;
  }

  .g-pkg {
    font-size: 14px;
  }

  .g-pkg-small {
    font-size: 9px;
  }

  .section15-main-title {
    font-size: 32px;
  }

  .section15-package-amount {
    font-size: 50px;
    justify-content: center;
  }

  .section15-package-amount span {
    font-size: 28px;
  }

  .student-name {
    font-size: 20px;
  }

  .student-batch {
    font-size: 11px;
  }
}

/* Mobile (480px - 768px) */
@media (max-width: 768px) {
  .section15-main-title {
    font-size: 28px;
  }

  .section15-package-amount {
    font-size: 45px;
    justify-content: center;
  }

  .section15-package-amount span {
    font-size: 24px;
  }

  .student-name {
    font-size: 18px;
  }

  .section15-main-student {
    max-height: 280px;
  }

  .student-gallery {
    gap: 12px;
    margin-top: -80px;
  }

  .gallery-item {
    min-width: 85px;
  }

  .gallery-item img {
    width: 85px;
    height: 85px;
  }

  .g-name {
    font-size: 10px;
  }

  .g-pkg {
    font-size: 12px;
  }

  .g-pkg-small {
    font-size: 8px;
  }

  .student-batch {
    font-size: 10px;
  }
}

/* Small Mobile (below 480px) */
@media (max-width: 480px) {
  .section15-main-title {
    font-size: 22px;
  }

  .section15-package-amount {
    font-size: 36px;
  }

  .section15-package-amount span {
    font-size: 20px;
  }

  .student-name {
    font-size: 16px;
  }

  .student-batch {
    font-size: 9px;
    padding: 2px 8px;
  }

  .section15-main-student {
    max-height: 220px;
  }

  .student-gallery {
    gap: 10px;
    margin-top: -60px;
  }

  .gallery-item {
    min-width: 70px;
  }

  .gallery-item img {
    width: 86px;
    height: 86px;
  }

  .g-name {
    font-size: 9px;
  }

  .g-pkg {
    font-size: 11px;
  }

  .g-pkg-small {
    font-size: 7px;
  }

  .section15-main-title br {
    display: none;
  }
}

/* Extra Small Mobile (below 380px) */
@media (max-width: 380px) {
  .student-gallery {
    gap: 8px;
  }

  .gallery-item {
    min-width: 60px;
  }

  .gallery-item img {
    width: 60px;
    height: 60px;
  }

  .g-name {
    font-size: 8px;
  }

  .g-pkg {
    font-size: 10px;
  }

  .section15-main-student {
    max-height: 180px;
  }

  .section15-package-amount {
    font-size: 30px;
  }

  .section15-package-amount span {
    font-size: 16px;
  }

  .student-name {
    font-size: 14px;
  }
}

/* Highlight color */
.section15-highlight {
  color: #1b8979;
  font-weight: 700;
  display: inline-block;
}


/* ==========================================================================
   SECTION 10: SCHOLARSHIP BENEFITS
   ========================================================================== */
/* ============================================
   SECTION 10 - AI-POWERED MBA FOR REAL-WORLD CAREERS
   ============================================ */

.section10-container {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
}

.section10-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.section10-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.section10-text-block {
  flex: 1.2;
  max-width: 100%;
}

.section10-main-heading {
  font-size: 42px;
  font-weight: 700;
  color: #1b807a;
  margin-bottom: 20px;
  line-height: 1.2;
  word-wrap: break-word;
}

.section10-sub-heading {
  font-size: 18px;
  font-weight: 500;
  color: #666666;
  margin-bottom: 25px;
  line-height: 1.4;
  word-wrap: break-word;
}

.section10-description p {
  font-size: 16px;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 0;
  word-wrap: break-word;
}

.section10-visual {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section10-character {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
}

/* ============================================
   SECTION 10 - RESPONSIVE STYLES
   ============================================ */

/* Tablet Landscape (992px - 1200px) */
@media (max-width: 1200px) {
  .section10-main-heading {
    font-size: 36px;
  }

  .section10-sub-heading {
    font-size: 16px;
  }

  .section10-description p {
    font-size: 15px;
  }

  .section10-character {
    max-width: 350px;
  }
}

/* Tablet Portrait (768px - 992px) */
@media (max-width: 992px) {
  .section10-container {
    padding: 60px 0;
  }

  .section10-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

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

  .section10-main-heading {
    font-size: 32px;
    color: #1b807a;
  }

  .section10-sub-heading {
    font-size: 16px;
    color: #666666;
  }

  .section10-description p {
    font-size: 15px;
    color: #555555;
    text-align: center;
  }

  .section10-visual {
    justify-content: center;
  }

  .section10-character {
    max-width: 320px;
  }
}

/* Mobile Large (576px - 768px) */
@media (max-width: 768px) {
  .section10-container {
    padding: 50px 0;
  }

  .section10-wrapper {
    padding: 0 15px;
  }

  .section10-content {
    gap: 35px;
  }

  .section10-main-heading {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section10-sub-heading {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .section10-description p {
    font-size: 14px;
    line-height: 1.6;
  }

  .section10-character {
    max-width: 280px;
  }
}

/* Mobile Medium (480px - 576px) */
@media (max-width: 576px) {
  .section10-container {
    padding: 40px 0;
  }

  .section10-wrapper {
    padding: 0 12px;
  }

  .section10-content {
    gap: 30px;
  }

  .section10-main-heading {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .section10-sub-heading {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .section10-description p {
    font-size: 13px;
    line-height: 1.6;
  }

  .section10-character {
    max-width: 250px;
  }
}

/* Mobile Small (380px - 480px) */
@media (max-width: 480px) {
  .section10-container {
    padding: 0px 0;
  }

  .section10-wrapper {
    padding: 0 10px;
  }

  .section10-content {
    gap: 25px;
  }

  .section10-main-heading {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .section10-sub-heading {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .section10-description p {
    font-size: 12px;
    line-height: 1.5;
  }

  .section10-character {
    max-width: 220px;
  }
}

/* Extra Small Mobile (below 380px) */
@media (max-width: 380px) {
  .section10-container {
    padding: 0px 0;
  }

  .section10-wrapper {
    padding: 0 8px;
  }

  .section10-content {
    gap: 20px;
  }

  .section10-main-heading {
    font-size: 20px;
  }

  .section10-sub-heading {
    font-size: 12px;
  }

  .section10-description p {
    font-size: 11px;
    line-height: 1.5;
  }

  .section10-character {
    max-width: 200px;
  }
}

/* Very Small Mobile (below 320px) */
@media (max-width: 320px) {
  .section10-main-heading {
    font-size: 18px;
  }

  .section10-sub-heading {
    font-size: 11px;
  }

  .section10-description p {
    font-size: 10px;
  }

  .section10-character {
    max-width: 180px;
  }
}




/* ==========================================================================
   ELIGIBILITY CRITERIA SECTION (NEW)
   ========================================================================== */
.eligibility-criteria-section {
  background-color: #ffffff;
  padding: 60px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eligibility-content-wrapper {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px 40px 20px;
}

.eligibility-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0b4c80;
  margin-bottom: 25px;
}

.eligibility-text {
  font-size: 20px;
  color: #777777;
  line-height: 1.6;
}

.eligibility-image-container {
  width: 100%;
  margin: 0 auto;
}

.eligibility-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .eligibility-criteria-section {
    padding: 40px 15px 0;
  }

  .eligibility-heading {
    font-size: 26px;
  }

  .eligibility-text {
    font-size: 14px;
  }
}

/* ==========================================================================
   ADMISSIONS PROCESS SECTION (NEW)
   ========================================================================== */
/* ============================================
   ADMISSIONS PROCESS SECTION
   ============================================ */

.admissions-process-wrapper {
  background-color: #ffffff;
  padding: 60px 20px 80px;
  font-family: inherit;
}

.admissions-process-container {
  max-width: 100%;
  padding: 0 5%;
  margin: 0 auto;
  text-align: center;
}

.admissions-title {
  color: #0d5c9e;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  word-wrap: break-word;
}

.admissions-subtitle {
  color: #888888;
  font-size: 16px;
  margin-bottom: 70px;
  word-wrap: break-word;
  line-height: 1.5;
}

.admissions-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 320px));
  justify-content: center;
  gap: 30px;
  align-items: stretch;
}

.admissions-card {
  background: linear-gradient(to bottom, #ffffff, #e0e0e0);
  border-radius: 16px;
  padding: 65px 25px 45px 25px;
  position: relative;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.admissions-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.admissions-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(90deg, rgb(1, 147, 166), rgb(11, 149, 112));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 10px rgba(77, 179, 164, 0.3);
}

.admissions-card-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.admissions-card-content h3 {
  font-size: 18px;
  font-weight: 800;
  color: #555555;
  margin-bottom: 18px;
  text-transform: uppercase;
  word-wrap: break-word;
  line-height: 1.3;
}

.admissions-card-content p {
  font-size: 16px;
  color: #777777;
  line-height: 1.7;
  word-wrap: break-word;
}

/* ============================================
   ADMISSIONS PROCESS - RESPONSIVE STYLES
   ============================================ */

/* Large Desktop (1200px - 1400px) */
@media (max-width: 1200px) {
  .admissions-cards-grid {
    grid-template-columns: repeat(4, minmax(200px, 280px));
    gap: 25px;
  }

  .admissions-title {
    font-size: 34px;
  }

  .admissions-card {
    min-height: 330px;
    padding: 60px 20px 40px 20px;
  }

  .admissions-card-content h3 {
    font-size: 17px;
  }

  .admissions-card-content p {
    font-size: 15px;
  }
}

/* Desktop (992px - 1200px) */
@media (max-width: 1024px) {
  .admissions-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 50px;
    gap: 25px;
  }

  .admissions-title {
    font-size: 32px;
  }

  .admissions-subtitle {
    font-size: 15px;
    margin-bottom: 50px;
  }

  .admissions-card {
    min-height: 320px;
    padding: 55px 20px 35px 20px;
  }
}

/* Tablet Landscape (768px - 992px) */
@media (max-width: 992px) {
  .admissions-process-wrapper {
    padding: 50px 15px 60px;
  }

  .admissions-process-container {
    padding: 0 3%;
  }

  .admissions-title {
    font-size: 30px;
  }

  .admissions-subtitle {
    font-size: 14px;
    margin-bottom: 45px;
  }

  .admissions-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .admissions-card {
    min-height: 310px;
    padding: 55px 18px 35px 18px;
  }

  .admissions-card-content h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .admissions-card-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .admissions-card-icon {
    width: 55px;
    height: 55px;
  }

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

/* Tablet Portrait (576px - 768px) */
@media (max-width: 768px) {
  .admissions-process-wrapper {
    padding: 45px 15px 50px;
  }

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

  .admissions-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .admissions-cards-grid {
    gap: 35px;
  }

  .admissions-card {
    min-height: 300px;
    padding: 50px 15px 30px 15px;
  }

  .admissions-card-content h3 {
    font-size: 15px;
  }

  .admissions-card-content p {
    font-size: 13px;
    line-height: 1.6;
  }

  .admissions-card-icon {
    width: 50px;
    height: 50px;
    top: -25px;
  }

  .admissions-card-icon img {
    width: 25px;
    height: 25px;
  }
}

/* Mobile Large (480px - 576px) */
@media (max-width: 576px) {
  .admissions-process-wrapper {
    padding: 40px 12px 45px;
  }

  .admissions-title {
    font-size: 24px;
  }

  .admissions-subtitle {
    font-size: 13px;
    margin-bottom: 35px;
  }

  .admissions-cards-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .admissions-card {
    min-height: auto;
    padding: 50px 20px 30px 20px;
    margin-top: 25px;
  }

  .admissions-card-content h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .admissions-card-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .admissions-card-icon {
    width: 52px;
    height: 52px;
    top: -26px;
  }

  .admissions-card-icon img {
    width: 26px;
    height: 26px;
  }
}

/* Mobile Small (380px - 480px) */
@media (max-width: 480px) {
  .admissions-process-wrapper {
    padding: 35px 10px 40px;
  }

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

  .admissions-subtitle {
    font-size: 12px;
    margin-bottom: 30px;
  }

  .admissions-cards-grid {
    gap: 35px;
  }

  .admissions-card {
    padding: 45px 15px 25px 15px;
  }

  .admissions-card-content h3 {
    font-size: 15px;
  }

  .admissions-card-content p {
    font-size: 13px;
    line-height: 1.5;
  }

  .admissions-card-icon {
    width: 48px;
    height: 48px;
    top: -24px;
  }

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

/* Extra Small Mobile (below 380px) */
@media (max-width: 380px) {
  .admissions-process-wrapper {
    padding: 30px 8px 35px;
  }

  .admissions-title {
    font-size: 20px;
  }

  .admissions-subtitle {
    font-size: 11px;
  }

  .admissions-card {
    padding: 40px 12px 20px 12px;
  }

  .admissions-card-content h3 {
    font-size: 14px;
  }

  .admissions-card-content p {
    font-size: 12px;
    line-height: 1.5;
  }

  .admissions-card-icon {
    width: 45px;
    height: 45px;
    top: -22px;
  }

  .admissions-card-icon img {
    width: 22px;
    height: 22px;
  }
}

/* ==========================================================================
   WHO CAN APPLY SECTION
   ========================================================================== */
/* ============================================
   WHO CAN APPLY SECTION
   ============================================ */

.who-can-apply-section {
  background: linear-gradient(90deg, rgb(1, 147, 166), rgb(11, 149, 112));
  padding: 0px 20px;
  color: #ffffff;
  font-family: inherit;
  overflow: hidden;
  padding-top: 50px;
}

.who-can-apply-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.who-can-apply-left {
  flex: 1;
  max-width: 600px;
}

.who-can-apply-left h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  word-wrap: break-word;
}

.who-can-apply-left p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
  word-wrap: break-word;
}

.who-can-apply-left h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  word-wrap: break-word;
}

.who-can-apply-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.who-can-apply-list li {
  background-color: #f06a2e;
  border-radius: 8px;
  padding: 10px 24px;
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  word-wrap: break-word;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.who-can-apply-list li:hover {
  transform: translateX(5px);
  background-color: #ff7a3e;
}

.who-can-apply-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wca-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
}

/* Semi-transparent rings/circle behind the image */
.wca-image-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  padding-bottom: 110%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  z-index: 0;
}

.wca-image-wrapper img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   WHO CAN APPLY - RESPONSIVE STYLES
   ============================================ */

/* Large Desktop (1200px - 1400px) */
@media (max-width: 1200px) {
  .who-can-apply-left h2 {
    font-size: 38px;
  }

  .who-can-apply-left p {
    font-size: 15px;
  }

  .who-can-apply-left h3 {
    font-size: 20px;
  }

  .who-can-apply-list li {
    font-size: 14px;
    padding: 12px 18px;
  }

  .wca-image-wrapper {
    max-width: 400px;
  }
}

/* Tablet Landscape (992px - 1200px) */
@media (max-width: 1024px) {
  .who-can-apply-container {
    gap: 40px;
  }

  .who-can-apply-left h2 {
    font-size: 36px;
  }

  .who-can-apply-left p {
    font-size: 15px;
  }

  .wca-image-wrapper {
    max-width: 380px;
  }
}

/* Tablet Portrait (768px - 992px) */
@media (max-width: 992px) {
  .who-can-apply-section {
    padding: 60px 20px;
  }

  .who-can-apply-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .who-can-apply-left {
    max-width: 100%;
    text-align: center;
  }

  .who-can-apply-left h2 {
    font-size: 34px;
  }

  .who-can-apply-left p {
    font-size: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .who-can-apply-left h3 {
    font-size: 20px;
  }

  .who-can-apply-list {
    max-width: 500px;
    margin: 0 auto;
  }

  .who-can-apply-list li {
    text-align: left;
    padding: 12px 18px;
    font-size: 14px;
  }

  .who-can-apply-list li:hover {
    transform: translateX(0);
    background-color: #ff7a3e;
  }

  .wca-image-wrapper {
    max-width: 350px;
  }
}

/* Mobile Large (576px - 768px) */
@media (max-width: 768px) {
  .who-can-apply-section {
    padding: 50px 15px;
  }

  .who-can-apply-container {
    gap: 40px;
  }

  .who-can-apply-left h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .who-can-apply-left p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
  }

  .who-can-apply-left h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .who-can-apply-list li {
    padding: 10px 15px;
    margin-bottom: 12px;
    font-size: 13px;
  }

  .wca-image-wrapper {
    max-width: 320px;
  }

  .wca-image-wrapper::before {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* Mobile Medium (480px - 576px) */
@media (max-width: 576px) {
  .who-can-apply-section {
    padding: 45px 12px;
  }

  .who-can-apply-container {
    gap: 35px;
  }

  .who-can-apply-left h2 {
    font-size: 28px;
  }

  .who-can-apply-left p {
    font-size: 13px;
    line-height: 1.5;
  }

  .who-can-apply-left h3 {
    font-size: 17px;
  }

  .who-can-apply-list li {
    padding: 10px 14px;
    font-size: 12px;
  }

  .wca-image-wrapper {
    max-width: 280px;
  }
}

/* Mobile Small (380px - 480px) */
@media (max-width: 480px) {
  .who-can-apply-section {
    padding: 40px 10px;
  }

  .who-can-apply-container {
    gap: 30px;
  }

  .who-can-apply-left h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .who-can-apply-left p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .who-can-apply-left h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .who-can-apply-list li {
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 11px;
    border-radius: 6px;
  }

  .wca-image-wrapper {
    max-width: 250px;
  }
}

/* Extra Small Mobile (below 380px) */
@media (max-width: 380px) {
  .who-can-apply-section {
    padding: 35px 8px;
  }

  .who-can-apply-left h2 {
    font-size: 22px;
  }

  .who-can-apply-left p {
    font-size: 11px;
  }

  .who-can-apply-left h3 {
    font-size: 15px;
  }

  .who-can-apply-list li {
    padding: 8px 10px;
    font-size: 10px;
  }

  .wca-image-wrapper {
    max-width: 220px;
  }
}

/* Very Small Mobile (below 320px) */
@media (max-width: 320px) {
  .who-can-apply-section {
    padding: 30px 8px;
  }

  .who-can-apply-left h2 {
    font-size: 20px;
  }

  .who-can-apply-left p {
    font-size: 10px;
  }

  .who-can-apply-left h3 {
    font-size: 14px;
  }

  .who-can-apply-list li {
    padding: 7px 8px;
    font-size: 9px;
  }

  .wca-image-wrapper {
    max-width: 200px;
  }
}