:root {
  --primary: #0d3b82;
  --primary-dark: #082b5f;
  --accent: #c99a2e;
  --accent-dark: #9c741d;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #f7f9fc;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(13, 59, 130, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.72;
  font-size: 17px;
}

p,
li,
label,
input,
select,
textarea {
  font-size: 1.02rem;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 10px;
}

.container {
  width: min(1150px, 92%);
  margin: 0 auto;
}

.top-bar {
  background: var(--primary-dark);
  color: var(--white);
  font-size: 0.9rem;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  box-shadow: 0 4px 18px rgba(17, 24, 39, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 150px;
  height: auto;
  border-radius: 0;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.8rem;
  color: var(--primary);
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a,
.drop-trigger {
  display: block;
  padding: 14px 12px;
  font-weight: 600;
  color: #1e2a3a;
  border-radius: 8px;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active,
.drop-trigger:hover {
  background: #edf3ff;
  color: var(--primary);
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 230px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 8px;
  list-style: none;
  margin: 0;
  display: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #1f2937;
}

.dropdown-menu a:hover {
  background: #f3f6fd;
  color: var(--primary);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

.hero {
  padding: 56px 0 46px;
  background: linear-gradient(135deg, #f4f8ff 0%, #ffffff 65%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: #e9f0ff;
  color: var(--primary);
  border: 1px solid #cfe0ff;
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.4px;
}

h1,
h2,
h3 {
  line-height: 1.25;
  margin: 0 0 12px;
  color: #10223f;
}

h1 {
  font-size: clamp(1.75rem, 2.8vw, 2.8rem);
}

h2 {
  font-size: clamp(1.35rem, 2.1vw, 2rem);
}

.lead {
  color: #334155;
  font-size: 1.12rem;
}

.hero-offer {
  margin-top: 12px;
  display: inline-block;
  background: linear-gradient(120deg, #0d3b82 0%, #1658b6 100%);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 24px rgba(13, 59, 130, 0.2);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  padding: 11px 18px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-accent {
  background: var(--accent);
  color: #1f1500;
}

.btn-accent:hover {
  background: var(--accent-dark);
  color: var(--white);
}

section {
  padding: 58px 0;
}

.section-title {
  max-width: 740px;
  margin-bottom: 26px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  transition: transform 0.28s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 8px;
}

.highlight {
  background: linear-gradient(110deg, var(--primary) 0%, #1658b6 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px;
}

.list {
  padding-left: 18px;
  margin: 0;
}

.list li {
  margin: 10px 0;
}

.floating-contact {
  position: fixed;
  right: 16px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 350;
}

.floating-contact a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.floating-contact a:hover {
  transform: translateY(-2px);
}

.floating-call {
  background: #0d3b82;
}

.floating-whatsapp {
  background: #25d366;
}

.floating-label {
  font-size: 0.72rem;
  letter-spacing: 0.3px;
}

.floating-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.result-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.result-card .meta {
  padding: 14px;
}

.admission-banner {
  background: linear-gradient(120deg, #0a3271 0%, #0e4ea9 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d4dcec;
  border-radius: 9px;
  padding: 11px 12px;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.full {
  grid-column: span 2;
}

.page-hero {
  padding: 44px 0;
  background: #edf3ff;
}

footer {
  background: #081b36;
  color: #dbe7ff;
  padding: 52px 0 24px;
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 22px;
}

.footer-grid h3 {
  color: #ffffff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.social-placeholder {
  display: flex;
  gap: 10px;
}

.social-placeholder span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #4a6aa0;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
}

.copy {
  border-top: 1px solid #27477b;
  margin-top: 24px;
  padding-top: 14px;
  font-size: 0.9rem;
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

section {
  padding: 58px 0;
}

.section-title {
  max-width: 740px;
  margin-bottom: 26px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  transition: transform 0.28s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 8px;
}

.highlight {
  background: linear-gradient(110deg, var(--primary) 0%, #1658b6 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px;
}

.list {
  padding-left: 18px;
  margin: 0;
}

.list li {
  margin: 10px 0;
}

.floating-contact {
  position: fixed;
  right: 16px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 350;
}

.floating-contact a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.floating-contact a:hover {
  transform: translateY(-2px);
}

.floating-call {
  background: #0d3b82;
}

.floating-whatsapp {
  background: #25d366;
}

.floating-label {
  font-size: 0.72rem;
  letter-spacing: 0.3px;
}

.floating-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.result-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.result-card .meta {
  padding: 14px;
}

.admission-banner {
  background: linear-gradient(120deg, #0a3271 0%, #0e4ea9 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d4dcec;
  border-radius: 9px;
  padding: 11px 12px;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.full {
  grid-column: span 2;
}

.page-hero {
  padding: 44px 0;
  background: #edf3ff;
}

footer {
  background: #081b36;
  color: #dbe7ff;
  padding: 52px 0 24px;
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 22px;
}

.footer-grid h3 {
  color: #ffffff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.social-placeholder {
  display: flex;
  gap: 10px;
}

.social-placeholder span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #4a6aa0;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
}

.copy {
  border-top: 1px solid #27477b;
  margin-top: 24px;
  padding-top: 14px;
  font-size: 0.9rem;
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

section {
  padding: 58px 0;
}

.section-title {
  max-width: 740px;
  margin-bottom: 26px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  transition: transform 0.28s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 8px;
}

.highlight {
  background: linear-gradient(110deg, var(--primary) 0%, #1658b6 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px;
}

.list {
  padding-left: 18px;
  margin: 0;
}

.list li {
  margin: 10px 0;
}

.floating-contact {
  position: fixed;
  right: 16px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 350;
}

.floating-contact a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.floating-contact a:hover {
  transform: translateY(-2px);
}

.floating-call {
  background: #0d3b82;
}

.floating-whatsapp {
  background: #25d366;
}

.floating-label {
  font-size: 0.72rem;
  letter-spacing: 0.3px;
}

.floating-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.result-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.result-card .meta {
  padding: 14px;
}

.admission-banner {
  background: linear-gradient(120deg, #0a3271 0%, #0e4ea9 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d4dcec;
  border-radius: 9px;
  padding: 11px 12px;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.full {
  grid-column: span 2;
}

.page-hero {
  padding: 44px 0;
  background: #edf3ff;
}

footer {
  background: #081b36;
  color: #dbe7ff;
  padding: 52px 0 24px;
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 22px;
}

.footer-grid h3 {
  color: #ffffff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.social-placeholder {
  display: flex;
  gap: 10px;
}

.social-placeholder span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #4a6aa0;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
}

.copy {
  border-top: 1px solid #27477b;
  margin-top: 24px;
  padding-top: 14px;
  font-size: 0.9rem;
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

section {
  padding: 58px 0;
}

.section-title {
  max-width: 740px;
  margin-bottom: 26px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  transition: transform 0.28s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 8px;
}

.highlight {
  background: linear-gradient(110deg, var(--primary) 0%, #1658b6 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px;
}

.list {
  padding-left: 18px;
  margin: 0;
}

.list li {
  margin: 10px 0;
}

.floating-contact {
  position: fixed;
  right: 16px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 350;
}

.floating-contact a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.floating-contact a:hover {
  transform: translateY(-2px);
}

.floating-call {
  background: #0d3b82;
}

.floating-whatsapp {
  background: #25d366;
}

.floating-label {
  font-size: 0.72rem;
  letter-spacing: 0.3px;
}

.floating-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.result-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.result-card .meta {
  padding: 14px;
}

.admission-banner {
  background: linear-gradient(120deg, #0a3271 0%, #0e4ea9 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d4dcec;
  border-radius: 9px;
  padding: 11px 12px;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.full {
  grid-column: span 2;
}

.page-hero {
  padding: 44px 0;
  background: #edf3ff;
}

footer {
  background: #081b36;
  color: #dbe7ff;
  padding: 52px 0 24px;
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 22px;
}

.footer-grid h3 {
  color: #ffffff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.social-placeholder {
  display: flex;
  gap: 10px;
}

.social-placeholder span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #4a6aa0;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
}

.copy {
  border-top: 1px solid #27477b;
  margin-top: 24px;
  padding-top: 14px;
  font-size: 0.9rem;
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

section {
  padding: 58px 0;
}

.section-title {
  max-width: 740px;
  margin-bottom: 26px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  transition: transform 0.28s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 8px;
}

.highlight {
  background: linear-gradient(110deg, var(--primary) 0%, #1658b6 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px;
}

.list {
  padding-left: 18px;
  margin: 0;
}

.list li {
  margin: 10px 0;
}

.floating-contact {
  position: fixed;
  right: 16px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 350;
}

.floating-contact a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.floating-contact a:hover {
  transform: translateY(-2px);
}

.floating-call {
  background: #0d3b82;
}

.floating-whatsapp {
  background: #25d366;
}

.floating-label {
  font-size: 0.72rem;
  letter-spacing: 0.3px;
}

.floating-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.result-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.result-card .meta {
  padding: 14px;
}

.admission-banner {
  background: linear-gradient(120deg, #0a3271 0%, #0e4ea9 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d4dcec;
  border-radius: 9px;
  padding: 11px 12px;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.full {
  grid-column: span 2;
}

.page-hero {
  padding: 44px 0;
  background: #edf3ff;
}

footer {
  background: #081b36;
  color: #dbe7ff;
  padding: 52px 0 24px;
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 22px;
}

.footer-grid h3 {
  color: #ffffff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.social-placeholder {
  display: flex;
  gap: 10px;
}

.social-placeholder span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #4a6aa0;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
}

.copy {
  border-top: 1px solid #27477b;
  margin-top: 24px;
  padding-top: 14px;
  font-size: 0.9rem;
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

section {
  padding: 58px 0;
}

.section-title {
  max-width: 740px;
  margin-bottom: 26px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  transition: transform 0.28s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 8px;
}

.highlight {
  background: linear-gradient(110deg, var(--primary) 0%, #1658b6 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px;
}

.list {
  padding-left: 18px;
  margin: 0;
}

.list li {
  margin: 10px 0;
}

.floating-contact {
  position: fixed;
  right: 16px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 350;
}

.floating-contact a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.floating-contact a:hover {
  transform: translateY(-2px);
}

.floating-call {
  background: #0d3b82;
}

.floating-whatsapp {
  background: #25d366;
}

.floating-label {
  font-size: 0.72rem;
  letter-spacing: 0.3px;
}

.floating-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.result-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.result-card .meta {
  padding: 14px;
}

.admission-banner {
  background: linear-gradient(120deg, #0a3271 0%, #0e4ea9 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d4dcec;
  border-radius: 9px;
  padding: 11px 12px;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.full {
  grid-column: span 2;
}

.page-hero {
  padding: 44px 0;
  background: #edf3ff;
}

footer {
  background: #081b36;
  color: #dbe7ff;
  padding: 52px 0 24px;
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 22px;
}

.footer-grid h3 {
  color: #ffffff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.social-placeholder {
  display: flex;
  gap: 10px;
}

.social-placeholder span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #4a6aa0;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
}

.copy {
  border-top: 1px solid #27477b;
  margin-top: 24px;
  padding-top: 14px;
  font-size: 0.9rem;
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

section {
  padding: 58px 0;
}

.section-title {
  max-width: 740px;
  margin-bottom: 26px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  transition: transform 0.28s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 8px;
}

.highlight {
  background: linear-gradient(110deg, var(--primary) 0%, #1658b6 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px;
}

.list {
  padding-left: 18px;
  margin: 0;
}

.list li {
  margin: 10px 0;
}

.floating-contact {
  position: fixed;
  right: 16px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 350;
}

.floating-contact a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.floating-contact a:hover {
  transform: translateY(-2px);
}

.floating-call {
  background: #0d3b82;
}

.floating-whatsapp {
  background: #25d366;
}

.floating-label {
  font-size: 0.72rem;
  letter-spacing: 0.3px;
}

.floating-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.result-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.result-card .meta {
  padding: 14px;
}

.admission-banner {
  background: linear-gradient(120deg, #0a3271 0%, #0e4ea9 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d4dcec;
  border-radius: 9px;
  padding: 11px 12px;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.full {
  grid-column: span 2;
}

.page-hero {
  padding: 44px 0;
  background: #edf3ff;
}

footer {
  background: #081b36;
  color: #dbe7ff;
  padding: 52px 0 24px;
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 22px;
}

.footer-grid h3 {
  color: #ffffff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.social-placeholder {
  display: flex;
  gap: 10px;
}

.social-placeholder span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #4a6aa0;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
}

.copy {
  border-top: 1px solid #27477b;
  margin-top: 24px;
  padding-top: 14px;
  font-size: 0.9rem;
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

section {
  padding: 58px 0;
}

.section-title {
  max-width: 740px;
  margin-bottom: 26px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  transition: transform 0.28s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 8px;
}

.highlight {
  background: linear-gradient(110deg, var(--primary) 0%, #1658b6 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px;
}

.list {
  padding-left: 18px;
  margin: 0;
}

.list li {
  margin: 10px 0;
}

.floating-contact {
  position: fixed;
  right: 16px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 350;
}

.floating-contact a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.floating-contact a:hover {
  transform: translateY(-2px);
}

.floating-call {
  background: #0d3b82;
}

.floating-whatsapp {
  background: #25d366;
}

.floating-label {
  font-size: 0.72rem;
  letter-spacing: 0.3px;
}

.floating-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.result-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.result-card .meta {
  padding: 14px;
}

.admission-banner {
  background: linear-gradient(120deg, #0a3271 0%, #0e4ea9 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d4dcec;
  border-radius: 9px;
  padding: 11px 12px;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.full {
  grid-column: span 2;
}

.page-hero {
  padding: 44px 0;
  background: #edf3ff;
}

footer {
  background: #081b36;
  color: #dbe7ff;
  padding: 52px 0 24px;
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 22px;
}

.footer-grid h3 {
  color: #ffffff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.social-placeholder {
  display: flex;
  gap: 10px;
}

.social-placeholder span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #4a6aa0;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
}

.copy {
  border-top: 1px solid #27477b;
  margin-top: 24px;
  padding-top: 14px;
  font-size: 0.9rem;
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

section {
  padding: 58px 0;
}

.section-title {
  max-width: 740px;
  margin-bottom: 26px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  transition: transform 0.28s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 8px;
}

.highlight {
  background: linear-gradient(110deg, var(--primary) 0%, #1658b6 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px;
}

.list {
  padding-left: 18px;
  margin: 0;
}

.list li {
  margin: 10px 0;
}

.floating-contact {
  position: fixed;
  right: 16px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 350;
}

.floating-contact a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.floating-contact a:hover {
  transform: translateY(-2px);
}

.floating-call {
  background: #0d3b82;
}

.floating-whatsapp {
  background: #25d366;
}

.floating-label {
  font-size: 0.72rem;
  letter-spacing: 0.3px;
}

.floating-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.result-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.result-card .meta {
  padding: 14px;
}

.admission-banner {
  background: linear-gradient(120deg, #0a3271 0%, #0e4ea9 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d4dcec;
  border-radius: 9px;
  padding: 11px 12px;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.full {
  grid-column: span 2;
}

.page-hero {
  padding: 44px 0;
  background: #edf3ff;
}

footer {
  background: #081b36;
  color: #dbe7ff;
  padding: 52px 0 24px;
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 22px;
}

.footer-grid h3 {
  color: #ffffff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.social-placeholder {
  display: flex;
  gap: 10px;
}

.social-placeholder span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #4a6aa0;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
}

.copy {
  border-top: 1px solid #27477b;
  margin-top: 24px;
  padding-top: 14px;
  font-size: 0.9rem;
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

section {
  padding: 58px 0;
}

.section-title {
  max-width: 740px;
  margin-bottom: 26px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  transition: transform 0.28s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 8px;
}

.highlight {
  background: linear-gradient(110deg, var(--primary) 0%, #1658b6 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px;
}

.list {
  padding-left: 18px;
  margin: 0;
}

.list li {
  margin: 10px 0;
}

.floating-contact {
  position: fixed;
  right: 16px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 350;
}

.floating-contact a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.floating-contact a:hover {
  transform: translateY(-2px);
}

.floating-call {
  background: #0d3b82;
}

.floating-whatsapp {
  background: #25d366;
}

.floating-label {
  font-size: 0.72rem;
  letter-spacing: 0.3px;
}

.floating-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.result-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.result-card .meta {
  padding: 14px;
}

.admission-banner {
  background: linear-gradient(120deg, #0a3271 0%, #0e4ea9 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d4dcec;
  border-radius: 9px;
  padding: 11px 12px;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.full {
  grid-column: span 2;
}

.page-hero {
  padding: 44px 0;
  background: #edf3ff;
}

footer {
  background: #081b36;
  color: #dbe7ff;
  padding: 52px 0 24px;
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 22px;
}

.footer-grid h3 {
  color: #ffffff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.social-placeholder {
  display: flex;
  gap: 10px;
}

.social-placeholder span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #4a6aa0;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
}

.copy {
  border-top: 1px solid #27477b;
  margin-top: 24px;
  padding-top: 14px;
  font-size: 0.9rem;
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

section {
  padding: 58px 0;
}

.section-title {
  max-width: 740px;
  margin-bottom: 26px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  transition: transform 0.28s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 8px;
}

.highlight {
  background: linear-gradient(110deg, var(--primary) 0%, #1658b6 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px;
}

.list {
  padding-left: 18px;
  margin: 0;
}

.list li {
  margin: 10px 0;
}

.floating-contact {
  position: fixed;
  right: 16px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 350;
}

.floating-contact a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.floating-contact a:hover {
  transform: translateY(-2px);
}

.floating-call {
  background: #0d3b82;
}

.floating-whatsapp {
  background: #25d366;
}

.floating-label {
  font-size: 0.72rem;
  letter-spacing: 0.3px;
}

.floating-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.result-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.result-card .meta {
  padding: 14px;
}

.admission-banner {
  background: linear-gradient(120deg, #0a3271 0%, #0e4ea9 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d4dcec;
  border-radius: 9px;
  padding: 11px 12px;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.full {
  grid-column: span 2;
}

.page-hero {
  padding: 44px 0;
  background: #edf3ff;
}

footer {
  background: #081b36;
  color: #dbe7ff;
  padding: 52px 0 24px;
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 22px;
}

.footer-grid h3 {
  color: #ffffff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.social-placeholder {
  display: flex;
  gap: 10px;
}

.social-placeholder span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #4a6aa0;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
}

.copy {
  border-top: 1px solid #27477b;
  margin-top: 24px;
  padding-top: 14px;
  font-size: 0.9rem;
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

section {
  padding: 58px 0;
}

.section-title {
  max-width: 740px;
  margin-bottom: 26px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  transition: transform 0.28s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 8px;
}

.highlight {
  background: linear-gradient(110deg, var(--primary) 0%, #1658b6 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px;
}

.list {
  padding-left: 18px;
  margin: 0;
}

.list li {
  margin: 10px 0;
}

.floating-contact {
  position: fixed;
  right: 16px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 350;
}

.floating-contact a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.floating-contact a:hover {
  transform: translateY(-2px);
}

.floating-call {
  background: #0d3b82;
}

.floating-whatsapp {
  background: #25d366;
}

.floating-label {
  font-size: 0.72rem;
  letter-spacing: 0.3px;
}

.floating-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.result-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.result-card .meta {
  padding: 14px;
}

.admission-banner {
  background: linear-gradient(120deg, #0a3271 0%, #0e4ea9 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d4dcec;
  border-radius: 9px;
  padding: 11px 12px;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.full {
  grid-column: span 2;
}

.page-hero {
  padding: 44px 0;
  background: #edf3ff;
}

footer {
  background: #081b36;
  color: #dbe7ff;
  padding: 52px 0 24px;
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 22px;
}

.footer-grid h3 {
  color: #ffffff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.social-placeholder {
  display: flex;
  gap: 10px;
}

.social-placeholder span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #4a6aa0;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
}

.copy {
  border-top: 1px solid #27477b;
  margin-top: 24px;
  padding-top: 14px;
  font-size: 0.9rem;
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

section {
  padding: 58px 0;
}

.section-title {
  max-width: 740px;
  margin-bottom: 26px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  transition: transform 0.28s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 8px;
}

.highlight {
  background: linear-gradient(110deg, var(--primary) 0%, #1658b6 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px;
}

.list {
  padding-left: 18px;
  margin: 0;
}

.list li {
  margin: 10px 0;
}

.floating-contact {
  position: fixed;
  right: 16px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 350;
}

.floating-contact a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.floating-contact a:hover {
  transform: translateY(-2px);
}

.floating-call {
  background: #0d3b82;
}

.floating-whatsapp {
  background: #25d366;
}

.floating-label {
  font-size: 0.72rem;
  letter-spacing: 0.3px;
}

.floating-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.result-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.result-card .meta {
  padding: 14px;
}

.admission-banner {
  background: linear-gradient(120deg, #0a3271 0%, #0e4ea9 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d4dcec;
  border-radius: 9px;
  padding: 11px 12px;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.full {
  grid-column: span 2;
}

.page-hero {
  padding: 44px 0;
  background: #edf3ff;
}

footer {
  background: #081b36;
  color: #dbe7ff;
  padding: 52px 0 24px;
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 22px;
}

.footer-grid h3 {
  color: #ffffff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.social-placeholder {
  display: flex;
  gap: 10px;
}

.social-placeholder span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #4a6aa0;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
}

.copy {
  border-top: 1px solid #27477b;
  margin-top: 24px;
  padding-top: 14px;
  font-size: 0.9rem;
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

section {
  padding: 58px 0;
}

.section-title {
  max-width: 740px;
  margin-bottom: 26px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  transition: transform 0.28s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 8px;
}

.highlight {
  background: linear-gradient(110deg, var(--primary) 0%, #1658b6 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px;
}

.list {
  padding-left: 18px;
  margin: 0;
}

.list li {
  margin: 10px 0;
}

.floating-contact {
  position: fixed;
  right: 16px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 350;
}

.floating-contact a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.floating-contact a:hover {
  transform: translateY(-2px);
}

.floating-call {
  background: #0d3b82;
}

.floating-whatsapp {
  background: #25d366;
}

.floating-label {
  font-size: 0.72rem;
  letter-spacing: 0.3px;
}

.floating-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.result-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.result-card .meta {
  padding: 14px;
}

.admission-banner {
  background: linear-gradient(120deg, #0a3271 0%, #0e4ea9 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d4dcec;
  border-radius: 9px;
  padding: 11px 12px;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.full {
  grid-column: span 2;
}

.page-hero {
  padding: 44px 0;
  background: #edf3ff;
}

footer {
  background: #081b36;
  color: #dbe7ff;
  padding: 52px 0 24px;
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 22px;
}

.footer-grid h3 {
  color: #ffffff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.social-placeholder {
  display: flex;
  gap: 10px;
}

.social-placeholder span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #4a6aa0;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
}

.copy {
  border-top: 1px solid #27477b;
  margin-top: 24px;
  padding-top: 14px;
  font-size: 0.9rem;
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

section {
  padding: 58px 0;
}

.section-title {
  max-width: 740px;
  margin-bottom: 26px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  transition: transform 0.28s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 8px;
}

.highlight {
  background: linear-gradient(110deg, var(--primary) 0%, #1658b6 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px;
}

.list {
  padding-left: 18px;
  margin: 0;
}

.list li {
  margin: 10px 0;
}

.floating-contact {
  position: fixed;
  right: 16px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 350;
}

.floating-contact a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.floating-contact a:hover {
  transform: translateY(-2px);
}

.floating-call {
  background: #0d3b82;
}

.floating-whatsapp {
  background: #25d366;
}

.floating-label {
  font-size: 0.72rem;
  letter-spacing: 0.3px;
}

.floating-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.result-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.result-card .meta {
  padding: 14px;
}

.admission-banner {
  background: linear-gradient(120deg, #0a3271 0%, #0e4ea9 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d4dcec;
  border-radius: 9px;
  padding: 11px 12px;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.full {
  grid-column: span 2;
}

.page-hero {
  padding: 44px 0;
  background: #edf3ff;
}

footer {
  background: #081b36;
  color: #dbe7ff;
  padding: 52px 0 24px;
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 22px;
}

.footer-grid h3 {
  color: #ffffff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.social-placeholder {
  display: flex;
  gap: 10px;
}

.social-placeholder span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #4a6aa0;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
}

.copy {
  border-top: 1px solid #27477b;
  margin-top: 24px;
  padding-top: 14px;
  font-size: 0.9rem;
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

section {
  padding: 58px 0;
}

.section-title {
  max-width: 740px;
  margin-bottom: 26px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  transition: transform 0.28s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 8px;
}

.highlight {
  background: linear-gradient(110deg, var(--primary) 0%, #1658b6 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px;
}

.list {
  padding-left: 18px;
  margin: 0;
}

.list li {
  margin: 10px 0;
}

.floating-contact {
  position: fixed;
  right: 16px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 350;
}

.floating-contact a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.floating-contact a:hover {
  transform: translateY(-2px);
}

.floating-call {
  background: #0d3b82;
}

.floating-whatsapp {
  background: #25d366;
}

.floating-label {
  font-size: 0.72rem;
  letter