:root {
  --cl-primary: #e24a14;
  --cl-secondary: #4b4fe0;
  --cl-text: #303136;
  --cl-gray: #737784;
  --cl-blue: #3b4cb8;
}

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

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: var(--cl-text);
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

input,
button {
  outline: none;
  border: none;
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

li {
  list-style: none;
}

.sm {
  display: none !important;
}

.md {
  display: flex !important;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1710px;
  width: 100%;
}

/* Header Top */
.header-top {
  background-color: var(--cl-secondary);
  padding: 16px 0;
  z-index: 10;
}
.main-nav {
  display: flex;
  justify-content: flex-end;
}
.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top-left {
  display: flex;
  gap: 44px;
}

.header-top-left a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  transition: opacity 0.3s;
  font-weight: 400;
}

.header-top-left a:hover {
  opacity: 0.8;
}

.header-top-left img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.header-top-right {
  display: flex;
  align-items: center;
  position: relative;
}

.language-dropdown {
  position: absolute;
  top: 140%;
  right: 0;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 4px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 10;
  width: max-content;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.language-dropdown.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.language-dropdown li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  transition: opacity 0.3s;
  cursor: pointer;
}
.language-dropdown li:hover {
  background-color: #f5f5f5;
}
.language-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.flag-icon {
  width: 24px;
  height: 18px;
  border-radius: 4px;
  flex-shrink: 0;
}

.language-selector .icon-down {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Header Main */
.header-main {
  background-color: #fff;
  padding: 16px 0;
}

.header-main-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  justify-content: space-between;
  align-items: center;
  gap: 33px;
}
.logo {
  flex-shrink: 0;
}
.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-ministry {
  font-size: 10px;
  color: #424242;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.logo-name {
  font-size: 16px;
  font-weight: 800;
  color: #292c6b;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.logo-name-en {
  font-size: 12px;
  color: #f16825;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* Main Navigation */
.main-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  display: block;
  padding: 8px;
  font-size: 18px;
  font-weight: 500;
  color: var(--cl-text);
  transition: color 0.3s;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--cl-primary);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  font-size: 24px;
  color: var(--cl-secondary);
}

/* Hero Banner */
.hero-banner {
  position: relative;
  padding: 32px 0px;
}
.hero-slider-swiper .swiper-slide {
  position: relative;
  padding-top: 48%;
  overflow: hidden;
  border-radius: 16px;
}
.hero-slider-swiper .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slider-swiper .swiper-pagination {
  right: 16px !important;
  top: 50% !important;
  left: auto !important;
  bottom: auto !important;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.hero-slider-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 60px;
  background-color: #fff;
  opacity: 0.3;
  border-radius: 30px !important;
}
.hero-slider-swiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

section:not(.hero-banner) {
  padding: 48px 0px;
}
.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: var(--cl-primary);
  margin-bottom: 32px;
  position: relative;
}

/* Stats Section */
.stats-section {
  position: relative;
  background: url("./images/result-bg.png") center/cover no-repeat, #f7f8f8eb;
  background-blend-mode: overlay;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 16px;
  position: relative;
}

.stat-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.stat-number {
  font-size: 38px;
  font-weight: 900;
  color: var(--cl-primary);
  margin-bottom: 8px;
}

.stat-text {
  font-size: 20px;
  color: #292c6b;
  font-weight: 500;
  line-height: 1.4;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}
.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.phone-btn {
  background-color: #ff6b35;
  color: #fff;
  font-size: 26px;
  animation: phone-pulse 2s infinite;
}

.zalo-btn {
  background-color: #6775ed;
  padding: 8px;
  animation: zalo-pulse 2s infinite;
}

.zalo-btn img {
  width: 40px;
  height: 40px;
}

@keyframes phone-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 107, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
  }
}

@keyframes zalo-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(103, 117, 237, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(103, 117, 237, 0);
  }
  to {
    box-shadow: 0 0 0 0 rgba(103, 117, 237, 0);
  }
}
/* Programs Section */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.program-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}
.program-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.program-card:hover .program-image img {
  transform: scale(1.05);
}

.program-label {
  position: absolute;
  top: 32px;
  right: 0px;
  padding: 12px 24px;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.program-label.green {
  background: #538a26;
}

.program-label.orange {
  background: #f16825;
}

.program-label.purple {
  background: #4b4fe0;
}

/* Registration Section */
section.registration-section {
  background: url("./images/form-bg.png") center/cover no-repeat;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.registration-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.registration-left {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.registration-header {
  position: relative;
  padding-top: 32px;
  max-width: 700px;
}

.registration-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}
.registration-header h2 span {
  color: #f48543;
}
.registration-header h2::before {
  content: "";
  position: absolute;
  top: 0;
  right: 20%;
  background: url("./images/form-decor-icon3.svg") center/cover no-repeat;
  width: 120px;
  height: 80px;
}
.registration-desc {
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  margin-top: 16px;
}

.registration-image {
  width: 100%;
  margin-bottom: -5px;
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
}

.registration-image img {
  width: 100%;
  object-fit: contain;
}
.registration-image::before {
  content: "";
  position: absolute;
  top: 20%;
  left: -10px;
  background: url("./images/form-decor-icon1.svg") center/contain no-repeat;
  width: 80px;
  height: 82px;
}
.registration-image::after {
  content: "";
  position: absolute;
  top: 30%;
  right: -10px;
  background: url("./images/form-decor-icon2.svg") center/contain no-repeat;
  width: 80px;
  height: 82px;
}

.registration-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 80px 0px;
}

.registration-form-wrapper {
  background: #fff;
  border-radius: 16px;
  position: relative;
  max-width: 490px;
  padding: 24px;
  position: relative;
  z-index: 1;
}
.registration-form-wrapper::before {
  content: "";
  position: absolute;
  top: -24px;
  left: -24px;
  width: calc(100% + 48px);
  height: calc(100% + 48px);
  border-radius: 16px;
  border: 2px dashed #fff;
  z-index: -1;
}

.form-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--cl-text);
  margin-bottom: 16px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #737784;
  margin-bottom: 4px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  min-height: 44px;
  border: 1px solid #afbaca;
  border-radius: 10px;
  font-size: 14px;
  color: var(--cl-text);
  box-shadow: 0px 2px 4px 0px #00000014;
  background-color: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--cl-secondary);
  box-shadow: 0 0 0 3px rgba(75, 79, 224, 0.1);
}

.form-group input::placeholder {
  color: #9e9e9e;
}

.input-icon {
  position: relative;
}

.input-icon input,
.input-icon select {
  font-family: "Roboto", sans-serif;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.select-wrapper {
  position: relative;
}

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

.select-wrapper i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #9e9e9e;
  pointer-events: none;
}
.btn-submit {
  width: 100%;
  padding: 10px;
  min-height: 44px;
  background: #6775ed;
  border: 1px solid #3c3cc6;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  background-color: var(--cl-primary);
  border-color: var(--cl-primary);
}

.registration-right {
  position: relative;
}
.registration-right::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0%;
  background: url("./images/form-decor-icon4.svg") center/contain no-repeat;
  width: 140px;
  height: 250px;
}
.registration-right::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: 0%;
  background: url("./images/form-decor-icon55.svg") center/contain no-repeat;
  width: 150px;
  height: 90px;
}

/* News Section */
.news-section {
  background: #eff3fe;
}

.news-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.news-item:first-child {
  grid-row: 1 / span 3;
  display: flex;
  flex-direction: column;
}
.news-item:first-child .news-item-image {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.news-item:first-child .news-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-item {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 16px;
  background: #fff;
  border-bottom: 1px solid #eeeef0;
  transition: transform 0.3s;
  border-radius: 16px;
  padding: 24px;
}

.news-item:first-child .news-item-title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 8px;
}
.news-item:first-child .news-item-desc {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--cl-text);
}

.news-date {
  font-size: 16px;
  color: var(--cl-gray);
  display: block;
  margin-bottom: 8px;
}

.news-item-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--cl-text);
  line-height: 1.2;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.news-item:hover .news-item-title {
  color: var(--cl-primary);
}

.news-item-desc {
  font-size: 16px;
  color: var(--cl-text);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-item-image:not(.news-item:first-child .news-item-image) {
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  height: fit-content;
  max-width: 320px;
  position: relative;
  padding-top: 75%;
  flex-shrink: 0;
}

.news-item-image:not(.news-item:first-child .news-item-image) img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cooperation Section */
.cooperation-section {
  background: #fef6ee;
}
.cooperation-slider-swiper {
  padding-bottom: 30px !important;
}
.cooperation-slider-swiper .swiper-slide {
  background: white;
  padding: 32px;
  border-radius: 16px;
}
.cooperation-slider-swiper .cooperation-image {
  border-radius: 12px;
  position: relative;
  padding-top: 50%;
  overflow: hidden;
  margin-bottom: 16px;
}
.cooperation-slider-swiper .cooperation-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cooperation-slider-swiper .cooperation-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cooperation-slider-swiper .cooperation-content h3 {
  font-size: 32px;
  font-weight: 600;
  color: var(--cl-text);
}
.cooperation-slider-swiper .cooperation-content p {
  font-size: 16px;
  color: var(--cl-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cooperation-slider-swiper .swiper-pagination {
  bottom: 0 !important;
}
.cooperation-slider-swiper .swiper-pagination .swiper-pagination-bullet {
  background: #fbd1ad;
  max-width: 138px;
  height: 8px;
  width: 100%;
  border-radius: 30px !important;
}
.cooperation-slider-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--cl-primary);
}

/* Student Life Section */
.student-life-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #fff 0%, #f5f7fa 100%);
}

.student-life-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.student-life-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid #eeeef0;
  transition: all 0.3s ease;
}

.student-life-card a {
  display: block;
}

.student-life-image {
  position: relative;
  padding-top: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 12px;
}
.student-life-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.student-life-date {
  font-size: 16px;
  color: var(--cl-gray);
  display: block;
  margin-bottom: 8px;
}

.student-life-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--cl-text);
  line-height: 1.5;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.student-life-card:hover .student-life-content h3 {
  color: var(--cl-primary);
}

.student-life-content p {
  font-size: 16px;
  color: var(--cl-gray);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Partners Section */
.partners-section {
  padding: 50px 0 60px;
  background: #fff;
}

.partners-slider-swiper .swiper-slide {
  background-color: #f7f8f8;
  padding: 16px;
  max-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Quick Links Bar */
.quick-links-bar {
  background-color: #f16825;
  padding: 8px;
}

.quick-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.quick-links a {
  padding: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.3s, transform 0.3s;
}

/* Footer */
.footer {
  background: #3c3cc6;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  pointer-events: none;
}

.footer-main {
  padding: 32px 0px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.footer-logo img {
  width: 100%;
  max-width: 800px;
  object-fit: contain;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-ministry {
  font-size: 12px;
  color: white;
  margin-bottom: 4px;
}

.footer-name {
  font-size: 18px;
  font-weight: 700;
  color: #eff3fe;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-name-en {
  font-size: 12px;
  color: #f16825;
  text-transform: uppercase;
}
.footer-middle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.footer-middle h4 {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-item-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 35px;
}
.footer-map, .footer-social {
  grid-column: span 2;
}
.footer-map iframe {
  width: 100%;
  max-height: 120px;
  height: 100%;
  border-radius: 8px;
}
.footer-middle-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-middle-item-inner {
  display: flex;
  gap: 16px;
}
.footer-middle-item-inner span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: white;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-middle-item-inner span i {
  font-size: 16px;
  color: var(--cl-secondary);
}
.footer-middle-item-inner a {
  font-size: 16px;
  text-decoration: none;
}
.footer-social {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-middle-item-inner > div {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-middle-item-inner > div p {
  line-height: 1.5;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--cl-secondary);
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-right {
  display: flex;
  justify-content: space-evenly;
}
.footer-right .footer-item ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-bottom {
  background-color: #1c1d4a;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 10px;
  font-size: 14px;
  min-height: 42px;
}

/* Responsive */
@media screen and (max-width: 1560px) {
  .main-nav a {
    font-size: 16px;
  }
  .section-title {
    font-size: 36px;
  }
  .stat-icon {
    width: 60px;
    height: 60px;
  }
  .stat-number {
    font-size: 30px;
  }
  .stat-text {
    font-size: 16px;
  }
  .program-label {
    font-size: 18px;
  }
  .registration-header h2 {
    font-size: 36px;
  }
  .form-title {
    font-size: 22px;
  }
  .news-item:first-child .news-item-title {
    font-size: 22px;
  }
  .news-date,
  .student-life-date {
    font-size: 14px;
  }
  .news-item-title,
  .student-life-content h3 {
    font-size: 20px;
    line-height: 1.2;
  }
  .cooperation-slider-swiper .cooperation-content h3 {
    font-size: 26px;
  }
  .cooperation-slider-swiper .swiper-pagination .swiper-pagination-bullet {
    max-width: 100px;
    height: 6px;
  }
}
@media screen and (max-width: 1200px) {
  .header-top {
    padding: 8px 0px;
  }
  .header-top-left img {
    width: 24px;
    height: 24px;
  }
  .main-nav a {
    padding: 10px 8px;
    font-size: 12px;
  }

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

  .stat-item:nth-child(3)::after,
  .stat-item:nth-child(6)::after {
    display: none;
  }
  .section-title {
    font-size: 30px;
  }
  .program-label {
    font-size: 16px;
  }
  .float-btn {
    width: 52px;
    height: 52px;
  }
}

@media screen and (max-width: 992px) {
  .sm {
    display: flex !important;
  }
  .md {
    display: none !important;
  }
  .mobile-menu-btn {
    display: block;
  }

  .logo-name {
    font-size: 12px;
  }

  .logo-name-en {
    font-size: 9px;
  }

  .hotline-numbers span {
    font-size: 20px;
  }

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

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

  .registration-wrapper {
    display: flex;
    flex-direction: column;
  }
  .registration-right::before,
  .registration-right::after {
    right: 10px;
  }
  .registration-right {
    padding: 40px 0px;
  }
  .registration-left {
    padding-bottom: 0;
  }

  .registration-image {
    position: relative;
    margin-top: 30px;
  }

  .registration-right {
    flex: none;
    width: 100%;
  }

  .registration-header h2 {
    font-size: 28px;
  }

  .registration-header h3 {
    font-size: 26px;
  }

  .news-wrapper {
    grid-template-columns: 1fr;
  }

  .cooperation-image img {
    height: 350px;
  }

  .student-life-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-programs {
    flex-wrap: wrap;
    gap: 30px;
  }

  .quick-links {
    gap: 20px;
  }
  .header-top-left a {
    font-size: 12px;
  }
  .header-top-left img {
    width: 18px;
    height: 18px;
  }
  .language-selector {
    font-size: 12px;
  }
  .flag-icon {
    width: 20px;
    height: 16px;
  }
  .language-selector .icon-down {
    width: 16px;
    height: 16px;
  }
  .news-item:first-child {
    grid-row: span 1;
  }
  .news-list {
    grid-template-columns: 1fr;
  }
  .cooperation-slider-swiper .swiper-pagination .swiper-pagination-bullet {
    max-width: 80px;
  }
  .footer-middle {
    display: flex;
    flex-direction: column-reverse;
  }
  .footer-right {
    justify-content: space-between;
  }
  section:not(.hero-banner) {
    padding: 32px 0px;
  }
  .hero-slider-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 2px;
    height: 18px;
  }
  .hero-slider-swiper .swiper-pagination {
    right: 8px !important;
  }
}

@media screen and (max-width: 768px) {
  .header-top-left {
    gap: 12px;
  }

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

  .stat-item:nth-child(odd)::after {
    display: block;
  }

  .stat-item:nth-child(even)::after {
    display: none;
  }

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

  .hotline-numbers span {
    font-size: 16px;
  }

  .hotline-numbers i {
    font-size: 20px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .registration-header h3 {
    font-size: 22px;
  }

  .registration-icon {
    display: none;
  }

  .decor-plane,
  .decor-bulb,
  .decor-book {
    display: none;
  }

  .news-item-title {
    font-size: 14px;
  }

  .cooperation-image img {
    height: 250px;
  }

  .cooperation-content h3 {
    font-size: 18px;
  }

  .student-life-image {
    height: 200px;
  }

  .student-life-content h3 {
    font-size: 16px;
  }

  .partners-track {
    gap: 15px;
  }

  .partner-item {
    flex: 0 0 140px;
    height: 80px;
  }


  .footer-logo {
    flex-direction: column;
    text-align: center;
  }

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

  .contact-item {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media screen and (max-width: 576px) {
  .hero-slider-swiper .swiper-slide {
    border-radius: 8px;
  }
  .logo img {
    width: 100%;
  }
  .header-main-inner {
    grid-template-columns: 1fr 32px;
    gap: 26px;
  }
  .header-main {
    padding: 12px 0px;
  }
  .section-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .hero-banner {
    padding: 16px 0px;
  }
  section:not(.hero-banner) {
    padding: 16px 0px;
  }
  .stat-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  .stats-grid {
    gap: 16px;
  }
  .stat-number {
    font-size: 24px;
  }
  .float-btn {
    width: 40px;
    height: 40px;
  }
  .phone-btn {
    font-size: 16px;
  }
  .floating-buttons {
    right: 10px;
  }
  .program-label {
    top: 16px;
  }
  .partner-item {
    flex: 0 0 120px;
    height: 70px;
  }

  .footer-name {
    font-size: 12px;
  }

  .footer-programs {
    flex-direction: column;
    gap: 25px;
  }
  .language-selector .language-name {
    display: none;
  }
  .header-top-left img {
    width: 16px;
    height: 16px;
  }
  .header-top {
    padding: 18px 0px;
  }
  .registration-header h2::before {
    width: 65px;
    height: 40px;
    right: 10px;
    top: -10px;
  }
  .registration-desc {
    font-size: 14px;
  }
  .registration-wrapper {
    gap: 24px;
  }
  .registration-form-wrapper::before {
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    top: -10px;
    left: -10px;
    border-radius: 24px;
  }
  .registration-right::before,
  .registration-right::after {
    display: none;
  }
  .registration-right {
    padding: 0px;
  }
  .registration-form-wrapper {
    width: 98%;
    border-radius: 16px;
    padding: 16px;
  }
  .form-title {
    font-size: 18px;
  }
  .form-group input, .form-group select, .btn-submit {
    min-height: 38px;
    padding: 8px 12px;
  }
  .registration-image {
    margin-bottom: -16px;
  }
  .news-item {
    display: flex;
    padding: 16px;
    flex-direction: column-reverse !important;
  }
  .news-item .news-item-title, .cooperation-slider-swiper .cooperation-content h3 {
    font-size: 18px !important;
  }
  .news-item .news-item-image {
    position: relative;
    padding-top: 75% !important;
  }
  .news-item .news-item-image img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
  } 
  .news-item .news-item-desc, .cooperation-slider-swiper .cooperation-content p, .student-life-content p {
    font-size: 14px !important;
  }
  .cooperation-slider-swiper .swiper-pagination .swiper-pagination-bullet {
    max-width: 70px;
    height: 4px;
  }
  .cooperation-slider-swiper .swiper-slide, .student-life-card {
    padding: 16px;
  }
  .cooperation-slider-swiper .cooperation-content {
    gap: 8px;
  }
  .partners-slider-swiper .swiper-slide img {
    height: 60px;
    object-fit: contain;
  }
  .quick-links a {
    font-size: 12px;
  }
  .quick-links-bar {
    padding: 8px 0px;
  }
  .quick-links-bar .container {
    padding: 0px;
  }
  .quick-links {
    gap: 8px;
  }
  .footer-main {
    padding: 24px 0px;
  }
  .footer-right {
    flex-direction: column;
    gap: 24px;
  }
  .footer-item-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-right .footer-item ul {
    font-size: 14px;
  }
  .footer-middle-item-inner , .footer-middle-item-inner a{
    font-size: 14px;
  }
  .footer-middle-item-inner span {
    width: 32px;
    height: 32px;
  }
  .footer-social {
    margin-top: 0px;
    margin-bottom: 8px;
  }
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.main-nav.active {
  opacity: 1;
  visibility: visible;  
}
.main-nav ul {
  transform: translateX(-100%);
  transition: all 0.3s ease;
  background-color: white;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 20px;
  width: 80%;
  max-width: 420px;
  height: 100%;
}
.main-nav.active ul {
  transform: translateX(0);
}
.main-nav ul .icon-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
}
.main-nav a {
  font-size: 16px;
}
  
}
