@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=STIX+Two+Text:ital,wght@0,400..700;1,400..700&display=swap');

:root {
  --background: #ffffff;
  --foreground: #171717;
  --button-red: rgba(151, 43, 40, 1);
  --dark-blue: rgba(13, 59, 102, 1);
  --lite-sand: rgba(255, 235, 208, 1);
  --dark-orange-red-light: rgba(254, 162, 46, 1);
  --light-gray: #f5f5f5;
  --card-skin: rgba(255, 235, 208, 1);
}

body {
  background: var(--background);
  color: var(--foreground);
  overflow-x: hidden;
}

/* Typography */
.font-stix { font-family: 'STIX Two Math', serif !important; }
.font-plus-jakarta-sans { font-family: 'Plus Jakarta Sans', sans-serif !important; }

h1, h2 { 
  font-family: 'STIX Two Math', serif; 
  font-size: 30px; 
  margin-bottom: 20px;
}
h3 { 
  font-size: 24px; 
  line-height: 45px; 
  font-family: 'STIX Two Math', serif; 
  margin-bottom: 8px;
}
h4 { 
  font-size: 16px; 
  line-height: 24px; 
  font-family: 'STIX Two Math', serif; 
  margin-bottom: 4px;
}
h5 { 
  font-size: 18px; 
  line-height: 30px; 
  font-family: 'Plus Jakarta Sans', sans-serif; 
  margin-bottom: 16px;
}
p { 
  font-family: 'Plus Jakarta Sans', sans-serif; 
  font-size: 14px; 
  margin-bottom: 15px;
}
span, a { 
  font-family: 'Plus Jakarta Sans', sans-serif; 
  font-size: 14px; 
}
a { font-size: 14px !important; }

@media (min-width: 768px) {
  h1 { font-size: 72px; }
  h2 { font-size: 45px; }
}

/* Layout Utilities */
.container { margin: 0 auto; padding: 0 15px; max-width: 1200px; }
.flex { display: flex; }
.flex-column { flex-direction: column; }
.align-items-center { align-items: center; }
.align-items-end { align-items: flex-end; }
.align-items-start { align-items: flex-start; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.hidden { display: none !important; }
.text-black { color: var(--foreground) !important; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.max-w-full { max-width: 100%; }
.box-border { box-sizing: border-box; }
.m-0 { margin: 0; }

/* Common Border Radius */
.rounded { border-radius: 10px; }
.rounded-sm { border-radius: 8px; }
.rounded-xs { border-radius: 4px; }
.rounded-md { border-radius: 10px; }
.rounded-lg { border-radius: 15px; }

/* Common Patterns */
.hero-background,
.accreditation-badge-card,
.scholarship-slide-content,
.entrance-exam-student-img,
.kalsee-image,
.new-age-programs-img,
.video-interview-thumbnail,
.placements-stack-item img,
.facility-thumbnail-img,
.kalsee-icon-img,
.choose-field-icon-img,
.placements-logo-item img {
  width: 100%;
  height: 100%;
}

.hero-content .row,
.milestone-item,
.accreditation-badge-item,
.scholarship-swiper .swiper-slide,
.entrance-exam-card,
.video-interview-card,
.placements-stack-item,
.facility-thumbnail-img-wrapper,
.placements-stack-container,
.video-interviews-swiper-wrapper {
  width: 100%;
}

/* Header */
.top-header {
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
}

.header-container {
  background-color: var(--background);
  border-radius: 10px;
}

.header-content {
  gap: 15px;
  width: 100%;
  flex-wrap: nowrap;
}

.header-content > div:first-child { gap: 15px; }
.kalinga-logo-img, .nirf-logo-img, .naac-logo-img {
  width: auto;
  object-fit: contain;
}
.kalinga-logo-img { height: 35px; }
.nirf-logo-img { height: 40px; }
.naac-logo-img { height: 50px; }

/* Button Component */
.btn-component {
  width: fit-content;
  background-color: var(--btn-bg-color, var(--button-red));
  color: var(--btn-text-color, var(--background));
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.3s;
  border: 1px solid var(--light-gray);
  cursor: pointer;
  padding: 0;
}

.btn-component p { margin: 0; padding: 10px 10px; font-weight: 200; }

.btn-red {
  --btn-bg-color: var(--button-red);
  --btn-text-color: var(--background);
  --btn-hover-bg-color: var(--button-red);
}
.btn-red:hover {
  color: var(--foreground);
  text-decoration: none;
  background-color: var(--lite-sand);
}

.btn-white:hover {
  color: var(--foreground);
  text-decoration: none;
  background-color: var(--lite-sand);
}

.btn-white {
  --btn-bg-color: var(--background);
  --btn-text-color: var(--button-red);
  --btn-hover-bg-color: var(--background);
}

.btn-arrow, .btn-arrow-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  margin: 5px;
  flex-shrink: 0;
  padding: 4px;
  box-sizing: border-box;
}

.btn-arrow { background-color: var(--background); }
.btn-arrow-red { background-color: var(--button-red); }

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 500px;
  margin: 10px;
  padding: 0;
  padding-top: 80px;
  border-radius: 10px;
  border: 1px solid var(--button-red);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 80px 0 48px;
  overflow: hidden;
}

.hero-content .row {
  margin: 0;
  gap: 40px;
}

.hero-text {
  color: var(--foreground);
  position: relative;
  z-index: 3;
  padding-left: 20px;
  min-height: 400px;
}

.hero-subtitle-new {
  color: var(--button-red);
  position: relative;
  z-index: 2;
}

.hero-title-new {
  padding-bottom: 20px;
  position: relative;
  z-index: 2;
  color: var(--foreground);
  max-width: 500px;
}

.hero-form {
  background-color: var(--background);
  border-radius: 8px;
  padding: 32px;
  width: 100%;
  max-width: 450px;
}

.hero-form .form-group { margin-bottom: 16px; }

.hero-form .form-control {
  border-radius: 4px;
  border: 1px solid #ccc;
  padding: 8px 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-form .form-control:focus {
  border-color: var(--button-red);
  outline: none;
  box-shadow: 0 0 0 2px var(--button-red);
}

.hero-form .control-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  color: var(--foreground);
}

.btn-submit {
  background-color: var(--button-red);
  color: var(--background);
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-submit:hover { background-color: var(--button-red); transform: scale(1.02); }
.btn-submit:active { transform: scale(0.98); }

/* Milestone Section */
.milestone-section {
  margin: 10px;
}

.milestone-banner {
  background-color: var(--dark-blue);
  border-radius: 10px;
  min-height: 100%;
  padding: 0 40px;
  position: relative;
  overflow: visible;
}

.milestone-item {
  z-index: 10;
  text-align: center;
}

.milestone-value {
  color: var(--dark-orange-red-light);
  margin-bottom: 8px;
}

.milestone-label {
  color: var(--background);
  margin: 0;
}

.milestone-divider {
  width: 1px;
  height: 50px;
  background-color: var(--dark-orange-red-light);
  align-self: center;
}

.milestone-image-container {
  position: relative;
  flex-shrink: 0;
  z-index: 20;
  margin-top: -60px;
  order: 3;
}

.milestone-image {
  width: 250px;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}

/* Accreditation Section */
.accreditation-section { padding: 64px 0; flex-wrap: wrap; }

.accreditation-title {
  color: #d3d3d3;
  -webkit-text-stroke: 1px #d3d3d3;
  -webkit-text-fill-color: transparent;
  font-size: 120px !important;
  line-height: 1;
}

.accreditation-slogan {
  color: var(--foreground);
}

.accreditation-badges {
  background-color: var(--button-red);
  padding: 35px;
  border-radius: 10px;
  gap: 20px;
  flex-wrap: wrap;
}

.accreditation-badge-item {
  position: relative;
  flex: 1;
  min-width: 150px;
}

.accreditation-badge-card {
  position: absolute;
  background-color: var(--background);
  border-radius: 10px;
  z-index: 1;
}

.accreditation-badge-img {
  position: relative;
  height: 80px;
  width: auto;
  object-fit: contain;
  z-index: 2;
  padding: 15px;
}

.accreditation-left {
  height: 370px;
  margin-bottom: 20px;
}

.accreditation-right {
  background-image: url('images/kalinga-four.webp');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 370px;
}

/* KALSEE Details Section */
.kalsee-details-section {
  background-color: var(--dark-blue);
  border-radius: 10px;
  padding: 64px 0;
  margin: 20px 10px;
}

.kalsee-section { flex-wrap: wrap; }

.kalsee-image-container {
  position: relative;
  min-height: 500px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.kalsee-image {
  object-fit: cover;
  border-radius: 10px;
}

.kalsee-content-container {
  min-height: 400px;
  padding: 0 15px;
}

.kalsee-title {
  color: var(--background);
  padding: 8px 0;
  text-align: left;
}

.kalsee-description {
  color: var(--background);
}

.kalsee-box-items {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  overflow-y: auto;
  max-height: 500px;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--button-red) rgba(255, 255, 255, 0.1);
}

.kalsee-box-items::-webkit-scrollbar {
  width: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.kalsee-box-items::-webkit-scrollbar-thumb {
  background: var(--button-red);
  border-radius: 12px;
  min-height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.kalsee-box-items::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.kalsee-box-item {
  gap: 12px;
  background-color: var(--lite-sand);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 12px;
}

.kalsee-box-icon {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  border-radius: 4px;
}

.kalsee-icon-img {
  object-fit: contain;
}

.kalsee-box-content {
  flex: 1;
  gap: 4px;
}

.kalsee-box-title {
  color: var(--button-red);
  margin: 0;
}

.kalsee-box-content h3{
  font-size: 20px;
  color: var(--foreground);
}
.kalsee-box-text {
  color: var(--foreground);
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Scholarship Section */
.scholarship-section {
  padding: 64px 0;
  background-color: #f5f5f5;
  overflow: visible;
  box-sizing: border-box;
  width: 100%;
}

.scholarship-section > div,
.scholarship-section .container {
  overflow: visible;
  width: 100%;
  max-width: 100%;
}

.scholarship-wrapper {
  position: relative;
  max-width: 75%;
  overflow: visible;
}

.scholarship-card {
  border-radius: 10px;
  padding: 50px 70px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 2;
  margin: 0px 10px;
  background-color: var(--background);
}

.scholarship-content {
  position: relative;
  z-index: 2;
  overflow: hidden;
  max-width: 80%;
}

.scholarship-main-heading {
  margin-bottom: 0;
}

.scholarship-amount {
  color: var(--foreground);
}

.scholarship-amount-accent {
  color: var(--button-red);
  font-size: 45px;
}

.scholarship-sub-heading {
  color: var(--foreground);
  padding: 0px 30px 0px 0px;
}

.scholarship-description {
  color: var(--foreground);
  max-width: 500px;
}

.scholarship-btn {
  margin-bottom: 10px;
}

.scholarship-right {
  position: absolute;
  right: -300px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 100%;
  max-width: 450px;
}

.scholarship-frame {
  position: relative;
  max-width: 450px;
  background-color: var(--button-red);
  border-radius: 15px;
  padding: 15px;
  height: 0;
  padding-bottom: calc(90% + 30px);
}

.scholarship-swiper {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: calc(15px + 50px);
  width: calc(100% - 30px);
  height: calc(100% - 30px - 50px);
  border-radius: 10px;
  overflow: hidden;
}

.scholarship-swiper .swiper-wrapper {
  height: 100%;
}

.scholarship-swiper .swiper-slide {
  height: 100%;
  background-color: var(--lite-sand);
  border-radius: 10px;
  overflow: hidden;
}

.scholarship-slide-content {
  position: relative;
}

.scholarship-slide-img {
  object-fit: cover;
  border-radius: 10px;
}

.scholarship-nav-buttons {
  position: absolute;
  bottom: 15px;
  right: 15px;
  gap: 10px;
  z-index: 10;
}

.scholarship-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.scholarship-nav-btn-prev, .scholarship-nav-btn-next {
  background-color: var(--dark-orange-red-light);
}

.scholarship-nav-btn-next:hover, .scholarship-nav-btn-prev:hover {
  background-color: #9ca3af;
}

.scholarship-nav-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.scholarship-swiper-button-prev,
.scholarship-swiper-button-next {
  position: static !important;
  margin: 0 !important;
  width: 40px !important;
  height: 40px !important;
}

.scholarship-swiper-button-prev::after,
.scholarship-swiper-button-next::after {
  display: none;
}

/* Entrance Examinations Section */
.entrance-exam-section {
  padding: 64px 0;
  background-color: var(--dark-blue);
  margin: 10px;
  border-radius: 10px;
}

.entrance-exam-header {
  margin-bottom: 32px;
}

.entrance-exam-subtitle {
  color: var(--dark-orange-red-light);
}

.entrance-exam-title {
  color: var(--background);
}

.entrance-exam-cards {
  max-width: 1200px;
  margin: 0 auto;
  gap: 24px;
  display: flex;
  align-items: stretch;
}

.entrance-exam-card-wrapper {
  display: flex;
  height: 100%;
}

.entrance-exam-card {
  background-color: var(--background);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: visible;
  height: 100%;
  display: flex;
  flex-direction: column; 
}

.entrance-exam-card-content {
  padding: 20px;
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.entrance-exam-card-header {
  z-index: 10;
}

.entrance-exam-card-title {
  color: var(--button-red);
  font-weight: 500;
}

.entrance-exam-card-subtitle {
  color: var(--foreground);
}

.entrance-exam-features {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
  flex-grow: 1;
  z-index: 10;
}

.entrance-exam-feature-item {
  gap: 8px;
}

.entrance-exam-feature-dot {
  width: 8px;
  height: 8px;
  background-color: var(--dark-orange-red-light);
  border-radius: 1px;
  margin-top: 6px;
  flex-shrink: 0;
}

.entrance-exam-feature-item span {
  color: var(--foreground);
}

.entrance-exam-card-button {
  margin-top: auto;
  z-index: 10;
  position: relative;
}

.entrance-exam-orange-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35%;
  height: 100%;
  background-color: var(--dark-orange-red-light);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  z-index: 0;
}

.entrance-exam-image {
  position: absolute;
  top: 0;
  right: -25px;
  width: 320px;
  height: 100%;
  z-index: 0;
  display: flex;
  align-items: flex-start;
}

.entrance-exam-student-img {
  object-fit: contain;
  object-position: top;
}

/* New-Age Programs Section */
.new-age-programs-section {
  padding: 64px 0;
  background-color: #f5f5f5;
}

.new-age-programs-wrapper {
  position: relative;
  min-height: 500px;
}

.new-age-programs-panel {
  background-color: var(--dark-blue);
  border-radius: 10px;
  padding: 35px 35px;
  position: relative;
  z-index: 2;
  max-width: 55%;
  flex: 0 0 55%;
  margin-right: -100px;
  top: 80px;
  border: 1px solid var(--background);
}

.new-age-programs-title {
  color: var(--background);
  margin-bottom: 32px;
}

.new-age-programs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.new-age-programs-item {
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.new-age-programs-item:last-child {
  border-bottom: none;
}

.new-age-programs-link {
  padding: 16px 0;
  text-decoration: none;
  color: var(--background);
  width: 100%;
  transition: opacity 0.3s;
}

.new-age-programs-link:hover {
  opacity: 0.8;
  text-decoration: none;
  color: var(--background);
}

.new-age-programs-link span:first-child {
  color: var(--background);
  flex: 1;
}

.new-age-programs-arrow {
  margin-left: 16px;
  flex-shrink: 0;
}

.new-age-programs-image {
  position: relative;
  z-index: 1;
  flex: 1;
  height: 500px;
  overflow: hidden;
  border-radius: 10px;
}

.new-age-programs-img {
  object-fit: cover;
  border-radius: 10px;
}

/* Choose the Field Section */
.choose-field-section {
  padding: 64px 0;
  background-color: #f5f5f5;
}

.choose-field-header {
  margin-bottom: 48px;
}

.choose-field-title {
  color: var(--foreground);
}

.choose-field-subtitle {
  color: var(--foreground);
  max-width: 800px;
  margin: 0 auto;
}

.choose-field-grid {
  margin-bottom: 40px;
  gap: 20px;
}

.choose-field-card-wrapper {
  margin-bottom: 20px;
}

.choose-field-hidden {
  display: none;
}

.choose-field-hidden-mobile {
  display: none;
}

.choose-field-card {
  background-color: var(--lite-sand);
  border-radius: 10px;
  padding: 32px 20px;
  min-height: 180px;
  transition: all 0.3s;
  cursor: pointer;
}

.choose-field-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.choose-field-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.choose-field-icon-img {
  object-fit: contain;
}

.choose-field-name {
  color: var(--foreground);
  text-align: center;
  font-weight: 500;
}

.choose-field-button {
  margin-top: 32px;
}

/* Mobile Swiper for Choose Field */
.choose-field-swiper-wrapper {
  margin-bottom: 30px;
}

.choose-field-swiper {
  position: relative;
  padding-bottom: 50px;
}

.choose-field-swiper .swiper-slide {
  height: auto;
}

.choose-field-nav {
  position: absolute;
  bottom: 0;
  right: 0;
  gap: 10px;
  z-index: 10;
}

.choose-field-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: none;
  background-color: var(--lite-sand);
  color: var(--foreground);
  cursor: pointer;
  transition: all 0.3s;
}

.choose-field-nav-btn:hover {
  background-color: var(--dark-orange-red-light);
  color: var(--background);
  transform: scale(1.05);
}

.choose-field-swiper-button-prev,
.choose-field-swiper-button-next {
  position: static !important;
  margin: 0 !important;
  width: 36px !important;
  height: 36px !important;
}

.choose-field-swiper-button-prev::after,
.choose-field-swiper-button-next::after {
  display: none;
}

/* Placements Section */
.placements-section {
  padding: 64px 0;
  background-color: #f5f5f5;
}

.placements-content {
  padding-right: 20px;
}

.placements-header {
  margin-bottom: 20px;
}

.placements-subtitle {
  color: var(--foreground);
}

.placements-title {
  color: var(--foreground);
}

.placements-description {
  color: var(--foreground);
  margin-bottom: 32px;
  max-width: 500px;
}

.placements-milestones {
  gap: 20px;
  flex-wrap: wrap;
}

.placements-milestone-item {
  flex: 1;
  min-width: 120px;
}

.placements-milestone-value {
  color: var(--button-red);
  margin-bottom: 8px;
}

.placements-milestone-label {
  color: var(--foreground);
}

.placements-milestone-divider {
  width: 1px;
  background-color: #999;
  height: 60px;
  align-self: center;
}

.placements-images {
  margin-top: 30px;
}

.placements-stack-container {
  position: relative;
  max-width: 530px;
  margin: 0 auto;
}

.placements-stack {
  position: relative;
  height: 480px;
  margin-bottom: 20px;
}

.placements-stack-item {
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s, z-index 0.3s;
  cursor: pointer;
}

.placements-stack-item img {
  object-fit: cover;
}

.placements-nav {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  gap: 12px;
  z-index: 10;
}

.placements-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: none;
  background-color: var(--button-red);
  color: var(--background);
  cursor: pointer;
  transition: all 0.3s;
}

.placements-nav-btn:hover {
  background-color: #A2A2A2;
  transform: scale(1.05);
}

.placements-logos-section {
  margin-top: 48px;
  margin: 10px;
}

.placements-logos-container {
  background-color: var(--dark-blue);
  border-radius: 10px;
  padding: 32px 24px;
  min-height: 180px;
}

.placements-logos-title {
  color: var(--background);
  margin-bottom: 24px;
  text-align: left;
  padding: 0 12px;
}

.placements-logos-wrapper {
  overflow: hidden;
  position: relative;
}

.placements-logos-track {
  gap: 16px;
  animation: placements-logos-scroll 30s linear infinite;
  width: max-content;
  display: flex;
  align-items: center;
  will-change: transform;
}

.placements-logo-item {
  flex-shrink: 0;
  background-color: var(--background);
  border-radius: 10px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 60px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.placements-logo-item img {
  object-fit: contain;
}

@keyframes placements-logos-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 8px));
  }
}

.placements-logos-wrapper:hover .placements-logos-track {
  animation-play-state: paused;
}

.placements-content-wrapper {
  flex-wrap: wrap;
}

/* Video Interviews Section */
.video-interviews-section {
  padding: 64px 0;
  background-color: var(--background);
  overflow: hidden;
}

.video-interviews-section .container {
  overflow: hidden;
}

.video-interviews-header {
  margin-bottom: 48px;
}

.video-interviews-category {
  color: var(--foreground);
}

.video-interviews-title {
  color: var(--foreground);
}

.video-interviews-swiper-wrapper {
  position: relative;
  padding-bottom: 60px;
  overflow: hidden;
}

.video-interviews-swiper {
  overflow: hidden;
}

.video-interviews-swiper .swiper-slide {
  height: auto;
  box-sizing: border-box;
}

.video-interview-card {
  background-color: var(--background);
  border-radius: 10px;
  padding: 16px;
  border: 2px solid #e5e5e5;
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  box-sizing: border-box;
}

.video-interview-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.video-interview-media {
  position: relative;
  height: 250px;
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #e5e5e5;
}

.video-interview-thumbnail {
  object-fit: cover;
  object-position: top;
}

.video-interview-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  pointer-events: none;
}

.video-interview-card:hover .video-interview-play-btn {
  background-color: var(--background);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-interview-play-icon {
  width: 24px;
  height: 24px;
  color: #666;
  margin-left: 4px;
}

.video-interview-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.video-interview-name {
  color: var(--button-red);
  margin-bottom: 8px;
  font-weight: 500;
}

.video-interview-description {
  color: var(--foreground);
  margin: 0;
}

.video-interviews-nav {
  position: absolute;
  bottom: 0;
  right: 0;
  gap: 12px;
  z-index: 10;
  max-width: 100%;
}

.video-interviews-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: none;
  background-color: var(--button-red);
  color: var(--background);
  cursor: pointer;
  transition: all 0.3s;
}

.video-interviews-nav-btn:hover {
  background-color: #A2A2A2;
  transform: scale(1.05);
}

.video-interviews-swiper-button-prev,
.video-interviews-swiper-button-next {
  position: static !important;
  margin: 0 !important;
  width: 44px !important;
  height: 44px !important;
}

.video-interviews-swiper-button-prev::after,
.video-interviews-swiper-button-next::after {
  display: none;
}

/* Video Modal */
.video-interviews-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.video-interviews-modal.active {
  display: flex;
}

.video-interviews-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.video-interviews-modal-content {
  position: relative;
  z-index: 10000;
  width: 90%;
  max-width: 900px;
  background-color: var(--background);
  border-radius: 10px;
  padding: 20px;
  max-height: 90vh;
}

.video-interviews-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--background);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: all 0.3s;
}

.video-interviews-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.video-interviews-modal-player {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-interviews-modal-player video,
.video-interviews-modal-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Facilities Section */
.facilities-section {
  padding: 64px 0;
  background-color: var(--background);
  margin: 10px;
}

.facilities-main-panel {
  position: relative;
  border-radius: 10px;
  overflow: visible;
  min-height: 550px;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  transition: background-image 0.6s ease-in-out;
}

.facilities-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  z-index: 1;
}

.facilities-content {
  position: relative;
  z-index: 2;
  min-height: 500px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.facilities-header,
.facilities-subtitle,
.facilities-title,
.facilities-bottom {
  color: var(--background);
}

.facilities-counter {
  margin-bottom: 16px;
}

.facilities-counter-current {
  color: var(--background);
  font-size: 24px;
}

.facilities-counter-total {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.facilities-info {
  gap: 16px;
  flex-direction: column;
}

.facilities-info-title-wrapper {
  flex-grow: 1;
}

.facilities-info-title {
  color: var(--background);
  font-size: 30px;
  margin: 0;
  text-transform: capitalize;
}

.facilities-info-description-wrapper {
  max-width: 100%;
}

.facilities-info-description {
  color: var(--background);
  margin: 0;
}

.facilities-thumbnails-desktop {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -48px;
  z-index: 30;
  width: 90%;
}

.facilities-thumbnails-mobile {
  margin-top: 32px;
}

.facilities-thumbnails-wrapper {
  gap: 4px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.facilities-thumbnails-wrapper::-webkit-scrollbar {
  display: none;
}

.facility-thumbnail-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: calc((100% - 8px) / 3);
  min-width: calc((100% - 8px) / 3);
}

.facility-thumbnail-progress {
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.facility-thumbnail-progress-bar {
  height: 100%;
  background-color: var(--dark-orange-red-light);
  transition: width 0.1s linear;
}

.facility-thumbnail-button {
  position: relative;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
  height: 48px;
  background-color: transparent;
}

.facility-thumbnail-button:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.facility-thumbnail-button.active {
  border: 2px solid var(--background);
  transform: scale(0.9);
}

.facility-thumbnail-img-wrapper {
  position: relative;
}

.facility-thumbnail-img {
  object-fit: cover;
}

.facility-thumbnail-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.facility-thumbnail-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 4px;
  color: var(--background);
  font-size: 9px;
  text-align: center;
  text-transform: capitalize;
  font-weight: 500;
}

.placements-content-wrapper {
  flex-wrap: wrap;
}

/* International Students Section */
.international-students-section {
  position: relative;
  padding: 64px 0;
  min-height: 500px;
  height: 500px;
  overflow: hidden;
  margin: 10px;
  border-radius: 10px;
}

.international-students-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.international-students-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, var(--dark-blue), rgba(0, 0, 0, 0.6));
}

.international-students-content {
  position: relative;
  z-index: 2;
  max-width: 600px;

}

.international-students-title {
  color: var(--background);
}

.international-students-description {
  color: var(--background);
  margin-bottom: 40px;
  max-width: 500px;
}

.international-students-stats {
  gap: 24px;
  flex-wrap: wrap;
}

.international-students-stat-card {
  background-color: var(--background);
  border-radius: 10px;
  padding: 20px 24px;
  min-width: 200px;
  flex: 1;
}

.international-students-stat-label {
  color: var(--foreground);
}

.international-students-stat-divider {
  width: 100%;
  height: 1px;
  background-color: #e5e5e5;
  margin: 12px 0;
}

.international-students-stat-value {
  color: var(--button-red);
  margin: 0;
}

.international-students-content-wrapper {
  padding-top: 30px;
}

.international-students-globe {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  max-width: 60%;
  z-index: 1;
  opacity: 0.9;
}

.international-students-globe-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Facility Section */
.facility-section {
  padding: 64px 0;
  background-color: var(--background);
}

.facility-subtitle {
  color: var(--button-red);
}

.facility-title {
  color: var(--foreground);
}

.facility-description {
  color: var(--foreground);
  max-width: 800px;
  margin: 0 auto;
}

.facility-swiper-wrapper {
  position: relative;
  padding-bottom: 60px;
  overflow: hidden;
}

.facility-swiper {
  overflow: hidden;
  padding: 20px 0;
}

.facility-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.facility-swiper .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}

.facility-card {
  background-color: var(--background);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s;
  cursor: pointer;
}

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

.facility-card-image-wrapper {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.facility-card-image-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 250px;
  transition: height 0.3s;
}

.facility-card:hover .facility-card-image-container {
  height: 300px;
}

.facility-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.facility-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--background);
  padding: 12px 16px;
  margin: 12px;
  border-radius: 8px;
  z-index: 10;
  transition: all 0.3s;
}

.facility-card:hover .facility-card-label {
  background-color: var(--button-red);
}

.facility-card-label-text {
  color: var(--foreground);
  text-align: center;
  font-weight: 500;
  margin: 0;
  transition: color 0.3s;
}

.facility-card:hover .facility-card-label-text {
  color: var(--background);
}

.facility-nav {
  position: absolute;
  bottom: 0;
  right: 0;
  gap: 12px;
  z-index: 10;
}

.facility-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: none;
  background-color: var(--button-red);
  color: var(--background);
  cursor: pointer;
  transition: all 0.3s;
}

.facility-nav-btn:hover {
  background-color: #A2A2A2;
  transform: scale(1.05);
}

.facility-swiper-button-prev,
.facility-swiper-button-next {
  position: static !important;
  margin: 0 !important;
  width: 44px !important;
  height: 44px !important;
}

.facility-swiper-button-prev::after,
.facility-swiper-button-next::after {
  display: none;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .hero-section { 
    height: 600px; 
    padding-top: 90px; 
    overflow: hidden;
  }
  .hero-content { 
    padding: 0; 
    overflow: hidden;
  }
  .hero-text { color: var(--foreground); }
  .hero-form { 
    padding: 40px; 
    max-width: 500px;
    width: 100%;
  }
  .milestone-banner { min-height: 100%; }
  .milestone-item { width: auto; text-align: left; }
  .milestone-image-container {
    margin-top: -100px;
    order: 0;
    align-self: flex-start;
  }
  .kalsee-image-container { margin-bottom: 0; }
  .entrance-exam-section { padding: 64px 0; }
  .entrance-exam-header { margin-bottom: 64px; }
  .entrance-exam-cards { gap: 32px; }
  .entrance-exam-card-content { padding: 20px; }
  .entrance-exam-card-header { margin-bottom: 24px; }
  .entrance-exam-features { margin-bottom: 24px; gap: 12px; }
  .facilities-main-panel { min-height: 550px; }
  .facilities-content { min-height: 500px; }
  .facilities-info {
    flex-direction: row;
    align-items: flex-end;
    gap: 32px;
  }
  .facilities-info-title { font-size: 50px; }
  .facilities-info-description { max-width: 400px; }
  .facility-thumbnail-item {
    width: calc((100% - 16px) / 5);
    min-width: calc((100% - 16px) / 5);
  }
  .facility-thumbnail-button { height: 96px; }
}

@media (min-width: 992px) {
  .hero-section { height: 100vh; padding-top: 0; }
  .hero-content { padding: 125px 0 48px; }
  .milestone-image-container { margin-top: -120px; }
}

@media (max-width: 767px) {
  .hero-subtitle-new { color: var(--background); }
  .top-header { padding: 10px 0; position: relative; }
  .header-container { padding: 8px; border-radius: 15px; }
  .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
  }
  .header-content > div:first-child {
    padding: 10px;
    gap: 15px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .btn-component p { padding: 5px 10px; }
  .kalinga-logo-img, .nirf-logo-img { height: 35px; }
  .naac-logo-img { height: 40px; }
  .container { padding: 0 10px; }
  .hero-section {
    padding-top: 120px;
    margin: 5px;
    min-height: auto;
    border-radius: 15px;
  }
  .hero-content { padding: 30px 0 20px; }
  .hero-content .row {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .hero-text {
    padding: 40px 15px;
    min-height: auto;
    text-align: center;
  }
  .hero-title-new { max-width: 100%; color: var(--background); }
  .hero-form-container { align-items: stretch; }
  .hero-form {
    padding: 20px;
    max-width: 100%;
    margin: 0;
  }
  .milestone-banner {
    flex-direction: column;
    gap: 20px;
    padding: 10px 0 !important;
  }
  .milestone-image-container {
    margin-top: -16px;
    margin-bottom: -16px;
  }
  .accreditation-title {
    font-size: 48px !important;
    line-height: 1.1;
  }
  .accreditation-slogan {
    margin-bottom: 20px;
    text-align: center;
  }
  .accreditation-left {
    height: auto;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .accreditation-badges {
    padding: 20px 15px;
    flex-direction: column;
    gap: 15px;
  }
  .accreditation-badge-item {
    min-width: 100%;
  }
  .accreditation-badge-img {
    height: 60px;
    padding: 10px;
  }
  .accreditation-right {
    min-height: 250px;
    margin-top: 20px;
  }
  .kalsee-details-section {
    padding: 40px 0;
    margin: 10px 5px;
    border-radius: 15px;
  }
  .kalsee-image-container {
    min-height: 300px;
    margin-bottom: 20px;
  }
  .kalsee-content-container {
    min-height: auto;
    padding: 0 10px;
  }
  .kalsee-title { text-align: center; }
  .kalsee-box-items { max-height: 400px; }
  .kalsee-box-item {
    padding: 16px;
    gap: 12px;
  }
  .kalsee-box-icon {
    width: 56px;
    height: 56px;
  }
  .scholarship-section { 
    padding: 40px 0; 
    overflow: hidden;
  }
  .scholarship-wrapper {
    flex-direction: column;
    gap: 30px;
    max-width: 100%;
  }
  .scholarship-card {
    max-width: 100%;
    flex: 0 0 100%;
    padding: 30px 0px;
    border-radius: 10px;
  }
  .scholarship-main-heading { margin-bottom: 0; }
  .scholarship-description { max-width: 100%; }
  .scholarship-right {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    max-width: 100%;
    margin-top: 0;
  }
  .scholarship-frame { max-width: 100%; }
  .scholarship-nav-buttons {
    bottom: 15px;
    right: 15px;
  }
  .scholarship-nav-btn {
    width: 36px;
    height: 36px;
  }
  .scholarship-amount-accent { font-size: 30px; }
  .scholarship-content.container {
    margin: 0;
    padding: 0 10px;
    max-width: 100%;
  }
  .accreditation-section-wrapper { flex-wrap: wrap; }
  .entrance-exam-section {
    padding: 40px 0;
    margin: 5px;
    border-radius: 10px;
  }
  .entrance-exam-header {
    margin-bottom: 32px;
    padding: 0 10px;
  }
  .entrance-exam-cards {
    gap: 20px;
    flex-direction: column;
  }
  .entrance-exam-card-wrapper {
    margin-bottom: 20px;
  }
  .entrance-exam-card {
    overflow: hidden;
    min-height: auto;
  }
  .entrance-exam-card-content {
    padding: 24px 20px;
    overflow: visible;
  }
  .entrance-exam-card-header { margin-bottom: 0; }
  .entrance-exam-features {
    margin-bottom: 20px;
    gap: 10px;
  }
  .entrance-exam-feature-item { gap: 10px; }
  .entrance-exam-card-button { margin-top: 0; }
  .entrance-exam-orange-bg,
  .entrance-exam-image { display: none; }
  .new-age-programs-section { padding: 40px 0; }
  .new-age-programs-wrapper {
    flex-direction: column;
    min-height: auto;
  }
  .new-age-programs-panel {
    max-width: 100%;
    flex: 0 0 100%;
    margin-right: 0;
    padding: 32px 24px;
    border-radius: 15px; 
  }
  .new-age-programs-title { margin-bottom: 24px; }
  .new-age-programs-item { padding: 12px 0; }
  .new-age-programs-image {
    height: 300px;
    margin-top: 100px;
    border-radius: 15px; 
  }
  .choose-field-section { padding: 40px 0; }
  .choose-field-header { margin-bottom: 32px; }
  .choose-field-grid {
    gap: 15px;
    margin-bottom: 30px;
  }
  .choose-field-card-wrapper { margin-bottom: 15px; }
  .choose-field-card {
    padding: 24px 16px;
    min-height: 150px;
  }
  .choose-field-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 12px;
  }
  .choose-field-button { margin-top: 24px; }
  .placements-section,
  .facilities-section,
  .video-interviews-section { padding: 40px 0; }
  .placements-content {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .placements-milestones {
    flex-direction: column;
    gap: 20px;
  }
  .placements-milestone-item { width: 100%; }
  .placements-milestone-divider { display: none; }
  .placements-stack-container { max-width: 100%; }
  .placements-stack { height: 300px; }
  .placements-logos-container {
    padding: 24px 16px;
    min-height: 140px;
  }
  .placements-logos-title {
    margin-bottom: 16px;
    padding: 0 8px;
  }
  .placements-logo-item {
    width: 70px;
    height: 50px;
    padding: 6px 12px;
  }
  .facilities-main-panel { min-height: 300px; }
  .facilities-content {
    padding: 20px;
    min-height: 300px;
  }
  .facilities-counter-current { font-size: 20px; }
  .facilities-counter-total { font-size: 16px; }
  .facilities-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .facilities-info-title { font-size: 24px; }
  .facilities-info-description {
    font-size: 11px;
    max-width: 100%;
  }
  .facility-thumbnail-item {
    width: calc((100% - 8px) / 3);
    min-width: calc((100% - 8px) / 3);
  }
  .facility-thumbnail-button { height: 48px; }
  .international-students-section {
    padding: 40px 0;
    min-height: 500px;
  }
  .international-students-content {
    max-width: 100%;
    padding: 30px 0;
  }
  .international-students-title {
    margin-bottom: 20px;
  }
  .international-students-description {
    margin-bottom: 30px;
  }
  .international-students-stats {
    flex-direction: column;
    gap: 16px;
  }
  .international-students-stat-card {
    min-width: auto;
    width: 100%;
  }
  .international-students-globe {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
    opacity: 0.7;
  }
  .international-students-section{
    height: 100%;
  }
  .facility-section {
    padding: 40px 0;
    overflow-x: hidden;
  }
  .facility-header {
    margin-bottom: 24px;
  }
  .facility-subtitle {
    margin-bottom: 8px;
  }
  .facility-title {
    margin-bottom: 16px;
  }
  .facility-description {
    padding: 0 10px;
    margin-bottom: 24px;
  }
  .facility-swiper-wrapper {
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
  }
  .facility-swiper {
    padding: 10px 0;
    overflow: hidden;
  }
  .facility-card-image-wrapper {
    min-height: 220px;
  }
  .facility-card-image-container {
    height: 180px;
  }
  .facility-card:hover .facility-card-image-container {
    height: 220px;
  }
  .facility-card-label {
    padding: 10px 12px;
    margin: 10px;
  }
  .facility-card-label-text {
    font-size: 14px;
  }
  .facility-nav {
    position: absolute;
    bottom: 10px;
    right: 15px;
    gap: 10px;
  }
  .facility-nav-btn {
    width: 40px;
    height: 40px;
  }
  .facility-nav-btn svg {
    width: 14px;
    height: 14px;
  }
  .research-innovation-section {
    padding: 40px 0;
  }
  .research-innovation-left {
    padding-top: 0;
  }
  .research-innovation-right {
    margin-top: 24px;
  }
  .research-innovation-image-wrapper {
    height: 300px;
  }
  .research-innovation-stats-container {
    padding: 30px 20px;
  }
  .research-innovation-stat-card {
    padding: 16px;
    width: 100%;
    height: 100%;
  }
  .row.research-innovation-stats-grid{
    gap: 10px;
  }
  .admission-steps-section {
    padding: 40px 0;
    overflow-x: hidden;
  }
  .admission-steps-header {
    margin-bottom: 24px;
    text-align: center;
  }
  .admission-steps-subtitle {
    margin-bottom: 8px;
  }
  .admission-steps-title {
    margin-bottom: 0;
  }
  .admission-steps-swiper-wrapper {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .admission-steps-card-wrapper {
    width: 260px;
    min-height: 180px;
    max-height: 350px;
  }
  .admission-steps-number {
    font-size: 50px;
    top: 12px;
    right: 12px;
  }
  .admission-steps-icon-wrapper {
    width: 40px;
    height: 40px;
  }
  .admission-steps-icon-text-row {
    gap: 0px !important;
    padding-top: 0px !important;
    flex-direction: column;
    align-items: flex-start !important;
  }
  .admission-steps-text-content {
    width: 100%;
  }
  .admission-steps-card-title {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .admission-steps-card-description {
    font-size: 13px;
    line-height: 1.4;
  }
  .admission-steps-card-inner {
    padding: 14px;
  }
  .admission-steps-card-back-description {
    font-size: 12px;
    line-height: 1.5;
    padding: 8px 0;
  }
  .admission-steps-read-more-btn {
    width: 28px;
    height: 28px;
  }
  .admission-steps-read-more-btn svg {
    width: 14px;
    height: 14px;
  }
  .admission-steps-connecting-line {
    display: none;
  }
  .admission-steps-nav-btn {
    width: 40px;
    height: 40px;
  }
  .admission-steps-nav-btn svg {
    width: 14px;
    height: 14px;
  }
  .admission-steps-section .container:last-child {
    padding-left: 15px;
    padding-right: 15px;
  }
  .admission-steps-nav-wrapper {
    justify-content: center !important;
    gap: 10px !important;
    margin-top: 12px !important;
  }
  .incubation-foundation-section {
    padding: 40px 0;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
  }
  .incubation-foundation-section .container {
    padding: 0 15px;
    max-width: 100%;
    overflow: hidden;
  }
  .incubation-left {
    padding: 20px 0;
    overflow: hidden;
  }
  .incubation-title {
    margin-bottom: 16px;
    text-align: center;
  }
  .incubation-description {
    margin-bottom: 24px;
    text-align: center;
    padding: 0 10px;
  }
  .incubation-benefits-list {
    margin-bottom: 30px;
    gap: 12px;
    flex-direction: column;
    padding: 15px !important;
  }
  .incubation-benefit-item {
    width: 100%;
    flex: 0 0 100%;
  }
  .incubation-benefit-icon {
    width: 20px;
    height: 20px;
  }
  .incubation-right {
    padding: 0;
    justify-content: center !important;
    display: flex;
    overflow: hidden;
  }
  .incubation-image-wrapper {
    min-height: 240px;
    margin-top: 24px;
    width: 90%;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .incubation-image {
    height: auto;
    min-height: 240px;
  }
  .incubation-logos-wrapper {
    padding: 15px 0;
    overflow: hidden;
  }
  .incubation-logos-swiper {
    padding: 0 35px;
  }
  .incubation-logo-card {
    width: 160px;
    height: 160px;
    padding: 16px;
    margin: 0 auto;
  }
  .incubation-logo-img {
    height: 100px;
  }
  .incubation-logo-name {
    font-size: 11px;
  }
  .incubation-logos-nav-btn {
    width: 32px;
    height: 32px;
  }
  .incubation-logos-prev {
    left: 25px !important;
  }
  .incubation-logos-next {
    right: 25px !important;
  }
  .incubation-stats-overlay {
    bottom: 12px;
    right: 12px;
    padding: 10px 14px;
    min-width: 90px;
  }
  .incubation-stats-value {
    font-size: 22px;
  }
  .incubation-stats-label {
    font-size: 11px;
  }
  .faq-section {
    padding: 40px 0;
  }
  .faq-header {
    margin-bottom: 32px;
  }
  .faq-items {
    gap: 12px;
  }
  .faq-question {
    padding: 16px;
    gap: 12px;
  }
  .faq-question-text {
    font-size: 14px;
  }
  .faq-arrow {
    width: 20px;
    height: 20px;
  }
  .faq-answer.active {
    padding: 16px;
  }
  .faq-answer-text {
    font-size: 13px;
  }
  .cta-section {
    padding: 40px 0;
    margin: 5px;
    border-radius: 10px 10px 0 0;
  }
  .cta-content {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .cta-description {
    font-size: 14px;
  }
  .cta-image {
    height: 300px;
    margin-top: -60px;
  }
  .cta-content{
    padding-top: 0px !important;
  }
  .footer-section {
    padding: 40px 0 20px 0;
    margin: 0;
    border-radius: 0;
  }
  .footer-wrapper {
    flex-direction: column;
    gap: 32px;
    padding: 0 20px;
  }
  .footer-left {
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .footer-logo-img {
    height: 40px;
  }
  .footer-follow-title {
    font-size: 18px;
  }
  .footer-social {
    justify-content: center;
    gap: 12px;
  }
  .footer-social-icon {
    width: 28px;
    height: 28px;
  }
  .footer-right {
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .footer-contact-title {
    font-size: 18px;
  }
  .footer-contact-info {
    gap: 16px;
    width: 100%;
  }
  .footer-contact-item {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center !important;
  }
  .footer-contact-icon {
    flex-shrink: 0;
    margin-top: 0;
  }
  .footer-contact-text {
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
  }
  .footer-bg-text {
    font-size: 15vw;
    margin-top: 24px;
    text-align: center;
    white-space: normal;
    word-break: break-word;
    line-height: 1.1;
  }
  .footer-copyright {
    margin-top: 32px;
    padding-top: 20px;
    padding: 20px 20px 0;
  }
  .footer-copyright-text {
    font-size: 11px;
    padding: 0;
  }
}

/* Research Innovation Section */
.research-innovation-section {
  padding: 64px 0;
  background-color: var(--background);
  overflow-x: hidden;
}

.research-innovation-top {
  margin-bottom: 40px;
}

.research-innovation-left {
  padding-top: 48px;
}

.research-innovation-subtitle {
  color: var(--button-red);
}

.research-innovation-title {
  color: var(--foreground);
}

.research-innovation-button {
  margin-top: 24px;
}

.research-innovation-right {
  margin-top: 24px;
}

.research-innovation-image-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.research-innovation-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.research-innovation-stats-container {
  background-color: var(--dark-blue);
  border-radius: 20px;
  padding: 20px 30px;
}

.research-innovation-stats-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.research-innovation-stats-grid > [class*="col-"] {
  display: flex;
  flex-direction: column;
}


.research-innovation-stat-card {
  background-color: var(--light-gray);
  border-radius: 10px;
  padding: 15px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background-color 0.3s;
  cursor: pointer;
  flex: 1;
}

.research-innovation-stat-card:hover {
  background-color: #FEC071;
}

.research-innovation-stat-label-wrapper {
  display: flex;
  flex-direction: column;
}

.research-innovation-stat-label {
  color: var(--foreground);
  margin: 0;
  margin-bottom: 4px;
}

.research-innovation-stat-sublabel {
  color: var(--foreground);
  margin: 0;
}

.research-innovation-stat-divider {
  width: 100%;
  height: 1px;
  background-color: var(--foreground);
  margin: 16px 0;
}

.research-innovation-stat-value {
  color: var(--foreground);
  margin: 0;
}

/* Admission Steps Section */
.admission-steps-section {
  padding: 64px 0;
  background-color: var(--background);
}

.admission-steps-header {
  margin-bottom: 48px;
  gap: 16px;
}

.admission-steps-subtitle {
  color: var(--button-red);
}

.admission-steps-title {
  color: var(--foreground);
}

.admission-steps-swiper-wrapper {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 16px;
  overflow: visible;
}

.admission-steps-swiper {
  padding: 0 12px 32px 12px;
  padding-right: 100px;
  overflow: visible;
  margin-right: 0;
}

.admission-steps-swiper .swiper-slide {
  width: auto;
  height: auto;
}

.admission-steps-card-wrapper {
  width: 320px;
  min-height: 180px;
  max-height: 400px;
  position: relative;
  perspective: 1200px;
}

.admission-steps-flip-inner {
  transform-style: preserve-3d;
  transition: transform 0.6s;
  position: relative;
  height: 100%;
}

.admission-steps-card-wrapper:hover .admission-steps-flip-inner {
  transform: rotateY(180deg);
}

.admission-steps-flip-face {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
}

.admission-steps-flip-face.back {
  transform: rotateY(180deg);
}

.admission-steps-card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  padding: 16px;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
}

.admission-steps-card-inner.front {
  background-color: var(--button-red);
  color: var(--background);
}

.admission-steps-card-inner.back {
  background-color: var(--lite-sand);
  color: var(--foreground);
}

.admission-steps-card-inner::-webkit-scrollbar {
  width: 6px;
}

.admission-steps-card-inner::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.admission-steps-card-inner::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.admission-steps-card-inner::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}

.admission-steps-number {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 80px;
  line-height: 1;
  opacity: 0.2;
  font-family: 'STIX Two Math', serif;
  pointer-events: none;
  z-index: 0;
}

.admission-steps-card-inner.front .admission-steps-number {
  -webkit-text-stroke: 1px #fe9999;
  color: transparent;
}

.admission-steps-card-inner.back .admission-steps-number {
  color: var(--foreground);
  opacity: 0.3;
}

.admission-steps-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.admission-steps-icon-text-row {
  display: flex;
  gap: 16px;
  flex: 1;
  padding-top: 16px;
  align-items: flex-end;
}

.admission-steps-icon-wrapper {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.admission-steps-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.admission-steps-text-content {
  flex: 1;
  min-width: 0;
}

.admission-steps-card-title {
  color: var(--background);
  margin-bottom: 4px;
}

.admission-steps-card-description {
  color: var(--background);
}

.admission-steps-card-back-description {
  color: var(--foreground);
  text-align: center;
  line-height: 1.6;
}

.admission-steps-button-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

.admission-steps-read-more-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.admission-steps-read-more-btn svg {
  stroke: var(--foreground);
}

.admission-steps-connecting-line {
  position: absolute;
  top: 50%;
  right: -24px;
  width: 24px;
  border-top: 1px dashed #999;
  transform: translateY(-50%);
  z-index: 20;
  pointer-events: none;
}

.admission-steps-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: none;
  background-color: var(--button-red);
  color: var(--background);
  cursor: pointer;
  transition: all 0.3s;
}

.admission-steps-nav-btn:hover {
  background-color: #A2A2A2;
  transform: scale(1.05);
}

.admission-steps-button-prev,
.admission-steps-button-next {
  position: static !important;
  margin: 0 !important;
  width: 44px !important;
  height: 44px !important;
}

.admission-steps-button-prev::after,
.admission-steps-button-next::after {
  display: none;
}

.admission-steps-nav-wrapper {
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .admission-steps-swiper-wrapper {
    padding-left: 50px;
    padding-right: 100px;
  }
  .admission-steps-swiper {
    padding-right: 100px;
  }
  .admission-steps-card-wrapper {
    width: 360px;
    min-height: 200px;
  }
}

/* Incubation Foundation Section */
.incubation-foundation-section {
  padding: 64px 0;
  background-color: var(--dark-blue);
  border-radius: 10px;
  margin: 10px;
}
.incubation-title {
  color: var(--background);
  margin-bottom: 24px;
}

.incubation-description {
  color: var(--background);
  margin-bottom: 32px;
}

.incubation-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  gap: 16px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.incubation-benefit-item {
  gap: 12px;
  width: calc(50% - 8px);
  flex: 0 0 calc(50% - 8px);
}

.incubation-benefit-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.incubation-benefit-text {
  color: var(--background);
}

.incubation-logos-wrapper {
  position: relative;
}

.incubation-logos-swiper {
  overflow: hidden;
  padding-bottom: 10px;
}

.incubation-logos-swiper .swiper-slide {
  width: auto;
  height: auto;
  display: flex;
  justify-content: center;
}

.incubation-logo-card {
  background-color: var(--lite-sand);
  border-radius: 10px;
  padding: 20px;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}

.incubation-logo-img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 12px;
  background-color: var(--background);
  border-radius: 10px;
}

.incubation-logo-name {
  color: var(--foreground);
  font-size: 12px;
  margin: 0;
}

.incubation-logos-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 2px solid var(--button-red);
  background-color: var(--button-red);
  color: var(--background);
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.incubation-logos-prev {
  left: -24px;
}

.incubation-logos-next {
  right: -24px;
}

.incubation-logos-nav-btn:hover {
  background-color: var(--button-red);
  color: var(--background);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.incubation-logos-nav-btn svg {
  width: 20px;
  height: 20px;
}

.incubation-right {
  padding: 0;
  display: flex;
  justify-content: flex-end;
}

.incubation-image-wrapper {
  position: relative;
  width: 80%;
  height: 80%;
  min-height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

.incubation-image {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.incubation-stats-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--background);
  border-radius: 10px;
  padding: 16px 20px;
  text-align: center;
  min-width: 120px;
}
.incubation-left{
  padding: 0px;
}
.incubation-stats-value {
  color: var(--button-red);
  font-size: 32px;
  line-height: 1;
  margin-bottom: 4px;
}

.incubation-stats-label {
  color: var(--foreground);
  font-size: 14px;
  margin: 0;
}

.incubation-logos-button-prev,
.incubation-logos-button-next {
  position: static !important;
  margin: 0 !important;
}

.incubation-logos-button-prev::after,
.incubation-logos-button-next::after {
  display: none;
}

/* FAQ Section */
.faq-section {
  padding: 64px 0;
  background-color: var(--light-gray);
}

.faq-header {
  margin-bottom: 48px;
}

.faq-title {
  color: var(--foreground);
}

.faq-items {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-color: var(--background);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background-color: var(--background);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
  gap: 16px;
}

.faq-question:hover {
  background-color: #e8e8e8;
}

.faq-question.active {
  background-color: var(--button-red);
  color: var(--background);
}

.faq-question-text {
  flex: 1;
  font-weight: 600;
  color: var(--foreground);
  text-align: left;
}

.faq-question.active .faq-question-text {
  color: var(--background);
}

.faq-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--foreground);
  transition: transform 0.3s;
}

.faq-question.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--background);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 20px;
}

.faq-answer.active {
  max-height: 500px;
  padding: 20px;
  background-color: var(--lite-sand);
}

.faq-answer-text {
  color: var(--foreground);
  margin: 0;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background-color: var(--button-red);
  border-radius: 10px;
  position: relative;
  overflow: visible;
  height: 375px;
  margin: 64px 10px 50px 10px;
}
.cta-bg-text-wrapper {
  position: absolute;
  bottom: -25px;
  left: 40px;
  z-index: 1;
}

.cta-bg-text {
  font-size: 7vw;
  color: rgba(255, 255, 255, 0.1);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  margin: 0;
  pointer-events: none;
}

.cta-title {
  color: var(--background);
  line-height: 1.2;
  margin-top: 0px;
}

.cta-content {
  padding-top: 40px;
}
.cta-description {
  color: var(--background);
  line-height: 1.6;
}

.cta-image-wrapper {
  text-align: center;
}

.cta-image {
  height: 460px;
  margin-top: -85px;
  object-fit: contain;
  z-index: 20;
}


/* Footer Section */
.footer-section {
  padding: 64px 0 24px 0;
  background-color: var(--dark-blue);
  border-radius: 10px;
  margin: 0 10px 10px 10px;
  position: relative;
  overflow: hidden;
}

.footer-wrapper {
  position: relative;
  z-index: 10;
  gap: 40px;
  align-items: flex-start;
  padding: 0 40px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-follow-title {
  color: var(--background);
  margin-bottom: 0;
}

.footer-social {
  gap: 16px;
}

.footer-social-icon {
  color: var(--background);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-social-icon:hover {
  color: var(--dark-orange-red-light);
  transform: scale(1.1);
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-contact-title {
  color: var(--background);
  margin-bottom: 0;
}

.footer-contact-info {
  gap: 16px;
}

.footer-contact-item {
  gap: 12px;
}

.footer-contact-icon {
  color: var(--background);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.footer-contact-text {
  color: var(--background);
  margin: 0;
  line-height: 1.6;
}

.footer-bg-text {
  font-size: 12vw;
  color: var(--background);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  -webkit-text-stroke: 1px var(--background);
  color: transparent;
}

.footer-copyright {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 10;
}

.footer-copyright-text {
  color: var(--foreground);
  padding: 20 0px;
  font-size: 12px;
}

