@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --primary-color: #0f5132; /* Deep Green */
  --primary-hover: #0a3622;
  --bg-color: #ffffff;
  --bg-light: #f8f9fa;
  --text-main: #212529;
  --text-muted: #6c757d;
  --border-color: #e9ecef;
  
  --font-heading: 'Lora', serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-header: 0 4px 12px rgba(0,0,0,0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

/* Typography Utilities */
.text-primary { color: var(--primary-color); }
.text-center { text-align: center; }
.section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.bg-light { background-color: var(--bg-light); }
.bg-primary { background-color: var(--primary-color); color: #fff; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 500;
  font-family: var(--font-body);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
}
.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}
.btn-outline:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-white {
  background-color: #fff;
  color: var(--primary-color);
  font-weight: 600;
}
.btn-white:hover {
  background-color: #f1f1f1;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
  box-shadow: var(--shadow-header);
  transition: padding var(--transition-normal);
  padding: 1rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
}
.logo-text span {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  font-family: var(--font-body);
}

nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  font-weight: 500;
  color: var(--text-main);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
}

nav a:hover {
  color: var(--primary-color);
}
nav a:hover::after {
  width: 100%;
}

/* Dropdown Menus */
nav .has-dropdown {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: -1rem;
}

nav .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  flex-direction: column;
  gap: 0;
  padding: 0.5rem 0;
  border-radius: 0 0 5px 5px;
  border-top: 3px solid var(--primary-color);
}

nav .has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

nav .dropdown li {
  width: 100%;
}

nav .dropdown a {
  padding: 0.7rem 1.5rem;
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

nav .dropdown a::after {
  display: none;
}

nav .dropdown a:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
  padding-left: 2rem;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
  background: none;
  border: none;
}

/* Hero Section */
.hero {
  margin-top: 80px; /* Offset for fixed header */
  height: calc(100vh - 80px);
  min-height: 600px;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  max-width: 1100px;
  padding: 0 1.5rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
  white-space: nowrap;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-content h3 {
  font-size: 2rem;
  color: var(--primary-color);
}
.about-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

/* MD Message Section */
.message-section {
  background-color: var(--primary-color);
  color: #fff;
}
.message-section .section-title {
  color: #fff;
}
.message-section .section-title::after {
  background-color: #fff;
}

.message-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: center;
}

.message-img {
  border-radius: 50%;
  border: 5px solid rgba(255,255,255,0.2);
  overflow: hidden;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}
.message-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.message-text {
  font-size: 1.2rem;
  font-style: italic;
  font-family: var(--font-heading);
  line-height: 1.8;
  padding: 2rem;
  background: rgba(0,0,0,0.1);
  border-radius: 10px;
  position: relative;
}
.message-author {
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-style: normal;
}
.message-author h4 {
  margin-bottom: 0.2rem;
  font-size: 1.2rem;
}
.message-author p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: var(--bg-light);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
  background-color: var(--primary-color);
  color: #fff;
}

.feature-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Admissions Forms */
.admission-form {
  background: #fff;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-control {
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(15, 81, 50, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
}
.form-submit button {
  width: 100%;
  max-width: 300px;
  padding: 1rem;
  font-size: 1.1rem;
}

/* Footer & Sticky Contact */
footer {
  background-color: var(--primary-hover);
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-about p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: rgba(255,255,255,0.3);
}

.footer-links li {
  margin-bottom: 0.8rem;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-fast);
}
.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.7);
}
.footer-contact li i {
  color: #fff;
  margin-top: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.admin-login-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  text-decoration: none;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  transition: all 0.25s ease;
}

.admin-login-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
}

.admin-login-link i {
  font-size: 0.75rem;
}

/* Sticky Contact Bubble */
.sticky-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-bubble {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  cursor: pointer;
  transition: transform var(--transition-fast);
}
.contact-bubble:hover {
  transform: scale(1.1);
}

.contact-bubble.pulse::before {
  content: '';
  position: absolute;
  inset: -10px;
  background-color: var(--primary-color);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* WhatsApp Bubble */
.whatsapp-bubble {
  background-color: #25D366;
  font-size: 1.8rem;
}
.whatsapp-bubble:hover {
  background-color: #1ebe57;
}
.whatsapp-bubble.pulse::before {
  background-color: #25D366;
}

/* ========================
   About Sub-Page Styles
   ======================== */

/* Page Banner */
.page-banner {
  margin-top: 80px;
  height: 350px;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65));
}

.page-banner-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
}

.page-banner-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.page-banner-content p {
  font-size: 1.1rem;
  opacity: 0.85;
}

.page-banner-content a {
  color: rgba(255,255,255,0.8);
  transition: color 0.2s ease;
}

.page-banner-content a:hover {
  color: #fff;
}

/* About Blocks */
.about-full {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.about-block {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.about-block.reverse {
  grid-template-columns: 1.5fr 1fr;
}

.about-block.reverse .about-block-img {
  order: 2;
}

.about-block-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.about-block-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  padding: 0.6rem 0;
  font-size: 1.05rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.about-list li i {
  color: var(--primary-color);
  margin-top: 4px;
  flex-shrink: 0;
}

/* Vision Cards */
.icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.vision-card {
  background: var(--bg-light);
  padding: 2rem 1.5rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.vision-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.vision-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.vision-card h4 {
  font-size: 1rem;
  margin-bottom: 0;
}

/* Timeline */
.milestones-section {
  padding-top: 2rem;
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-color);
  opacity: 0.3;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-dot {
  position: absolute;
  left: -33px;
  top: 5px;
  width: 14px;
  height: 14px;
  background-color: var(--primary-color);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-content {
  background: var(--bg-light);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
}

.timeline-content h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ========================
   Mandatory Disclosure Page
   ======================== */

/* Disclosure Section Nav (sticky tabs) */
.disclosure-nav-section {
  position: sticky;
  top: 80px;
  z-index: 100;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  border-bottom: 1px solid var(--border-color);
}

.disclosure-nav {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0;
}

.disclosure-nav::-webkit-scrollbar {
  display: none;
}

.disclosure-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all var(--transition-fast);
  text-decoration: none;
  flex: 1;
  text-align: center;
}

.disclosure-nav-item i {
  font-size: 1.1rem;
}

.disclosure-nav-item:hover {
  color: var(--primary-color);
  background: rgba(15,81,50,0.04);
}

.disclosure-nav-item.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  background: rgba(15,81,50,0.06);
}

/* Disclosure Cards */
.disclosure-section {
  scroll-margin-top: 180px;
}

.disclosure-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.disclosure-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(15,81,50,0.04), rgba(15,81,50,0.08));
  border-bottom: 1px solid var(--border-color);
}

.disclosure-icon {
  width: 65px;
  height: 65px;
  min-width: 65px;
  background: linear-gradient(135deg, var(--primary-color), #1a7a4a);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 12px rgba(15,81,50,0.25);
}

.disclosure-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.disclosure-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.disclosure-body {
  padding: 2.5rem;
}

.disclosure-sub-heading {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--border-color);
}

.disclosure-sub-heading i {
  color: var(--primary-color);
}

/* Disclosure Tables */
.disclosure-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.disclosure-table thead th {
  background: var(--primary-color);
  color: #fff;
  padding: 1rem 1.2rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: left;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.disclosure-table tbody tr {
  transition: background var(--transition-fast);
}

.disclosure-table tbody tr:nth-child(even) {
  background: rgba(15,81,50,0.02);
}

.disclosure-table tbody tr:hover {
  background: rgba(15,81,50,0.06);
}

.disclosure-table td {
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
  color: var(--text-main);
  vertical-align: middle;
}

.disclosure-table tbody tr:last-child td {
  border-bottom: none;
}

.disclosure-table .label-cell {
  font-weight: 600;
  color: var(--text-main);
  width: 45%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.disclosure-table .label-cell i {
  color: var(--primary-color);
  width: 18px;
  text-align: center;
  font-size: 0.9rem;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Documents Grid */
.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.document-card {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.document-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), #2ecc71);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.document-card:hover::before {
  transform: scaleX(1);
}

.document-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(15,81,50,0.1);
  transform: translateY(-3px);
}

.document-icon {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.document-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.document-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.document-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  background: rgba(15,81,50,0.1);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Result Year Cards */
.result-year-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.result-year-card {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.result-year-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 12px 30px rgba(15,81,50,0.12);
  transform: translateY(-5px);
}

.result-year-badge {
  background: linear-gradient(135deg, var(--primary-color), #1a7a4a);
  color: #fff;
  text-align: center;
  padding: 0.8rem;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

.result-stats {
  display: flex;
  padding: 1.5rem 1.2rem;
  gap: 0.5rem;
}

.result-stat {
  flex: 1;
  text-align: center;
  padding: 0.8rem 0.5rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border-color);
}

.result-stat.highlight {
  background: rgba(15,81,50,0.08);
  border-color: var(--primary-color);
}

.stat-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-heading);
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

.result-details {
  padding: 0 1.5rem 1.5rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-value {
  font-weight: 600;
  color: var(--text-main);
}

.highlight-text {
  color: var(--primary-color) !important;
  font-size: 1.1rem;
}

/* Staff Summary Cards */
.staff-summary-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}

.staff-summary-card {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.staff-summary-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(15,81,50,0.08);
}

.staff-count {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.staff-type {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Staff Badges */
.staff-badge {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.staff-badge.principal {
  background: rgba(15,81,50,0.12);
  color: var(--primary-color);
}

.staff-badge.pgt {
  background: rgba(37,99,235,0.1);
  color: #2563eb;
}

.staff-badge.tgt {
  background: rgba(245,158,11,0.12);
  color: #b45309;
}

.staff-badge.prt {
  background: rgba(139,92,246,0.1);
  color: #7c3aed;
}

.staff-table td:first-child {
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  width: 60px;
}

/* Infrastructure Summary Grid */
.infra-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.infra-card {
  background: linear-gradient(135deg, rgba(15,81,50,0.06), rgba(15,81,50,0.02));
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.infra-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(15,81,50,0.1);
}

.infra-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.infra-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.infra-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-heading);
  margin: 0;
}

/* Infrastructure Badges */
.infra-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.infra-badge.yes {
  background: rgba(15,81,50,0.08);
  color: var(--primary-color);
}

.infra-badge.no {
  background: rgba(220,53,69,0.08);
  color: #dc3545;
}

/* ========================
   Academics Page Styles
   ======================== */

.acad-section {
  scroll-margin-top: 180px;
}

/* Intro blocks */
.acad-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.acad-intro-text .section-title {
  display: inline-block;
}

.acad-lead {
  font-size: 1.15rem;
  color: var(--text-main);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.acad-intro-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.acad-intro-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
  transition: transform 0.5s ease;
}

.acad-intro-img img:hover {
  transform: scale(1.03);
}

/* Sub titles */
.acad-sub-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--border-color);
}

.acad-sub-title i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* Academic Level Cards */
.acad-levels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.acad-level-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.acad-level-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
  border-color: var(--primary-color);
}

.acad-level-header {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
}

.acad-level-header i {
  font-size: 1.8rem;
  opacity: 0.9;
}

.acad-level-header h4 {
  font-size: 1.2rem;
  margin: 0;
  font-family: var(--font-heading);
}

.acad-level-header.pre-primary {
  background: linear-gradient(135deg, #e74c3c, #ff6b6b);
}
.acad-level-header.primary {
  background: linear-gradient(135deg, #f39c12, #f1c40f);
}
.acad-level-header.middle {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}
.acad-level-header.secondary {
  background: linear-gradient(135deg, #0f5132, #1a7a4a);
}
.acad-level-header.senior {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.acad-level-body {
  padding: 1.8rem 2rem;
}

.acad-level-body > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.acad-level-list {
  list-style: none;
  padding: 0;
}

.acad-level-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0;
  font-size: 0.93rem;
  color: var(--text-main);
}

.acad-level-list li i {
  color: var(--primary-color);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Stream grid for senior secondary */
.stream-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.stream-card {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stream-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.stream-card h5 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.stream-card h5 i {
  font-size: 0.85rem;
}

.stream-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Methodology Cards */
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.method-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.method-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), #2ecc71);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.method-card:hover::after {
  transform: scaleX(1);
}

.method-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-color: var(--primary-color);
}

.method-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(15,81,50,0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.2rem;
  transition: all 0.3s ease;
}

.method-card:hover .method-icon {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.08);
}

.method-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  color: var(--text-main);
}

.method-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ─── Facility Showcase ─── */
.facility-showcase {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
}

.facility-card-large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0,0,0,0.07);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.facility-card-large:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-color: var(--primary-color);
}

.facility-card-large.reverse {
  direction: rtl;
}

.facility-card-large.reverse > * {
  direction: ltr;
}

.facility-card-img {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.facility-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.facility-card-large:hover .facility-card-img img {
  transform: scale(1.05);
}

.facility-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
}

.facility-tag {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.facility-card-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.facility-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.facility-card-content > p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.facility-feature-list {
  list-style: none;
  padding: 0;
}

.facility-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 0;
  font-size: 0.93rem;
  color: var(--text-main);
}

.facility-feature-list li i {
  color: var(--primary-color);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

/* Amenities Grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.amenity-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.amenity-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(15,81,50,0.08);
}

.amenity-icon {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background: rgba(15,81,50,0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.amenity-card:hover .amenity-icon {
  background: var(--primary-color);
  color: #fff;
}

.amenity-card h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.amenity-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ─── Faculty Section ─── */

/* Stats bar */
.faculty-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: linear-gradient(135deg, var(--primary-color), #1a7a4a);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 8px 25px rgba(15,81,50,0.2);
}

.faculty-stat-item {
  flex: 1;
  text-align: center;
}

.faculty-stat-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-heading);
  line-height: 1;
}

.faculty-stat-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.4rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.faculty-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.2);
}

/* Category Cards */
.faculty-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.faculty-cat-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.faculty-cat-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.faculty-cat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.faculty-cat-card h4 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 0.3rem;
}

.faculty-cat-count {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.faculty-cat-detail {
  margin-bottom: 0.8rem;
}

.faculty-cat-detail strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-main);
}

.faculty-cat-detail span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.faculty-cat-subjects {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}

.faculty-cat-subjects span {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Faculty Highlights */
.faculty-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.faculty-highlight {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.faculty-highlight:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(15,81,50,0.08);
  transform: translateY(-3px);
}

.faculty-highlight-num {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--primary-color);
  opacity: 0.3;
  line-height: 1;
  min-width: 50px;
}

.faculty-highlight h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.faculty-highlight p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Academics CTA Box */
.acad-cta-box {
  margin-top: 4rem;
  background: linear-gradient(135deg, rgba(15,81,50,0.06), rgba(15,81,50,0.1));
  border: 1px solid rgba(15,81,50,0.15);
  border-radius: 16px;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.acad-cta-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.acad-cta-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-grid, .message-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .message-img {
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-block,
  .about-block.reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-block.reverse .about-block-img {
    order: 0;
  }
  .disclosure-body {
    padding: 1.5rem;
  }
  .disclosure-header {
    padding: 1.5rem;
  }
  .result-year-cards {
    grid-template-columns: 1fr;
  }
  .documents-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
  .infra-summary-grid {
    grid-template-columns: 1fr 1fr;
  }
  .staff-summary-cards {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  /* Academics responsive - tablet */
  .acad-intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .acad-levels-grid {
    grid-template-columns: 1fr;
  }
  .acad-level-card[style] {
    max-width: 100% !important;
  }
  .methodology-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .facility-card-large,
  .facility-card-large.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .facility-card-img {
    min-height: 250px;
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faculty-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faculty-highlights-grid {
    grid-template-columns: 1fr;
  }
  .acad-cta-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    white-space: normal;
    font-size: 2.2rem;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 0;
    box-shadow: var(--shadow-md);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.3s ease-in-out;
  }
  nav ul.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  nav ul li {
    width: 100%;
    text-align: center;
  }
  nav ul li a {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
  }
  .header-cta {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  .admission-form {
    padding: 1.5rem;
  }

  /* Disclosure responsive */
  .disclosure-nav-section {
    top: 70px;
  }
  .disclosure-nav-item {
    padding: 0.7rem 0.8rem;
    font-size: 0.7rem;
    min-width: 70px;
  }
  .disclosure-nav-item i {
    font-size: 0.9rem;
  }
  .disclosure-title {
    font-size: 1.3rem;
  }
  .disclosure-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 1.2rem;
  }
  .disclosure-header {
    gap: 1rem;
    padding: 1.2rem;
  }
  .disclosure-body {
    padding: 1rem;
  }
  .disclosure-table .label-cell {
    width: auto;
  }
  .documents-grid {
    grid-template-columns: 1fr;
  }
  .infra-summary-grid {
    grid-template-columns: 1fr 1fr;
  }
  .staff-summary-cards {
    grid-template-columns: 1fr 1fr;
  }
  .staff-count {
    font-size: 2rem;
  }
  .result-stats {
    padding: 1rem 0.8rem;
  }
  .stat-number {
    font-size: 1.3rem;
  }
  /* Academics responsive - mobile */
  .acad-intro-img {
    order: -1 !important;
  }
  .methodology-grid {
    grid-template-columns: 1fr;
  }
  .stream-grid {
    grid-template-columns: 1fr;
  }
  .amenities-grid {
    grid-template-columns: 1fr 1fr;
  }
  .faculty-stats-bar {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 1rem;
  }
  .faculty-stat-item {
    min-width: 45%;
  }
  .faculty-stat-num {
    font-size: 1.8rem;
  }
  .faculty-stat-divider {
    display: none;
  }
  .faculty-category-grid {
    grid-template-columns: 1fr;
  }
  .facility-card-content {
    padding: 1.5rem;
  }
  .facility-card-content h3 {
    font-size: 1.3rem;
  }
  .acad-cta-box {
    padding: 1.5rem;
  }
}

/* ─── Form Response Modal ─────────────── */
.form-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.form-modal-overlay.show {
  display: flex;
}

.form-modal {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  width: 90%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  animation: formModalIn 0.35s ease;
}

@keyframes formModalIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.form-modal-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.form-modal h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.form-modal p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.form-modal .btn {
  padding: 0.7rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
}
