@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --purple: #5e27aa;
  --purple-deep: #25124f;
  --purple-ink: #1d1738;
  --pink: #ff4f93;
  --orange: #ff8a3d;
  --gold: #f7cd5c;
  --bg: #f6f8ff;
  --surface: #ffffff;
  --surface-soft: #f8f5ff;
  --text: #3a3552;
  --muted: #656a85;
  --shadow-sm: 0 10px 22px rgba(26, 19, 57, 0.08);
  --shadow-md: 0 18px 48px rgba(26, 19, 57, 0.1);
  --shadow-lg: 0 30px 70px rgba(26, 19, 57, 0.14);
  --shadow-xl: 0 40px 90px rgba(26, 19, 57, 0.18);
  --radius-lg: 28px;
  --radius-xl: 40px;
  --container: 980px;
  --font-display: "Cinzel", serif;
  --font-body: "Poppins", sans-serif;
  --line-body: 1.7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(93, 39, 170, 0.07),
      transparent 34%
    ),
    radial-gradient(
      circle at top right,
      rgba(255, 79, 147, 0.06),
      transparent 28%
    ),
    linear-gradient(180deg, #f8faff 0%, #eef2fb 100%);
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 0.26vw + 0.9rem, 1rem);
  line-height: var(--line-body);
  letter-spacing: 0.01em;
  overflow-x: hidden;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.28;
  color: white;
}

p,
li {
  line-height: var(--line-body);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.18;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 65%);
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(72, 65, 104, 0.14);
  background: #f7f9ff;
  color: var(--text);
  min-height: 44px;
  padding: 10px 12px;
  font-size: clamp(14px, 1vw, 16px);
  border-radius: 8px;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 2px solid rgba(94, 39, 170, 0.24);
  outline-offset: 3px;
}

.form-mobile-only {
  display: none !important;
}

.tel-section-mobile {
    display: none;
}

.announcement-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 8px 5%;
  background: linear-gradient(90deg, #0dcaf0 0%, #1a73e81f 45%, #8b90f2 100%);
  border-bottom: 1px solid rgba(49, 36, 89, 0.08);
  position: relative;
  z-index: 2;
  height: 2%
}

.announcement-text {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--purple-ink);
  letter-spacing: 0.02em;
}

.school-info {
  display: inline-block;
  margin-top: 2px;
  font-size: 0.82rem;
  font-weight: 500; /* Normal */
  color: #0c0c0c;
}

.announcement-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 12px;
  flex-wrap: wrap;
  color: #4b4468;
  font-size: 0.82rem;
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.inline-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(94, 39, 170, 0.12);
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 900;
}

.top-enquiry-btn,
.hero-button,
.welcome-button,
.location-button,
.info-button,
.banner-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.3px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
  font-size: clamp(0.85rem, 1vw, 1rem);
}

.top-enquiry-btn {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 0.8rem;
  color: #fff;
  background: linear-gradient(
    90deg,
    var(--purple) 0%,
    var(--pink) 48%,
    var(--orange) 100%
  );
  box-shadow: 0 14px 28px rgba(94, 39, 170, 0.18);
}

.top-enquiry-btn:hover,
.hero-button:hover,
.welcome-button:hover,
.location-button:hover,
.info-button:hover,
.banner-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(37, 18, 79, 0.18);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 6px 5% 4px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(20, 16, 50, 0.08);
  width: 100%;
  padding: 6px 3% 4px;
}

.nav-overlay {
  z-index: 999998;
}

.navbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: min(100%, 1250px);
  margin: 0 auto;
}

.navbar-row--brand {
  width: 100%;
  align-items: center;
  height: 85%;
}

.navbar-row--nav {
  justify-content: center;
  width: 100%;
  padding-left: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 16px);
  /*margin-left: -80px;*/
  min-width: 0;
  white-space: nowrap;
  flex: 0 1 60%;
  max-width: 60%;
  text-decoration: none;
}

.brand-logo {
  border-radius: 75%;
  object-fit: cover;
  box-shadow: none;
  flex: 0 0 auto;
  width: clamp(45px, 5vw, 70px);
  height: auto;
  min-width: 60px;
  display: block;
  flex-shrink: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  max-width: calc(100% - 92px);
}

.brand-copy strong {
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  line-height: 1.1;
  color: #d31e57;
  letter-spacing: 1px;
  font-family: var(--font-display);
  font-weight: 600;
}

.brand-copy small {
  color: var(--purple);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: clamp(0.62rem, 0.26vw + 0.58rem, 0.78rem);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: nowrap;
  width: 100%;
  margin-left: 0;
  margin-top: -2px;
  z-index: 999999;
}

.nav-menu a {
  font-family: var(--font-body);
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--purple-ink);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  white-space: nowrap;
  text-decoration: none;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(94, 39, 170, 0.08);
  color: var(--purple);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  color: #fff;
  font-size: 1.3rem;
  box-shadow: var(--shadow-sm);
}

main {
  position: relative;
  z-index: 1;
}

/* ================================================================
   NOTICE TICKER - School Announcements Banner
   ================================================================ */

.notice-ticker {
  background: #0c056d;
  color: #ffffff;
  border: none;
  box-shadow: 0 10px 25px rgba(91, 44, 138, 0.3);
}

.notice-ticker__container {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 16px);

  padding: 2px 10px;
  min-height: 24px;
}

.notice-ticker__icon {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

.notice-ticker__label {
  font-weight: 700;
  font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.notice-ticker__wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-width: 0;
}

.notice-ticker__content {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: clamp(0.8rem, 1.1vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
  white-space: nowrap;
  animation: scroll-left 60s linear infinite;
  will-change: transform;
}

.notice-ticker__content.paused {
  animation-play-state: paused;
}

.notice-ticker__item {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.notice-ticker__item::after {
  content: "•";
  color: rgba(255, 255, 255, 0.6);
  margin-left: 24px;
}

.notice-ticker__item:last-child::after {
  content: "";
  margin-left: 0;
}

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

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.notice-ticker__content:hover {
  animation-play-state: paused;
}

.hero-section,
.welcome-section,
.facilities-section,
.location-section,
.admission-banner {
  width: 100%;
}

.curve-divider {
  height: 34px;
  margin-top: -1px;
  position: relative;
  overflow: hidden;
}

.curve-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0 0 48% 48% / 0 0 100% 100%;
}

.curve-divider--light::before {
  background: linear-gradient(180deg, rgba(246, 248, 255, 0) 0%, #f3f5ff 100%);
}

.curve-divider--cream::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fffaf4 100%);
}

.section-note {
  display: inline-flex;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 600;
}

.section-heading h2,
.welcome-copy h2,
.location-card h3,
.leadership-mini h4,
.footer-column h4,
.footer-about h3,
.admission-banner h2 {
  margin: 0;
  font-family: var(--font-body);
}

.section-heading h2,
.welcome-copy h2,
.admission-banner h2,
.cta-content h2,
.form-header,
.page-banner h1,
.banner-content h1 {
  font-weight: 700;
  letter-spacing: 0.01em;
  color: white;
}
.admission-form-header {
  background: linear-gradient(90deg, #6a1b9a, #ff8c3d);
  color: white;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 40px;
  font-size: clamp(1.05rem, 1.6vw, 1.5rem);
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.02em;
}

.hero-description,
.welcome-copy p,
.location-card p,
.footer-about p,
.footer-column a,
.footer-contact-item,
.announcement-contact,
.announcement-text {
  font-family: var(--font-body);
}

.hero-button--primary,
.welcome-button,
.location-button,
.info-button,
.banner-button {
  color: #fff;
  background: linear-gradient(
    90deg,
    var(--purple) 0%,
    var(--pink) 52%,
    var(--orange) 100%
  );
  box-shadow: 0 16px 32px rgba(94, 39, 170, 0.18);
}

.hero-button--secondary {
  color: var(--purple);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(94, 39, 170, 0.16);
  box-shadow: var(--shadow-sm);
}

.hero-button--secondary:hover {
  color: var(--purple-ink);
  background: #fff;
}

.form-control {
  border-radius: 16px;
  padding: 15px 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.submit-button {
  width: 100%;
  min-height: 50px;
  padding: 16px 20px;
  border-radius: 18px;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.3px;
  background: linear-gradient(90deg, #ff7b34 0%, #ff4f93 100%);
  box-shadow: 0 18px 34px rgba(255, 95, 98, 0.22);
}

.submit-button:hover {
  transform: translateY(-2px);
}

.hero-button,
.welcome-button,
.location-button,
.info-button,
.banner-button {
  min-height: 52px;
}

.hero-button:active,
.top-enquiry-btn:active,
.welcome-button:active,
.location-button:active,
.info-button:active,
.banner-button:active,
.submit-button:active {
  transform: translateY(0);
}

.leadership-band,
.welcome-section,
.facilities-section,
.location-section,
.admission-banner {
  position: relative;
}

.footer-logo {
  width: 90px;
  height: 90px;

  border-radius: 50%;

  /* background: linear-gradient(135deg, #ffcb98, #ff8c3d); */

  display: flex;
  justify-content: center;
  align-items: center;

  margin-bottom: 25px;
}

.footer-column h4 {
  margin-bottom: 25px;
  color: #ffb76a;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 14px;
}

.footer-column a {
  color: #d4d4d4;
  text-decoration: none;
}

.footer-column a:hover {
  color: white;
}

.footer-about p {
  line-height: 1.8;
  color: #cfcfcf;
  margin: 20px 0;
}

.contact-item {
  margin-bottom: 18px;
  line-height: 1.8;
  color: #d4d4d4;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 42px;
  height: 42px;

  border-radius: 50%;
  background: #2d245f;

  display: flex;
  justify-content: center;
  align-items: center;

  text-decoration: none;
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 25px 50px;

  color: #bcbcbc;
}
/* */
/* Purple section */
.vision-band {
  position: relative;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0px;
  background: #22154b;
  border-radius: 40px 40px 40px 40px;
  padding: 40px 0;
  overflow: hidden;
}
.vision-band::before {
  /* content: ""; */
  position: absolute;
  top: -120px;
  left: -5%;
  width: 100%;
  height: 180px;
  background: white;
  border-bottom-left-radius: 50% 100%;
  border-bottom-right-radius: 50% 100%;
}
.vision-container {
  position: relative;
  z-index: 2;

  max-width: 100%;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: center;

  /* gap: 35px; */

  padding: 0 30px;

  color: white;
}
.separator {
  width: 1px;
  height: 140px;
  background: rgba(255, 255, 255, 0.15);
}
.vision-item {
  text-align: center;
  min-width: 180px;
}

.leadership {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 18px;
  min-width: 280px;
  padding: 1%;
}
.avatar {
  width: 100px;
  height: 100px;
  /* border-radius: 50%; */
}

.icon-circle {
  width: 80px;
  height: 80px;

  margin: auto auto 18px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #ff8c3d, #ff4d7a);

  font-size: 30px;
}
/* */

/* */
.admission-cta {
  max-width: 100%;
  margin: 80px auto -70px;
  /* position: relative; */
  z-index: 20;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 40px;

  padding: 45px 60px;

  /* border-radius: 35px; */

  background: linear-gradient(90deg, #af13c2 0%, #ff7b52 50%, #ff9d3c 100%);

  box-shadow: 0 25px 60px rgba(255, 79, 122, 0.3);
}
.cta-content h2 {
  color: white;
  font-size: clamp(1.9rem, 2.3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  line-height: 1.7;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 220px;

  padding: 18px 36px;

  border-radius: 999px;

  background: white;
  color: #ff5a6f;

  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;

  text-decoration: none;

  transition: 0.3s;
}

.cta-button:hover {
  transform: translateY(-4px);

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
/*======================================
    TAB SECTION
======================================*/

.tab-section {
  width: 100%;
  padding: 80px 20px;
  background: #f8fafc;
}

.tab-grid {
  max-width: 1200px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tab-grid-4 {
  max-width: 1200px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.tab-card {
  background: #fff;
  border-radius: 14px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
  border-top: 4px solid #0b5cab;
}

.tab-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.tab-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #0b5cab;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.tab-card h3 {
  margin-bottom: 15px;
  color: #1f2937;
  font-size: 22px;
}

.tab-card p {
  color: #6b7280;
  line-height: 1.7;
  font-size: 15px;
}
.tab-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #0b5cab;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid #0b5cab;
}

.tab-button:hover {
  background: #fff;
  color: #0b5cab;
  transform: translateY(-2px);
}

/*======================================
    ADMISSION PROCEDURE
======================================*/

.procedure-section {
  padding: 80px 20px;
  background: #f8fafc;
}

.procedure-list {
  max-width: 1100px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.procedure-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 24px 28px;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  border-left: 5px solid #0b5cab;
}

.procedure-item:hover {
  transform: translateX(6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.procedure-number {
  min-width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0b5cab;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
}

.procedure-item p {
  margin: 0;
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}

.procedure-item strong {
  color: #0b5cab;
}

.admission-page {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
}
.admission-page-banner {
  background: linear-gradient(135deg, #6a1b9a, #ff8c3d);
  padding: 1% 2%;
  text-align: center;
  color: white;
}
.admission-info {
  background: #23164d;
  color: white;
  padding: 40px;
  border-radius: 30px;
  height: fit-content;
}

.admission-info h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.01em;
  margin-bottom: 30px;
}

.admission-info ul {
  padding-left: 20px;
}

.admission-info li {
  font-family: "Poppins", sans-serif;
  line-height: 1.75;
  margin-bottom: 18px;
}
.admission-form-container {
  background: white;
  padding: 50px;
  border-radius: 35px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}
.form-admissiion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.form-admissiion-grid textarea {
  grid-column: span 2;
  min-height: 120px;
}

.form-admissiion-grid input,
.form-admissiion-grid select,
.form-admissiion-grid textarea {
  padding: 18px;
  border: 1px solid #ddd;
  border-radius: 15px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.95rem, 0.5vw + 0.85rem, 1rem);
  line-height: 1.6;
}
.submit-admission-btn {
  width: 100%;
  margin-top: 30px;
  padding: 18px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(90deg, #6a1b9a, #ff8c3d);
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.98rem, 0.6vw + 0.9rem, 1.08rem);
  font-weight: 600;
  letter-spacing: 0.3px;
}

/*=========================
    Gallery
=========================*/

.gallery-about {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.gallery-about-item {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.gallery-about-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}

.gallery-about-item:hover img {
  transform: scale(1.08);
}

/* Popup */

.gallery-about-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  padding: 30px;
}

.gallery-about-popup.active {
  display: flex;
}

.gallery-about-popup-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.gallery-about-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 45px;
  cursor: pointer;
  line-height: 1;
}
/* */
@media (max-width: 1024px) {
  .form-mobile-only {
    display: none !important;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .form-mobile-only {
    display: none !important;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 5%;
    background: white;
    padding: 20px;
    border-radius: 20px;
    flex-direction: column;
  }
  .show {
    display: flex;
  }
  .hamburger {
    display: block;
    background: none;
    border: none;
    font-size: 30px;
    width: auto;
    color: var(--primary);
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .hero-copy h1 {
    font-size: 3rem;
  }
  .circles {
    flex-wrap: wrap;
  }
  .hero-image-wrapper {
    width: 100%;
    max-width: 320px;
    height: 380px;
    margin: 30px auto 0;
  }

  .hero-slider .hero-image {
    object-fit: contain;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .announcement-bar {
    justify-content: center;
    text-align: center;
    /* display: none; */
  }
  .top-text {
    display: none;
  }
  .tel-section-mobile {
    display: block;
  }

  .announcement-contact {
    justify-content: center;
    display: none;
  }
}
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}
/* */
@media (max-width: 1200px) {
  .form-mobile-only {
    display: none !important;
  }
  .vision-container {
    flex-wrap: wrap;
  }

  .separator {
    display: none;
  }
}

@media (max-width: 768px) {
  .vision-band {
    margin-top: -40px;
    border-radius: 40px 40px 0 0;
  }

  .leadership {
    flex-direction: column;
    text-align: center;
    margin-top: 5%;
  }
}
/* */
/* Footer */
@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    padding: 100px 30px 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
/* */

/* */
@media (max-width: 992px) {
  .admission-cta {
    flex-direction: column;
    text-align: center;

    margin: 60px 20px -50px;
    padding: 40px 30px;
  }

  .cta-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 26px;
  }

  .cta-button {
    width: 100%;
  }
}
/* */
/* Tablet */

@media (max-width: 991px) {
  .gallery-about {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gallery-about-item img {
    height: 200px;
  }
}

/* Mobile */

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

  .gallery-about-item img {
    height: 140px;
  }

  .gallery-about-popup-img {
    max-width: 95%;
    max-height: 85%;
  }

  .gallery-about-close {
    font-size: 35px;
    right: 20px;
    top: 15px;
  }
}
