/**/
html,
body {
  overflow-x: hidden;
}

.faculty-cta {
  background-color: #000;
  padding: 0px 0px;
  text-align: center;
}

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  color: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-architecture {
  background-image: url("https://jgu.edu.in//storage/1520/Architecture.webp");
}

.hero-design {
  background-image: url("https://jgu.edu.in//storage/1482/AbouttheProgrammePic.webp");
}

.hero-interior {
  background-image: url("https://jgu.edu.in//storage/1564/InteriorHero.webp");
}

/* black overlay effect */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

/* keep text above overlay */
.hero-section * {
  position: relative;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-section h1 {
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 0px;
}

.hero-section h2 {
  font-size: clamp(20px, 5vw, 50px);
  line-height: 1.1;
  font-weight: 500;
  margin-top: 18px;
  margin-bottom: 18px;
}

.hero-content p {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.35;
  margin: 58px auto 58px;
  max-width: 700px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.btn {
  padding: 18px 38px;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.primary-btn {
  background: #fff;
  color: #000;
  border-radius: 12px;
}

.primary-btn:hover {
  background: #e5e5e5;
}

.outline-btn {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 10px;
  padding: 16px 30px;
}

.outline-btn:hover {
  background: #fff;
  color: #000;
}

/* responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 42px;
  }

  .hero-section h2 {
    margin-top: 14px;
    margin-bottom: 14px;
  }

  .hero-content p {
    font-size: 16px;
    margin: 30px auto 30px;
  }

  .hero-buttons {
    gap: 12px;
    width: 100%;
    justify-content: center;
  }

  .btn {
    min-width: 210px;
    padding: 13px 20px;
    font-size: 15px;
    justify-content: center;
  }

  .outline-btn {
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .btn {
    width: min(100%, 280px);
    min-width: 0;
    padding: 12px 18px;
    font-size: 14px;
  }
}

/*about*/
.about-program {
  padding: 80px 100px;
  background: #fff;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: clamp(10px, 2vw, 28px);
  align-items: stretch;
  max-width: 1320px;
  margin: 0 auto;
}

.about-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* LEFT */
.about-left h2 {
  font-size: 53px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  color: #000;
}

.about-left p {
  font-size: 18px;
  line-height: 1.4;
  color: #444;
  margin-bottom: 25px;
  max-width: 650px;
  text-align: justify;
}

/* STATS SECTION */
.about-stats {
  --stats-gap: 40px;
  display: flex;
  align-items: center;
  gap: var(--stats-gap);
  width: 100%;
  max-width: 650px;
  padding-left: calc(var(--stats-gap) / 2);
  box-sizing: border-box;
  margin-top: 40px;
  padding-top: 0;
}

.stat-box {
  flex: 1;
  text-align: left;
  position: relative;
}

.stat-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(var(--stats-gap) / -2);
  transform: translateY(-50%);
  width: 2px;
  height: 64px;
  background: rgba(0, 0, 0, 0.35);
}

.stat-box h3 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #000;
  letter-spacing: -1px;
}

.stat-box span {
  font-size: 14px;
  color: #777;
  letter-spacing: 0.5px;
}

/* RIGHT */
.about-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.about-right {
  height: 580px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-program {
    padding: 80px 40px;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .about-left {
    display: block;
  }

  .about-left h2 {
    font-size: 42px;
  }

  .about-stats {
    --stats-gap: 40px;
    gap: 40px;
    margin-top: 28px;
    padding-top: 0;
  }
}

@media (max-width: 576px) {
  .about-program {
    padding: 60px 20px;
  }

  .about-left h2 {
    font-size: 36px;
  }

  .about-left p {
    font-size: 16px;
  }

  .about-stats {
    --stats-gap: 16px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
  }

  .stat-box {
    text-align: center;
    min-width: 90px;
  }

  .stat-box h3 {
    font-size: 22px;
    margin-bottom: 2px;
  }

  .stat-box span {
    font-size: 11px;
    line-height: 1.3;
  }
}

/* ================= WHY JSDA SECTION ================= */
.why-jsda {
  background: #000;
  color: #fff;
  padding: 100px 80px;
  font-family: Lato, sans-serif;
}

.why-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}

.why-header h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
}

.why-header p {
  font-size: 18px;
  color: #ccc;
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1320px;
  margin: 0 auto;
}

.why-box {
  position: relative;
}

.why-number {
  font-size: 64px;
  color: #333;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.why-box h3 {
  font-size: 28px;
  margin-bottom: 14px;
}

.line {
  width: 100%;
  height: 2px;
  background: #444;
  margin-bottom: 20px;
}

.why-box p {
  font-size: 16px;
  color: #bbb;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-jsda {
    padding: 80px 40px;
  }

  .why-header h2 {
    font-size: 38px;
  }
}

@media (max-width: 480px) {
  .why-header h2 {
    font-size: 30px;
  }

  .why-number {
    font-size: 48px;
  }
}

/*learning*/
.learning-section {
  background: #fff;
  padding: 50px 0;
  font-family: Lato, sans-serif;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.section-header p {
  color: #666;
  font-size: 18px;
}

.slider {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.8s ease;
}

.slide {
  min-width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.6) 35%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.15) 70%,
    rgba(0, 0, 0, 0) 100%
  );
}

.overlay {
  position: absolute;
  bottom: 60px;
  left: 60px;
  color: #fff;
  max-width: 750px;
  z-index: 2;
}

.overlay h4 {
  font-size: 36px;
  margin-bottom: 25px;
}

.overlay p {
  font-size: 18px;
  line-height: 1.3;
  color: #e0e0e0;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #111;
}

@media (max-width: 768px) {
  .slide {
    height: clamp(360px, 62vh, 500px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
  }

  .overlay {
    left: 18px;
    right: 18px;
    bottom: 24px;
    max-width: 100%;
  }

  .overlay h4 {
    font-size: clamp(30px, 5.4vw, 34px);
    line-height: 1.08;
    margin-bottom: 14px;
  }

  .overlay p {
    font-size: clamp(14px, 3.9vw, 18px);
    line-height: 1.3;
  }
}

/* ===== CAREER PATHWAYS SECTION ===== */
.cp-pathways {
  background: #000;
  color: #fff;
  padding: 100px 80px;
  font-family: Lato, sans-serif;
}

.cp-header {
  width: 100%;
  margin: 0 0 60px 0;
  text-align: left;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.cp-header h2 {
  font-size: 48px;
  margin: 0 0 14px;
  line-height: 1.1;
}

.cp-header p {
  color: #ccc;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  white-space: normal;
}

.cp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
  max-width: 1320px;
  margin: 0 auto;
}

.cp-card {
  padding: 0;
}

.cp-card h3 {
  font-size: 24px;
  margin: 0 0 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  line-height: 1.2;
}

.cp-card p {
  color: #bbb;
  font-size: 16px;
  line-height: 1.7;
  margin: 16px 0 0;
}

@media (max-width: 992px) {
  .cp-pathways {
    padding: 80px 40px;
  }

  .cp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 28px;
  }

  .cp-header h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .cp-pathways {
    padding: 60px 20px;
  }

  .cp-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cp-header {
    margin-bottom: 35px;
  }

  .cp-header h2 {
    font-size: 32px;
  }

  .cp-header p {
    font-size: 15px;
  }

  .cp-card h3 {
    font-size: 20px;
    padding-bottom: 14px;
  }

  .cp-card p {
    font-size: 14px;
  }
}

/* ================================ STUDENT WORKS ================================ */
.student-works {
  padding: 50px 100px;
}

.student-works-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.student-works-header h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
}

.student-works-header p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

.carousel-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 0 6px;
  max-width: 1320px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.45s ease;
  will-change: transform;
}

.work-card {
  min-width: 33.333%;
  padding: 0 16px;
  box-sizing: border-box;
}

.image-box {
  width: 100%;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  background: #f3f3f3;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-content {
  padding-top: 18px;
  text-align: left;
}

.card-content .studio {
  font-size: 12px;
  letter-spacing: 1.3px;
  color: #8a8a8a;
  text-transform: uppercase;
}

.card-content h3 {
  font-size: 22px;
  font-weight: 500;
  margin: 10px 0 14px;
  color: #111;
  line-height: 1.35;
}

.card-content p {
  margin: 6px 0;
  font-size: 15px;
  color: #555;
}

.card-content .year {
  font-size: 14px;
  color: #888;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #cfcfcf;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots button.active {
  background: #111;
  transform: scale(1.25);
}

@media (max-width: 768px) {
  .student-works {
    padding: 40px 16px;
  }

  .student-works-header {
    margin-bottom: 36px;
  }

  .student-works-header h2 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .student-works-header p {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 6px;
  }

  .carousel-wrapper {
    padding: 0;
  }

  .work-card {
    min-width: 100%;
    padding: 0;
  }

  .image-box {
    height: 240px;
    border-radius: 14px;
  }

  .card-content {
    padding: 14px 4px 0;
  }

  .card-content .studio {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .card-content h3 {
    font-size: 18px;
    margin: 8px 0 10px;
    line-height: 1.3;
  }

  .card-content p {
    font-size: 14px;
    margin: 4px 0;
  }

  .card-content .year {
    font-size: 13px;
  }

  .carousel-dots {
    margin-top: 28px;
    gap: 10px;
  }

  .carousel-dots button {
    width: 8px;
    height: 8px;
  }

  .carousel-dots button.active {
    transform: scale(1.3);
  }
}

@media (max-width: 480px) {
  .image-box {
    height: 210px;
  }

  .student-works-header h2 {
    font-size: 26px;
  }
}

/* FACULTY */
.faculty-section {
  background: #000;
  padding: 80px 60px;
  color: #fff;
}

.faculty-section h2 {
  font-size: 40px;
  margin: 0 0 10px;
  text-align: center;
}

.faculty-subtitle {
  max-width: 750px;
  margin: 0 auto 60px;
  color: #aaa;
  font-size: 16px;
  text-align: center;
}

.faculty-carousel {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
}

.faculty-viewport {
  overflow: hidden;
  width: 100%;
}

.faculty-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 32px;
  transition: transform 0.65s ease;
  will-change: transform;
}

.faculty-card {
  flex: 0 0 calc((100% - 96px) / 4);
  text-align: left;
}

.img-box {
  border-radius: 16px;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter .4s ease, transform .4s ease;
}

.faculty-card:hover .img-box img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.faculty-info {
  padding-top: 22px;
  line-height: 1.4;
}

.faculty-name {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 6px;
}

.faculty-name .phd {
  font-size: 0.72em;
  font-weight: 500;
}

.faculty-post {
  display: block;
  font-size: 14px;
  color: #9a9a9a;
  margin-bottom: 14px;
}

.faculty-subject {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 10px;
  color: #fff;
}

.faculty-degree {
  font-size: 13px;
  color: #7a7a7a;
}

.faculty-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.faculty-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #666;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.faculty-dot.active {
  background: #fff;
  transform: scale(1.3);
}

@media (max-width: 992px) {
  .faculty-section {
    padding: 60px 24px;
  }

  .faculty-card {
    flex: 0 0 calc((100% - 32px) / 2);
  }

  .img-box {
    background: #111;
    border-radius: 20px;
    overflow: hidden;
  }

  .img-box img {
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  .faculty-card {
    flex: 0 0 100%;
  }

  .img-box {
    border-radius: 20px;
    overflow: hidden;
  }

  .img-box img {
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
  }
}

/* ===================== Alumni Testimonials ===================== */
.alumni-section {
  background: #000;
  color: #fff;
  padding: 100px 5%;
  text-align: center;
}

.alumni-section h2 {
  font-size: 42px;
  margin-bottom: 12px;
}

.alumni-section .subtitle {
  opacity: .7;
  margin-bottom: 70px;
}

.alumni-carousel {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.alumni-card {
  width: 320px;
  height: 860px;
  background: #0a0a0a;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

.barch-alumni-section .alumni-card {
  height: 760px;
}

.interior-alumni-section .alumni-card {
  height: 810px;
}

.alumni-img {
  height: 360px;
  width: 100%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.alumni-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(100%);
  transition: all .6s ease;
}

.alumni-card:hover .alumni-img img {
  filter: grayscale(0%);
}

.alumni-content {
  padding: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

.quote-icon {
  font-size: 110px;
  line-height: 0.7;
  margin-bottom: -20px;
  color: transparent;
  -webkit-text-stroke: 2px #6f6f6f;
}

.alumni-text {
  font-size: 15px;
  line-height: 1.6;
  color: #e0e0e0;
  margin-top: 0;
  margin-bottom: 0;
  flex: 1 1 auto;
  min-height: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.alumni-bottom {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  margin-top: auto;
  padding-top: 18px;
}

.alumni-bottom .divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0 0 14px;
}

/* Always show divider across all alumni card markup variants */
.alumni-info {
  position: relative;
  margin-top: 14px;
  padding-top: 14px;
}

.alumni-info::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

/* Avoid double line where legacy .divider exists */
.alumni-bottom .divider {
  display: none;
}

.alumni-info h4 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 6px;
  line-height: 1.25;
}

.alumni-info span {
  font-size: 13px;
  opacity: .6;
  display: block;
}

.alumni-info p {
  font-size: 13px;
  opacity: .75;
  margin-top: 6px;
}

.alumni-info p:empty {
  display: none;
}

@media (max-width: 768px) {
  .alumni-section {
    padding: 70px 20px;
    overflow: hidden;
  }

  .alumni-section h2 {
    font-size: 30px;
  }

  .alumni-section .subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .alumni-carousel {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    max-width: 100% !important;
    margin: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
  }

  .alumni-carousel::-webkit-scrollbar {
    display: none;
  }

  .alumni-card {
    flex: 0 0 100%;
    min-width: 100%;
    min-height: 580px;
    height: auto !important;
    width: 100%;
    max-width: none;
    padding: 28px;
    border-radius: 20px;
    box-sizing: border-box;
    scroll-snap-align: start;
  }

  .barch-alumni-section .alumni-card,
  .interior-alumni-section .alumni-card {
    height: auto !important;
    min-height: 580px;
  }

  .alumni-img {
    height: 380px;
    border-radius: 20px;
  }

  .quote-icon {
    font-size: 105px;
    margin-bottom: -8px;
  }

  .alumni-bottom {
    margin-top: 16px;
    padding-top: 0;
  }

  .alumni-bottom .divider {
    display: block;
    height: 1px;
    background: rgba(255, 255, 255, 0.22);
    margin: 0 0 12px;
  }

  .alumni-info {
    margin-top: 0;
    padding-top: 0;
  }

  .alumni-info::before {
    display: none;
  }

  .alumni-text {
    margin-bottom: 0;
  }

  .alumni-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
  }

  .alumni-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #666;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .alumni-dot.active {
    background: #fff;
    transform: scale(1.25);
  }
}

/* FAQ */
.faq-section {
  padding: 100px 20px;
  text-align: center;
  background: #fff;
}

.faq-section h2 {
  font-size: 48px;
  margin-bottom: 10px;
}

.faq-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 60px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e5e5e5;
  margin-bottom: 20px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 25px 30px;
  font-size: 18px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-item.active .icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 30px 25px;
  font-size: 16px;
  color: #555;
  text-align: left;
}

.faq-cta {
  margin-top: 70px;
}

.faq-cta p {
  margin-bottom: 20px;
  font-size: 18px;
}

.cta-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 15px 40px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 10px;
}

.cta-btn:hover {
  background: #8a8a8a;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 16px;
  }

  .faq-section h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .faq-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .faq-container {
    max-width: 100%;
  }

  .faq-item {
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
  }

  .faq-question {
    padding: 18px 16px;
    font-size: 15px;
    gap: 14px;
  }

  .faq-question .icon {
    width: 10px;
    height: 10px;
    border-width: 2px;
    flex-shrink: 0;
  }

  .faq-answer p {
    padding: 0 16px 18px;
    font-size: 14px;
    line-height: 1.6;
  }

  .faq-question:active {
    background: #f7f7f7;
  }
}

@media (max-width: 1200px) {
  .about-program,
  .student-works {
    padding-left: 40px;
    padding-right: 40px;
  }

  .why-jsda,
  .cp-pathways,
  .faculty-section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .about-left h2,
  .student-works-header h2,
  .cp-header h2,
  .faq-section h2 {
    font-size: clamp(34px, 4vw, 44px);
  }

  .overlay {
    left: 36px;
    right: 36px;
    bottom: 44px;
    max-width: min(760px, calc(100% - 72px));
  }

  .overlay h4 {
    font-size: clamp(28px, 3.2vw, 36px);
    margin-bottom: 14px;
  }

  .overlay p {
    font-size: clamp(15px, 1.6vw, 18px);
  }
}

@media (min-width: 1600px) {
  .about-wrapper,
  .why-grid,
  .cp-header,
  .cp-grid,
  .carousel-wrapper,
  .faculty-carousel,
  .faq-container {
    max-width: 1440px;
  }
}
