
.site-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  margin: 10px 0;
}

.header-container {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.contact a {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.contact a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .header-container {
    flex-wrap: nowrap;
  }
}

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

@media (max-width: 768px) {
  .contact a {
    font-size: 14px;
    white-space: nowrap;
    margin-left: 10px;
  }
}

.full-width-image {
  width: 100%;
  padding: 10px 20px;
}

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

.banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
}

.admission-section {
  background: #fff;
  padding: 0;
}

.admission-image {
  background-image: url("../images/img.webp");
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 100%;
}

.admission-image-mobile {
  display: none;
  background-image: url("../images/img.webp");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 260px;
  margin-bottom: 20px;
}

.admission-heading {
  font-weight: 700;
  color: #bd1f24;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: clamp(20px, 2vw, 22px);
  text-align: center;
}

.admission-desc {
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.6;
  margin-bottom: 15px;
  padding: 0 40px;
  text-align: justify;
}

.admission-wrapper {
  margin: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.form-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 20px;
}

.form-tabs button {
  padding: 12px;
  border: 2px solid #bd1f24;
  background: #fff;
  color: #bd1f24;
  font-weight: 600;
  cursor: pointer;
}

.form-tabs .active {
  background: #bd1f24;
  color: #fff;
  margin-right: 15px;
}

.form-box input, .form-box select {
  width: 100%;
  border: 2px solid #bd1f24 !important;
  background: #fff;
  padding: 12px;
  height: auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 15px 0;
}

.mobile-field {
  display: flex;
  gap: 2px;
}

.form-box select.country-code {
  padding: 12px;
  border: 2px solid #bd1f24;
  width: auto;
}

.captcha-box {
  border: 2px solid #bd1f24;
  padding: 5px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.captcha-box span {
  font-size: 20px;
  font-weight: 400;
  padding-right: 100px;
}

.consent {
  display: inline-flex;
  font-size: 14px;
  margin: 15px 0;
}

.consent p {
  font-size: 15px;
  padding-left: 20px;
}

.form-box input[type=checkbox] {
  width: 15px;
  height: 15px;
  /* appearance: none; */
  /* -webkit-appearance: none; */
  /* border: 2px solid #bd1f24; */
  /* cursor: pointer; */
  /* display: inline-flex; */
  /* align-items: center; */
  justify-content: center;
  vertical-align: middle;
  transition: background-color .2s ease;
}

.form-box input[type=checkbox]:checked {
  /* background: #bd1f24; */
}

.form-box input[type=checkbox]:checked:after {
  /* content: "ÃƒÆ’Ã‚Â¢Ãƒâ€¦Ã¢â‚¬Å“ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â"; */
  color: #fff;
  font-size: 20px;
}

.form-box input[type=checkbox]:focus-visible {
  outline: 2px solid #bd1f24;
  outline-offset: 2px;
}

.apply-btn {
  width: 100%;
  background: #bd1f24;
  color: #fff;
  padding: 14px;
  border: none;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width:900px) {
  .admission-wrapper {
    grid-template-columns: 1fr;
    margin: 0px;
  }
}

@media (max-width:900px) {
  .admission-wrapper {
  }
}

@media (max-width:900px) {
  .admission-image {
    display: none;
  }
}

@media (max-width:900px) {
  .admission-image-mobile {
    display: block;
  }
}

@media (max-width:900px) {
  .admission-desc {
    padding: 0 30px;
  }
}

@media (max-width:900px) {
  .form-box input[type=checkbox] {
    width: 0;
    height: 0;
    top: 12px;
    position: relative;
  }
}

@media (max-width:600px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width:600px) {
  .admission-heading {
    font-size: 16px;
  }
}

@media (max-width:600px) {
  .apply-btn {
    font-size: 15px;
  }
}

@media (max-width:600px) {
  .form-box input[type=checkbox] {
    width: 0;
    height: 0;
    top: 12px;
    position: relative;
  }
}

@media (max-width:600px) {
  .admission-desc {
    padding: 0 25px;
  }
}

.experience-section {
  text-align: center;
}

.video-wrapper {
  position: relative;
  margin: auto;
}

.video-wrapper img {
  width: 100%;
  display: block;
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .75);
  border: none;
  cursor: pointer;
}

.play-btn:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-left: 22px solid #000;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

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

.video-content {
  background: #fff;
  width: 90%;
  max-width: 900px;
  padding: 5px 5px 0px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #bd1f24;
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
}

.video-content iframe {
  width: 100%;
  height: 500px;
  aspect-ratio: 16 / 9;
}

@media (max-width:1024px) {
  .play-btn {
    width: 75px;
    height: 75px;
  }
}

@media (max-width:1024px) {
  .video-content iframe {
    height: 400px;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width:600px) {
  .play-btn {
    width: 60px;
    height: 60px;
  }
}

@media (max-width:600px) {
  .play-btn:before {
    border-left: 16px solid #000;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }
}

@media (max-width:600px) {
  .video-content iframe {
    height: 240px;
    aspect-ratio: 16 / 9;
  }
}

.stats-wrapper {
  display: flex;
  width: 100%;
  padding: clamp(6px, 1vw, 10px) clamp(8px, 2vw, 20px);
  background: #fff;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.stat {
  flex: 1;
  text-align: center;
  padding: clamp(4px, .8vw, 10px);
  border-right: 1px solid #e5e5e5;
}

.stat:last-child {
  border-right: none;
}

.stat h3 {
  font-size: clamp(12px, 2.4vw, 20px);
  font-weight: 700;
  margin-bottom: 2px;
  color: #bd1f24;
  line-height: 1.1;
  white-space: nowrap;
}

.stat p {
  font-size: clamp(9px, 1.8vw, 13px);
  line-height: 1.2;
  color: #bd1f24;
  margin: 0;
  white-space: nowrap;
}

.tj-carousel-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.tj-carousel {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

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

.tj-card {
  flex: 0 0 calc(100% / 3);
  aspect-ratio: 16 / 9;
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}

.tj-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tj-card:after {
  content: "";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #fff;
  background: rgba(0, 0, 0, .35);
}

.tj-arrow {
  background: #bd1f24;
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 12px;
  cursor: pointer;
}

.tj-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.tj-video-box {
  width: min(90vw, 900px);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.tj-video-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.tj-close {
  position: absolute;
  top: 15px;
  right: 30px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

/* Responsive */

@media (max-width: 992px) {
  .tj-card {
    flex: 0 0 50%;
  }
}

.logo-carousel-2 {
  width: 100%;
  overflow: hidden;
  padding: 10px 20px;
  background: #fff;
  /*margin-top: 20px;*/
}

.logo-track-2 {
  display: flex;
  align-items: center;
  gap: 40px;
  width: fit-content;
  animation: scroll-left-right 20s linear infinite;
  will-change: transform;
}

.logo-track-2 img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

@keyframes scroll-left-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (max-width:1024px) {
  .logo-track-2 img {
    height: 50px;
  }
}

@media (max-width:768px) {
  .logo-track-2 img {
    height: 42px;
  }
}

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

img.logo-img {
  margin-bottom: 25px;
}

img.logo-img {
  margin-bottom: 25px;
}

@media (max-width:480px) {
  .logo-track-2 img {
  }
}

img.logo-img {
  margin-bottom: 25px;
}

.logo-carousel {
  width: 100%;
  overflow: hidden;
  padding: 10px 20px;
  background: #fff;
  /*margin-top: 20px;*/
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: scroll-left 35s linear infinite;
  will-change: transform;
}

.logo-track img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width:1024px) {
  .logo-track img {
    height: 50px;
  }
}

@media (max-width:768px) {
  .logo-track img {
    height: 42px;
  }
}

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

.why-choose {
  padding: 0 10px;
  background: #fff;
}

.accordion {
  max-width: 900px;
  margin: 0 auto;
}

.why-item {
  border-bottom: 1px solid #ddd;
}

.why-title {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 10px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  position: relative;
}

.why-title:after {
  content: "+";
  position: absolute;
  right: 10px;
  font-size: 22px;
}

.why-item.active .why-title:after {
  content: "-";
}

.why-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.why-content p {
  padding: 0 10px 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.banner2 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.banner2 img {
  width: 100%;
  height: auto;
  display: block;
  padding: 0 10px;
}

.coe {
  padding: 0 20px;
  background: #fff;
}

.coe-container {
  max-width: 1200px;
  margin: auto;
}

.coe-desc {
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: justify;
}

.coe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.coe-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #000;
}

.coe-card span {
  text-decoration: none;
}

.coe-card:hover, .coe-card:hover span {
  text-decoration: none;
  color: #000;
}

.coe-media {
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
}

.coe-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coe-card span {
  margin-top: 10px;
  text-align: center;
  font-weight: 600;
  font-size: clamp(12px, 1.1vw, 15px);
}

.view-all .coe-media {
  background: #bd1f24;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
}

.view-all-content {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #fff;
  font-size: clamp(13px, 1.2vw, 15px);
}

.view-all:hover span {
  text-decoration: none;
  color: #fff;
}

@media (max-width:576px) {
  .coe {
    padding: 0 20px;
  }
}

@media (max-width:576px) {
  .coe-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.recognition-logo-carousel {
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 10px 0;
}

.rec-scroll {
  width: 100%;
  overflow: hidden;
}

.logo-track1 {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0;
  animation: scroll-right 20s linear infinite;
}

.logo-track1 img {
  height: 75px;
  width: auto;
  object-fit: contain;
  display: block;
  padding: 0 20px;
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.announcement-bar {
  width: 100%;
  background-color: #bd1f24;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  font-size: clamp(8px, 1.2vw, 14px);
  padding: 8px 10px;
  line-height: 1.4;
}

.school-links {
  padding: 10px 20px;
  font-size: clamp(8px, 1.2vw, 14px);
  line-height: 1.5;
}

.school-links .links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.school-links a {
  text-decoration: none !important;
  color: #000 !important;
  white-space: normal;
  display: inline-block;
}

.school-links a:not(:last-child)::after {
  content: " \00a0|\00a0 ";
  color: #000;
}

@media (max-width:1023px) {
  .school-links {
    padding: 10px 15px;
  }
}

@media (max-width:767px) {
  .school-links {
    padding: 10px 10px;
  }
}

@media (max-width:767px) {
  .school-links a {
    white-space: normal;
  }
}

.gu-footer {
  font-family: sans-serif;
  color: #fff;
}

.footer-main {
  background: #bd1f24;
  display: grid;
  grid-template-columns: 1.3fr 1.7fr;
  gap: 50px;
  padding: 25px 5% 50px;
  border-bottom: 3px solid rgba(255, 255, 255, .6);
}

.footer-accordion {
  border-bottom: 2px solid rgba(255, 255, 255, .4);
  padding: 16px 0;
}

.footer-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: clamp(14px, 1.4vw, 18px);
}

.footer-accordion-header span {
  font-size: 22px;
  font-weight: 700;
  transition: transform .3s ease;
}

.footer-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.footer-accordion-content p {
  font-size: clamp(12px, 1.2vw, 15px);
  line-height: 1.6;
  margin: 10px 0 0;
}

.footer-accordion-content a {
  color: #fff;
  text-decoration: none;
}

.footer-accordion.active .footer-accordion-content {
  max-height: 500px;
}

.footer-accordion.active .footer-accordion-header span {
  transform: rotate(45deg);
}

.map-col iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

.map-col p {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

.footer-socials {
  background: #bd1f24;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 20px;
  flex-wrap: wrap;
}

.footer-socials img {
  width: 26px;
}

.footer-bottom {
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 14px 5%;
  font-size: clamp(8px, 1vw, 13px);
  white-space: nowrap;
  text-align: center;
}

.footer-bottom a {
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
}

@media (max-width:900px) {
  .footer-main {
    grid-template-columns: 1fr;
    padding: 20px 6% 40px;
  }
}

@media (max-width:900px) {
  .map-col p {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
  }
}

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

@media (max-width:480px) {
  img.logo-img {
    margin-bottom: 18px !important;
  }
}
.n-play {
    background: none;
    position:absolute;
    z-index:111
}
.n-play::before {
border-left: 22px solid #fff;
}

.n-play {
    background: no-repeat;
    width: 100px !important;
    height: 100px !important;
}

