@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/

:root {
  --wt: #fff;
  --bk: #000;
  --mbk: #6b7280;
  --shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

html {
  overflow-x: hidden;
}

body {
  word-break: break-word;
  font:
    15px/25px "Poppins",
    sans-serif;
  color: #393939;
  overflow-x: hidden;
  background-color: #fdfbf4;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 0px;
  padding: 0;
  list-style-type: none;
}

i {
  font-family: FontAwesome !important;
  font-style: normal;
}

i::before {
  font-family: FontAwesome !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/***** Font Files *****/

@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  src:
    url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"),
    url(../fonts/fontawesome-webfont.woff) format("woff"),
    url(../fonts/fontawesome-webfont.ttf) format("truetype"),
    url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal;
}

/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.mt-5 {
  margin-top: 50px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mt-8 {
  margin-top: 80px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-2 {
  margin-top: 20px;
}

.pt-5 {
  padding-top: 50px;
}

.pb-1 {
  padding-bottom: 10px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pb-3 {
  padding-bottom: 30px;
}

.pb-4 {
  padding-bottom: 40px;
}

.pb-8 {
  padding-bottom: 80px;
}

.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-8 {
  padding-top: 80px;
}

.pt-4 {
  padding-top: 40px;
}

.pt-3 {
  padding-top: 30px;
}

.pt-2 {
  padding-top: 20px;
}

.sec {
  padding: 80px 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.d-flex {
  display: flex;
  align-items: center;
}

.over-flow-h {
  overflow: hidden;
}

/* Buttons Css Starts */

.theme1,
.theme2,
.theme3 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #111111;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  -webkit-user-select: none;
  cursor: pointer;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.theme1 {
  min-height: 48px;
  padding: 0 23px;
  border: 2px solid #fee505;
  border-radius: 100px;
  background-color: #fee505;
  box-shadow: 0 8px 20px rgba(254, 229, 5, 0.22);
  overflow: hidden;
}

.theme1:hover {
  color: #ffffff;
  border-color: #e20202;
  background-color: #e20202;
  box-shadow: 0 11px 26px rgba(226, 2, 2, 0.28);
  transform: translateY(-3px);
}

.theme2 {
  justify-content: flex-start;
  min-height: 36px;
  padding: 0 0 8px;
  color: #171817;
}

.theme2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  border-radius: 100px;
  background-color: #fa0000;
  transition:
    width 0.3s ease,
    background-color 0.3s ease;
}

.theme2:hover {
  color: #e20202;
}

.theme2:hover::before {
  width: 100%;
  background-color: #e20202;
}

.theme2-light {
  color: #ffffff;
}

.theme2-light:hover {
  color: #fee505;
}

.theme2-light:hover::before {
  background-color: #fee505;
}

.theme3 {
  min-height: 48px;
  padding: 0 24px;
  border: 2px solid #171817;
  border-radius: 100px;
  color: #fee505;
  background-color: #171817;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.theme3:hover {
  color: #111111;
  border-color: #fee505;
  background-color: #fee505;
  box-shadow: 0 12px 28px rgba(254, 229, 5, 0.28);
  transform: translateY(-3px);
}

.theme1-txt,
.theme2-txt,
.theme3-txt {
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme1-txt h6,
.theme2-txt h6,
.theme3-txt h6,
.theme1-txt span,
.theme2-txt span,
.theme3-txt span {
  margin: 0;
  color: inherit;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: color 0.3s ease;
}

.theme1-icon,
.theme2-icon,
.theme3-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
}

.theme1-icon img,
.theme2-icon img,
.theme3-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition:
    filter 0.3s ease,
    transform 0.3s ease;
}

.theme3-icon img {
  filter: brightness(0) saturate(100%) invert(89%) sepia(95%) saturate(1847%) hue-rotate(354deg) brightness(103%) contrast(102%);
  opacity: 1;
}

.theme3:hover .theme3-icon img {
  filter: brightness(0) saturate(100%);
}

.theme1-icon i,
.theme2-icon i,
.theme3-icon i {
  color: inherit;
  font-size: 13px;
  line-height: 1;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.theme1:hover .theme1-icon img,
.theme2:hover .theme2-icon img,
.theme3:hover .theme3-icon img {
  transform: translateX(5px);
}

.theme1:hover .theme1-icon i,
.theme2:hover .theme2-icon i,
.theme3:hover .theme3-icon i {
  transform: translateX(5px);
}

.theme1:hover .theme1-txt h6,
.theme1:hover .theme1-txt span {
  color: #ffffff;
}

.theme2:hover .theme2-txt h6,
.theme2:hover .theme2-txt span {
  color: #e20202;
}

.theme2-light:hover .theme2-txt h6,
.theme2-light:hover .theme2-txt span {
  color: #fee505;
}

.theme3:hover .theme3-txt h6,
.theme3:hover .theme3-txt span {
  color: #111111;
}

.theme1:focus-visible,
.theme2:focus-visible,
.theme3:focus-visible {
  outline: 3px solid #fee505;
  outline-offset: 4px;
}

/* Buttons Css Ends */

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: 70px;
  line-height: 75px;
  color: #fff;
  font-weight: 600;
  margin: 0;
}

h2 {
  font-family: "Roboto", sans-serif;
  font-size: 55px;
  line-height: 60px;
  color: #000;
  font-weight: 900;
  margin: 0;
  text-transform: capitalize;
}

h3 {
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  line-height: 34px;
  color: #000;
  font-weight: 600;
  margin: 0;
}

h4 {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  line-height: 29px;
  color: #000;
  font-weight: 600;
  margin: 0;
}

h5 {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

h6 {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 23px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

p {
  color: #000;
  font-size: 16px;
  line-height: 25px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin: 0;
}

select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

/* header Css Starts */

.topSec {
  display: none;
}

header {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  padding: 0;
  background-color: transparent;
}

header .menuSec {
  width: calc(100% - 60px);
  max-width: 1450px;
  margin: 0 auto;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

header .menuSec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 4px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(90deg,
      #e20202 0%,
      #e20202 34%,
      #fee505 34%,
      #fee505 67%,
      #171817 67%,
      #171817 100%);
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 105px;
  height: 92px;
}

.header-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.header-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.header-logo:hover img {
  filter: drop-shadow(0 8px 12px rgba(254, 229, 5, 0.24));
  transform: scale(1.045);
}

.menu-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.menu-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-box>ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  width: 100%;
}

.menu-box>ul>li {
  position: relative;
  margin: 0;
  padding: 0;
}

.menu-box>ul>li>a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 11px;
  border-radius: 9px;
  color: #171817;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.15px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.menu-box>ul>li>a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 0;
  height: 3px;
  border-radius: 20px;
  background-color: #e20202;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.menu-box>ul>li>a:hover,
.menu-box>ul>li>a.active {
  color: #000000;
  background-color: rgba(254, 229, 5, 0.2);
  transform: translateY(-2px);
}

.menu-box>ul>li>a:hover::after,
.menu-box>ul>li>a.active::after {
  width: calc(100% - 24px);
}

.menu-box>ul>li>a:not(:only-child) {
  padding-right: 29px;
}

.menu-box>ul>li>a:not(:only-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s ease;
}

.menu-box>ul>li:hover>a:not(:only-child)::before,
.menu-box>ul>li:focus-within>a:not(:only-child)::before {
  transform: translateY(-25%) rotate(225deg);
}

.menu-box li>ul {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 1000;
  display: block;
  width: 230px;
  padding: 8px;
  border-top: 4px solid #fee505;
  border-radius: 6px 6px 14px 14px;
  background:
    linear-gradient(145deg,
      #222222 0%,
      #111111 100%);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

.menu-box li>ul::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
}

.menu-box li:hover>ul,
.menu-box li:focus-within>ul {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-box li>ul>li {
  display: block;
  width: 100%;
  margin: 0;
}

.menu-box li>ul>li+li {
  margin-top: 3px;
}

.menu-box li>ul>li>a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 43px;
  padding: 10px 14px !important;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88) !important;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  text-transform: capitalize;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    padding-left 0.25s ease;
}

.menu-box li>ul>li>a::before {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 0;
  height: 2px;
  margin-right: 0;
  border: 0;
  background-color: #e20202;
  transform: none;
  transition:
    width 0.25s ease,
    margin-right 0.25s ease;
}

.menu-box li>ul>li>a::after {
  display: none;
}

.menu-box li>ul>li>a:hover,
.menu-box li>ul>li>a:focus-visible {
  color: #171817 !important;
  background-color: #fee505;
  padding-left: 18px !important;
}

.menu-box li>ul>li>a:hover::before,
.menu-box li>ul>li>a:focus-visible::before {
  width: 12px;
  margin-right: 8px;
}

.menu-box ul ul ul,
.menuSec li>ul>li:hover>ul {
  top: -8px;
  left: calc(100% + 10px);
  width: 240px;
}

.menu-box a:focus-visible {
  outline: 3px solid #fee505;
  outline-offset: 3px;
}

/* header Css Ends */

/* Banner Css Starts */

section.banner-sec {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background-color: #111111;
}

/* Force every Slick layer to fill banner height */
.banner_slider,
.banner_slider .slick-list,
.banner_slider .slick-track,
.banner_slider .slick-slide,
.banner_slider .slick-slide>div,
.banner-slide,
.banner-main,
.banner-img-main,
.banner-img {
  width: 100%;
  height: 100vh !important;
  min-height: 720px !important;
}

.banner_slider {
  position: relative;
  overflow: hidden;
}

.banner_slider .slick-list {
  overflow: hidden;
}

.banner_slider .slick-track {
  display: flex !important;
}

.banner_slider .slick-slide {
  float: none;
  margin: 0 !important;
}

.banner_slider .slick-slide>div {
  width: 100%;
}

.banner-main {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ========================================
   Banner Background Image
======================================== */

.banner-img-main {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.banner-img {
  overflow: hidden;
}

.banner-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1);
  transition: transform 8s ease;
}

.banner_slider .slick-active .banner-img img {
  transform: scale(1.045);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(8, 8, 8, 0.9) 0%,
      rgba(8, 8, 8, 0.72) 36%,
      rgba(8, 8, 8, 0.32) 66%,
      rgba(8, 8, 8, 0.06) 100%),
    linear-gradient(0deg,
      rgba(0, 0, 0, 0.35) 0%,
      transparent 48%);
}

.banner-main::after {
  display: none;
}

.banner-container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.banner-txt-main {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 110px;
}

.banner-txt {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 58%;
  max-width: 700px;
  height: auto;
  gap: 19px;
  margin: 0;
}

.banner-subheading {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  padding: 0;
  border: 0;
  background-color: transparent;
}

.banner-subheading>span {
  display: block;
  width: 38px;
  height: 3px;
  border-radius: 20px;
  background-color: #e20202;
}

.banner-subheading h5 {
  margin: 0;
  color: #fee505;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.banner-txt h1 {
  max-width: 680px;
  margin: 0;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: clamp(52px, 4.6vw, 74px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -1.5px;
  text-transform: none;
  text-shadow: 0 5px 22px rgba(0, 0, 0, 0.3);
}

.banner-txt h1 strong {
  position: relative;
  display: block;
  margin-top: 5px;
  color: #fee505;
  font-weight: 900;
}

.banner-txt h1 strong::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 0;
  width: 75px;
  height: 4px;
  border-radius: 20px;
  background-color: #e20202;
}

.banner-txt p {
  width: 86%;
  max-width: 610px;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
}

.banner-btn-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 8px;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 25px;
  border: 2px solid transparent;
  border-radius: 50px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.banner-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.banner-btn:hover {
  transform: translateY(-3px);
}

.banner-btn:hover i {
  transform: translateX(5px);
}

.banner-btn-primary {
  color: #111111;
  background-color: #fee505;
  box-shadow: 0 8px 22px rgba(254, 229, 5, 0.22);
}

.banner-btn-primary:hover {
  color: #ffffff;
  background-color: #e20202;
  box-shadow: 0 11px 27px rgba(226, 2, 2, 0.3);
}

.banner-btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.banner-btn-outline:hover {
  color: #111111;
  border-color: #ffffff;
  background-color: #ffffff;
}

.banner-features,
.banner-scroll {
  display: none;
}

.banner_slider button.slick-prev.slick-arrow,
.banner_slider button.slick-next.slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.42);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  transform: translateY(-50%);
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.banner_slider button.slick-prev.slick-arrow {
  left: 35px;
}

.banner_slider button.slick-next.slick-arrow {
  right: 35px;
}

.banner_slider button.slick-prev.slick-arrow:hover,
.banner_slider button.slick-next.slick-arrow:hover {
  border-color: #fee505;
  background-color: #fee505;
  box-shadow: 0 9px 24px rgba(254, 229, 5, 0.3);
}

.banner_slider .slick-prev::before,
.banner_slider .slick-next::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
}

.banner_slider .slick-prev::before {
  background-image: url("../images/ban-arrow-left.png");
}

.banner_slider .slick-next::before {
  background-image: url("../images/ban-arrow-right.png");
}

.banner_slider .slick-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 10;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  margin: 0;
  padding: 0;
  transform: translateX(-50%);
}

.banner_slider .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
}

.banner_slider .slick-dots li button {
  display: block;
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.55);
  font-size: 0;
  transition:
    width 0.3s ease,
    background-color 0.3s ease;
}

.banner_slider .slick-dots li button::before {
  display: none;
}

.banner_slider .slick-dots li.slick-active button {
  width: 34px;
  background-color: #fee505;
}

.banner-subheading,
.banner-txt h1,
.banner-txt p,
.banner-btn-main {
  opacity: 0;
  transform: translateY(18px);
}

.banner_slider .slick-active .banner-subheading {
  animation: bannerFadeUp 0.65s ease forwards 0.12s;
}

.banner_slider .slick-active .banner-txt h1 {
  animation: bannerFadeUp 0.75s ease forwards 0.24s;
}

.banner_slider .slick-active .banner-txt p {
  animation: bannerFadeUp 0.75s ease forwards 0.36s;
}

.banner_slider .slick-active .banner-btn-main {
  animation: bannerFadeUp 0.75s ease forwards 0.48s;
}

@keyframes bannerFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-btn:focus-visible,
.banner_slider .slick-arrow:focus-visible {
  outline: 3px solid #fee505;
  outline-offset: 4px;
}

/* Banner Css Ends */

/*Discover Sec Css Starts */

.discover-left {
  position: relative;
}

.discover-left::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #656463;
}

.discover-left-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.discover-left-main {
  height: 500px;
}

.discover-left {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background-color: #171817;
  padding: 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
}

.discover-left-img {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  width: 180px;
  object-fit: cover;
}

.discover-left-subhead {
  position: relative;
  height: 35px;
}

.discover-left-subhead::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #fee505;
  height: 4px;
  width: 30px;
  border-radius: 100px;
}

.discover-left-subhead h5 {
  font-family: 'Roboto';
  color: #fee505;
  font-size: 14px;
  line-height: 25px;
  position: relative;
  font-weight: 600;
}

.discover-left-heading h3 {
  font-size: 50px;
  line-height: 55px;
  color: #fff;
  font-weight: 600;
}

.discover-left-txt p {
  color: #fff;
  font-size: 18px;
  line-height: 25px;
  opacity: 0.9;
}

.discover-card-main {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  padding: 20px;
  margin: 0 5px;
  box-shadow: 0 0 20px 0 #00000014;
}

.yellow-color,
.red-color,
.black-color {
  position: relative;
}

.yellow-color::before,
.red-color::before,
.black-color::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 5px;
}

.yellow-color::before {
  background-color: #fee304;
}

.red-color::before {
  background-color: #e20202;
}

.black-color::before {
  background-color: #000;
}

.discover-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 10px;
  height: 100%;
}

.discover-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  border-radius: 100px;
  overflow: hidden;
  padding: 20px;
  background-color: #fef4c1;
}

.discover-card-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  height: 300px;
}

.discover-card-txt h4 {
  font-size: 30px;
  line-height: 35px;
}

/*Discover Sec Css Ends */

/*About Us Sec Css Starts */

section.about-sec .row {
  position: relative;
}

.about-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 700px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  object-fit: cover;
}

.about-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  /* position: relative; */
  width: 95%;
  margin: 0 0 0 auto;
}

.about-subheading {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fee505;
  border-radius: 5px;
  overflow: hidden;
  padding: 0 10px;
  height: 30px;
}

.about-subheading h5 {
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 14px;
  line-height: 1;
}

.about-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.about-counter-main {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.about-counter:nth-child(2) {
  border: 1px solid #00000033;
  border-top: none;
  border-bottom: none;
  padding: 0 10px;
}

.about-counter {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
  width: 100%;
}

.about-counter h5 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 900;
}

.about-counter h6 {
  font-size: 20px;
  line-height: 25px;
  font-weight: 400;
  text-transform: capitalize;
}

.about-bottom-txt-img-main {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 30px;
  padding: 30px;
  height: 100%;
  width: 100%;
}

.about-bottom-txt-img-main::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: red;
}

.about-bottom-main {
  position: absolute;
  bottom: -10px;
  width: 70%;
  height: 180px;
  right: 0;
  background-color: #171817;
  border-radius: 20px;
  overflow: hidden;
}

.about-bottom-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 15%;
}

.about-bottom-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.about-bottom-img-ex {
  position: absolute;
  bottom: -10px;
  right: -30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  width: 200px;
}

.about-bottom-img-ex img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.about-bottom-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 10px;
  width: 65%;
  margin: 0 auto 0 0;
  padding: 0 0 0 30px;
  border-left: 1px solid #ffffff2e;
}

.about-bottom-txt h3 {
  font-size: 30px;
  line-height: 34px;
  color: #fff;
  font-weight: 900;
}

.about-bottom-txt p {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  opacity: 0.7;
}

/*About Us Sec Css Ends */

/*Chooes Sec Css Ends */

section.chooes-sec {
  position: relative;
  background-image: url('../images/chooes-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

section.chooes-sec::Before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: #fffdf1ab;
  z-index: 0;
}

.chooes-heading-main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 0 30px 0;
}

.chooes-subheading {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fee505;
  border-radius: 5px;
  overflow: hidden;
  padding: 0 10px;
  height: 30px;
}

.chooes-subheading h5 {
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 14px;
  line-height: 1;
}

.chooes-heading-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.chooes-card-main {
  position: relative;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 0 20px 0px #0000001c;
  transition: ease-in;
  transition-duration: 0.5s;
}

.chooes-card-main:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.chooes-card-main::before {
  z-index: 99;
}

.chooes-card-main::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  background-color: #232423;
  transition: ease-in;
  transition-duration: 0.5s;
}

.chooes-card-main:hover::after {
  height: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}


.chooes-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  position: relative;
  z-index: 9;
}

.chooes-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  background-color: #fef7d2;
  border-radius: 100px;
  overflow: hidden;
  padding: 20px;
}

.chooes-card-txt-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.chooes-card-number h6 {
  font-size: 16px;
  line-height: 1;
  color: #949494;
  transition: ease-in;
  transition-duration: 0.5s;
}

.chooes-card-main:hover .chooes-card-number h6 {
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.chooes-card-heading h4 {
  font-size: 25px;
  line-height: 30px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.chooes-card-main:hover .chooes-card-heading h4 {
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.chooes-card-txt {
  display: flex;
  align-items: start;
  justify-content: center;
  height: 80px;
}

.chooes-card-txt p {
  transition: ease-in;
  transition-duration: 0.5s;
}

.chooes-card-main:hover .chooes-card-txt p {
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.chooes-card-main:hover .chooes-card-btn .theme2-txt h6 {
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.chooes-card-main:hover .theme2-icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(0%) hue-rotate(95deg) brightness(117%) contrast(100%);
  transition: ease-out;
  transition-duration: 0.5s;
}

.chooes-card-main:hover .theme2::before {
  background-color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

/*Chooes Sec Css Ends */

/*News Sec Css Starts */

.news-sec {
  position: relative;
  width: 100%;
  padding: 100px 0;
  overflow: hidden;
  background-color: #fdfbf4;
}

.news-sec::before {
  content: "";
  position: absolute;
  bottom: -95px;
  left: -95px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: linear-gradient(135deg,
      rgba(254, 229, 5, 0.34),
      rgba(254, 229, 5, 0.05));
}

.news-sec::after {
  content: "";
  position: absolute;
  top: -110px;
  right: -110px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: linear-gradient(135deg,
      rgba(226, 2, 2, 0.08),
      rgba(254, 229, 5, 0.25));
}

.news-sec .container {
  position: relative;
  z-index: 2;
}

.news-heading-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.news-subheading {
  margin-bottom: 15px;
}

.news-subheading h5 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 35px;
  margin: 0;
  padding: 0 28px;
  border-radius: 5px;
  color: #111111;
  background-color: #fee505;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.news-heading h2 {
  margin: 0;
  color: #111111;
  font-family: "Roboto", sans-serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.news-heading p {
  margin: 14px 0 0;
  color: #666666;
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
}

.news-row {
  align-items: stretch;
}

.news-row>div {
  display: flex;
}

.news-featured-card {
  position: relative;
  width: 100%;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  border-top: 5px solid #e20202;
  border-radius: 16px;
  background-color: #242424;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.news-featured-card:hover {
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.22);
  transform: translateY(-7px);
}

.news-featured-img,
.news-small-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.news-featured-img img,
.news-small-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.news-featured-card:hover .news-featured-img img,
.news-small-card:hover .news-small-img img {
  transform: scale(1.06);
}

.news-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.34);
  background: linear-gradient(135deg,
      #343434 0%,
      #181818 100%);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.news-img-placeholder i {
  font-size: 42px;
}

.news-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(0deg,
      rgba(5, 5, 5, 0.97) 0%,
      rgba(5, 5, 5, 0.76) 45%,
      rgba(5, 5, 5, 0.08) 100%);
}

.news-featured-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 38px;
}

.news-date-box {
  display: flex;
  flex: 0 0 76px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 76px;
  min-height: 78px;
  padding: 10px 6px;
  border-radius: 11px;
  color: #111111;
  background-color: #fee505;
  box-shadow: 0 8px 20px rgba(254, 229, 5, 0.24);
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.news-featured-card:hover .news-date-box,
.news-small-card:hover .news-date-box {
  color: #ffffff;
  background-color: #e20202;
  transform: translateY(-4px);
}

.news-date-box strong {
  display: block;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.news-date-box span {
  display: block;
  margin-top: 6px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.news-featured-details {
  flex: 1;
}

.news-category {
  margin-bottom: 10px;
}

.news-category span {
  color: #fee505;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.news-featured-details h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.15;
}

.news-featured-details p {
  max-width: 580px;
  margin: 13px 0 22px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.news-small-card-main {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}

.news-small-card {
  position: relative;
  width: 100%;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-top: 5px solid #e20202;
  border-radius: 16px;
  background-color: #242424;
  box-shadow: 0 15px 36px rgba(0, 0, 0, 0.13);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.news-small-card:hover {
  box-shadow: 0 21px 44px rgba(0, 0, 0, 0.2);
  transform: translateY(-6px);
}

.news-small-card .news-card-overlay {
  background: linear-gradient(90deg,
      rgba(5, 5, 5, 0.96) 0%,
      rgba(5, 5, 5, 0.82) 54%,
      rgba(5, 5, 5, 0.2) 100%);
}

.news-small-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 260px;
  padding: 27px;
}

.news-small-card .news-date-box {
  flex-basis: 65px;
  width: 65px;
  min-height: 69px;
}

.news-small-card .news-date-box strong {
  font-size: 25px;
}

.news-small-details {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.news-small-details h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.2;
}

.news-small-details p {
  margin: 10px 0 14px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.news-small-details .theme2 {
  margin-top: auto;
}

.news-bottom-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
}

/*News Sec Css Ends */

/*Online Admission Sec Css Starts */

section.online-admission-sec {
  background-image: url('../images/oa-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.online-admission-left {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  height: 735px;
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
}

.online-admission-left::Before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 8;
  background: linear-gradient(0deg, rgb(0 0 0 / 85%) 0%, rgba(255, 255, 255, 0) 100%);
}

.online-admission-left-img-main {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.online-admission-left-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: relative;
}

.online-admission-left-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.online-admission-left-subheading {
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fee505;
  border-radius: 5px;
  overflow: hidden;
  padding: 0 10px;
  height: 30px;
}

.online-admission-left-subheading h5 {
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 14px;
  line-height: 1;
}

.online-admission-left-txt-main {
  position: relative;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.online-admission-left-heading {
  width: 70%;
}

.online-admission-left-heading h2 {
  color: #fff;
}

.online-admission-left-txt {
  width: 66%;
}

.online-admission-left-txt p {
  color: #fff;
}

.online-admission-left-list-mian {
  display: flex;
  align-items: start;
  justify-content: start;
  width: 100%;
  gap: 20px;
}

.online-admission-left-list {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  width: 100%;
}

.online-admission-left-list-txt h6 {
  color: #fff;
}

.online-admission-left-list-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  width: 25px;
}

.online-admission-left-list-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.online-admission-form-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 0 20px 0px #00000024;
}

.online-admission-form-heading-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.online-admission-form-subheading h6 {
  position: relative;
  z-index: 9;
  display: flex;
  align-items: start;
  justify-content: start;
  color: #e20202;
  letter-spacing: 5px;
}

.online-admission-form-input label {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  width: 100%;
  padding: 10px 5px;
  gap: 10px;
}

.online-admission-form-input label span {
  /* width: 100%; */
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  color: #000;
  font-family: 'Roboto';
  cursor: pointer;
  display: inline-flex;
}

.online-admission-form-input label input {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #0000003b;
  background-color: #f3f6f7;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1;
}

.online-admission-form-input select {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #0000003b;
  background-color: #f3f6f7;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.online-admission-form-input textarea {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #0000003b;
  background-color: #f3f6f7;
  padding: 20px 10px;
  font-size: 14px;
  line-height: 1;
  height: 130px;
  resize: none;
}

.online-admission-form-btn {
  width: 100%;
}

.online-admission-form-btn button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.online-admission-form-bottom-txt-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px 0 0 0;
}

.online-admission-form-bottom-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
}

.online-admission-form-bottom-icon img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.online-admission-form-bottom-txt p {
  font-size: 18px;
  line-height: 1;
}

/*Online Admission Sec Css Ends */

/*Footer Css Starts */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 0 0 22px;
  color: #f4f4f4;
  background:
    radial-gradient(circle at 18% 45%,
      rgba(255, 216, 0, 0.05),
      transparent 22%),
    radial-gradient(circle at 82% 52%,
      rgba(237, 28, 36, 0.04),
      transparent 24%),
    linear-gradient(135deg,
      #191919 0%,
      #0d0d0d 50%,
      #1a1a1a 100%);
}

/* .site-footer::before,
.site-footer::after {
  position: absolute;
  z-index: 0;
  color: rgba(255, 255, 255, 0.055);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  pointer-events: none;
}

.site-footer::before {
  content: "\f518";
  top: 135px;
  left: 3%;
  font-size: 112px;
  transform: rotate(-12deg);
}

.site-footer::after {
  content: "\f5da";
  right: 5%;
  bottom: 100px;
  font-size: 105px;
  transform: rotate(10deg);
} */

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-red-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 11px;
  background-color: #ed1c24;
}

.footer-top-main {
  position: relative;
  z-index: 2;
  padding-top: 28px;
}

.footer-top {
  position: relative;
  overflow: hidden;
  max-width: 1365px;
  margin: 0 auto;
  padding: 22px 48px;
  border-radius: 22px;
  background-color: #fffefb;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.footer-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.3);
}

.footer-top::before {
  content: "";
  position: absolute;
  right: -53px;
  bottom: -76px;
  width: 150px;
  height: 150px;
  border: 4px solid #ed1c24;
  border-radius: 50%;
}

.footer-top::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -62px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background-color: #ffd800;
}

.footer-top-txt-main {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-top-txt {
  position: relative;
  /* padding-left: 46px; */
}

/* .footer-top-txt::before,
.footer-top-txt::after {
  content: "";
  position: absolute;
  left: 0;
  width: 28px;
  height: 4px;
  border-radius: 5px;
  background-color: #ed1c24;
}

.footer-top-txt::before {
  top: 39px;
  transform: rotate(42deg);
} */

.footer-top-txt::after {
  top: 63px;
  transform: rotate(-42deg);
}

.footer-top-subheading h5 {
  display: inline-block;
  margin: 0 0 9px;
  padding: 7px 18px;
  border-radius: 5px;
  color: #111111;
  letter-spacing: 5px;
  background-color: #ffd800;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.footer-top-heading h2 {
  margin: 0 0 3px;
  color: #0d0d0d;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.05;
}

.footer-top-heading p {
  margin: 0;
  color: #565656;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.footer-apply-btn.theme3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 315px;
  padding: 20px 30px;
  border: 1px solid #252525;
  border-radius: 22px;
  background: linear-gradient(135deg, #111111, #242424);
  box-shadow: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-apply-btn.theme3 .theme3-txt span {
  color: #ffd800;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.footer-apply-btn.theme3 .theme3-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-apply-btn.theme3 .theme3-icon i {
  color: #ffd800;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.footer-apply-btn.theme3:hover {
  border-color: #ed1c24;
  background: #ed1c24;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(237, 28, 36, 0.28);
}

.footer-apply-btn.theme3:hover .theme3-icon i {
  transform: translateX(6px);
}

.footer-main-row {
  padding: 58px 0 44px;
}

.footer-logo-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.footer-logo-img {
  /* display: inline-block; */
  /* max-width: 225px; */
  /* margin-bottom: 22px; */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 170px;
  width: 170px;
}

.footer-logo-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.footer-logo-img:hover img {
  transform: scale(1.045);
  filter: drop-shadow(0 8px 14px rgba(255, 216, 0, 0.14));
}

.footer-logo-txt p {
  max-width: 285px;
  /* margin: 0 0 22px; */
  color: #dedede;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

.footer-socials ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-socials li {
  margin: 0;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border: 2px solid #ffd800;
  border-radius: 50%;
  color: #ffd800;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  color: #111111;
  background-color: #ffd800;
  box-shadow: 0 8px 18px rgba(255, 216, 0, 0.22);
  transform: translateY(-4px) rotate(-5deg);
}

.footer-link-main {
  padding-top: 18px;
}

.footer-link-heading h4 {
  position: relative;
  display: inline-block;
  margin: 0 0 24px;
  color: #ffd800;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.footer-link-heading h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 28px;
  height: 3px;
  border-radius: 5px;
  background-color: #ed1c24;
  transition: width 0.35s ease;
}

.footer-link-main:hover .footer-link-heading h4::after {
  width: 55px;
}

.footer-link-heading ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-link-heading li {
  margin-bottom: 15px;
  color: #dedede;
}

.footer-link-heading li a {
  display: inline-flex;
  align-items: center;
  color: #dedede;
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-link-main:not(.footer-contact) .footer-link-heading li a::before {
  content: "";
  width: 0;
  height: 2px;
  margin-right: 0;
  border-radius: 4px;
  background-color: #ed1c24;
  transition: width 0.25s ease, margin-right 0.25s ease;
}

.footer-link-main:not(.footer-contact) .footer-link-heading li a:hover::before {
  width: 12px;
  margin-right: 7px;
}

.footer-link-heading li a:hover {
  color: #ffd800;
  transform: translateX(5px);
}

.footer-contact .footer-link-heading li,
.footer-contact .footer-link-heading li a {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-contact-icon {
  display: flex;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #111111;
  background-color: #ffd800;
  transition: transform 0.3s ease, background-color 0.3s ease,
    color 0.3s ease, box-shadow 0.3s ease;
}

.footer-contact .footer-link-heading li {
  transition: transform 0.3s ease;
}

.footer-contact .footer-link-heading li:hover {
  transform: translateX(5px);
}

.footer-contact .footer-link-heading li:hover .footer-contact-icon {
  color: #ffffff;
  background-color: #ed1c24;
  box-shadow: 0 7px 16px rgba(237, 28, 36, 0.25);
  transform: scale(1.08);
}

.footer-contact .footer-link-heading li:hover p {
  color: #ffd800;
}

.footer-contact-icon i {
  font-size: 16px;
}

.footer-contact li p {
  margin: 0;
  color: #dedede;
  font-family: "Roboto", sans-serif;
  font-size: 17px;
}

.footer-contact li a>span:last-child {
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 24px 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-bottom p,
.footer-bottom p a {
  margin: 0;
  color: #d8d8d8;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.footer-bottom p a:hover {
  color: #ffd800;
  transition: ease-out;
  transition-duration: 0.5s;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-bottom-links>a:not(.footer-back-to-top) {
  color: #d8d8d8;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links>a:not(.footer-back-to-top):hover {
  color: #ffd800;
}

.footer-back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #111111;
  background-color: #ffd800;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-back-to-top:hover {
  color: #ffffff;
  background-color: #ed1c24;
  transform: translateY(-4px);
}

.footer-back-to-top i {
  transition: transform 0.3s ease;
}

.footer-back-to-top:hover i {
  transform: translateY(-3px);
}

.site-footer a:focus-visible {
  outline: 3px solid #ffd800;
  outline-offset: 4px;
}

/*Footer Css Ends */

/* Header and navigation */
.header-logo img {
  transition: transform 0.4s ease, filter 0.4s ease;
}

.header-logo:hover img {
  transform: scale(1.045);
  filter: drop-shadow(0 7px 12px rgba(254, 229, 5, 0.2));
}

.menu-box>ul>li>a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1px;
  width: 0;
  height: 2px;
  border-radius: 10px;
  background-color: #e20202;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.menu-box>ul>li>a:hover::after,
.menu-box>ul>li>a.active::after {
  width: calc(100% - 20px);
}

/* Global branded buttons */
.theme1,
.theme3 {
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
}

.theme1:hover,
.theme3:hover {
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
}

.theme1-icon img,
.theme3-icon img {
  transition: transform 0.3s ease, filter 0.5s ease;
}

.theme1:hover .theme1-icon img,
.theme3:hover .theme3-icon img {
  transform: translateX(4px);
}



/* Discover section */
.discover-left,
.discover-card-main {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.discover-left:hover {
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}

.discover-left-img {
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.discover-left:hover .discover-left-img {
  opacity: 0.85;
  transform: translate(-6px, -5px) scale(1.04);
}

.discover-card-main:hover {
  box-shadow: 0 15px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-7px);
}

.discover-card-icon {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.discover-card-icon img {
  transition: transform 0.4s ease;
}

.discover-card-main:hover .discover-card-icon {
  box-shadow: 0 9px 20px rgba(254, 229, 5, 0.18);
  transform: rotate(-3deg) scale(1.04);
}

.discover-card-main:hover .discover-card-icon img {
  transform: scale(1.06);
}

.discover-card-txt h4 {
  transition: color 0.3s ease;
}

.discover-card-main:hover .discover-card-txt h4 {
  color: #e20202;
}

/* About section */
.about-img {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.4s ease;
}

.about-img img {
  transition: transform 0.65s ease;
}

.about-img:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.about-img:hover img {
  transform: scale(1.025);
}

.about-counter {
  transition: transform 0.3s ease;
}

.about-counter h5 {
  transition: color 0.3s ease;
}

.about-counter:hover {
  transform: translateY(-4px);
}

.about-counter:hover h5 {
  color: #e20202;
}

.about-bottom-main {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-bottom-main:hover {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.about-bottom-img img,
.about-bottom-img-ex img {
  transition: transform 0.45s ease;
}

.about-bottom-main:hover .about-bottom-img img {
  transform: scale(1.06);
}

.about-bottom-main:hover .about-bottom-img-ex img {
  transform: rotate(3deg) scale(1.035);
}

/* Why choose us cards already change colour; add only depth and icon motion */
.chooes-card-main:hover {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  transform: translateY(-6px);
}

.chooes-card-img,
.chooes-card-img img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.chooes-card-main:hover .chooes-card-img {
  box-shadow: 0 9px 22px rgba(254, 229, 5, 0.18);
  transform: scale(1.04);
}

.chooes-card-main:hover .chooes-card-img img {
  transform: scale(1.07);
}

/* Online admission section */
.online-admission-left,
.online-admission-form-main {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.online-admission-left:hover {
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
  transform: translateY(-4px);
}

.online-admission-left-img img {
  transition: transform 0.7s ease;
}

.online-admission-left:hover .online-admission-left-img img {
  transform: scale(1.025);
}

.online-admission-left-list {
  transition: transform 0.3s ease;
}

.online-admission-left-list:hover {
  transform: translateY(-3px);
}

.online-admission-left-list-img img {
  transition: transform 0.3s ease;
}

.online-admission-left-list:hover .online-admission-left-list-img img {
  transform: scale(1.12);
}

.online-admission-form-main:hover {
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
}

.online-admission-form-input label input,
.online-admission-form-input select,
.online-admission-form-input textarea {
  transition: border-color 0.3s ease, background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.online-admission-form-input label input:hover,
.online-admission-form-input select:hover,
.online-admission-form-input textarea:hover {
  border-color: rgba(0, 0, 0, 0.48);
  background-color: #ffffff;
}

.online-admission-form-input label input:focus,
.online-admission-form-input select:focus,
.online-admission-form-input textarea:focus {
  outline: none;
  border-color: #fee505;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(254, 229, 5, 0.18);
}

/* Clear keyboard focus across interactive website elements */
.theme1:focus-visible,
.theme2:focus-visible,
.theme3:focus-visible,
.menu-box a:focus-visible,
.slick-arrow:focus-visible {
  outline: 3px solid #fee505;
  outline-offset: 4px;
}

/* About Us Page Starts */

section.banner-sec.about-sec {
  height: 700px;
  min-height: 700px;
}

section.banner-sec.about-sec .banner_slider,
section.banner-sec.about-sec .banner_slider .slick-list,
section.banner-sec.about-sec .banner_slider .slick-track,
section.banner-sec.about-sec .banner_slider .slick-slide,
section.banner-sec.about-sec .banner_slider .slick-slide>div,
section.banner-sec.about-sec .banner-slide,
section.banner-sec.about-sec .banner-main,
section.banner-sec.about-sec .banner-img-main,
section.banner-sec.about-sec .banner-img {
  height: 700px !important;
  min-height: 700px !important;
}

section.banner-sec.about-sec .banner-txt-main {
  padding-top: 110px;
}

section.banner-sec.about-sec .banner_slider .slick-dots,
section.banner-sec.about-sec .banner_slider .slick-arrow {
  display: none !important;
}

.academy-about {
  background: #fdfbf4;
}

.academy-about .academy-intro {
  padding: 105px 0 88px;
}

.academy-about .academy-intro-row {
  row-gap: 55px;
}

.academy-about .academy-collage {
  position: relative;
  display: grid;
  grid-template-columns: 36% 1fr;
  grid-template-rows: 190px 190px;
  gap: 14px;
  height: 394px;
  margin-right: 50px;
}

.academy-about .academy-collage-photo {
  min-width: 0;
  overflow: hidden;
  background: #eee9db;
  border-radius: 20px;
}

.academy-about .academy-collage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.academy-about .academy-collage-photo-one {
  grid-column: 1;
  grid-row: 1;
}

.academy-about .academy-collage-photo-two {
  grid-column: 2;
  grid-row: 1 / 3;
}

.academy-about .academy-collage-photo-three {
  grid-column: 1;
  grid-row: 2;
}

.academy-about .academy-collage-badge {
  position: absolute;
  top: -20px;
  right: -32px;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 190px;
  min-height: 96px;
  padding: 17px 20px;
  border-radius: 17px;
  color: #171817;
  background: #fee505;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .12);
  font: 800 18px/1.2 "Roboto", sans-serif;
}

.academy-about .academy-collage-badge i {
  font-size: 29px;
}

.academy-about .academy-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 13px;
  border-radius: 5px;
  color: #171817;
  background: #fee505;
  font: 800 12px/1.2 "Roboto", sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.academy-about .academy-intro-copy h2,
.academy-about .academy-approach-copy h2 {
  margin: 0 0 22px;
  color: #171817;
  font: 900 clamp(35px, 3.6vw, 52px)/1.12 "Roboto", sans-serif;
  text-transform: none;
}

.academy-about .academy-intro-copy p,
.academy-about .academy-intro-note p,
.academy-about .academy-approach-copy p {
  color: #494949;
  font: 400 16px/1.85 "Roboto", sans-serif;
}

.academy-about .academy-intro-copy p+p,
.academy-about .academy-approach-copy p+p {
  margin-top: 17px;
}

.academy-about .academy-intro-note {
  margin-top: 56px;
  padding: 29px 34px;
  border-left: 5px solid #e20202;
  border-radius: 0 14px 14px 0;
  background: #fff;
}

.academy-about .academy-approach {
  padding: 18px 0 110px;
}

.academy-about .academy-approach-copy {
  padding-right: 42px;
}

.academy-about .academy-approach-list {
  display: grid;
  gap: 13px;
  margin-top: 26px;
  padding: 0;
  list-style: none;
}

.academy-about .academy-approach-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #171817;
  font: 700 15px/1.5 "Roboto", sans-serif;
}

.academy-about .academy-approach-list i {
  flex: none;
  margin-top: 3px;
  color: #e20202;
  font-size: 17px;
}

.academy-about .academy-approach-photo {
  height: 450px;
  overflow: hidden;
  border-radius: 23px;
  background: #eee9db;
}

.academy-about .academy-approach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About Us Page Ends */

/* Academics Page Starts */

.gga-academics {
  background: #fdfbf4;
  color: #171817;
  font-family: "Roboto", sans-serif;
}

.gga-academics *,
.gga-academics *::before,
.gga-academics *::after {
  box-sizing: border-box;
}

.gga-academics-overview {
  padding: 100px 0;
}

.gga-academics-overview-grid,
.gga-academics-approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(40px, 5vw, 78px);
}

.gga-academics-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: #e20202;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.gga-academics-eyebrow::after {
  content: "";
  width: 48px;
  height: 4px;
  border-radius: 5px;
  background: #fee505;
}

.gga-academics h2 {
  margin: 22px 0 20px;
  color: #171817;
  font-family: "Roboto", sans-serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.035em;
  text-transform: none;
}

.gga-academics-overview-copy>p,
.gga-academics-approach-content>p {
  max-width: 550px;
  margin: 0;
  color: #454545;
  font-size: 17px;
  line-height: 1.75;
}

.gga-academics-overview-image,
.gga-academics-approach-image {
  height: 410px;
  min-width: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #ede9dd;
}

.gga-academics-overview-image img,
.gga-academics-approach-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gga-academics-approach {
  padding: 95px 0 110px;
  border-top: 1px solid #eae4d7;
  background: #fff;
}

.gga-academics-approach-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
}

.gga-academics-approach-content h2 {
  font-size: clamp(34px, 3.45vw, 50px);
}

.gga-academics-pillars {
  display: grid;
  gap: 20px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.gga-academics-pillars li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.gga-academics-pillar-icon {
  display: inline-flex;
  flex: 0 0 52px;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff6c7;
  color: #e20202;
  font-size: 21px;
}

.gga-academics-pillars h3 {
  margin: 0 0 3px;
  color: #171817;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.gga-academics-pillars p {
  margin: 0;
  color: #505050;
  font-size: 15px;
  line-height: 1.55;
}

/* Academics Page Ends */

/* Facilities Page Ends */

.gga-facilities {
  color: #171817;
  background: #fdfbf4;
  font-family: "Roboto", sans-serif;
}

.gga-facilities *,
.gga-facilities *::before,
.gga-facilities *::after {
  box-sizing: border-box;
}

.gga-facilities-intro {
  padding: 90px 0;
}

.gga-facilities-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
}

.gga-facilities-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 19px;
  color: #171817;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.gga-facilities-eyebrow::after,
.gga-facility-label i {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #e20202;
}

.gga-facilities h2 {
  margin: 0 0 18px;
  color: #171817;
  font-family: "Roboto", sans-serif;
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.03em;
  text-transform: none;
}

.gga-facilities-copy p {
  max-width: 540px;
  margin: 0;
  color: #4a4a4a;
  font-size: 16px;
  line-height: 1.75;
}

.gga-facilities-image {
  height: 365px;
  overflow: hidden;
  border-radius: 19px;
  background: #e9e5d8;
}

.gga-facilities-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gga-facility-row {
  padding: 68px 0;
  background: #fff;
}

.gga-facility-row-alt {
  background: #fdfbf4;
}

.gga-facility-label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 22px;
  color: #333;
  font-size: 13px;
  line-height: 1.4;
}

.gga-facility-label span:first-child {
  display: inline-block;
  padding: 8px 13px;
  border-radius: 5px;
  color: #171817;
  background: #fee505;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.gga-facility-label span:last-child {
  font-weight: 700;
}

.gga-facility-row h2 {
  font-size: clamp(30px, 3vw, 43px);
}

.gga-facility-media {
  position: relative;
  min-width: 0;
  padding-bottom: 23px;
}

.gga-facility-slider {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: 18px;
  background: #e9e5d8;
}

.gga-facility-slider .slick-list,
.gga-facility-slider .slick-track,
.gga-facility-slider .slick-slide,
.gga-facility-slider .slick-slide>div {
  height: 100%;
}

.gga-facility-slider .slick-slide img,
.gga-facility-slider>div>img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.gga-facility-slider .slick-prev,
.gga-facility-slider .slick-next {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #171817;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .14);
  font-size: 26px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.gga-facility-slider .slick-prev {
  left: 13px;
}

.gga-facility-slider .slick-next {
  right: 13px;
}

.gga-facility-slider .slick-prev:hover,
.gga-facility-slider .slick-next:hover {
  background: #fee505;
}

.gga-facility-slider .slick-prev::before,
.gga-facility-slider .slick-next::before {
  content: none;
}

.gga-facility-media .slick-dots {
  position: absolute;
  bottom: -25px;
  left: 0;
  display: flex !important;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gga-facility-media .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0;
}

.gga-facility-media .slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c9c9c9;
  font-size: 0;
  cursor: pointer;
}

.gga-facility-media .slick-dots button::before {
  content: none;
}

.gga-facility-media .slick-dots .slick-active button {
  background: #fee505;
}

.gga-facility-slider button:focus-visible,
.gga-facility-media .slick-dots button:focus-visible {
  outline: 3px solid #e20202;
  outline-offset: 3px;
}

.gga-facility-slider .slick-slide {
  margin: 0 !important;
}

/* Facilities Page Ends */

/* Sports Facilities Page Starts */

.gga-sports {
  color: #171817;
  background: #fdfbf4;
  font-family: "Roboto", sans-serif;
}

.gga-sports *,
.gga-sports *::before,
.gga-sports *::after {
  box-sizing: border-box;
}

.gga-sports-intro {
  padding: 90px 0 75px;
}

.gga-sports-intro-grid,
.gga-sports-row-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
}

.gga-sports-eyebrow {
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
  color: #171817;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .23em;
  line-height: 1.2;
  text-transform: uppercase;
}

.gga-sports-eyebrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44px;
  height: 3px;
  border-radius: 4px;
  background: #fee505;
}

.gga-sports-intro h2 {
  margin: 23px 0 18px;
  color: #171817;
  font-family: "Roboto", sans-serif;
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.035em;
  text-transform: none;
}

.gga-sports-intro p,
.gga-sports-row-copy p {
  max-width: 510px;
  margin: 0;
  color: #4a4a4a;
  font-size: 17px;
  line-height: 1.75;
}

.gga-sports-photo {
  min-width: 0;
  height: 400px;
  overflow: hidden;
  border-radius: 18px;
  background: #ebe7d9;
}

.gga-sports-intro-photo {
  height: 360px;
}

.gga-sports-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gga-sports-spaces {
  padding-bottom: 95px;
}

.gga-sports-section-heading {
  margin: 0 0 35px;
  text-align: center;
}

.gga-sports-section-heading>span {
  display: block;
  width: 42px;
  height: 3px;
  margin: 0 auto 16px;
  border-radius: 4px;
  background: #fee505;
}

.gga-sports-section-heading h2 {
  margin: 0;
  color: #171817;
  font-family: "Roboto", sans-serif;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.gga-sports-row {
  padding: 30px 0;
  background: #fff;
}

.gga-sports-row-alt {
  background: #fdfbf4;
}

.gga-sports-row-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
}

.gga-sports-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  min-height: 29px;
  margin-bottom: 14px;
  padding: 5px 12px;
  border-radius: 30px;
  color: #171817;
  background: #fee505;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.gga-sports-row-copy h3 {
  margin: 0 0 13px;
  color: #171817;
  font-family: "Roboto", sans-serif;
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -.025em;
  text-transform: none;
}

/* Sports Facilities Page Ends */

/* Resource Center Page Starts */

.resource-center-section {
  padding: 90px 0 100px;
  background: #fffdf8;
  color: #191919;
  font-family: "Roboto", sans-serif;
}

.resource-center-section *,
.resource-center-section *::before,
.resource-center-section *::after {
  box-sizing: border-box;
}

.resource-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 60px;
  margin-bottom: 72px;
}

.resource-intro-content {
  max-width: 500px;
}

.resource-eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  padding: 9px 15px;
  border-radius: 5px;
  background: #fee505;
  color: #191919;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.resource-intro-content h1 {
  margin: 0 0 22px;
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
}

.resource-intro-content h1 span {
  display: block;
  color: #e20202;
}

.resource-intro-content p {
  max-width: 490px;
  margin: 0;
  color: #4f5359;
  font-size: 17px;
  line-height: 1.8;
}

.resource-intro-visual {
  position: relative;
  height: 450px;
  isolation: isolate;
}

.resource-intro-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -16px;
  left: -20px;
  width: 50%;
  height: 65%;
  border-radius: 18px;
  background: #fee505;
  transform: rotate(-7deg);
}

.resource-intro-visual img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
}

.resource-spaces h2 {
  margin: 0 0 28px;
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -1px;
}

.resource-spaces .row>div {
  display: flex;
}

.resource-card {
  width: 100%;
  overflow: hidden;
  border: 1px solid #ece9e1;
  border-radius: 14px;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(24, 24, 24, 0.09);
}

.resource-card-image {
  height: 350px;
  overflow: hidden;
}

.resource-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.resource-card:hover .resource-card-image img {
  transform: scale(1.04);
}

.resource-card-content {
  padding: 23px 26px 25px;
}

.resource-card-number {
  display: inline-block;
  margin-bottom: 4px;
  color: #e20202;
  font-size: 17px;
  font-weight: 800;
}

.resource-card-content h3 {
  margin: 0 0 8px;
  color: #191919;
  font-size: clamp(22px, 2vw, 27px);
  font-weight: 800;
  line-height: 1.25;
}

.resource-card-content p {
  margin: 0;
  color: #666b72;
  font-size: 15px;
  line-height: 1.6;
}

.resource-card-arrow {
  display: inline-block;
  margin-top: 18px;
  color: #e20202;
  font-size: 19px;
}

.resource-message {
  position: relative;
  min-height: 120px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 24px;
  padding: 24px 44px;
  border-radius: 15px;
  background: #fff3bf;
  isolation: isolate;
}

.resource-message::before,
.resource-message::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  background: rgba(254, 229, 5, 0.26);
}

.resource-message::before {
  width: 420px;
  height: 420px;
  right: -60px;
  bottom: -375px;
}

.resource-message::after {
  width: 190px;
  height: 190px;
  right: 20px;
  top: -145px;
}

.resource-message-content {
  padding-left: 28px;
  border-left: 5px solid #fee505;
}

.resource-message h2 {
  margin: 0 0 4px;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.2;
}

.resource-message p {
  margin: 0;
  color: #5f6267;
  font-size: 17px;
  line-height: 1.5;
}

/* Resource Center Page Ends */

/* Contact Us Page Starts */

.contact-page-section {
  padding: 90px 0 100px;
  overflow: hidden;
  background: #fffdf8;
  color: #191919;
  font-family: "Roboto", sans-serif;
}

.contact-page-section *,
.contact-page-section *::before,
.contact-page-section *::after {
  box-sizing: border-box;
}

.contact-page-heading {
  max-width: 850px;
  margin: 0 auto 55px;
  text-align: center;
}

.contact-page-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  color: #e20202;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-page-eyebrow::before,
.contact-page-eyebrow::after {
  content: "";
  width: 38px;
  height: 2px;
  background: #fee505;
}

.contact-page-heading h1 {
  margin: 0 0 12px;
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #000;
}

.contact-page-heading h1 span,
.contact-location-heading h2 span {
  color: #e20202;
}

.contact-page-heading p {
  max-width: 730px;
  margin: 0 auto;
  color: #60656d;
  font-size: 17px;
  line-height: 1.7;
}

.contact-page-row {
  align-items: stretch;
  --bs-gutter-x: 36px;
}

.contact-page-details {
  height: 100%;
  padding-top: 7px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 20px 0 28px;
  border-bottom: 1px solid #e5e3dd;
}

.contact-detail:first-child {
  padding-top: 0;
}

.contact-detail:last-child {
  border-bottom: 0;
}

.contact-detail-icon {
  flex: 0 0 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fee505;
  color: #191919;
  font-size: 22px;
}

.contact-detail-text {
  min-width: 0;
  padding-top: 3px;
}

.contact-detail-text h2 {
  margin: 0 0 7px;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
}

.contact-detail-text p,
.contact-detail-text a {
  display: block;
  margin: 0 0 5px;
  color: #242424;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.contact-detail-text a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-detail-text a:hover {
  color: #e20202;
}

.contact-detail-text span {
  display: block;
  color: #747981;
  font-size: 14px;
  line-height: 1.5;
}

.contact-form-box {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 38px;
  border: 1px solid #f0ede5;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(21, 21, 21, 0.06);
}

.contact-form-box::before {
  content: "";
  position: absolute;
  top: -52px;
  right: -52px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #fee505;
}

.contact-form-box>h2,
.contact-form-box>p,
.contact-page-form {
  position: relative;
  z-index: 1;
}

.contact-form-box h2 {
  margin: 0 0 7px;
  font-size: clamp(29px, 3vw, 39px);
  font-weight: 900;
  line-height: 1.2;
}

.contact-form-box>p {
  margin: 0 0 27px;
  color: #727780;
  font-size: 15px;
  line-height: 1.6;
}

.contact-page-form label {
  display: block;
  margin-bottom: 9px;
  font-size: 14px;
  font-weight: 700;
}

.contact-page-form label span {
  color: #e20202;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 12px 15px;
  border: 1px solid #d8dce3;
  border-radius: 10px;
  outline: none;
  background: #fff;
  color: #191919;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page-form textarea {
  min-height: 200px;
  resize: none;
}

.contact-page-form input::placeholder,
.contact-page-form textarea::placeholder {
  color: #9298a1;
}

.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
  border-color: #e20202;
  box-shadow: 0 0 0 3px rgba(226, 2, 2, 0.09);
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 52px;
  margin-top: 6px;
  padding: 0 30px;
  border: 0;
  border-radius: 50px;
  background: #e20202;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 9px 20px rgba(226, 2, 2, 0.18);
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-3px);
  background: #bf0000;
}

.contact-submit-btn:focus-visible {
  outline: 3px solid #fee505;
  outline-offset: 3px;
}

.contact-location {
  margin-top: 80px;
}

.contact-location-heading {
  margin-bottom: 28px;
  text-align: center;
}

.contact-location-line {
  display: block;
  width: 48px;
  height: 3px;
  margin: 0 auto 18px;
  border-radius: 10px;
  background: #fee505;
}

.contact-location-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 900;
  line-height: 1.2;
}

.contact-location-heading p {
  margin: 0;
  color: #666b73;
  font-size: 16px;
  line-height: 1.6;
}

.contact-map {
  position: relative;
  height: 370px;
  overflow: hidden;
  border-radius: 16px;
  background: #f0eee8;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-map-label {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 48px);
  padding: 13px 17px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.contact-map-label>i {
  color: #e20202;
  font-size: 23px;
}

.contact-map-label strong,
.contact-map-label span {
  display: block;
  line-height: 1.4;
}

.contact-map-label strong {
  font-size: 14px;
  font-weight: 800;
}

.contact-map-label span {
  color: #666b73;
  font-size: 12px;
}

/* Contact Us Page Ends */

/* Feedback Page Starts */

.feedback-page-section {
  padding: 90px 0 100px;
  background: #fffdf8;
  color: #191919;
  font-family: "Roboto", sans-serif;
}

.feedback-page-section *,
.feedback-page-section *::before,
.feedback-page-section *::after {
  box-sizing: border-box;
}

.feedback-page-heading {
  max-width: 950px;
  margin: 0 auto 48px;
  text-align: center;
}

.feedback-page-heading>span {
  display: inline-block;
  margin-bottom: 17px;
  color: #e20202;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.feedback-page-heading h1 {
  margin: 0 0 13px;
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #000;
}

.feedback-page-heading h1 em {
  color: #e20202;
  font-style: normal;
}

.feedback-page-heading p {
  margin: 0;
  color: #626873;
  font-size: 18px;
  line-height: 1.6;
}

.feedback-info,
.feedback-form-box {
  /* height: 100%; */
  border-radius: 20px;
}

.feedback-info {
  padding: 42px 35px;
  background: #fff6d3;
}

.feedback-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 32px;
  border-radius: 16px;
  background: #e20202;
  color: #fff;
  font-size: 30px;
}

.feedback-info h2 {
  margin: 0 0 17px;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.2;
}

.feedback-info p {
  margin: 0;
  color: #515762;
  font-size: 17px;
  line-height: 1.8;
}

.feedback-form-box {
  padding: 40px;
  border: 1px solid #f0ede7;
  background: #fff;
  box-shadow: 0 15px 45px rgba(20, 20, 20, 0.06);
}

.feedback-form-box>h2 {
  margin: 0 0 8px;
  font-size: clamp(29px, 3vw, 39px);
  font-weight: 900;
  line-height: 1.2;
}

.feedback-form-box>p {
  margin: 0 0 30px;
  color: #707680;
  font-size: 16px;
  line-height: 1.6;
}

.feedback-form label {
  display: block;
  margin-bottom: 9px;
  font-size: 14px;
  font-weight: 700;
}

.feedback-form label span {
  color: #e20202;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  display: block;
  width: 100%;
  min-height: 51px;
  padding: 12px 15px;
  border: 1px solid #d8dce3;
  border-radius: 9px;
  outline: none;
  background: #fff;
  color: #191919;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.feedback-form textarea {
  min-height: 200px;
  resize: none;
}

.feedback-form input::placeholder,
.feedback-form textarea::placeholder {
  color: #9298a1;
}

.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
  border-color: #e20202;
  box-shadow: 0 0 0 3px rgba(226, 2, 2, 0.08);
}

.feedback-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  min-height: 52px;
  margin-top: 8px;
  padding: 0 28px;
  border: 0;
  border-radius: 50px;
  background: #e20202;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.feedback-submit-btn:hover {
  transform: translateY(-3px);
  background: #bd0000;
}

.feedback-submit-btn:focus-visible {
  outline: 3px solid #fee505;
  outline-offset: 3px;
}

/* Feedback Page Ends */

/* Careers Page Starts */

.careers-page-section {
  padding: 90px 0 100px;
  background: #fffdf8;
  color: #191919;
  font-family: "Roboto", sans-serif;
}

.careers-page-section *,
.careers-page-section *::before,
.careers-page-section *::after {
  box-sizing: border-box;
}

.careers-page-heading {
  max-width: 850px;
  margin: 0 auto 48px;
  text-align: center;
}

.careers-page-heading>span {
  display: inline-block;
  margin-bottom: 18px;
  color: #e20202;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.careers-page-heading h1 {
  margin: 0 0 14px;
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1.5px;
  color: #000;
}

.careers-page-heading h1 em {
  color: #e20202;
  font-style: normal;
}

.careers-page-heading p {
  margin: 0;
  color: #686e78;
  font-size: 17px;
  line-height: 1.7;
}

.careers-info,
.careers-form-box {
  /* height: 100%; */
  border-radius: 18px;
}

.careers-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 42px 34px;
  background: #fff4c5;
}

.careers-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin-bottom: 30px;
  color: #191919;
  font-size: 60px;
}

.careers-info h2 {
  max-width: 350px;
  margin: 0 0 20px;
  font-size: clamp(29px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.18;
}

.careers-info p {
  margin: 0 0 32px;
  color: #525964;
  font-size: 16px;
  line-height: 1.8;
}

.careers-openings {
  display: flex;
  align-items: center;
  gap: 17px;
  width: 100%;
  margin-top: auto;
  padding: 20px;
  border: 1px solid #f4de9a;
  border-radius: 12px;
  background: #fff;
}

.careers-openings>i {
  color: #e20202;
  font-size: 30px;
}

.careers-openings strong,
.careers-openings span {
  display: block;
}

.careers-openings strong {
  margin-bottom: 3px;
  font-size: 16px;
  font-weight: 700;
}

.careers-openings span {
  color: #e20202;
  font-size: 17px;
  font-weight: 800;
}

.careers-form-box {
  padding: 40px;
  border: 1px solid #ece9e3;
  background: #fff;
  box-shadow: 0 15px 40px rgba(20, 20, 20, 0.05);
}

.careers-form-box>h2 {
  margin: 0 0 7px;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.2;
}

.careers-form-box>p {
  margin: 0 0 29px;
  color: #707680;
  font-size: 15px;
  line-height: 1.6;
}

.careers-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
}

.careers-form label span {
  color: #e20202;
}

.careers-form input,
.careers-form select {
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 11px 15px;
  border: 1px solid #d7dce4;
  border-radius: 9px;
  outline: none;
  background: #fff;
  color: #191919;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.careers-form input::placeholder {
  color: #9399a2;
}

.careers-form input:focus,
.careers-form select:focus {
  border-color: #e20202;
  box-shadow: 0 0 0 3px rgba(226, 2, 2, 0.08);
}

.careers-form input[type="date"] {
  color-scheme: light;
}

.careers-form .careers-file-input {
  min-height: auto;
  padding: 17px;
  border: 1px dashed #cbd1da;
  cursor: pointer;
}

.careers-file-input::file-selector-button {
  margin-right: 14px;
  padding: 8px 12px;
  border: 0;
  border-radius: 6px;
  background: #fff4c5;
  color: #191919;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
}

.careers-form small {
  display: block;
  margin-top: 7px;
  color: #747a84;
  font-size: 12px;
}

.careers-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
  padding: 11px 25px;
  border: 0;
  border-radius: 9px;
  background: #e20202;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.careers-submit-btn:hover {
  transform: translateY(-2px);
  background: #bf0000;
}

.careers-submit-btn:focus-visible {
  outline: 3px solid #fee505;
  outline-offset: 3px;
}

/* Careers Page Ends */

/* Procedures Page Starts */

.admission-procedures-section {
  padding: 90px 0 100px;
  background: #fffdf8;
  color: #191919;
  font-family: "Roboto", sans-serif;
}

.admission-procedures-section *,
.admission-procedures-section *::before,
.admission-procedures-section *::after {
  box-sizing: border-box;
}

.procedures-heading {
  max-width: 850px;
  margin: 0 auto 65px;
  text-align: center;
}

.procedures-heading>span {
  display: inline-block;
  margin-bottom: 20px;
  color: #191919;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.procedures-heading h1 {
  margin: 0 0 12px;
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #000;
}

.procedures-heading h1 em {
  color: #e20202;
  font-style: normal;
}

.procedures-heading p {
  margin: 0;
  color: #626873;
  font-size: 17px;
  line-height: 1.7;
}

.procedures-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.procedures-steps::before {
  content: "";
  position: absolute;
  top: 0;
  right: 10%;
  left: 10%;
  height: 3px;
  background: #fee505;
}

.procedure-step {
  position: relative;
  min-width: 0;
  min-height: 230px;
  padding: 46px 15px 25px;
  border: 1px solid #ebe7df;
  border-radius: 15px;
  background: #fff;
  text-align: center;
  margin: 10px 0 0 0;
}

.procedure-number {
  position: absolute;
  top: -37px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fee505;
  color: #191919;
  font-size: 19px;
  font-weight: 900;
  transform: translateX(-50%);
}

.procedure-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  margin-bottom: 16px;
  color: #191919;
  font-size: 40px;
}

.procedure-step h2 {
  margin: 0 0 9px;
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 800;
  line-height: 1.3;
}

.procedure-step p {
  max-width: 210px;
  margin: 0 auto;
  color: #646b74;
  font-size: 14px;
  line-height: 1.6;
}

.procedures-bottom {
  margin-top: 42px;
}

.procedures-image,
.procedures-contact {
  height: 100%;
  min-height: 330px;
  overflow: hidden;
  border-radius: 16px;
}

.procedures-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center;
}

.procedures-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 38px;
  background: #faf5eb;
}

.procedures-accent {
  display: block;
  width: 54px;
  height: 4px;
  margin-bottom: 20px;
  border-radius: 10px;
  background: #fee505;
}

.procedures-contact h2 {
  margin: 0 0 15px;
  font-size: clamp(28px, 2.7vw, 39px);
  font-weight: 900;
  line-height: 1.2;
}

.procedures-contact p {
  margin: 0 0 24px;
  color: #535962;
  font-size: 16px;
  line-height: 1.7;
}

.procedures-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 50px;
  background: #e20202;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.procedures-contact-btn:hover {
  transform: translateY(-3px);
  background: #bd0000;
  color: #fff;
}

.procedures-contact-btn:focus-visible {
  outline: 3px solid #fee505;
  outline-offset: 3px;
}

/* Procedures Page Ends */

/* Admissions Page Starts */

.admissions-page-section {
  padding: 85px 0 100px;
  background: #fffdf8;
  color: #191919;
  font-family: "Roboto", sans-serif;
}

.admissions-page-section *,
.admissions-page-section *::before,
.admissions-page-section *::after {
  box-sizing: border-box;
}

.admissions-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 55px;
  margin-bottom: 30px;
}

.admissions-eyebrow {
  display: inline-block;
  margin-bottom: 25px;
  color: #e20202;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.admissions-intro-text h1 {
  margin: 0 0 20px;
  color: #191919;
  font-size: clamp(42px, 4.5vw, 65px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.admissions-intro-text h1 em {
  color: #e20202;
  font-style: normal;
}

.admissions-intro-text p {
  max-width: 560px;
  margin: 0;
  color: #5c626d;
  font-size: 19px;
  line-height: 1.65;
}

.admissions-intro-image {
  height: 330px;
  overflow: hidden;
  border-radius: 14px;
}

.admissions-intro-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admissions-content {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 20px;
}

.admissions-documents,
.admissions-registration-card {
  border: 1px solid #e9e6df;
  border-radius: 15px;
  background: #fff;
}

.admissions-documents {
  padding: 30px 36px;
}

.admissions-card-title,
.admissions-registration-title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.admissions-card-title {
  margin-bottom: 20px;
}

.admissions-title-icon,
.admissions-registration-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  font-size: 25px;
}

.admissions-title-icon {
  background: #fee505;
  color: #191919;
}

.admissions-card-title h2,
.admissions-registration-title h2 {
  margin: 0;
  color: #191919;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  line-height: 1.25;
}

.admissions-document-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.admissions-document-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 61px;
  border-bottom: 1px solid #ece9e4;
  color: #323741;
  font-size: 16px;
}

.admissions-document-list li:last-child {
  border-bottom: 0;
}

.admissions-document-list li i {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #fee505;
  color: #191919;
  font-size: 15px;
}

.admissions-registration {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.admissions-registration-card {
  padding: 25px 28px;
}

.admissions-registration-title {
  gap: 15px;
  margin-bottom: 16px;
}

.admissions-registration-icon {
  width: 50px;
  height: 50px;
  background: #f6f4ef;
  color: #191919;
  font-size: 22px;
}

.admissions-registration-title h2 {
  font-size: clamp(21px, 2vw, 27px);
}

.admissions-steps {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0 0 0 10px;
  list-style: none;
}

.admissions-steps li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.admissions-steps li>span {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #e20202;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.admissions-steps p {
  margin: 3px 0 0;
  color: #454b55;
  font-size: 15px;
  line-height: 1.5;
}

.admissions-apply-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 49px;
  margin-top: 22px;
  padding: 10px 20px;
  border-radius: 50px;
  background: #e20202;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.admissions-apply-btn:hover {
  transform: translateY(-2px);
  background: #bd0000;
  color: #fff;
}

.admissions-apply-btn:focus-visible {
  outline: 3px solid #fee505;
  outline-offset: 3px;
}

.admissions-note {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  margin-top: 20px;
  padding: 17px 25px;
  border-radius: 12px;
  background: #fff3bf;
}

.admissions-note i {
  flex-shrink: 0;
  color: #191919;
  font-size: 30px;
}

.admissions-note p {
  margin: 0;
  color: #191919;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

/* Admissions Page Ends */

/* Age Criteria Page Starts */

.age-criteria-section {
  padding: 85px 0 95px;
  background: #fffdf8;
  color: #191919;
  font-family: "Roboto", sans-serif;
}

.age-criteria-section *,
.age-criteria-section *::before,
.age-criteria-section *::after {
  box-sizing: border-box;
}

.age-criteria-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 55px;
  margin-bottom: 48px;
}

.age-criteria-intro-text {
  max-width: 590px;
}

.age-criteria-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #383d46;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.age-criteria-eyebrow::before {
  content: "";
  width: 40px;
  height: 3px;
  background: #fee505;
}

.age-criteria-intro-text h1 {
  margin: 0 0 20px;
  color: #191919;
  font-size: clamp(44px, 4.4vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.age-criteria-intro-text h1 span {
  display: block;
  color: #e20202;
}

.age-criteria-intro-text p {
  max-width: 570px;
  margin: 0;
  color: #535b67;
  font-size: 17px;
  line-height: 1.7;
}

.age-criteria-intro-image {
  height: 400px;
  overflow: hidden;
  border-radius: 17px;
}

.age-criteria-intro-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.age-criteria-content>h2 {
  margin: 0 0 22px;
  color: #191919;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
}

.age-criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.age-group-card {
  min-width: 0;
  padding: 25px 25px 24px;
  border-top: 5px solid #fee505;
  border-radius: 10px;
  background: #fffaf0;
}

.age-group-card-primary {
  border-top-color: #e20202;
  background: #fffbeb;
}

.age-group-number {
  display: block;
  margin-bottom: 4px;
  color: #e8bf31;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.age-group-card h3 {
  margin: 0 0 17px;
  color: #e20202;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.age-group-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.age-group-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 9px 0;
  border-bottom: 1px solid #dfdfdc;
  color: #252b34;
  font-size: 15px;
  line-height: 1.35;
}

.age-group-card li:last-child {
  border-bottom: 0;
}

.age-group-card li span:first-child {
  font-weight: 700;
}

.age-group-card li span:last-child {
  flex-shrink: 0;
  text-align: right;
}

.age-criteria-help {
  margin-top: 28px;
  text-align: center;
}

.age-criteria-help a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 10px 25px;
  border: 2px solid #e20202;
  border-radius: 50px;
  color: #e20202;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.age-criteria-help a:hover {
  background: #e20202;
  color: #fff;
}

.age-criteria-help a:focus-visible {
  outline: 3px solid #fee505;
  outline-offset: 4px;
}

.age-criteria-help p {
  margin: 10px 0 0;
  color: #69717b;
  font-size: 14px;
  line-height: 1.5;
}

/* Age Criteria Page Ends */

/* Admission Requirements Page Starts */

.admission-requirements-section {
  padding: 100px 0;
  background: #fffdf8;
  color: #191919;
  font-family: "Roboto", sans-serif;
}

.admission-requirements-section *,
.admission-requirements-section *::before,
.admission-requirements-section *::after {
  box-sizing: border-box;
}

.requirements-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 65px;
  margin-bottom: 100px;
}

.requirements-label {
  display: inline-block;
  margin-bottom: 17px;
  color: #e20202;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.requirements-intro-content h2,
.requirements-list-heading h2 {
  margin: 0;
  color: #191919;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1.5px;
}

.requirements-intro-content h2 span,
.requirements-list-heading h2 span {
  color: #e20202;
}

.requirements-intro-content>p {
  max-width: 540px;
  margin: 25px 0;
  color: #626873;
  font-size: 17px;
  line-height: 1.8;
}

.requirements-intro-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 520px;
  padding: 17px 20px;
  border-left: 4px solid #fee505;
  border-radius: 0 12px 12px 0;
  background: #fff4d2;
  color: #3b3b3b;
  font-size: 14px;
  line-height: 1.6;
}

.requirements-intro-note i {
  margin-top: 4px;
  color: #e20202;
}

.requirements-intro-image {
  position: relative;
  height: 410px;
  border-radius: 22px;
}

.requirements-intro-image::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -17px;
  bottom: -17px;
  width: 75%;
  height: 75%;
  border-radius: 22px;
  background: #fee505;
}

.requirements-intro-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.requirements-list-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 32px;
}

.requirements-list-heading h2 {
  font-size: clamp(34px, 3.4vw, 48px);
}

.requirements-list-heading p {
  max-width: 320px;
  margin: 0 0 5px;
  color: #626873;
  font-size: 15px;
  line-height: 1.7;
}

.requirements-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.requirements-list li {
  display: flex;
  align-items: center;
  gap: 17px;
  min-height: 84px;
  padding: 15px 19px;
  border: 1px solid #ebe7df;
  border-radius: 13px;
  background: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  box-shadow: 0 8px 24px rgba(25, 25, 25, 0.035);
}

.requirement-number {
  display: flex;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fee505;
  color: #191919;
  font-size: 14px;
  font-weight: 900;
}

.requirements-list li>i {
  margin-left: auto;
  color: #e20202;
  font-size: 17px;
}

.requirements-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 55px;
  padding: 38px 45px;
  border-radius: 20px;
  background: #fee505;
}

.requirements-help span {
  display: block;
  margin-bottom: 8px;
  color: #9c0909;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.requirements-help h3 {
  margin: 0 0 7px;
  color: #191919;
  font-size: 27px;
  font-weight: 900;
}

.requirements-help p {
  margin: 0;
  color: #393939;
  font-size: 15px;
}

.requirements-help-btn {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 50px;
  background: #e20202;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.requirements-help-btn:hover {
  transform: translateY(-3px);
  background: #bd0000;
  color: #ffffff;
}

.requirements-help-btn:focus-visible {
  outline: 3px solid #191919;
  outline-offset: 4px;
}

/* Admission Requirements Page Ends */

/* Online Registration Page Starts */

.online-registration-section {
  padding: 95px 0 105px;
  background: #fffdf8;
  color: #191919;
  font-family: "Roboto", sans-serif;
}

.online-registration-section *,
.online-registration-section *::before,
.online-registration-section *::after {
  box-sizing: border-box;
}

.registration-heading {
  max-width: 850px;
  margin: 0 auto 52px;
  text-align: center;
}

.registration-heading>span {
  display: block;
  margin-bottom: 14px;
  color: #e20202;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.registration-heading h2 {
  margin: 0 0 13px;
  color: #191919;
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1.5px;
}

.registration-heading h2 strong {
  color: #e20202;
  font-weight: 900;
}

.registration-heading p {
  margin: 0;
  color: #626873;
  font-size: 17px;
  line-height: 1.7;
}

.registration-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.55fr);
  align-items: stretch;
  gap: 26px;
}

.registration-info,
.registration-form-card {
  border-radius: 18px;
}

.registration-info {
  padding: 39px 35px;
  background: #fff8e7;
}

.registration-accent {
  display: block;
  width: 55px;
  height: 5px;
  margin-bottom: 22px;
  border-radius: 10px;
  background: #fee505;
}

.registration-info h3,
.registration-form-card h3 {
  margin: 0 0 16px;
  color: #191919;
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 900;
  line-height: 1.2;
}

.registration-info>p {
  margin: 0;
  color: #59616c;
  font-size: 15px;
  line-height: 1.75;
}

.registration-steps {
  display: grid;
  gap: 29px;
  margin: 33px 0 35px;
  padding: 0;
  list-style: none;
}

.registration-steps li {
  display: flex;
  align-items: flex-start;
  gap: 17px;
}

.registration-step-number {
  display: flex;
  flex: 0 0 43px;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: #fee505;
  color: #191919;
  font-size: 17px;
  font-weight: 900;
}

.registration-steps h4 {
  margin: 2px 0 6px;
  color: #191919;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}

.registration-steps p {
  margin: 0;
  color: #626873;
  font-size: 14px;
  line-height: 1.6;
}

.registration-support {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid #e9dfc6;
}

.registration-support i {
  color: #e20202;
  font-size: 27px;
}

.registration-support p {
  margin: 0;
  color: #545c67;
  font-size: 14px;
  line-height: 1.6;
}

.registration-form-card {
  padding: 38px;
  border: 1px solid #ececec;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(25, 25, 25, 0.06);
}

.registration-form-card h3 {
  margin-bottom: 27px;
}

.registration-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 23px 22px;
}

.registration-field {
  min-width: 0;
}

.registration-field-full,
.registration-submit,
.registration-privacy {
  grid-column: 1 / -1;
}

.registration-field label {
  display: block;
  margin-bottom: 9px;
  color: #20242a;
  font-size: 14px;
  font-weight: 700;
}

.registration-field label span {
  color: #e20202;
}

.registration-field input,
.registration-field select {
  display: block;
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid #d9dde3;
  border-radius: 7px;
  outline: none;
  background: #ffffff;
  color: #191919;
  font: inherit;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.registration-field input::placeholder {
  color: #89909a;
}

.registration-field input:focus,
.registration-field select:focus {
  border-color: #e20202;
  box-shadow: 0 0 0 3px rgba(226, 2, 2, 0.1);
}

.registration-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  min-height: 54px;
  margin-top: 4px;
  padding: 10px 20px;
  border: 0;
  border-radius: 8px;
  background: #e20202;
  color: #ffffff;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.registration-submit:hover {
  transform: translateY(-2px);
  background: #bd0000;
}

.registration-submit:focus-visible {
  outline: 3px solid #fee505;
  outline-offset: 3px;
}

.registration-privacy {
  margin: -7px 0 0;
  color: #777e87;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.registration-privacy i {
  margin-right: 6px;
}

/* Online Registration Page Ends */

/* Overview Page Starts */

.academics-overview-section,
.curriculum-philosophy-section {
  color: #191919;
  font-family: "Roboto", sans-serif;
}

.academics-overview-section *,
.academics-overview-section *::before,
.academics-overview-section *::after,
.curriculum-philosophy-section *,
.curriculum-philosophy-section *::before,
.curriculum-philosophy-section *::after {
  box-sizing: border-box;
}

.academics-overview-section {
  padding: 95px 0;
  background: #fffdf8;
}

.curriculum-philosophy-section {
  padding: 95px 0;
  background: #f8f7f3;
}

.academics-overview-grid,
.curriculum-philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 65px;
}

.academics-overview-label {
  display: inline-block;
  margin-bottom: 16px;
  color: #e20202;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.academics-overview-content h2,
.curriculum-philosophy-content h2 {
  margin: 0 0 22px;
  color: #191919;
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -1.4px;
}

.academics-overview-content h2 strong,
.curriculum-philosophy-content h2 strong {
  color: #e20202;
  font-weight: 900;
}

.academics-overview-content>p,
.curriculum-philosophy-content>p {
  margin: 0 0 15px;
  color: #5b626b;
  font-size: 16px;
  line-height: 1.8;
}

.academics-overview-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 35px;
}

.academics-overview-values>div::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: #fee505;
}

.academics-overview-values h3 {
  margin: 0 0 6px;
  color: #191919;
  font-size: 17px;
  font-weight: 800;
}

.academics-overview-values p {
  margin: 0;
  color: #626873;
  font-size: 13px;
  line-height: 1.6;
}

.academics-overview-image {
  position: relative;
  height: 390px;
}

.academics-overview-image::after {
  content: "";
  position: absolute;
  right: -17px;
  bottom: -17px;
  width: 55%;
  height: 58%;
  border-radius: 20px;
  background: #fee505;
}

.academics-overview-image img,
.curriculum-philosophy-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.curriculum-philosophy-image {
  height: 420px;
}

.curriculum-development-list {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.curriculum-development-list li {
  position: relative;
  padding-left: 44px;
}

.curriculum-development-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 27px;
  height: 3px;
  border-radius: 10px;
  background: #fee505;
}

.curriculum-development-list span {
  display: block;
  margin-bottom: 3px;
  color: #191919;
  font-size: 15px;
  font-weight: 800;
}

.curriculum-development-list p {
  margin: 0;
  color: #626873;
  font-size: 13px;
  line-height: 1.6;
}

/* Overview Page Ends */

/* Pre-Primary Page Starts */

.preprimary-section {
  padding: 105px 0 115px;
  background: #fffdf8;
  color: #191919;
  font-family: "Roboto", sans-serif;
}

.preprimary-section *,
.preprimary-section *::before,
.preprimary-section *::after {
  box-sizing: border-box;
}

.preprimary-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 65px;
}

.preprimary-content {
  min-width: 0;
}

.preprimary-eyebrow {
  margin-bottom: 25px;
}

.preprimary-eyebrow span {
  display: block;
  color: #e20202;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.7px;
  text-transform: uppercase;
}

.preprimary-eyebrow::after {
  content: "";
  display: block;
  width: 53px;
  height: 4px;
  margin-top: 12px;
  border-radius: 10px;
  background: #fee505;
}

.preprimary-content h2 {
  margin: 0 0 26px;
  color: #191919;
  font-size: clamp(40px, 4.1vw, 62px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.8px;
}

.preprimary-content h2 strong {
  display: block;
  color: #e20202;
  font-weight: 900;
}

.preprimary-content>p {
  max-width: 620px;
  margin: 0 0 20px;
  color: #4d535c;
  font-size: 16px;
  line-height: 1.8;
}

.preprimary-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 32px;
}

.preprimary-benefit {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 86px;
  padding: 13px;
  border: 1px solid #f1ebdf;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 9px 26px rgba(25, 25, 25, 0.04);
}

.preprimary-benefit span {
  display: flex;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fee505;
  color: #191919;
  font-size: 15px;
  font-weight: 900;
}

.preprimary-benefit h3 {
  margin: 0;
  color: #191919;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.preprimary-visual {
  position: relative;
  min-width: 0;
  padding: 0 17px 17px 0;
}

.preprimary-visual::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 55%;
  border-radius: 24px;
  background: #fee505;
}

.preprimary-image {
  position: relative;
  z-index: 1;
  height: 470px;
  overflow: hidden;
  border-radius: 24px;
}

.preprimary-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.preprimary-image-caption {
  position: absolute;
  z-index: 2;
  bottom: 38px;
  left: 25px;
  max-width: calc(100% - 75px);
  padding: 19px 23px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(25, 25, 25, 0.12);
}

.preprimary-image-caption span {
  display: block;
  width: 38px;
  height: 4px;
  margin-bottom: 12px;
  border-radius: 10px;
  background: #e20202;
}

.preprimary-image-caption p {
  margin: 0;
  color: #191919;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}

/* Pre-Primary Page Ends */

/* Privacy Policy Page Starts */

.privacy-policy-section {
  padding: 90px 0 105px;
  background: #fffdf8;
  color: #191919;
  font-family: "Roboto", sans-serif;
}

.privacy-policy-section *,
.privacy-policy-section *::before,
.privacy-policy-section *::after {
  box-sizing: border-box;
}

.privacy-policy-intro {
  margin-bottom: 42px;
}

.privacy-policy-eyebrow {
  display: block;
  margin-bottom: 12px;
  color: #e20202;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.privacy-policy-intro h1 {
  margin: 0 0 12px;
  color: #191919;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.7px;
}

.privacy-policy-intro h1 strong {
  color: #e20202;
  font-weight: 900;
}

.privacy-policy-intro>p {
  margin: 0 0 14px;
  color: #525965;
  font-size: 17px;
  line-height: 1.7;
}

.privacy-policy-date {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 7px;
  background: #efefef;
  color: #555b63;
  font-size: 13px;
  font-weight: 600;
}

.privacy-policy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  align-items: start;
  gap: 24px;
}

.privacy-policy-nav,
.privacy-policy-content {
  border: 1px solid #eae7e0;
  border-radius: 14px;
  background: #ffffff;
}

.privacy-policy-nav {
  position: sticky;
  top: 25px;
  padding: 28px;
}

.privacy-policy-nav h2 {
  margin: 0 0 17px;
  color: #191919;
  font-size: 20px;
  font-weight: 800;
}

.privacy-policy-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-policy-nav li+li {
  border-top: 1px solid #eeeae3;
}

.privacy-policy-nav a {
  display: block;
  padding: 14px 0 14px 13px;
  border-left: 4px solid transparent;
  color: #4d535d;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.privacy-policy-nav a:hover,
.privacy-policy-nav a:focus-visible {
  border-left-color: #fee505;
  color: #e20202;
}

.privacy-policy-content {
  padding: 39px 45px;
}

.privacy-policy-block {
  scroll-margin-top: 30px;
}

.privacy-policy-block+.privacy-policy-block {
  margin-top: 34px;
  padding-top: 32px;
  border-top: 1px solid #e9e9e9;
}

.privacy-policy-block h2 {
  margin: 0 0 17px;
  color: #191919;
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 900;
  line-height: 1.2;
}

.privacy-policy-block p {
  margin: 0 0 15px;
  color: #505761;
  font-size: 15px;
  line-height: 1.85;
}

.privacy-policy-block p:last-child {
  margin-bottom: 0;
}

.privacy-policy-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding: 22px 27px;
  border: 1px solid #f6d961;
  border-radius: 11px;
  background: #fff9e6;
  color: #191919;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.privacy-policy-help:hover {
  transform: translateY(-2px);
  background: #fff1c5;
  color: #191919;
}

.privacy-policy-help strong,
.privacy-policy-help small {
  display: block;
}

.privacy-policy-help strong {
  margin-bottom: 5px;
  font-size: 17px;
  font-weight: 800;
}

.privacy-policy-help small {
  color: #59616a;
  font-size: 14px;
}

.privacy-policy-help i {
  color: #e20202;
  font-size: 19px;
}

.privacy-policy-help:focus-visible {
  outline: 3px solid #e20202;
  outline-offset: 3px;
}

/* Privacy Policy Page Ends */

/* Terms & Conditions Page Starts */

.terms-section {
  padding: 90px 0 105px;
  background: #fffdf8;
  color: #191919;
  font-family: "Roboto", sans-serif;
}

.terms-section *,
.terms-section *::before,
.terms-section *::after {
  box-sizing: border-box;
}

.terms-intro {
  max-width: 850px;
  margin: 0 auto 43px;
  text-align: center;
}

.terms-eyebrow {
  display: block;
  margin-bottom: 13px;
  color: #e20202;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.terms-intro h1 {
  margin: 0 0 12px;
  color: #191919;
  font-size: clamp(42px, 5vw, 65px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.7px;
}

.terms-intro h1 strong {
  color: #e20202;
  font-weight: 900;
}

.terms-intro p {
  margin: 0 0 16px;
  color: #626873;
  font-size: 17px;
  line-height: 1.7;
}

.terms-date {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 30px;
  background: #eeeeee;
  color: #555b63;
  font-size: 13px;
  font-weight: 600;
}

.terms-layout {
  display: grid;
  grid-template-columns: minmax(220px, 285px) minmax(0, 1fr);
  align-items: start;
  gap: 24px;
}

.terms-nav,
.terms-content {
  border: 1px solid #eae7e0;
  border-radius: 14px;
  background: #ffffff;
}

.terms-nav {
  position: sticky;
  top: 25px;
  padding: 28px;
}

.terms-nav h2 {
  margin: 0 0 18px;
  color: #191919;
  font-size: 21px;
  font-weight: 800;
}

.terms-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.terms-nav li+li {
  border-top: 1px solid #eeeae3;
}

.terms-nav a {
  display: block;
  padding: 14px 0 14px 13px;
  border-left: 4px solid transparent;
  color: #4d535d;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.terms-nav a:hover,
.terms-nav a:focus-visible {
  border-left-color: #fee505;
  color: #e20202;
}

.terms-content {
  padding: 39px 45px;
}

.terms-lead {
  margin: 0 0 26px;
  color: #525963;
  font-size: 16px;
  line-height: 1.8;
}

.terms-block {
  display: grid;
  grid-template-columns: 55px minmax(0, 1fr);
  gap: 15px;
  padding: 27px 0;
  border-top: 1px solid #e9e9e9;
  scroll-margin-top: 30px;
}

.terms-number {
  color: #e20202;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.terms-block h2 {
  margin: 0 0 12px;
  color: #191919;
  font-size: clamp(23px, 2.2vw, 29px);
  font-weight: 900;
  line-height: 1.25;
}

.terms-block p {
  margin: 0;
  color: #535a64;
  font-size: 15px;
  line-height: 1.85;
}

.terms-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 12px;
  padding: 22px 27px;
  border: 1px solid #f5dc72;
  border-radius: 11px;
  background: #fff7d9;
  color: #191919;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.terms-help:hover {
  transform: translateY(-2px);
  background: #fff0bc;
  color: #191919;
}

.terms-help strong,
.terms-help small {
  display: block;
}

.terms-help strong {
  margin-bottom: 5px;
  font-size: 17px;
  font-weight: 800;
}

.terms-help small {
  color: #59616a;
  font-size: 14px;
  line-height: 1.5;
}

.terms-help i {
  color: #e20202;
  font-size: 19px;
}

.terms-help:focus-visible {
  outline: 3px solid #e20202;
  outline-offset: 3px;
}

/* Terms & Conditions Page Ends */

/* Message From Managing Director Page Starts */

.director-message-section {
  padding: 100px 0 110px;
  background: #fffdf8;
  color: #191919;
  font-family: "Roboto", sans-serif;
}

.director-message-section *,
.director-message-section *::before,
.director-message-section *::after {
  box-sizing: border-box;
}

.director-message-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 70px;
}

.director-message-content {
  min-width: 0;
}

.director-message-eyebrow {
  display: block;
  margin-bottom: 17px;
  color: #e20202;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.director-message-content h2 {
  margin: 0;
  color: #191919;
  font-size: clamp(38px, 3.8vw, 57px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1.6px;
}

.director-message-content h2 strong {
  display: block;
  color: #e20202;
  font-weight: 900;
}

.director-message-line {
  display: block;
  width: 62px;
  height: 4px;
  margin: 24px 0 32px;
  border-radius: 10px;
  background: #fee505;
}

.director-message-body {
  position: relative;
  padding-left: 55px;
}

.director-message-quote {
  position: absolute;
  top: -22px;
  left: 0;
  color: #e20202;
  font-family: Georgia, serif;
  font-size: 93px;
  font-weight: 700;
  line-height: 1;
}

.director-message-body p {
  margin: 0 0 20px;
  color: #444b54;
  font-size: 16px;
  line-height: 1.8;
}

.director-message-body p:last-child {
  margin-bottom: 0;
}

.director-message-signoff {
  max-width: 340px;
  margin-top: 32px;
  padding-top: 21px;
  border-top: 1px solid #d9d9d9;
}

.director-message-signoff strong,
.director-message-signoff span {
  display: block;
}

.director-message-signoff strong {
  margin-bottom: 5px;
  color: #191919;
  font-size: 17px;
  font-weight: 800;
}

.director-message-signoff span {
  color: #626873;
  font-size: 15px;
}

.director-message-visual {
  position: relative;
  min-width: 0;
  padding: 0 20px 20px 0;
}

.director-message-visual::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 65%;
  height: 60%;
  border-radius: 36px;
  background: #fee505;
}

.director-message-image {
  position: relative;
  z-index: 1;
  height: 680px;
  overflow: hidden;
  border-radius: 75px 22px 75px 22px;
}

.director-message-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.director-message-caption {
  position: absolute;
  z-index: 2;
  bottom: 43px;
  left: 24px;
  padding: 20px 25px;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(25, 25, 25, 0.15);
}

.director-message-caption>span {
  display: block;
  width: 43px;
  height: 4px;
  margin-bottom: 11px;
  border-radius: 10px;
  background: #e20202;
}

.director-message-caption p {
  margin: 0;
  color: #191919;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
}

/* Message From Managing Director Page Ends */

/* Mission & Vision Page Starts */

.mission-vision-section {
  padding: 95px 0 105px;
  background: #fffdf8;
  color: #191919;
  font-family: "Roboto", sans-serif;
}

.mission-vision-section *,
.mission-vision-section *::before,
.mission-vision-section *::after {
  box-sizing: border-box;
}

.mission-vision-intro {
  max-width: 680px;
  margin-bottom: 55px;
}

.mission-vision-eyebrow {
  display: block;
  margin-bottom: 15px;
  color: #e20202;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.mission-vision-intro h2 {
  margin: 0 0 18px;
  color: #191919;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1.5px;
}

.mission-vision-intro h2 strong {
  color: #e20202;
  font-weight: 900;
}

.mission-vision-intro p {
  margin: 0;
  color: #535a64;
  font-size: 16px;
  line-height: 1.8;
}

.mission-vision-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 65px;
  margin-bottom: 65px;
}

.mission-vision-text h3 {
  position: relative;
  margin: 0 0 20px;
  padding-left: 31px;
  color: #191919;
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -1px;
}

.mission-vision-text h3::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 5px;
  border-radius: 10px;
  background: #e20202;
}

.mission-vision-text p {
  margin: 0 0 17px 31px;
  color: #535a64;
  font-size: 16px;
  line-height: 1.8;
}

.mission-vision-text p:last-child {
  margin-bottom: 0;
}

.mission-vision-image {
  position: relative;
  height: 365px;
  min-width: 0;
}

.mission-vision-image::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 55%;
  height: 55%;
  border-radius: 20px;
}

.mission-image::after {
  right: -16px;
  bottom: -16px;
  background: #fee505;
}

.vision-image::after {
  top: 16px;
  left: -16px;
  background: #e20202;
}

.mission-vision-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.mission-vision-statement {
  padding: 28px 35px;
  border: 2px solid #fee505;
  border-radius: 16px;
  background: #fffbea;
  text-align: center;
}

.mission-vision-statement p {
  margin: 0;
  color: #191919;
  font-size: clamp(25px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.25;
}

.mission-vision-statement strong {
  color: #e20202;
  font-weight: 900;
}

/* Mission & Vision Page Ends */

/* PLSC Page Starts */

.plsc-intro,
.plsc-learning,
.plsc-approach {
  font-family: "Roboto", sans-serif;
  color: #191919;
}

.plsc-intro *,
.plsc-learning *,
.plsc-approach * {
  box-sizing: border-box;
}

.plsc-intro {
  padding: 100px 0 90px;
  background: #fffdf8;
}

.plsc-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}

.plsc-eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  color: #e20202;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

.plsc-eyebrow::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 10px;
  background: #fee505;
}

.plsc-intro-content h2,
.plsc-section-heading h2,
.plsc-approach-content h2 {
  margin: 0 0 22px;
  color: #191919;
  font-size: clamp(36px, 3.5vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.6px;
}

.plsc-intro-content h2 span {
  display: block;
  color: #e20202;
}

.plsc-intro-content>p {
  margin: 0 0 16px;
  color: #555a63;
  font-size: 16px;
  line-height: 1.8;
}

.plsc-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 35px;
}

.plsc-highlight {
  padding: 0 17px;
  border-right: 1px solid #dedbd5;
}

.plsc-highlight:first-child {
  padding-left: 0;
}

.plsc-highlight:last-child {
  padding-right: 0;
  border-right: 0;
}

.plsc-highlight strong {
  display: inline-block;
  color: #e20202;
  font-size: 31px;
  font-weight: 900;
  line-height: 1;
}

.plsc-highlight strong::after {
  content: "";
  display: block;
  width: 20px;
  height: 3px;
  margin: 8px 0;
  background: #fee505;
}

.plsc-highlight h3 {
  margin: 0 0 7px;
  font-size: 13px;
  font-weight: 800;
}

.plsc-highlight p {
  margin: 0;
  color: #666a72;
  font-size: 12px;
  line-height: 1.5;
}

.plsc-intro-image,
.plsc-approach-image {
  overflow: hidden;
  border-radius: 24px;
}

.plsc-intro-image img,
.plsc-approach-image img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.plsc-learning {
  padding: 85px 0 95px;
  background: #fff9e9;
}

.plsc-section-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 55px;
  align-items: end;
  margin-bottom: 35px;
}

.plsc-section-heading h2 {
  margin-bottom: 0;
}

.plsc-section-heading>p {
  margin: 0 0 5px;
  color: #555a63;
  font-size: 16px;
  line-height: 1.75;
}

.plsc-subject-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.plsc-subject-card {
  height: 100%;
  padding: 30px 25px 34px;
  border: 1px solid #f0ece3;
  border-radius: 18px;
  background: #fff;
}

.plsc-subject-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #fee505;
  color: #e20202;
  font-size: 24px;
}

.plsc-subject-icon-red {
  background: #e20202;
  color: #fff;
}

.plsc-subject-card h3 {
  margin: 0 0 15px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.plsc-subject-card p {
  margin: 0;
  color: #60646d;
  font-size: 14px;
  line-height: 1.75;
}

.plsc-approach {
  padding: 100px 0;
  background: #fffdf8;
}

.plsc-approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}

.plsc-approach-image img {
  height: 610px;
}

.plsc-approach-content h2 {
  margin-bottom: 16px;
}

.plsc-approach-lead {
  margin: 0 0 28px;
  color: #555a63;
  font-size: 16px;
  line-height: 1.75;
}

.plsc-approach-list {
  display: grid;
  gap: 22px;
}

.plsc-approach-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  align-items: start;
}

.plsc-approach-item>span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #e20202;
  border-radius: 50%;
  color: #e20202;
  font-size: 15px;
  font-weight: 800;
}

.plsc-approach-item h3 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 800;
}

.plsc-approach-item p {
  margin: 0;
  color: #60646d;
  font-size: 14px;
  line-height: 1.65;
}

.plsc-progress {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 55px;
  padding: 28px 32px;
  border-radius: 18px;
  background: #fff0ed;
}

.plsc-progress-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e20202;
  color: #fff;
  font-size: 28px;
}

.plsc-progress-content h2 {
  margin: 0 0 7px;
  font-size: 23px;
  font-weight: 900;
}

.plsc-progress-content p {
  max-width: 720px;
  margin: 0;
  color: #555a63;
  font-size: 14px;
  line-height: 1.7;
}

.plsc-progress-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 49px;
  padding: 0 24px;
  border: 1.5px solid #e20202;
  border-radius: 50px;
  color: #e20202;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.plsc-progress-link:hover {
  background: #e20202;
  color: #fff;
}

.plsc-progress-link:focus-visible {
  outline: 3px solid #fee505;
  outline-offset: 3px;
}

/* PLSC Page Ends */

/* Responsive rules merged into the shared custom stylesheet */

html,
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

.container,
.container-fluid {
  min-width: 0;
}

[class*="col-"] {
  min-width: 0;
}

header {
  z-index: 100;
}

header .menuSec {
  max-width: calc(100% - 32px);
}

header .slicknav_menu {
  display: none;
}

@media only screen and (min-width: 1366px) and (max-width: 1920px) {
  .container {
    max-width: 1320px;
  }

  header .menuSec {
    width: calc(100% - 60px);
    max-width: 1450px;
  }

  .banner-txt {
    max-width: 700px;
  }
}

@media only screen and (min-width: 1501px) and (max-width: 1600px) {
  header .menuSec {
    max-width: 1380px;
  }

  header .header-logo img {
    width: 98px;
  }

  header .menu-box>ul {
    gap: 19px;
  }

  .container {
    max-width: 1250px;
  }

  .discover-left-heading h3 {
    font-size: 46px;
    line-height: 1.08;
  }

  .about-img {
    height: 620px;
  }

  .gga-facilities-grid,
  .gga-sports-intro-grid,
  .resource-intro,
  .plsc-intro-grid {
    gap: 42px;
  }
}

@media only screen and (min-width: 1401px) and (max-width: 1500px) {
  header .menuSec {
    max-width: 1320px;
  }

  header .menu-box>ul {
    gap: 16px;
  }

  header .menu-box>ul>li>a {
    font-size: 12px;
  }

  .container {
    max-width: 1200px;
  }

  .discover-left-heading h3 {
    font-size: 44px;
  }

  .about-img {
    height: 600px;
  }

  .online-admission-left {
    min-height: 680px;
  }
}

@media only screen and (min-width: 1301px) and (max-width: 1400px) {
  header .menuSec {
    max-width: 1240px;
    padding-right: 14px;
    padding-left: 14px;
  }

  header .menu-box>ul {
    gap: 13px;
  }

  header .menu-box>ul>li>a {
    font-size: 11px;
  }

  header .header-logo img {
    width: 92px;
  }

  .container {
    max-width: 1140px;
  }

  .banner-txt {
    width: 62%;
  }

  .discover-left-heading h3 {
    font-size: 42px;
  }

  .about-img {
    height: 570px;
  }

  .gga-academics-overview-grid,
  .gga-facilities-grid,
  .gga-sports-intro-grid,
  .resource-intro,
  .plsc-intro-grid {
    gap: 34px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  header .menuSec {
    width: calc(100% - 34px);
    max-width: 1160px;
  }

  header .menu-box>ul {
    gap: 11px;
  }

  header .menu-box>ul>li>a {
    font-size: 10px;
  }

  header .header-logo img {
    width: 86px;
  }

  .container {
    max-width: 1100px;
  }

  .banner-txt {
    width: 64%;
    max-width: 650px;
  }

  .banner-txt h1 {
    font-size: clamp(48px, 5vw, 66px);
  }

  .discover-left-heading h3 {
    font-size: 40px;
  }

  .about-img {
    height: 540px;
  }

  .academy-collage {
    margin-right: 24px;
  }

  .online-admission-left {
    min-height: 650px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header {
    top: 12px;
  }

  header .menuSec {
    width: calc(100% - 28px);
    max-width: 960px;
    padding: 8px 15px;
    border-radius: 14px;
  }

  header .menuSec>.container {
    max-width: 100%;
  }

  header .menuSec .row {
    align-items: center;
  }

  header .menuSec .row>div:first-child {
    flex: 0 0 42%;
    max-width: 42%;
  }

  header .menuSec .row>div:nth-child(2) {
    display: block !important;
    flex: 0 0 58%;
    max-width: 58%;
  }

  header .header-logo img {
    width: 78px;
    height: auto;
  }

  header .menu-box>ul {
    display: none !important;
  }

  header .slicknav_menu {
    position: relative;
    display: block !important;
    padding: 0 !important;
    background: transparent !important;
    text-align: right;
  }

  header .slicknav_btn {
    display: inline-flex !important;
    float: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 38px;
    margin: 0 !important;
    padding: 7px 9px !important;
    border-radius: 8px !important;
    background: #191919 !important;
  }

  header .slicknav_nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 200;
    width: min(290px, calc(100vw - 40px));
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding: 8px 0 !important;
    border-top: 3px solid #fee505;
    border-radius: 10px;
    background: #191919 !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
  }

  header .slicknav_nav a {
    display: block;
    margin: 0 !important;
    padding: 10px 16px !important;
    color: #fff !important;
    font-size: 13px;
    line-height: 1.35;
  }

  section.banner-sec {
    height: 680px;
    min-height: 680px;
  }

  section.banner-sec:not(.about-sec) .banner_slider,
  section.banner-sec:not(.about-sec) .banner_slider .slick-list,
  section.banner-sec:not(.about-sec) .banner_slider .slick-track,
  section.banner-sec:not(.about-sec) .banner_slider .slick-slide,
  section.banner-sec:not(.about-sec) .banner_slider .slick-slide>div,
  section.banner-sec:not(.about-sec) .banner-slide,
  section.banner-sec:not(.about-sec) .banner-main,
  section.banner-sec:not(.about-sec) .banner-img-main,
  section.banner-sec:not(.about-sec) .banner-img {
    height: 680px !important;
    min-height: 680px !important;
  }

  section.banner-sec.about-sec {
    height: 560px;
    min-height: 560px;
  }

  section.banner-sec.about-sec .banner_slider,
  section.banner-sec.about-sec .banner_slider .slick-list,
  section.banner-sec.about-sec .banner_slider .slick-track,
  section.banner-sec.about-sec .banner_slider .slick-slide,
  section.banner-sec.about-sec .banner_slider .slick-slide>div,
  section.banner-sec.about-sec .banner-slide,
  section.banner-sec.about-sec .banner-main,
  section.banner-sec.about-sec .banner-img-main,
  section.banner-sec.about-sec .banner-img {
    height: 560px !important;
    min-height: 560px !important;
  }

  .banner-txt-main {
    padding-top: 85px;
  }

  .banner-txt {
    width: 68%;
    max-width: 620px;
    gap: 15px;
  }

  .banner-txt h1 {
    font-size: clamp(46px, 5.4vw, 64px);
  }

  .banner-txt p {
    width: 100%;
    font-size: 16px;
  }

  .banner_slider button.slick-prev.slick-arrow {
    left: 18px;
  }

  .banner_slider button.slick-next.slick-arrow {
    right: 18px;
  }

  .discover-left-main,
  .discover-card-txt {
    height: auto !important;
    min-height: 0;
  }

  .discover-left {
    min-height: 420px;
    height: auto !important;
  }

  .about-img {
    height: 500px;
  }

  .about-txt-main {
    width: 100%;
  }

  .about-bottom-main {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 210px;
  }

  .about-bottom-txt-img-main {
    height: auto !important;
    min-height: 210px;
  }

  .online-admission-left {
    height: auto !important;
    min-height: 540px;
  }

  .online-admission-left-heading,
  .online-admission-left-txt {
    width: 100%;
  }

  .academy-about .academy-intro-row,
  .gga-academics-overview-grid,
  .gga-academics-approach-grid,
  .gga-facilities-grid,
  .gga-sports-intro-grid,
  .resource-intro,
  .admissions-intro,
  .age-criteria-intro,
  .requirements-intro,
  .academics-overview-grid,
  .curriculum-philosophy-grid,
  .preprimary-layout,
  .director-message-layout,
  .mission-vision-row,
  .plsc-intro-grid,
  .plsc-approach-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 30px;
  }

  .academy-about .academy-intro-row,
  .contact-page-section .row,
  .feedback-page-section .row,
  .careers-page-section .row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    row-gap: 28px;
  }

  .academy-collage,
  .gga-academics-overview-visual,
  .gga-academics-approach-visual,
  .gga-facility-slider,
  .gga-sports-intro-visual,
  .resource-visual,
  .admissions-image,
  .age-criteria-visual,
  .requirements-image,
  .academics-overview-image,
  .curriculum-philosophy-image,
  .preprimary-image,
  .director-message-image,
  .mission-vision-image,
  .plsc-intro-visual,
  .plsc-approach-visual {
    width: 100%;
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
  }

  .gga-facility-slider,
  .gga-facility-slider .slick-list,
  .gga-facility-slider .slick-track,
  .gga-facility-slider .slick-slide,
  .gga-facility-slider .slick-slide>div,
  .gga-facility-slide,
  .gga-facility-slide img {
    height: 300px !important;
    min-height: 300px !important;
  }

  .resource-visual,
  .requirements-image,
  .director-message-image {
    height: auto;
    min-height: 360px;
  }

  .resource-visual img,
  .requirements-image img,
  .director-message-image img {
    height: 100%;
    min-height: 360px;
    object-fit: cover;
  }

  .procedures-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 48px;
  }

  .procedures-steps::before {
    display: none;
  }

  .age-groups-grid,
  .plsc-subject-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .registration-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .registration-form .registration-field-wide {
    grid-column: 1 / -1;
  }

  .privacy-layout,
  .terms-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
  }

  .privacy-sidebar,
  .terms-sidebar {
    position: static;
  }

  .footer-main-row {
    row-gap: 32px;
  }

  .footer-main-row>[class*="col-"] {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .footer-top {
    padding-right: 28px;
    padding-left: 28px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  header {
    top: 10px;
  }

  header .menuSec {
    width: calc(100% - 24px);
    max-width: 744px;
    padding: 8px 14px;
    border-radius: 13px;
  }

  header .menuSec>.container {
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  header .menuSec .row>div:first-child {
    flex: 0 0 45%;
    max-width: 45%;
  }

  header .menuSec .row>div:nth-child(2) {
    display: block !important;
    flex: 0 0 55%;
    max-width: 55%;
  }

  header .header-logo img {
    width: 74px;
  }

  header .menu-box>ul {
    display: none !important;
  }

  header .slicknav_menu {
    position: relative;
    display: block !important;
    padding: 0 !important;
    background: transparent !important;
    text-align: right;
  }

  header .slicknav_btn {
    display: inline-flex !important;
    float: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 36px;
    margin: 0 !important;
    padding: 7px 8px !important;
    border-radius: 8px !important;
    background: #191919 !important;
  }

  header .slicknav_nav {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    z-index: 200;
    width: min(280px, calc(100vw - 34px));
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    padding: 7px 0 !important;
    border-top: 3px solid #fee505;
    border-radius: 10px;
    background: #191919 !important;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .24);
  }

  header .slicknav_nav a {
    display: block;
    padding: 9px 14px !important;
    color: #fff !important;
    font-size: 12px;
  }

  section.banner-sec {
    height: 640px;
    min-height: 640px;
  }

  section.banner-sec:not(.about-sec) .banner_slider,
  section.banner-sec:not(.about-sec) .banner_slider .slick-list,
  section.banner-sec:not(.about-sec) .banner_slider .slick-track,
  section.banner-sec:not(.about-sec) .banner_slider .slick-slide,
  section.banner-sec:not(.about-sec) .banner_slider .slick-slide>div,
  section.banner-sec:not(.about-sec) .banner-slide,
  section.banner-sec:not(.about-sec) .banner-main,
  section.banner-sec:not(.about-sec) .banner-img-main,
  section.banner-sec:not(.about-sec) .banner-img {
    height: 640px !important;
    min-height: 640px !important;
  }

  section.banner-sec.about-sec {
    height: 500px;
    min-height: 500px;
  }

  section.banner-sec.about-sec .banner_slider,
  section.banner-sec.about-sec .banner_slider .slick-list,
  section.banner-sec.about-sec .banner_slider .slick-track,
  section.banner-sec.about-sec .banner_slider .slick-slide,
  section.banner-sec.about-sec .banner_slider .slick-slide>div,
  section.banner-sec.about-sec .banner-slide,
  section.banner-sec.about-sec .banner-main,
  section.banner-sec.about-sec .banner-img-main,
  section.banner-sec.about-sec .banner-img {
    height: 500px !important;
    min-height: 500px !important;
  }

  .banner-container {
    padding-right: 34px;
    padding-left: 34px;
  }

  .banner-txt-main {
    padding-top: 72px;
  }

  .banner-txt {
    width: 76%;
    max-width: 560px;
    gap: 14px;
  }

  .banner-txt h1 {
    font-size: clamp(42px, 6vw, 58px);
  }

  .banner-txt p {
    width: 100%;
    font-size: 15px;
  }

  .banner-btn {
    min-height: 48px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .banner_slider button.slick-prev.slick-arrow {
    left: 12px;
  }

  .banner_slider button.slick-next.slick-arrow {
    right: 12px;
  }

  .discover-left-main,
  .discover-card-txt {
    height: auto !important;
    min-height: 0;
  }

  .discover-left {
    min-height: 380px;
    height: auto !important;
  }

  .discover-left-heading h3 {
    font-size: 40px;
    line-height: 1.08;
  }

  .discover-left-img {
    width: 135px;
    height: 135px;
  }

  .about-img {
    height: 430px;
  }

  .about-txt-main {
    width: 100%;
  }

  .about-bottom-main {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 200px;
  }

  .about-bottom-txt-img-main {
    height: auto !important;
    min-height: 200px;
  }

  .online-admission-left {
    height: auto !important;
    min-height: 500px;
  }

  .online-admission-left-heading,
  .online-admission-left-txt {
    width: 100%;
  }

  .online-admission-left-list-mian {
    flex-direction: column;
    gap: 12px;
  }

  .academy-about .academy-intro-row,
  .gga-academics-overview-grid,
  .gga-academics-approach-grid,
  .gga-facilities-grid,
  .gga-sports-intro-grid,
  .resource-intro,
  .admissions-intro,
  .age-criteria-intro,
  .requirements-intro,
  .academics-overview-grid,
  .curriculum-philosophy-grid,
  .preprimary-layout,
  .director-message-layout,
  .mission-vision-row,
  .plsc-intro-grid,
  .plsc-approach-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 26px;
  }

  .academy-about .academy-intro-row,
  .contact-page-section .row,
  .feedback-page-section .row,
  .careers-page-section .row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    row-gap: 24px;
  }

  .academy-collage,
  .gga-academics-overview-visual,
  .gga-academics-approach-visual,
  .gga-facility-slider,
  .gga-sports-intro-visual,
  .resource-visual,
  .admissions-image,
  .age-criteria-visual,
  .requirements-image,
  .academics-overview-image,
  .curriculum-philosophy-image,
  .preprimary-image,
  .director-message-image,
  .mission-vision-image,
  .plsc-intro-visual,
  .plsc-approach-visual {
    width: 100%;
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
  }

  .gga-facility-slider,
  .gga-facility-slider .slick-list,
  .gga-facility-slider .slick-track,
  .gga-facility-slider .slick-slide,
  .gga-facility-slider .slick-slide>div,
  .gga-facility-slide,
  .gga-facility-slide img {
    height: 280px !important;
    min-height: 280px !important;
  }

  .resource-visual,
  .requirements-image,
  .director-message-image {
    height: auto;
    min-height: 320px;
  }

  .resource-visual img,
  .requirements-image img,
  .director-message-image img {
    min-height: 320px;
    object-fit: cover;
  }

  .procedures-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 46px;
  }

  .procedures-steps::before {
    display: none;
  }

  .age-groups-grid,
  .plsc-subject-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .registration-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .registration-form .registration-field-wide {
    grid-column: 1 / -1;
  }

  .privacy-layout,
  .terms-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .privacy-sidebar,
  .terms-sidebar {
    position: static;
  }

  .footer-main-row {
    row-gap: 28px;
  }

  .footer-main-row>[class*="col-"] {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .footer-top {
    padding: 20px 24px;
  }

  .footer-top-txt-main {
    align-items: flex-start;
    gap: 20px;
  }
}

@media only screen and (min-width: 520px) and (max-width: 767px) {
  header {
    top: 8px;
  }

  header .menuSec {
    width: calc(100% - 20px);
    max-width: 747px;
    padding: 7px 12px;
    border-radius: 12px;
  }

  header .menuSec>.container {
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  header .menuSec .row>div:first-child {
    flex: 0 0 48%;
    max-width: 48%;
  }

  header .menuSec .row>div:nth-child(2) {
    display: block !important;
    flex: 0 0 52%;
    max-width: 52%;
  }

  header .header-logo img {
    width: 68px;
  }

  header .menu-box>ul {
    display: none !important;
  }

  header .slicknav_menu {
    position: relative;
    display: block !important;
    padding: 0 !important;
    background: transparent !important;
    text-align: right;
  }

  header .slicknav_btn {
    display: inline-flex !important;
    float: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 34px;
    margin: 0 !important;
    padding: 6px 8px !important;
    border-radius: 7px !important;
    background: #191919 !important;
  }

  header .slicknav_nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 200;
    width: min(270px, calc(100vw - 26px));
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    padding: 6px 0 !important;
    border-top: 3px solid #fee505;
    border-radius: 9px;
    background: #191919 !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
  }

  header .slicknav_nav a {
    padding: 9px 13px !important;
    color: #fff !important;
    font-size: 12px;
  }

  section.banner-sec {
    height: 600px;
    min-height: 600px;
  }

  section.banner-sec:not(.about-sec) .banner_slider,
  section.banner-sec:not(.about-sec) .banner_slider .slick-list,
  section.banner-sec:not(.about-sec) .banner_slider .slick-track,
  section.banner-sec:not(.about-sec) .banner_slider .slick-slide,
  section.banner-sec:not(.about-sec) .banner_slider .slick-slide>div,
  section.banner-sec:not(.about-sec) .banner-slide,
  section.banner-sec:not(.about-sec) .banner-main,
  section.banner-sec:not(.about-sec) .banner-img-main,
  section.banner-sec:not(.about-sec) .banner-img {
    height: 600px !important;
    min-height: 600px !important;
  }

  section.banner-sec.about-sec {
    height: 430px;
    min-height: 430px;
  }

  section.banner-sec.about-sec .banner_slider,
  section.banner-sec.about-sec .banner_slider .slick-list,
  section.banner-sec.about-sec .banner_slider .slick-track,
  section.banner-sec.about-sec .banner_slider .slick-slide,
  section.banner-sec.about-sec .banner_slider .slick-slide>div,
  section.banner-sec.about-sec .banner-slide,
  section.banner-sec.about-sec .banner-main,
  section.banner-sec.about-sec .banner-img-main,
  section.banner-sec.about-sec .banner-img {
    height: 430px !important;
    min-height: 430px !important;
  }

  .banner-container {
    padding-right: 22px;
    padding-left: 22px;
  }

  .banner-txt-main {
    align-items: flex-start;
    padding-top: 105px;
  }

  .banner-txt {
    width: 100%;
    max-width: 540px;
    gap: 12px;
  }

  .banner-subheading h5 {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .banner-txt h1 {
    max-width: 480px;
    font-size: clamp(36px, 8vw, 52px);
    line-height: 1.04;
  }

  .banner-txt p {
    width: 100%;
    font-size: 14px;
    line-height: 1.5;
  }

  .banner-btn-main {
    gap: 9px;
  }

  .banner-btn {
    min-height: 44px;
    padding-right: 17px;
    padding-left: 17px;
    font-size: 12px;
  }

  .banner_slider button.slick-prev.slick-arrow,
  .banner_slider button.slick-next.slick-arrow {
    display: none !important;
  }

  .banner_slider .slick-dots {
    bottom: 16px;
  }

  .discover-left-main,
  .discover-card-txt {
    height: auto !important;
    min-height: 0;
  }

  .discover-left {
    min-height: 350px;
    height: auto !important;
    padding: 24px;
  }

  .discover-left-heading h3 {
    font-size: 36px;
    line-height: 1.08;
  }

  .discover-left-img {
    width: 110px;
    height: 110px;
  }

  .about-img {
    height: 360px;
  }

  .about-txt-main {
    width: 100%;
  }

  .about-txt h2,
  .about-heading h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  .about-counter {
    gap: 15px;
  }

  .about-counter h5 {
    font-size: 30px;
  }

  .about-bottom-main {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 190px;
  }

  .about-bottom-txt-img-main {
    height: auto !important;
    min-height: 190px;
    padding: 20px;
  }

  .about-bottom-txt {
    width: calc(100% - 60px);
    padding-left: 12px;
  }

  .about-bottom-img-ex {
    right: 5px;
    bottom: 5px;
    width: 100px;
    height: 100px;
    opacity: .17;
  }

  .chooes-card-txt {
    height: auto !important;
  }

  .online-admission-left {
    height: auto !important;
    min-height: 420px;
  }

  .online-admission-left-heading,
  .online-admission-left-txt {
    width: 100%;
  }

  .online-admission-left-list-mian {
    flex-direction: column;
    gap: 10px;
  }

  .academy-about .academy-intro-row,
  .gga-academics-overview-grid,
  .gga-academics-approach-grid,
  .gga-facilities-grid,
  .gga-sports-intro-grid,
  .resource-intro,
  .admissions-intro,
  .age-criteria-intro,
  .requirements-intro,
  .academics-overview-grid,
  .curriculum-philosophy-grid,
  .preprimary-layout,
  .director-message-layout,
  .mission-vision-row,
  .plsc-intro-grid,
  .plsc-approach-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 22px;
  }

  .academy-about .academy-intro-row,
  .contact-page-section .row,
  .feedback-page-section .row,
  .careers-page-section .row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    row-gap: 20px;
  }

  .gga-academics-overview-visual,
  .gga-academics-approach-visual,
  .gga-sports-intro-visual,
  .resource-visual,
  .admissions-image,
  .age-criteria-visual,
  .requirements-image,
  .academics-overview-image,
  .curriculum-philosophy-image,
  .preprimary-image,
  .director-message-image,
  .mission-vision-image,
  .plsc-intro-visual,
  .plsc-approach-visual {
    width: 100%;
    max-width: 560px;
    height: auto;
    min-height: 0;
    margin: 0 auto;
  }

  .gga-facility-slider,
  .gga-facility-slider .slick-list,
  .gga-facility-slider .slick-track,
  .gga-facility-slider .slick-slide,
  .gga-facility-slider .slick-slide>div,
  .gga-facility-slide,
  .gga-facility-slide img {
    height: 250px !important;
    min-height: 250px !important;
  }

  .resource-visual,
  .requirements-image,
  .director-message-image {
    min-height: 270px;
  }

  .resource-visual img,
  .requirements-image img,
  .director-message-image img {
    min-height: 270px;
    object-fit: cover;
  }

  .procedures-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 14px;
  }

  .procedures-steps::before {
    display: none;
  }

  .procedure-step {
    min-height: 210px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .procedure-step h2 {
    font-size: 17px;
  }

  .procedure-step p {
    font-size: 13px;
  }

  .procedures-image,
  .procedures-contact {
    min-height: 270px;
  }

  .age-groups-grid,
  .plsc-subject-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .registration-form {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .registration-form .registration-field-wide {
    grid-column: auto;
  }

  .privacy-layout,
  .terms-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .privacy-sidebar,
  .terms-sidebar {
    position: static;
  }

  .footer-main-row {
    row-gap: 24px;
  }

  .footer-main-row>[class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .footer-top {
    padding: 20px;
  }

  .footer-top-txt-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer-logo-img img {
    width: 120px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media only screen and (min-width: 300px) and (max-width: 519px) {
  header {
    top: 6px;
  }

  header .menuSec {
    width: calc(100% - 14px);
    max-width: 505px;
    padding: 6px 9px;
    border-radius: 10px;
  }

  header .menuSec>.container {
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  header .menuSec .row>div:first-child {
    flex: 0 0 52%;
    max-width: 52%;
  }

  header .menuSec .row>div:nth-child(2) {
    display: block !important;
    flex: 0 0 48%;
    max-width: 48%;
  }

  header .header-logo img {
    width: 60px;
  }

  header .menu-box>ul {
    display: none !important;
  }

  header .slicknav_menu {
    position: relative;
    display: block !important;
    padding: 0 !important;
    background: transparent !important;
    text-align: right;
  }

  header .slicknav_btn {
    display: inline-flex !important;
    float: none;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 32px;
    margin: 0 !important;
    padding: 5px 7px !important;
    border-radius: 6px !important;
    background: #191919 !important;
  }

  header .slicknav_nav {
    position: absolute;
    top: calc(100% + 7px);
    right: 0;
    z-index: 200;
    width: min(250px, calc(100vw - 20px));
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    padding: 5px 0 !important;
    border-top: 3px solid #fee505;
    border-radius: 8px;
    background: #191919 !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .28);
  }

  header .slicknav_nav a {
    padding: 8px 11px !important;
    color: #fff !important;
    font-size: 11px;
  }

  section.banner-sec {
    height: 560px;
    min-height: 560px;
  }

  section.banner-sec:not(.about-sec) .banner_slider,
  section.banner-sec:not(.about-sec) .banner_slider .slick-list,
  section.banner-sec:not(.about-sec) .banner_slider .slick-track,
  section.banner-sec:not(.about-sec) .banner_slider .slick-slide,
  section.banner-sec:not(.about-sec) .banner_slider .slick-slide>div,
  section.banner-sec:not(.about-sec) .banner-slide,
  section.banner-sec:not(.about-sec) .banner-main,
  section.banner-sec:not(.about-sec) .banner-img-main,
  section.banner-sec:not(.about-sec) .banner-img {
    height: 560px !important;
    min-height: 560px !important;
  }

  section.banner-sec.about-sec {
    height: 360px;
    min-height: 360px;
  }

  section.banner-sec.about-sec .banner_slider,
  section.banner-sec.about-sec .banner_slider .slick-list,
  section.banner-sec.about-sec .banner_slider .slick-track,
  section.banner-sec.about-sec .banner_slider .slick-slide,
  section.banner-sec.about-sec .banner_slider .slick-slide>div,
  section.banner-sec.about-sec .banner-slide,
  section.banner-sec.about-sec .banner-main,
  section.banner-sec.about-sec .banner-img-main,
  section.banner-sec.about-sec .banner-img {
    height: 360px !important;
    min-height: 360px !important;
  }

  .banner-container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .banner-txt-main {
    align-items: flex-start;
    padding-top: 92px;
  }

  .banner-txt {
    width: 100%;
    max-width: none;
    gap: 10px;
  }

  .banner-subheading {
    gap: 7px;
  }

  .banner-subheading>span {
    width: 24px;
    height: 2px;
  }

  .banner-subheading h5 {
    font-size: 8px;
    letter-spacing: 1px;
  }

  .banner-txt h1 {
    max-width: 285px;
    font-size: clamp(31px, 10vw, 43px);
    line-height: 1.06;
    letter-spacing: -.7px;
  }

  .banner-txt h1 strong::after {
    bottom: -7px;
    width: 48px;
    height: 3px;
  }

  .banner-txt p {
    width: 100%;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.45;
  }

  .banner-btn-main {
    width: 100%;
    gap: 7px;
    margin-top: 3px;
  }

  .banner-btn {
    min-height: 39px;
    padding-right: 12px;
    padding-left: 12px;
    gap: 8px;
    font-size: 10px;
  }

  .banner-btn i {
    font-size: 10px;
  }

  .banner_slider button.slick-prev.slick-arrow,
  .banner_slider button.slick-next.slick-arrow {
    display: none !important;
  }

  .banner_slider .slick-dots {
    bottom: 12px;
    gap: 5px;
  }

  .banner_slider .slick-dots li button {
    width: 7px;
    height: 7px;
  }

  .banner_slider .slick-dots li.slick-active button {
    width: 22px;
  }

  .discover-left-main,
  .discover-card-txt {
    height: auto !important;
    min-height: 0;
  }

  .discover-left {
    min-height: 300px;
    height: auto !important;
    padding: 20px;
  }

  .discover-left-heading h3 {
    max-width: 250px;
    font-size: 32px;
    line-height: 1.06;
  }

  .discover-left-img {
    right: 13px;
    bottom: 13px;
    width: 84px;
    height: 84px;
  }

  .discover-left-txt p,
  .discover-card-txt p {
    font-size: 13px;
    line-height: 1.55;
  }

  .about-img {
    height: 280px;
  }

  .about-txt-main {
    width: 100%;
  }

  .about-heading h2,
  .about-txt h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .about-counter {
    flex-wrap: wrap;
    gap: 14px;
  }

  .about-counter h5 {
    font-size: 25px;
  }

  .about-bottom-main {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 170px;
  }

  .about-bottom-txt-img-main {
    height: auto !important;
    min-height: 170px;
    padding: 16px;
    gap: 8px;
  }

  .about-bottom-txt {
    width: calc(100% - 52px);
    padding-left: 8px;
  }

  .about-bottom-img {
    width: 42px;
    height: 42px;
  }

  .about-bottom-img-ex {
    right: 4px;
    bottom: 4px;
    width: 78px;
    height: 78px;
    opacity: .14;
  }

  .chooes-card-txt {
    height: auto !important;
  }

  .online-admission-left {
    height: auto !important;
    min-height: 360px;
    padding: 22px !important;
  }

  .online-admission-left-heading,
  .online-admission-left-txt {
    width: 100%;
  }

  .online-admission-left-list-mian {
    flex-direction: column;
    gap: 8px;
  }

  .academy-about .academy-intro-row,
  .gga-academics-overview-grid,
  .gga-academics-approach-grid,
  .gga-facilities-grid,
  .gga-sports-intro-grid,
  .resource-intro,
  .admissions-intro,
  .age-criteria-intro,
  .requirements-intro,
  .academics-overview-grid,
  .curriculum-philosophy-grid,
  .preprimary-layout,
  .director-message-layout,
  .mission-vision-row,
  .plsc-intro-grid,
  .plsc-approach-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px;
  }

  .academy-about .academy-intro-row,
  .contact-page-section .row,
  .feedback-page-section .row,
  .careers-page-section .row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    row-gap: 18px;
  }

  .sec {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .academy-collage,
  .gga-academics-overview-visual,
  .gga-academics-approach-visual,
  .gga-facility-slider,
  .gga-sports-intro-visual,
  .resource-visual,
  .admissions-image,
  .age-criteria-visual,
  .requirements-image,
  .academics-overview-image,
  .curriculum-philosophy-image,
  .preprimary-image,
  .director-message-image,
  .mission-vision-image,
  .plsc-intro-visual,
  .plsc-approach-visual {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    margin: 0 auto;
  }

  .academy-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    margin-right: 0;
  }

  .gga-facility-slider,
  .gga-facility-slider .slick-list,
  .gga-facility-slider .slick-track,
  .gga-facility-slider .slick-slide,
  .gga-facility-slider .slick-slide>div,
  .gga-facility-slide,
  .gga-facility-slide img {
    height: 210px !important;
    min-height: 210px !important;
  }

  .resource-visual,
  .requirements-image,
  .director-message-image {
    min-height: 220px;
  }

  .resource-visual img,
  .requirements-image img,
  .director-message-image img {
    min-height: 220px;
    object-fit: cover;
  }

  .procedures-heading {
    margin-bottom: 45px;
  }

  .procedures-heading h1 {
    font-size: 34px;
  }

  .procedures-heading p {
    font-size: 14px;
  }

  .procedures-steps {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .procedures-steps::before {
    display: none;
  }

  .procedure-step {
    min-height: 190px;
    padding: 42px 18px 20px;
  }

  .procedure-step h2 {
    font-size: 18px;
  }

  .procedures-bottom {
    margin-top: 30px;
  }

  .procedures-image,
  .procedures-contact {
    min-height: 220px;
  }

  .age-groups-grid,
  .plsc-subject-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .registration-form {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .registration-form .registration-field-wide {
    grid-column: auto;
  }

  .privacy-layout,
  .terms-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .privacy-sidebar,
  .terms-sidebar {
    position: static;
  }

  .privacy-content,
  .terms-content {
    min-width: 0;
  }

  .footer-main-row {
    row-gap: 20px;
  }

  .footer-main-row>[class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .footer-top {
    padding: 18px 14px;
  }

  .footer-top-txt-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-logo-img img {
    width: 100px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 11px;
  }
}


/* Corrections for the page-specific selectors used by the inner pages */

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .gga-academics-overview-grid,
  .gga-academics-approach-grid,
  .gga-facilities-grid,
  .gga-sports-intro-grid,
  .gga-sports-row-grid,
  .resource-intro,
  .admissions-intro,
  .age-criteria-intro,
  .requirements-intro,
  .registration-layout,
  .academics-overview-grid,
  .curriculum-philosophy-grid,
  .preprimary-layout,
  .director-message-layout,
  .mission-vision-row,
  .plsc-intro-grid,
  .plsc-approach-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .gga-academics-overview-image,
  .gga-academics-approach-image,
  .gga-facilities-image,
  .gga-sports-photo,
  .resource-intro-visual,
  .admissions-intro-image,
  .age-criteria-intro-image,
  .requirements-intro-image,
  .preprimary-visual,
  .director-message-visual,
  .mission-vision-image {
    width: 100%;
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
  }

  .gga-academics-overview-image,
  .gga-academics-approach-image {
    height: 320px;
  }

  .gga-facilities-image {
    height: 300px;
  }

  .gga-sports-photo {
    height: 320px;
  }

  .resource-intro-visual {
    height: 360px;
  }

  .admissions-intro-image,
  .age-criteria-intro-image {
    height: 300px;
  }

  .requirements-intro-image {
    height: 330px;
  }

  .preprimary-image {
    height: 350px;
  }

  .director-message-image {
    height: 400px;
  }

  .mission-vision-image {
    height: 320px;
  }

  .contact-page-row {
    row-gap: 28px;
  }

  .contact-form-box,
  .feedback-form-box,
  .careers-form-box {
    height: auto;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .gga-academics-overview-grid,
  .gga-academics-approach-grid,
  .gga-facilities-grid,
  .gga-sports-intro-grid,
  .gga-sports-row-grid,
  .resource-intro,
  .admissions-intro,
  .age-criteria-intro,
  .requirements-intro,
  .registration-layout,
  .academics-overview-grid,
  .curriculum-philosophy-grid,
  .preprimary-layout,
  .director-message-layout,
  .mission-vision-row,
  .plsc-intro-grid,
  .plsc-approach-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .gga-academics-overview-image,
  .gga-academics-approach-image,
  .gga-facilities-image,
  .gga-sports-photo,
  .resource-intro-visual,
  .admissions-intro-image,
  .age-criteria-intro-image,
  .requirements-intro-image,
  .preprimary-visual,
  .director-message-visual,
  .mission-vision-image {
    width: 100%;
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
  }

  .gga-academics-overview-image,
  .gga-academics-approach-image {
    height: 280px;
  }

  .gga-facilities-image {
    height: 280px;
  }

  .gga-sports-photo {
    height: 290px;
  }

  .resource-intro-visual {
    height: 320px;
  }

  .admissions-intro-image,
  .age-criteria-intro-image {
    height: 270px;
  }

  .requirements-intro-image {
    height: 290px;
  }

  .preprimary-image {
    height: 300px;
  }

  .director-message-image {
    height: 320px;
  }

  .mission-vision-image {
    height: 270px;
  }

  .contact-page-row {
    row-gap: 24px;
  }

  .contact-form-box,
  .feedback-form-box,
  .careers-form-box {
    height: auto;
  }
}

@media only screen and (min-width: 520px) and (max-width: 767px) {

  .gga-academics-overview-grid,
  .gga-academics-approach-grid,
  .gga-facilities-grid,
  .gga-sports-intro-grid,
  .gga-sports-row-grid,
  .resource-intro,
  .admissions-intro,
  .age-criteria-intro,
  .requirements-intro,
  .registration-layout,
  .academics-overview-grid,
  .curriculum-philosophy-grid,
  .preprimary-layout,
  .director-message-layout,
  .mission-vision-row,
  .plsc-intro-grid,
  .plsc-approach-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .gga-academics-overview-image,
  .gga-academics-approach-image,
  .gga-facilities-image,
  .gga-sports-photo,
  .resource-intro-visual,
  .admissions-intro-image,
  .age-criteria-intro-image,
  .requirements-intro-image,
  .preprimary-visual,
  .director-message-visual,
  .mission-vision-image {
    width: 100%;
    max-width: 560px;
    height: auto;
    min-height: 0;
    margin-right: auto;
    margin-left: auto;
  }

  .gga-academics-overview-image,
  .gga-academics-approach-image {
    height: 240px;
  }

  .gga-facilities-image {
    height: 250px;
  }

  .gga-sports-photo {
    height: 260px;
  }

  .resource-intro-visual {
    height: 280px;
  }

  .admissions-intro-image,
  .age-criteria-intro-image {
    height: 240px;
  }

  .requirements-intro-image {
    height: 250px;
  }

  .preprimary-image {
    height: 260px;
  }

  .director-message-image {
    height: 280px;
  }

  .mission-vision-image {
    height: 240px;
  }

  .contact-page-row {
    row-gap: 20px;
  }

  .contact-form-box,
  .feedback-form-box,
  .careers-form-box {
    height: auto;
    padding: 26px 20px;
  }
}

@media only screen and (min-width: 300px) and (max-width: 519px) {

  .gga-academics-overview-grid,
  .gga-academics-approach-grid,
  .gga-facilities-grid,
  .gga-sports-intro-grid,
  .gga-sports-row-grid,
  .resource-intro,
  .admissions-intro,
  .age-criteria-intro,
  .requirements-intro,
  .registration-layout,
  .academics-overview-grid,
  .curriculum-philosophy-grid,
  .preprimary-layout,
  .director-message-layout,
  .mission-vision-row,
  .plsc-intro-grid,
  .plsc-approach-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .gga-academics-overview-image,
  .gga-academics-approach-image,
  .gga-facilities-image,
  .gga-sports-photo,
  .resource-intro-visual,
  .admissions-intro-image,
  .age-criteria-intro-image,
  .requirements-intro-image,
  .preprimary-visual,
  .director-message-visual,
  .mission-vision-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    margin-right: auto;
    margin-left: auto;
  }

  .gga-academics-overview-image,
  .gga-academics-approach-image {
    height: 210px;
  }

  .gga-facilities-image {
    height: 220px;
  }

  .gga-sports-photo {
    height: 230px;
  }

  .resource-intro-visual {
    height: 240px;
  }

  .admissions-intro-image,
  .age-criteria-intro-image {
    height: 210px;
  }

  .requirements-intro-image {
    height: 220px;
  }

  .preprimary-image {
    height: 230px;
  }

  .director-message-image {
    height: 240px;
  }

  .mission-vision-image {
    height: 210px;
  }

  .contact-page-row {
    row-gap: 18px;
  }

  .contact-form-box,
  .feedback-form-box,
  .careers-form-box {
    height: auto;
    padding: 22px 14px;
  }
}


@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 520px) and (max-width: 767px),
only screen and (min-width: 300px) and (max-width: 519px) {
  .about-counter-main {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 10px;
  }

  .about-counter {
    min-width: 0;
    width: 100%;
  }

  .about-counter h5 {
    white-space: nowrap;
  }

  .about-counter h6 {
    font-size: clamp(13px, 2.6vw, 18px);
    line-height: 1.3;
  }

  .about-bottom-img {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
  }

  .about-bottom-img img {
    height: 46px;
    width: 46px;
  }
}

@media only screen and (min-width: 300px) and (max-width: 519px) {
  .about-counter-main {
    gap: 7px;
  }

  .about-counter h5 {
    font-size: 23px;
    line-height: 1.05;
  }

  .about-counter h6 {
    font-size: 12px;
  }

  .about-bottom-img {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .about-bottom-img img {
    height: 40px;
    width: 40px;
  }
}

/* Final mobile fallback: keeps the home layout in normal document flow */

@media only screen and (max-width: 767px) {

  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  section.banner-sec {
    height: 560px !important;
    min-height: 560px !important;
  }

  section.banner-sec .banner_slider,
  section.banner-sec .banner_slider .slick-list,
  section.banner-sec .banner_slider .slick-track,
  section.banner-sec .banner_slider .slick-slide,
  section.banner-sec .banner_slider .slick-slide>div,
  section.banner-sec .banner-slide,
  section.banner-sec .banner-main,
  section.banner-sec .banner-img-main,
  section.banner-sec .banner-img {
    height: 560px !important;
    min-height: 560px !important;
  }

  section.banner-sec.about-sec,
  section.banner-sec.about-sec .banner_slider,
  section.banner-sec.about-sec .banner_slider .slick-list,
  section.banner-sec.about-sec .banner_slider .slick-track,
  section.banner-sec.about-sec .banner_slider .slick-slide,
  section.banner-sec.about-sec .banner_slider .slick-slide>div,
  section.banner-sec.about-sec .banner-slide,
  section.banner-sec.about-sec .banner-main,
  section.banner-sec.about-sec .banner-img-main,
  section.banner-sec.about-sec .banner-img {
    height: 360px !important;
    min-height: 360px !important;
  }

  .discover-left-main {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin-bottom: 20px !important;
  }

  .discover-left {
    display: flex !important;
    width: 100% !important;
    height: auto !important;
    min-height: 300px !important;
    padding: 20px !important;
  }

  .discover-left-heading h3 {
    max-width: 250px !important;
    margin-bottom: 12px !important;
    font-size: clamp(30px, 10vw, 40px) !important;
    line-height: 1.06 !important;
  }

  .discover-left-txt p {
    max-width: 100% !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  .discover-card-main,
  .discover-card {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
  }

  .discover-card-txt {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
  }

  .about-img {
    width: 100% !important;
    height: 280px !important;
  }

  .about-txt-main {
    width: 100% !important;
    margin: 0 !important;
  }

  .about-counter-main {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: 100% !important;
    gap: 8px !important;
  }

  .about-counter {
    width: 100% !important;
    min-width: 0 !important;
  }

  .about-counter h5 {
    margin: 0 !important;
    white-space: nowrap !important;
    font-size: clamp(21px, 7vw, 28px) !important;
    line-height: 1.1 !important;
  }

  .about-counter h6 {
    margin: 0 !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
  }

  .about-bottom-main {
    position: relative !important;
    inset: auto !important;
    display: block !important;
    clear: both !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 20px 0 0 !important;
    overflow: hidden !important;
  }

  .about-bottom-txt-img-main {
    position: relative !important;
    display: flex !important;
    width: 100% !important;
    height: auto !important;
    min-height: 170px !important;
    padding: 16px !important;
    gap: 8px !important;
  }

  .about-bottom-img {
    position: relative !important;
    flex: 0 0 40px !important;
    width: 40px !important;
    height: 40px !important;
  }

  .about-bottom-img img {
    width: 40px !important;
    height: 40px !important;
  }

  .about-bottom-txt {
    position: relative !important;
    z-index: 2 !important;
    width: calc(100% - 48px) !important;
    padding: 0 0 0 8px !important;
  }

  .about-bottom-txt h3 {
    font-size: 22px !important;
    line-height: 1.2 !important;
  }

  .about-bottom-txt p {
    font-size: 12px !important;
    line-height: 1.5 !important;
  }

  .about-bottom-img-ex {
    z-index: 1 !important;
    right: 3px !important;
    bottom: 3px !important;
    width: 78px !important;
    height: 78px !important;
    opacity: .14 !important;
  }

  .online-admission-left {
    width: 100% !important;
    height: auto !important;
    min-height: 360px !important;
  }

  .online-admission-left-heading,
  .online-admission-left-txt {
    width: 100% !important;
  }

  .online-admission-left-list-mian {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 8px !important;
  }

  .footer-main-row {
    display: flex !important;
    flex-direction: column !important;
  }

  .footer-main-row>[class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
}

@media only screen and (max-width: 359px) {
  .container {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }

  .discover-left {
    min-height: 280px !important;
    padding: 16px !important;
  }

  .discover-left-heading h3 {
    max-width: 220px !important;
    font-size: 30px !important;
  }

  .about-counter-main {
    gap: 5px !important;
  }

  .about-counter h5 {
    font-size: 20px !important;
  }

  .about-counter h6 {
    font-size: 10px !important;
  }

  .about-bottom-txt h3 {
    font-size: 19px !important;
  }
}

/* Exact page-grid corrections */

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .admissions-content,
  .privacy-policy-layout,
  .terms-layout,
  .gga-about-intro,
  .gga-about-approach,
  .plsc-intro-grid,
  .plsc-approach-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .age-criteria-grid,
  .requirements-list,
  .academics-overview-values,
  .preprimary-benefits,
  .plsc-subject-grid,
  .plsc-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .plsc-progress {
    grid-template-columns: 64px minmax(0, 1fr) !important;
  }

  .plsc-progress-link {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .privacy-policy-content,
  .terms-content {
    padding: 30px 24px;
  }

  .contact-map iframe {
    height: 300px;
  }
}

@media only screen and (max-width: 767px) {

  .admissions-content,
  .age-criteria-grid,
  .requirements-list,
  .academics-overview-values,
  .preprimary-benefits,
  .privacy-policy-layout,
  .terms-layout,
  .gga-about-intro,
  .gga-about-approach,
  .plsc-intro-grid,
  .plsc-section-heading,
  .plsc-subject-grid,
  .plsc-approach-grid,
  .plsc-highlights {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
  }

  .privacy-policy-nav,
  .terms-nav {
    position: static !important;
    width: 100% !important;
  }

  .privacy-policy-content,
  .terms-content {
    width: 100% !important;
    padding: 24px 16px !important;
  }

  .privacy-policy-section,
  .terms-section,
  .admissions-page-section,
  .age-criteria-section,
  .admission-requirements-section,
  .online-registration-section,
  .director-message-section,
  .mission-vision-section,
  .plsc-intro,
  .plsc-learning,
  .plsc-approach {
    padding-top: 52px !important;
    padding-bottom: 58px !important;
  }

  .plsc-progress {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px !important;
    margin-top: 30px;
    padding: 22px 18px !important;
  }

  .plsc-progress-icon {
    width: 54px;
    height: 54px;
  }

  .plsc-progress-link {
    grid-column: auto;
    justify-self: start;
    white-space: normal;
  }

  .plsc-section-heading {
    gap: 15px !important;
  }

  .contact-map iframe {
    height: 240px !important;
  }

  .resource-message {
    padding: 20px !important;
  }

  .resource-message-content {
    padding-left: 16px;
  }
}

@media only screen and (max-width: 1199px) {
  .chooes-card-txt {
    height: auto;
    min-height: 0;
  }

  .chooes-card-main {
    height: auto;
  }

  .news-featured-card {
    min-height: 500px;
  }

  .news-small-card {
    min-height: 250px;
  }

  .news-small-content {
    min-height: 250px;
  }

  .resource-card-image {
    height: 300px;
  }

  .gga-facility-row .row,
  .gga-sports-row .row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    row-gap: 28px;
  }

  .gga-facility-row .row>[class*="col-"],
  .gga-sports-row .row>[class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .plsc-intro-image img,
  .plsc-approach-image img {
    height: 380px;
  }
}

@media only screen and (max-width: 991px) {
  .sec {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .news-sec,
  .contact-page-section,
  .feedback-page-section,
  .careers-page-section,
  .resource-center-section,
  .admission-procedures-section,
  .admissions-page-section,
  .age-criteria-section,
  .admission-requirements-section,
  .online-registration-section,
  .privacy-policy-section,
  .terms-section,
  .director-message-section,
  .mission-vision-section,
  .plsc-intro,
  .plsc-learning,
  .plsc-approach {
    padding-top: 70px;
    padding-bottom: 75px;
  }

  .chooes-heading-txt h2,
  .news-heading h2 {
    font-size: clamp(34px, 5vw, 48px);
  }

  .news-featured-content {
    padding: 28px;
    gap: 18px;
  }

  .news-featured-details h3 {
    font-size: 31px;
  }

  .footer-top-heading h2 {
    font-size: 38px;
  }

  .footer-apply-btn.theme3 {
    min-width: 250px;
  }

  .gga-facility-row,
  .gga-sports-row {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .gga-facility-media,
  .resource-intro-visual,
  .requirements-intro-image,
  .preprimary-visual,
  .director-message-visual,
  .mission-vision-image {
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
  }

  .plsc-intro-image img,
  .plsc-approach-image img {
    height: 340px;
  }

  .contact-page-row,
  .feedback-page-section .row,
  .careers-page-section .row {
    row-gap: 28px;
  }
}

@media only screen and (max-width: 767px) {

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container,
  .container-fluid {
    width: 100%;
    max-width: 100%;
  }

  .row {
    max-width: 100%;
  }

  .topSec {
    display: none !important;
  }

  .banner-container {
    width: 100%;
  }

  .banner-txt-main {
    width: 100%;
  }

  .banner-txt h1 {
    overflow-wrap: anywhere;
  }

  .banner-btn-main {
    max-width: 100%;
  }

  .banner-btn {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .discover-sec .row>[class*="col-"],
  .about-sec:not(.banner-sec) .row>[class*="col-"],
  .chooes-sec .row>[class*="col-"],
  .news-row>[class*="col-"],
  .online-admission-sec .row>[class*="col-"],
  .resource-spaces .row>[class*="col-"],
  .contact-page-row>[class*="col-"],
  .feedback-page-section .row>[class*="col-"],
  .careers-page-section .row>[class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .discover-sec .row,
  .chooes-sec .row,
  .news-row,
  .online-admission-sec .row,
  .resource-spaces .row,
  .contact-page-row,
  .feedback-page-section .row,
  .careers-page-section .row {
    row-gap: 18px;
  }

  .discover-left-main {
    width: 100%;
    height: auto !important;
    margin-bottom: 18px;
  }

  .discover-left {
    width: 100%;
    min-height: 0 !important;
    height: auto !important;
    padding: 22px 18px 96px !important;
  }

  .discover-left-txt-main {
    width: 100%;
    gap: 13px;
  }

  .discover-left-heading h3 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(30px, 9vw, 42px) !important;
    line-height: 1.06;
  }

  .discover-left-txt p {
    max-width: 100%;
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
  }

  .discover-left-img {
    right: 14px;
    bottom: 12px;
    width: 78px;
    height: 78px;
  }

  .discover-card-main {
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0 0 16px;
    padding: 18px;
  }

  .discover-card {
    width: 100%;
    min-height: 0;
    height: auto;
    gap: 12px;
  }

  .discover-card-icon {
    width: 78px;
    height: 78px;
    padding: 17px;
  }

  .discover-card-txt {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    gap: 9px;
  }

  .discover-card-txt h4 {
    margin: 0;
    font-size: 25px;
    line-height: 1.15;
  }

  .discover-card-txt p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
  }

  .about-sec:not(.banner-sec) .about-img {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 3;
  }

  .about-sec:not(.banner-sec) .about-img img {
    height: 100%;
  }

  .about-sec:not(.banner-sec) .about-txt-main {
    margin-top: 22px !important;
  }

  .about-counter-main {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    align-items: start;
  }

  .about-counter:nth-child(2) {
    border: 0 !important;
    padding: 0 !important;
  }

  .about-counter h5 {
    font-size: clamp(20px, 7vw, 29px) !important;
  }

  .about-counter h6 {
    overflow-wrap: anywhere;
  }

  .about-bottom-main {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 22px 0 0 !important;
    transform: none !important;
  }

  .about-bottom-txt-img-main {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 18px 14px !important;
  }

  .about-bottom-img {
    flex: 0 0 38px !important;
    width: 38px !important;
    height: 38px !important;
  }

  .about-bottom-img img {
    width: 38px !important;
    height: 38px !important;
  }

  .about-bottom-txt {
    width: auto !important;
    min-width: 0;
    padding-left: 9px !important;
  }

  .about-bottom-txt h3 {
    margin: 0;
    font-size: clamp(19px, 6vw, 25px) !important;
    line-height: 1.15;
  }

  .about-bottom-txt p {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
  }

  .about-bottom-img-ex {
    right: 3px;
    bottom: 3px;
    width: 70px;
    height: 70px;
    opacity: .12;
  }

  .chooes-heading-main {
    margin-bottom: 20px;
  }

  .chooes-heading-txt {
    width: 100%;
    text-align: center;
  }

  .chooes-heading-txt h2 {
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.1;
  }

  .chooes-card-main {
    margin-bottom: 0;
    padding: 18px;
  }

  .chooes-card-img {
    width: 82px;
    height: 82px;
    padding: 17px;
  }

  .chooes-card-heading h4 {
    font-size: 22px;
    line-height: 1.2;
  }

  .chooes-card-txt {
    width: 100%;
    height: auto !important;
    min-height: 0;
  }

  .news-sec {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .news-heading-main {
    margin-bottom: 30px;
  }

  .news-heading h2 {
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.1;
  }

  .news-heading p {
    font-size: 14px;
  }

  .news-featured-card {
    min-height: 410px;
  }

  .news-featured-content {
    flex-direction: column;
    gap: 13px;
    padding: 20px;
  }

  .news-date-box {
    flex-basis: 60px;
    width: 60px;
    min-height: 62px;
  }

  .news-date-box strong {
    font-size: 24px;
  }

  .news-featured-details h3 {
    font-size: 26px;
  }

  .news-featured-details p {
    font-size: 13px;
  }

  .news-small-card,
  .news-small-content {
    min-height: 260px;
  }

  .news-small-content {
    padding: 20px;
    gap: 12px;
  }

  .news-small-details h3 {
    font-size: 22px;
  }

  .online-admission-left,
  .online-admission-form-main {
    border-radius: 14px;
  }

  .online-admission-left {
    min-height: 0 !important;
    padding: 22px !important;
  }

  .online-admission-left-heading h2 {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.12;
  }

  .online-admission-form-main {
    padding: 20px !important;
  }

  .online-admission-form-bottom-txt p {
    font-size: 13px;
  }

  .gga-academics-overview,
  .gga-academics-approach,
  .gga-facilities-intro,
  .gga-sports-intro,
  .gga-sports-spaces,
  .resource-center-section,
  .contact-page-section,
  .feedback-page-section,
  .careers-page-section,
  .admission-procedures-section,
  .admissions-page-section,
  .age-criteria-section,
  .admission-requirements-section,
  .online-registration-section,
  .academics-overview-section,
  .curriculum-philosophy-section,
  .preprimary-section,
  .privacy-policy-section,
  .terms-section,
  .director-message-section,
  .mission-vision-section,
  .plsc-intro,
  .plsc-learning,
  .plsc-approach {
    padding-top: 52px !important;
    padding-bottom: 58px !important;
  }

  .academy-about .academy-intro {
    padding-top: 52px;
    padding-bottom: 50px;
  }

  .academy-about .academy-approach {
    padding-top: 0;
    padding-bottom: 58px;
  }

  .academy-about .academy-collage {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: repeat(3, 190px);
    height: auto;
    margin-right: 0;
  }

  .academy-about .academy-collage-photo-one,
  .academy-about .academy-collage-photo-two,
  .academy-about .academy-collage-photo-three {
    grid-column: 1;
    grid-row: auto;
  }

  .academy-about .academy-collage-badge {
    top: auto;
    right: 12px;
    bottom: 12px;
    min-width: 150px;
    min-height: 70px;
    padding: 12px 15px;
    font-size: 14px;
  }

  .academy-about .academy-approach-copy {
    padding-right: 0;
  }

  .academy-about .academy-approach-photo {
    height: 260px;
  }

  .gga-academics-overview-grid,
  .gga-academics-approach-grid,
  .gga-facilities-grid,
  .gga-sports-intro-grid,
  .gga-sports-row-grid,
  .resource-intro,
  .admissions-intro,
  .admissions-content,
  .age-criteria-intro,
  .requirements-intro,
  .registration-layout,
  .academics-overview-grid,
  .curriculum-philosophy-grid,
  .preprimary-layout,
  .privacy-policy-layout,
  .terms-layout,
  .director-message-layout,
  .mission-vision-row,
  .plsc-intro-grid,
  .plsc-approach-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 24px;
  }

  .gga-facility-row .row,
  .gga-sports-row .row,
  .contact-page-row,
  .feedback-page-section .row,
  .careers-page-section .row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 20px;
  }

  .gga-facility-row .row>[class*="col-"],
  .gga-sports-row .row>[class*="col-"],
  .contact-page-row>[class*="col-"],
  .feedback-page-section .row>[class*="col-"],
  .careers-page-section .row>[class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .gga-academics-overview-image,
  .gga-academics-approach-image,
  .gga-facilities-image,
  .gga-sports-photo,
  .resource-intro-visual,
  .admissions-intro-image,
  .age-criteria-intro-image,
  .requirements-intro-image,
  .academics-overview-image,
  .curriculum-philosophy-image,
  .preprimary-image,
  .director-message-image,
  .mission-vision-image,
  .plsc-intro-image,
  .plsc-approach-image,
  .procedures-image,
  .procedures-contact,
  .contact-map {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    height: 250px;
    margin-right: auto;
    margin-left: auto;
  }

  .gga-facility-slider,
  .gga-facility-slider .slick-list,
  .gga-facility-slider .slick-track,
  .gga-facility-slider .slick-slide,
  .gga-facility-slider .slick-slide>div,
  .gga-facility-slide,
  .gga-facility-slide img {
    height: 220px !important;
    min-height: 220px !important;
  }

  .resource-intro-visual,
  .resource-intro-visual img,
  .requirements-intro-image,
  .requirements-intro-image img,
  .director-message-image,
  .director-message-image img,
  .procedures-image,
  .procedures-image img {
    height: 250px;
  }

  .plsc-intro-image img,
  .plsc-approach-image img,
  .academics-overview-image img,
  .curriculum-philosophy-image img,
  .preprimary-image img,
  .mission-vision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .resource-card-image {
    height: 230px;
  }

  .resource-card-content {
    padding: 20px;
  }

  .resource-message {
    padding: 20px;
  }

  .contact-page-heading,
  .feedback-page-heading,
  .careers-page-heading {
    margin-bottom: 32px;
  }

  .contact-form-box,
  .feedback-form-box,
  .careers-form-box,
  .feedback-info,
  .careers-info,
  .admissions-documents,
  .admissions-registration-card,
  .registration-info,
  .registration-form-card,
  .privacy-policy-content,
  .terms-content {
    padding: 22px 18px;
  }

  .contact-detail {
    gap: 14px;
  }

  .contact-detail-icon {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .contact-detail-text h2 {
    font-size: 20px;
  }

  .contact-detail-text p,
  .contact-detail-text a {
    font-size: 14px;
  }

  .contact-map iframe {
    height: 100%;
  }

  .procedures-steps {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 42px 0;
  }

  .procedures-steps::before {
    display: none;
  }

  .procedure-step {
    min-height: 0;
    padding: 43px 18px 22px;
  }

  .age-criteria-grid,
  .requirements-list,
  .academics-overview-values,
  .preprimary-benefits,
  .plsc-subject-grid,
  .plsc-highlights {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px;
  }

  .age-group-card,
  .requirements-list li,
  .plsc-subject-card {
    min-width: 0;
  }

  .requirements-list-heading,
  .requirements-help,
  .privacy-policy-help,
  .terms-help {
    flex-direction: column;
    align-items: flex-start;
  }

  .requirements-help {
    gap: 18px;
    padding: 24px 20px;
  }

  .registration-form {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px;
  }

  .registration-field-full,
  .registration-submit,
  .registration-privacy {
    grid-column: auto;
  }

  .registration-submit,
  .contact-submit-btn,
  .feedback-submit-btn,
  .careers-submit-btn,
  .requirements-help-btn,
  .admissions-apply-btn {
    width: 100%;
  }

  .privacy-policy-nav,
  .terms-nav {
    position: static !important;
    width: 100%;
  }

  .privacy-policy-nav ul,
  .terms-nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 14px;
  }

  .privacy-policy-nav li+li,
  .terms-nav li+li {
    border-top: 1px solid #eeeae3;
  }

  .terms-block {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
  }

  .director-message-body {
    padding-left: 36px;
  }

  .director-message-quote {
    font-size: 65px;
  }

  .director-message-caption {
    right: 14px;
    bottom: 20px;
    left: 14px;
    padding: 15px 17px;
  }

  .mission-vision-text h3 {
    padding-left: 22px;
  }

  .mission-vision-text p {
    margin-left: 22px;
  }

  .plsc-section-heading {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px;
  }

  .plsc-progress {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px;
    padding: 20px 17px;
  }

  .plsc-progress-link {
    justify-self: start;
    white-space: normal;
  }

  .footer-top {
    padding: 18px 14px;
  }

  .footer-top-txt-main {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .footer-top-heading h2 {
    font-size: clamp(27px, 7vw, 36px);
  }

  .footer-top-heading p {
    font-size: 14px;
  }

  .footer-apply-btn.theme3 {
    width: 100%;
    min-width: 0;
    padding: 14px 18px;
    border-radius: 16px;
  }

  .footer-apply-btn.theme3 .theme3-txt span {
    font-size: 15px;
  }

  .footer-main-row {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .footer-logo-main,
  .footer-link-main {
    width: 100%;
  }

  .footer-logo-img {
    width: 110px;
    height: 110px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 14px 20px;
  }
}

@media only screen and (max-width: 359px) {

  .banner-container,
  .container {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }

  .banner-txt h1 {
    max-width: 100%;
    font-size: 30px !important;
  }

  .banner-btn-main {
    flex-direction: column;
    align-items: stretch;
  }

  .banner-btn {
    width: 100%;
  }

  .about-counter-main {
    gap: 5px !important;
  }

  .about-counter h5 {
    font-size: 20px !important;
  }

  .about-counter h6 {
    font-size: 10px !important;
  }

  .about-bottom-txt h3 {
    font-size: 18px !important;
  }

  .privacy-policy-nav ul,
  .terms-nav ul {
    grid-template-columns: minmax(0, 1fr);
  }
}