/* ========================================
   St. Stephen's School, Berhampore
   Homepage styles
======================================== */

:root {
  --navy: #0e356b;
  --navy-deep: #06101c;
  --navy-mid: #122036;
  --gold: #c9a227;
  --gold-light: #e0c04a;
  --green: #1a5c3a;
  --green-dark: #0f3d28;
  --maroon: #7a1f2b;
  --maroon-dark: #5c1520;
  --cream: #f3efe6;
  --white: #ffffff;
  --text-muted: #6b7280;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  --font-old-english: "Old English Text MT", "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  /* color: var(--white); */
  background: var(--cream);
  line-height: 1.5;
  padding-top: var(--header-offset, 150px);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ---------- HEADER ---------- */
.site-header {
  background: var(--navy-deep);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.header-bar {
  display: flex;
  align-items: stretch;
}

/* Logo spans top bar + navbar height */
.logo {
  flex: 0 0 auto;
  width: 148px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px 10px 22px;
  background: var(--navy-deep);
}

.logo img {
  width: 100%;
  height: 100%;
  max-height: 136px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.header-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.header-top {
  padding: 16px 28px 12px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-text {
  min-width: 0;
}

.brand-text h1 {
  font-family: var(--font-old-english);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.15;
}

.brand-text p {
  margin-top: 4px;
  font-size: 0.68rem;
  letter-spacing: 1.2px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  font-size: 0.82rem;
}

.header-contact > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  opacity: 0.95;
}

.header-contact > a i {
  color: var(--gold);
}

.socials {
  display: flex;
  gap: 8px;
  margin-left: 6px;
}

.socials a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.socials a:hover {
  transform: translateY(-2px);
  background: var(--gold);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- NAV ---------- */
.main-nav {
 /* background: rgba(8, 18, 32, 0.92); */
  background: #0e356b;
  margin-top: auto;
}

.main-nav ul {
  padding: 0 20px 0 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--white);
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a i {
  font-size: 0.55rem;
  opacity: 0.85;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--green);
}

.nav-admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 6px 8px;
  padding: 8px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--navy);
  background: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-admin-btn:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
}

.nav-admin-btn i {
  font-size: 0.7rem;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.hero-slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6, 16, 28, 0.72) 0%,
    rgba(6, 16, 28, 0.35) 48%,
    rgba(6, 16, 28, 0.15) 100%
  );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(6, 16, 28, 0.15) 0%,
    rgba(6, 16, 28, 0.05) 55%,
    rgba(6, 16, 28, 0.45) 100%
  );
  pointer-events: none;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(201, 162, 39, 0.7);
  border-radius: 50%;
  background: rgba(6, 16, 28, 0.55);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(26, 92, 58, 0.85);
  border-color: var(--gold);
}

.hero-arrow-prev {
  left: 16px;
}

.hero-arrow-next {
  right: 16px;
}

.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-dot.active {
  background: var(--gold);
  transform: scale(1.15);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 48px 64px 90px 48px;
  display: grid;
  grid-template-columns: minmax(340px, 36%) minmax(160px, 1fr) minmax(300px, 26%);
  gap: 0;
  align-items: stretch;
  flex: 1;
  align-self: stretch;
}

.hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
  padding-top: 0;
  justify-self: start;
  margin-left: 56px;
}

.hero-spacer {
  min-width: 120px;
}

.welcome {
  font-family: "Great Vibes", cursive;
  font-size: 2.35rem;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.hero-content h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.gold-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 16px;
  max-width: 320px;
}

.gold-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gold-divider i {
  color: var(--gold);
  font-size: 0.65rem;
}

.hero-desc {
  font-size: 0.95rem;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  margin-bottom: 26px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  border-radius: 3px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(10, 22, 40, 0.75);
  border: 1.5px solid var(--gold);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(201, 162, 39, 0.18);
}

.highlight-pulse {
  animation: admissionColorPulse 2.2s ease-in-out infinite;
  border-color: var(--gold);
}

.highlight-pulse-text {
  animation: admissionTextPulse 2.2s ease-in-out infinite;
}

@keyframes admissionColorPulse {
  0%,
  100% {
    background: rgba(10, 22, 40, 0.75);
    border-color: var(--gold);
    color: var(--white);
    box-shadow: 0 0 0 rgba(201, 162, 39, 0);
  }
  50% {
    background: var(--gold);
    border-color: var(--gold-light);
    color: var(--navy);
    box-shadow: 0 0 18px rgba(201, 162, 39, 0.55);
  }
}

@keyframes admissionTextPulse {
  0%,
  100% {
    color: var(--navy);
  }
  33% {
    color: var(--green);
  }
  66% {
    color: var(--gold);
  }
}

.btn-green {
  background: var(--green);
  border: 1.5px solid var(--green);
  color: var(--white);
}

.btn-green:hover {
  background: var(--green-dark);
}

.btn-tour .play {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: grid;
  place-items: center;
  font-size: 0.55rem;
  color: var(--gold);
}

/* ---------- WIDGETS ---------- */
.hero-widgets {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 0;
  max-width: 380px;
  justify-self: end;
  width: 100%;
}

.widget {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  color: #1f2937;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  color: var(--white);
}

.notices .widget-header {
  background: var(--green);
}

.birthday .widget-header {
  background: var(--maroon);
}

.widget-header h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.7px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.widget-header a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  opacity: 0.95;
}

.widget-header a:hover {
  text-decoration: underline;
}

.notice-list li {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  gap: 8px;
  align-items: start;
  padding: 7px 10px;
  border-bottom: 1px solid #eef0f3;
  font-size: 0.7rem;
}

.notice-list {
  flex: 1;
}

.notice-list li:last-child {
  border-bottom: none;
}

.notice-list i {
  color: var(--green);
  margin-top: 2px;
}

.notice-text {
  color: #1f2937;
  line-height: 1.35;
}

.notice-link {
  display: inline-block;
  margin-left: 4px;
  color: var(--green);
  font-weight: 700;
  font-size: 0.68rem;
}

.notice-link:hover {
  text-decoration: underline;
}

.notice-date {
  color: var(--text-muted);
  font-size: 0.64rem;
  white-space: nowrap;
}

.bday-list li {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid #eef0f3;
}

.bday-list {
  flex: 1;
}

.bday-list li:last-child {
  border-bottom: none;
}

.bday-list img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f0d9dc;
}

.bday-list strong {
  display: block;
  font-size: 0.84rem;
  color: #111827;
}

.bday-list span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.cake-icon {
  color: var(--maroon);
  font-size: 0.95rem;
}

.widget-btn {
  display: block;
  margin: 10px 14px 14px;
  text-align: center;
  padding: 9px 12px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.7px;
  color: var(--white);
  transition: filter 0.2s ease;
}

.widget-btn:hover {
  filter: brightness(1.08);
}

.btn-green-solid {
  background: var(--green);
}

.btn-maroon-solid {
  background: var(--maroon);
}

/* ---------- STATS ---------- */
.stats-wrap {
  position: relative;
  z-index: 5;
  margin-top: -42px;
  padding: 0 28px;
}

.stats-bar {
  max-width: 1180px;
  margin: 0 auto;
  background: var(--navy);
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 12px;
  text-align: center;
  border-right: 1px solid rgba(201, 162, 39, 0.35);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item i {
  color: var(--gold);
  font-size: 1.55rem;
}

.stat-item span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* ---------- MOTTO ---------- */
.motto {
  background: var(--cream);
  text-align: center;
  padding: 72px 24px 80px;
  color: #1a2332;
}

.motto h2 {
  font-family: var(--font-old-english);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  color: #1a2332;
  letter-spacing: 1px;
  margin: 12px 0;
}

.motto .dot {
  color: var(--gold);
  font-family: "Open Sans", sans-serif;
  font-size: 0.55em;
  vertical-align: middle;
  margin: 0 6px;
}

.motto-flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 420px;
  margin: 0 auto;
}

.motto-flourish span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.motto-flourish i {
  color: var(--gold);
  font-size: 0.55rem;
}

.motto p {
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  color: #2c3544;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- SHARED SECTION STYLES ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 72px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
  color: #1a2332;
}

.section-head.light {
  color: var(--white);
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.section-head.light .section-tag,
.section-tag.light {
  color: var(--gold-light);
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 280px;
  margin: 14px auto 0;
}

.section-line.left {
  margin-left: 0;
  margin-right: auto;
}

.section-line span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-line i {
  color: var(--gold);
  font-size: 0.6rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
  transform: translateX(-36px);
}

.reveal-right {
  transform: translateX(36px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Background image sections */
.bg-section {
  position: relative;
  background:
    linear-gradient(rgba(6, 16, 28, 0.88), rgba(6, 16, 28, 0.88)),
    url("https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=1920&q=80")
      center / cover no-repeat fixed;
  color: var(--white);
}

.bg-section-alt {
  background:
    linear-gradient(rgba(10, 22, 40, 0.9), rgba(15, 61, 40, 0.85)),
    url("https://images.unsplash.com/photo-1498243691581-b145c3f54a5a?auto=format&fit=crop&w=1920&q=80")
      center / cover no-repeat fixed;
}

.bg-section-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ---------- ABOUT SCHOOL ---------- */
.about-school {
  background:
    linear-gradient(
      135deg,
      rgba(10, 22, 40, 0.06) 0%,
      rgba(18, 56, 98, 0.12) 45%,
      rgba(10, 22, 40, 0.07) 100%
    ),
    #eef3f8;
  color: #1a2332;
  position: relative;
}

.about-school::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(201, 162, 39, 0.08), transparent 45%),
    radial-gradient(ellipse at 85% 80%, rgba(26, 92, 58, 0.06), transparent 40%);
  pointer-events: none;
}

.about-school .container {
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.about-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--gold);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-text h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}

.about-text p {
  font-size: 0.92rem;
  color: #3d4654;
  line-height: 1.7;
  margin-bottom: 14px;
}

.about-points {
  margin-top: 8px;
}

.about-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.about-points i {
  color: var(--green);
  font-size: 0.85rem;
}

/* ---------- VISION & MISSION ---------- */
.vision-mission {
  background: var(--cream);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.vm-card {
  background: var(--white);
  border: 1.5px solid rgba(201, 162, 39, 0.45);
  border-radius: 10px;
  padding: 36px 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  color: #1a2332;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.vm-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.vm-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.vm-card p {
  font-size: 0.92rem;
  color: #3d4654;
  line-height: 1.65;
}

/* ---------- WHY CHOOSE US ---------- */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.choose-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(201, 162, 39, 0.45);
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.choose-card:hover {
  transform: translateY(-8px);
  background: rgba(26, 92, 58, 0.35);
  border-color: var(--gold);
}

.choose-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  transition: transform 0.35s ease;
}

.choose-card:hover .choose-icon {
  transform: scale(1.1) rotate(-5deg);
}

.choose-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.choose-card p {
  font-size: 0.82rem;
  opacity: 0.88;
  line-height: 1.55;
}

/* ---------- ACTIVITIES ---------- */
.activities {
  background: var(--cream);
  color: #1a2332;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.activity-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
  border-bottom: 3px solid var(--green);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.activity-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.13);
  border-bottom-color: var(--gold);
}

.activity-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  transition: transform 0.35s ease;
}

.activity-card:hover .activity-icon {
  transform: rotateY(180deg);
}

.activity-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.activity-card p {
  font-size: 0.82rem;
  color: #4b5563;
  line-height: 1.55;
}

/* ---------- MODERN FEATURES ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(201, 162, 39, 0.4);
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-6px);
  background: rgba(201, 162, 39, 0.15);
}

.feature-item i {
  font-size: 2rem;
  color: var(--gold);
}

.feature-item span {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ---------- CAMPUS TOUR ---------- */
.campus-tour {
  background: var(--cream);
  color: #1a2332;
}

.campus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.campus-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.campus-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.campus-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--green);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.campus-text h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}

.campus-text p {
  font-size: 0.92rem;
  color: #3d4654;
  line-height: 1.65;
  margin-bottom: 14px;
}

.campus-text .btn {
  margin-top: 10px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(201, 162, 39, 0.4);
  border-radius: 10px;
  padding: 28px 24px;
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 14px;
  display: flex;
  gap: 4px;
}

.testimonial-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  opacity: 0.92;
  font-style: italic;
  margin-bottom: 18px;
}

.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 0.75rem;
  opacity: 0.75;
}

/* ---------- ADMISSION CTA ---------- */
.admission-cta {
  background: var(--cream);
  color: #1a2332;
  padding: 64px 0;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 48px;
  border: 2px solid var(--gold);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.cta-content .section-tag {
  color: var(--green);
}

.cta-content h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--navy);
}

.cta-content p {
  font-size: 0.92rem;
  color: #3d4654;
  max-width: 520px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.admission-cta .btn-outline {
  background: var(--navy);
  border-color: var(--gold);
  color: var(--white);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--navy-deep);
  color: var(--white);
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
  align-items: start;
}

.footer-logo {
  width: 90px;
  height: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  opacity: 0.85;
  line-height: 1.65;
  max-width: 340px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.footer-contact h3,
.footer-links h3,
.footer-map h3 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links {
  text-align: center;
}

.footer-links ul {
  display: inline-block;
  text-align: left;
}

.footer-links li {
  font-size: 0.85rem;
  margin-bottom: 8px;
  opacity: 0.88;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-contact li {
  font-size: 0.85rem;
  margin-bottom: 10px;
  opacity: 0.88;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--gold);
  width: 16px;
}

.footer-map .map-embed {
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid rgba(201, 162, 39, 0.45);
  height: 180px;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.footer-bottom {
  border-top: 3px solid var(--gold);
  text-align: center;
  padding: 18px 28px;
  font-size: 0.78rem;
  opacity: 0.7;
}

/* ---------- FLOATING BUTTONS ---------- */
.float-actions {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.float-whatsapp {
  background: #25d366;
}

.float-call {
  background: var(--green);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .logo {
    width: 120px;
    padding: 10px 10px 10px 16px;
  }

  .logo img {
    max-height: 118px;
  }

  .header-contact {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 48px 28px 90px;
  }

  .hero-spacer {
    display: none;
  }

  .hero-content {
    max-width: none;
  }

  .hero-widgets {
    max-width: 520px;
    width: 100%;
    justify-self: stretch;
  }

  .stats-bar {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-item:nth-child(3) {
    border-right: none;
  }

  .stat-item:nth-child(n + 4) {
    border-top: 1px solid rgba(201, 162, 39, 0.35);
  }

  .choose-grid,
  .activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    text-align: left;
  }

  .footer-right {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .header-bar {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .header-main {
    display: contents;
  }

  .logo {
    width: 92px;
    padding: 10px 8px 10px 12px;
    grid-row: 1;
    align-self: stretch;
  }

  .logo img {
    max-height: 88px;
  }

  .header-top {
    grid-column: 2;
    grid-row: 1;
    padding: 12px 14px 12px 6px;
    gap: 10px;
  }

  .brand-text {
    flex: 1;
    min-width: 0;
  }

  .brand-text h1 {
    font-size: 1.15rem;
  }

  .brand-text p {
    font-size: 0.52rem;
    letter-spacing: 0.2px;
    line-height: 1.35;
  }

  .header-contact {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    margin-top: 0;
    background: var(--navy);
    border-top: 1px solid rgba(201, 162, 39, 0.35);
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    padding: 8px 0;
    gap: 0;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 18px;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-admin-btn {
    width: calc(100% - 24px);
    margin: 10px 12px;
    justify-content: center;
    padding: 12px 14px;
  }

  .hero {
    min-height: auto;
    background-position: center top;
  }

  .hero-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
  }

  .hero-arrow-prev {
    left: 8px;
  }

  .hero-arrow-next {
    right: 8px;
  }

  .hero-dots {
    bottom: 14px;
  }

  .hero-inner {
    padding: 28px 16px 64px;
    gap: 24px;
  }

  .hero-content {
    padding-top: 4px;
    max-width: none;
    margin-left: 0;
    padding-left: 44px;
  }

  .welcome {
    font-size: 1.75rem;
  }

  .hero-content h2 {
    font-size: 1.55rem;
    letter-spacing: 0.4px;
  }

  .hero-desc {
    font-size: 0.9rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
    white-space: normal;
    text-align: center;
    padding: 13px 16px;
  }

  .hero-widgets {
    max-width: none;
    justify-self: stretch;
  }

  .stats-wrap {
    padding: 0 12px;
    margin-top: -28px;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item {
    border-right: 1px solid rgba(201, 162, 39, 0.35);
    border-bottom: 1px solid rgba(201, 162, 39, 0.35);
    padding: 18px 10px;
  }

  .stat-item:nth-child(2n) {
    border-right: none;
  }

  .stat-item:nth-child(3) {
    border-right: 1px solid rgba(201, 162, 39, 0.35);
  }

  .stat-item:nth-child(n + 4) {
    border-top: none;
  }

  .stat-item:nth-child(4),
  .stat-item:nth-child(5) {
    border-bottom: 1px solid rgba(201, 162, 39, 0.35);
  }

  .stat-item:last-child {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: none;
  }

  .stat-item span {
    font-size: 0.75rem;
  }

  .motto {
    padding: 48px 16px 56px;
  }

  .motto h2 {
    font-size: 2rem;
  }

  .motto p {
    font-size: 0.95rem;
  }

  .section {
    padding: 56px 0;
  }

  .vm-grid,
  .campus-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .choose-grid,
  .activity-grid,
  .features-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .cta-actions {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bg-section,
  .bg-section-alt {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 76px;
    padding: 8px 6px 8px 10px;
  }

  .logo img {
    max-height: 72px;
  }

  .brand-text h1 {
    font-size: 1rem;
  }

  .brand-text p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .hero-inner {
    padding: 22px 12px 56px;
  }

  .welcome {
    font-size: 1.5rem;
  }

  .hero-content h2 {
    font-size: 1.3rem;
  }

  .notice-list li {
    grid-template-columns: 18px 1fr;
    gap: 8px;
  }

  .notice-date {
    grid-column: 2;
  }

  .widget-header {
    padding: 10px 12px;
    gap: 8px;
  }

  .widget-header h3 {
    font-size: 0.72rem;
  }

  .stats-wrap {
    padding: 0 10px;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none !important;
    flex-direction: row;
    justify-content: flex-start;
    gap: 14px;
    padding: 14px 16px;
    text-align: left;
  }

  .stat-item:last-child {
    grid-column: auto;
  }

  .motto h2 {
    font-size: 1.7rem;
  }

  .motto .dot {
    margin: 0 2px;
  }

  .container {
    padding: 0 16px;
  }

  .campus-image img,
  .about-image img {
    height: 240px;
  }

  .float-actions {
    bottom: 16px;
    right: 14px;
  }

  .float-btn {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }
}

/* ---------- ABOUT PAGE ---------- */
.page-banner {
  background:
    linear-gradient(105deg, rgba(6, 16, 28, 0.92), rgba(26, 92, 58, 0.75)),
    url("../images/bilding.jpg") center / cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 64px 20px 56px;
}

.page-banner-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.page-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.page-banner .section-line {
  margin-top: 16px;
}

.brand-text h1 a {
  color: inherit;
}

.about-identity {
  background: var(--cream);
  padding-top: 56px;
  padding-bottom: 40px;
}

.identity-card {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1.5px solid rgba(201, 162, 39, 0.5);
  border-radius: 12px;
  padding: 40px 36px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  color: #1a2332;
}

.identity-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}

.identity-card h3 {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 8px;
}

.identity-card > p {
  font-size: 0.95rem;
  color: #3d4654;
}

.identity-divider {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto;
}

.identity-governed {
  font-size: 0.92rem;
  color: #2c3544;
}

.identity-governed strong {
  color: var(--green);
}

.about-saint {
  background:
    linear-gradient(
      135deg,
      rgba(10, 22, 40, 0.05) 0%,
      rgba(18, 56, 98, 0.1) 50%,
      rgba(10, 22, 40, 0.06) 100%
    ),
    #eef3f8;
  color: #1a2332;
}

.saint-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 36px;
  align-items: start;
}

.saint-aside-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  border: 1.5px solid var(--gold);
  text-align: center;
  position: sticky;
  top: 24px;
}

.saint-aside-card img {
  width: 110px;
  height: auto;
  margin: 0 auto 16px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}

.saint-aside-card h3 {
  font-family: var(--font-old-english);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.saint-aside-card > p {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-bottom: 18px;
}

.saint-aside-card ul {
  text-align: left;
}

.saint-aside-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  padding: 10px 0;
  border-top: 1px solid rgba(201, 162, 39, 0.25);
}

.saint-aside-card li i {
  color: var(--gold);
  width: 18px;
}

.saint-content h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}

.saint-content p {
  font-size: 0.94rem;
  line-height: 1.75;
  color: #3d4654;
  margin-bottom: 16px;
}

.saint-content .btn {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .saint-grid {
    grid-template-columns: 1fr;
  }

  .saint-aside-card {
    position: static;
  }

  .identity-card {
    padding: 28px 20px;
  }
}

/* ---------- PRINCIPAL'S DESK PAGE ---------- */
.principal-desk {
  background:
    linear-gradient(
      135deg,
      rgba(10, 22, 40, 0.05) 0%,
      rgba(18, 56, 98, 0.1) 50%,
      rgba(10, 22, 40, 0.06) 100%
    ),
    #eef3f8;
  color: #1a2332;
}

.principal-quote {
  position: relative;
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
  background: var(--white);
  border: 1.5px solid rgba(201, 162, 39, 0.5);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 32px 36px 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.principal-quote .quote-mark {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: inline-block;
}

.principal-quote p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--navy);
}

.principal-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.principal-photo-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid rgba(201, 162, 39, 0.45);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
  position: sticky;
  top: 24px;
}

.principal-photo-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  background: #f5f5f5;
}

.principal-meta {
  background: var(--navy);
  color: var(--white);
  padding: 16px 18px;
  text-align: center;
  border-top: 2px solid var(--gold);
}

.principal-meta strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.principal-meta span {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: var(--gold-light);
}

.principal-message h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}

.principal-lead {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: var(--green) !important;
}

.principal-message p {
  font-size: 0.94rem;
  line-height: 1.75;
  color: #3d4654;
  margin-bottom: 16px;
}

.principal-blessing {
  font-style: italic;
  font-weight: 600;
  color: var(--navy) !important;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}

.principal-message .btn {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .principal-grid {
    grid-template-columns: 1fr;
  }

  .principal-photo-card {
    position: static;
    max-width: 360px;
    margin: 0 auto;
  }

  .principal-quote {
    padding: 24px 18px;
  }
}

/* ---------- ACHIEVEMENTS PAGE ---------- */
.achievements-page {
  background: var(--cream);
  color: #1a2332;
}

.achievements-intro {
  max-width: 680px;
  margin: 18px auto 0;
  font-size: 0.95rem;
  color: #3d4654;
  line-height: 1.65;
}

.achieve-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.achieve-stat {
  background: var(--navy);
  color: var(--white);
  border: 1.5px solid var(--gold);
  border-radius: 10px;
  text-align: center;
  padding: 22px 14px;
}

.achieve-stat i {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 8px;
  display: block;
}

.achieve-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.achieve-stat span {
  font-size: 0.78rem;
  opacity: 0.85;
}

.achieve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.achieve-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  border: 1.5px solid rgba(201, 162, 39, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achieve-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.achieve-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.achieve-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.achieve-card p {
  font-size: 0.9rem;
  color: #3d4654;
  line-height: 1.65;
  margin-bottom: 14px;
}

.achieve-card ul li {
  font-size: 0.85rem;
  color: #2c3544;
  padding: 6px 0 6px 18px;
  position: relative;
  border-top: 1px solid #eef0f3;
}

.achieve-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.achieve-note {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(10, 22, 40, 0.06);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 16px 18px;
  font-size: 0.88rem;
  color: #3d4654;
}

.achieve-note i {
  color: var(--green);
  margin-top: 3px;
}

@media (max-width: 900px) {
  .achieve-stats {
    grid-template-columns: 1fr 1fr;
  }

  .achieve-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .achieve-stats {
    grid-template-columns: 1fr;
  }
}
