/* ==========================================================================
   Pragati Science Academy - Main Stylesheet
   Theme: Deep Navy / Midnight Blue (#0A0F1D / #0F172A)
   Surfaces: Rich Dark Blue Slate (#1E293B)
   Accents: Electric / Cyan Blue (#2563EB / #0EA5E9)
   Typography: Clean White (#F8FAFC) & Muted Slate (#94A3B8)
   STRICTLY ZERO ANIMATIONS: No transitions, no keyframes, no scroll animations.
   ========================================================================== */

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* Enforce ZERO transitions or animations */
  transition: none !important;
  animation: none !important;
}

html {
  font-size: 16px;
  scroll-behavior: auto !important; /* STRICTLY NO smooth scroll animation */
  background-color: #0A0F1D;
  color: #F8FAFC;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
}

body {
  background-color: #0A0F1D;
  color: #94A3B8;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
  color: #F8FAFC;
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: #94A3B8;
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: #38BDF8;
  text-decoration: none;
}

a:hover {
  color: #0EA5E9;
  text-decoration: underline;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Section Common */
.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid #1E293B;
}

.section-alt {
  background-color: #0F172A;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  display: inline-block;
  background-color: #1E293B;
  color: #38BDF8;
  border: 1px solid #334155;
  padding: 0.25rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  white-space: nowrap;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #94A3B8;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.25;
}

.btn-primary {
  background-color: #2563EB;
  color: #FFFFFF;
  border-color: #2563EB;
}

.btn-primary:hover {
  background-color: #1D4ED8;
  border-color: #1D4ED8;
  color: #FFFFFF;
  text-decoration: none;
}

.btn-secondary {
  background-color: #1E293B;
  color: #F8FAFC;
  border-color: #334155;
}

.btn-secondary:hover {
  background-color: #334155;
  color: #FFFFFF;
  text-decoration: none;
}

.btn-cyan {
  background-color: #0EA5E9;
  color: #0A0F1D;
  font-weight: 700;
  border-color: #0EA5E9;
}

.btn-cyan:hover {
  background-color: #0284C7;
  color: #FFFFFF;
  border-color: #0284C7;
  text-decoration: none;
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* Top Notification Strip */
.top-strip {
  background-color: #1E293B;
  border-bottom: 1px solid #334155;
  font-size: 0.8125rem;
  padding: 0.4rem 0;
  color: #94A3B8;
}

.top-strip-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-strip-left, .top-strip-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.badge-live {
  background-color: #0EA5E9;
  color: #0A0F1D;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 0.25rem;
  font-size: 0.7rem;
  text-transform: uppercase;
}

/* Navigation Bar */
.navbar,
header#main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #0A0F1D;
  border-bottom: 1px solid #1E293B;
  height: 52px;
  padding: 0;
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  height: 100%;
}

.brand-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #2563EB, #0EA5E9);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 0.375rem;
  border: 1px solid #38BDF8;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #F8FAFC;
  line-height: 1.1;
  margin: 0;
}

.brand-subtitle {
  font-size: 0.65rem;
  color: #0EA5E9;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.75rem;
  height: 100%;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #94A3B8;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  padding: 0.35rem 0;
}

.nav-link:hover {
  color: #38BDF8;
  text-decoration: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 100%;
}

#nav-call-btn {
  padding: 0.35rem 0.85rem;
  font-size: 0.825rem;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

#nav-call-btn .call-icon {
  font-size: 0.85rem;
  line-height: 1;
}

#nav-call-btn .call-text {
  display: inline;
}

.mobile-menu-btn {
  display: none;
  background-color: #1E293B;
  border: 1px solid #334155;
  color: #F8FAFC;
  font-size: 1.1rem;
  padding: 0.35rem 0.65rem;
  border-radius: 0.375rem;
  cursor: pointer;
  line-height: 1;
}

/* Hero Section */
.hero {
  padding-top: 4.5rem;
  padding-bottom: 5rem;
  background: #0A0F1D;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-campus-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #1E293B;
  border: 1px solid #334155;
  padding: 0.35rem 0.85rem;
  border-radius: 0.375rem;
  color: #38BDF8;
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 2.85rem;
  font-weight: 800;
  color: #F8FAFC;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-title-highlight {
  color: #0EA5E9;
}

.hero-lead {
  font-size: 1.125rem;
  color: #94A3B8;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #1E293B;
  list-style: none;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #E2E8F0;
  font-weight: 500;
}

.hero-trust-item .check {
  color: #0EA5E9;
  font-weight: bold;
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #334155;
  background-color: #1E293B;
}

.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.hero-floating-card {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  background-color: #1E293B;
  border: 1px solid #38BDF8;
  border-radius: 0.5rem;
  padding: 1.25rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  max-width: 280px;
}

.hero-floating-card-title {
  color: #F8FAFC;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.hero-floating-card-sub {
  color: #0EA5E9;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Key Metrics Bar */
.metrics-bar {
  background-color: #0F172A;
  border-top: 1px solid #1E293B;
  border-bottom: 1px solid #1E293B;
  padding: 3rem 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.metric-card {
  background-color: #1E293B;
  border: 1px solid #334155;
  border-radius: 0.5rem;
  padding: 1.75rem 1.25rem;
  text-align: center;
}

.metric-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0EA5E9;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.metric-title {
  color: #F8FAFC;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.metric-desc {
  font-size: 0.85rem;
  color: #94A3B8;
  line-height: 1.45;
}

/* Courses & Batches */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.course-card {
  background-color: #1E293B;
  border: 1px solid #334155;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.course-card.featured {
  border-color: #0EA5E9;
  position: relative;
}

.featured-pill {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #0EA5E9;
  color: #0A0F1D;
  font-size: 0.725rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
}

.course-header {
  padding: 1.75rem 1.5rem 1.25rem 1.5rem;
  border-bottom: 1px solid #334155;
}

.course-target {
  font-size: 0.8rem;
  color: #38BDF8;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.course-name {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.course-mode {
  display: inline-block;
  background-color: #0F172A;
  color: #E2E8F0;
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  border: 1px solid #334155;
}

.course-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.course-timing-box {
  background-color: #0F172A;
  border: 1px solid #334155;
  border-radius: 0.375rem;
  padding: 0.85rem;
  margin-bottom: 1.25rem;
}

.timing-label {
  font-size: 0.75rem;
  color: #94A3B8;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.timing-val {
  font-size: 0.9rem;
  color: #F8FAFC;
  font-weight: 600;
}

.course-feature-title {
  font-size: 0.85rem;
  color: #F8FAFC;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.course-feature-list {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.course-feature-item {
  font-size: 0.875rem;
  color: #94A3B8;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.course-feature-item::before {
  content: "•";
  color: #0EA5E9;
  font-size: 1.2rem;
  line-height: 1;
}

.course-footer {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

/* Weekly Schedule */
.schedule-container {
  background-color: #1E293B;
  border: 1px solid #334155;
  border-radius: 0.5rem;
  overflow: hidden;
}

.schedule-header-row {
  background-color: #0F172A;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #334155;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.schedule-badge {
  background-color: #2563EB;
  color: #FFFFFF;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-collapse: collapse;
}

.schedule-col {
  border-right: 1px solid #334155;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.schedule-col:last-child {
  border-right: none;
}

.day-badge {
  display: inline-block;
  background-color: #0F172A;
  color: #38BDF8;
  border: 1px solid #334155;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  width: fit-content;
  margin-bottom: 0.85rem;
}

.day-title {
  font-size: 1.15rem;
  color: #F8FAFC;
  margin-bottom: 0.4rem;
}

.day-time {
  font-size: 0.825rem;
  color: #0EA5E9;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.day-desc {
  font-size: 0.85rem;
  color: #94A3B8;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.day-outcomes {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid #334155;
  font-size: 0.785rem;
  color: #CBD5E1;
}

/* Facilities */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.facility-card {
  background-color: #1E293B;
  border: 1px solid #334155;
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.facility-img-box {
  height: 180px;
  background-color: #0F172A;
  overflow: hidden;
  position: relative;
}

.facility-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.facility-content {
  padding: 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.facility-title {
  font-size: 1.1rem;
  color: #F8FAFC;
  margin-bottom: 0.5rem;
}

.facility-desc {
  font-size: 0.85rem;
  color: #94A3B8;
  line-height: 1.5;
}

/* Study Material & Test Series */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.material-card {
  background-color: #1E293B;
  border: 1px solid #334155;
  border-radius: 0.5rem;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}

.material-icon-box {
  width: 48px;
  height: 48px;
  background-color: #0F172A;
  border: 1px solid #2563EB;
  color: #0EA5E9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 0.375rem;
  margin-bottom: 1.25rem;
}

.material-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.material-desc {
  font-size: 0.9rem;
  color: #94A3B8;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.material-points {
  list-style: none;
  border-top: 1px solid #334155;
  padding-top: 1rem;
  margin-top: auto;
}

.material-point {
  font-size: 0.85rem;
  color: #E2E8F0;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.material-point::before {
  content: "✓";
  color: #0EA5E9;
  font-weight: bold;
}

/* Faculty & Pedagogy */
.faculty-intro-box {
  background-color: #1E293B;
  border: 1px solid #334155;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.pedagogy-title {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
}

.pedagogy-principles {
  list-style: none;
}

.pedagogy-item {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.pedagogy-item strong {
  color: #38BDF8;
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.faculty-card {
  background-color: #1E293B;
  border: 1px solid #334155;
  border-radius: 0.5rem;
  overflow: hidden;
  text-align: center;
}

.faculty-img-box {
  height: 220px;
  background-color: #0F172A;
  overflow: hidden;
}

.faculty-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faculty-info {
  padding: 1.25rem 1rem;
}

.faculty-name {
  font-size: 1.1rem;
  color: #F8FAFC;
  margin-bottom: 0.25rem;
}

.faculty-dept {
  color: #0EA5E9;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.faculty-creds {
  font-size: 0.8rem;
  color: #E2E8F0;
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.faculty-exp {
  font-size: 0.75rem;
  color: #94A3B8;
}

/* Scholarship Banner */
.scholarship-banner {
  background: linear-gradient(135deg, #1E293B, #0F172A);
  border: 2px solid #2563EB;
  border-radius: 0.75rem;
  padding: 3rem 2.5rem;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2.5rem;
  align-items: center;
}

.scholarship-title {
  font-size: 2.15rem;
  margin-bottom: 0.75rem;
}

.scholarship-sub {
  font-size: 1.05rem;
  color: #E2E8F0;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.scholarship-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.scholarship-stat-item {
  display: flex;
  flex-direction: column;
}

.scholarship-stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0EA5E9;
  line-height: 1;
}

.scholarship-stat-label {
  font-size: 0.75rem;
  color: #94A3B8;
  text-transform: uppercase;
  font-weight: 600;
}

.scholarship-action-box {
  background-color: #0A0F1D;
  border: 1px solid #334155;
  border-radius: 0.5rem;
  padding: 1.75rem;
  text-align: center;
}

.scholarship-action-title {
  font-size: 1.15rem;
  color: #F8FAFC;
  margin-bottom: 0.5rem;
}

.scholarship-action-desc {
  font-size: 0.85rem;
  color: #94A3B8;
  margin-bottom: 1.25rem;
}

/* Results & Testimonials */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.result-card {
  background-color: #1E293B;
  border: 1px solid #334155;
  border-radius: 0.5rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.topper-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #334155;
  padding-bottom: 1.25rem;
}

.topper-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #0EA5E9;
  object-fit: cover;
}

.topper-info {
  display: flex;
  flex-direction: column;
}

.topper-name {
  font-size: 1.15rem;
  color: #F8FAFC;
  margin-bottom: 0.15rem;
}

.topper-rank-badge {
  display: inline-block;
  background-color: #0F172A;
  color: #0EA5E9;
  border: 1px solid #2563EB;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  width: fit-content;
}

.topper-college {
  font-size: 0.785rem;
  color: #CBD5E1;
}

.topper-quote {
  font-style: italic;
  font-size: 0.9rem;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.topper-tag {
  font-size: 0.75rem;
  color: #38BDF8;
  font-weight: 600;
  text-transform: uppercase;
}

/* 3-Step Admission Process */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.step-card {
  background-color: #1E293B;
  border: 1px solid #334155;
  border-radius: 0.5rem;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}

.step-num-badge {
  width: 44px;
  height: 44px;
  background-color: #2563EB;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  border: 2px solid #38BDF8;
}

.step-title {
  font-size: 1.25rem;
  color: #F8FAFC;
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.875rem;
  color: #94A3B8;
  line-height: 1.55;
}

/* FAQ Section - Clean Static Pre-Expanded Cards */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-card {
  background-color: #1E293B;
  border: 1px solid #334155;
  border-radius: 0.5rem;
  padding: 1.75rem;
}

.faq-question {
  font-size: 1.15rem;
  color: #F8FAFC;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.faq-q-badge {
  background-color: #2563EB;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.45rem;
  border-radius: 0.25rem;
  line-height: 1;
}

.faq-answer {
  font-size: 0.925rem;
  color: #CBD5E1;
  line-height: 1.65;
  padding-left: 2rem;
}

/* Contact & Lead Capture */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

.inquiry-form-card {
  background-color: #1E293B;
  border: 1px solid #334155;
  border-radius: 0.5rem;
  padding: 2.25rem;
}

.form-title {
  font-size: 1.5rem;
  color: #F8FAFC;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.875rem;
  color: #94A3B8;
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #E2E8F0;
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  background-color: #0F172A;
  border: 1px solid #334155;
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: #F8FAFC;
  outline: none;
  font-family: inherit;
}

.form-control:focus {
  border-color: #0EA5E9;
  background-color: #0A0F1D;
}

.form-control::placeholder {
  color: #64748B;
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-alert {
  display: none;
  background-color: #064E3B;
  border: 1px solid #059669;
  color: #A7F3D0;
  padding: 1rem;
  border-radius: 0.375rem;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.form-alert.visible {
  display: block;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.campus-card {
  background-color: #1E293B;
  border: 1px solid #334155;
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.campus-name {
  font-size: 1.15rem;
  color: #F8FAFC;
  margin-bottom: 0.25rem;
}

.campus-tag {
  display: inline-block;
  font-size: 0.75rem;
  color: #0EA5E9;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.campus-detail {
  font-size: 0.875rem;
  color: #94A3B8;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.45;
}

.campus-detail strong {
  color: #E2E8F0;
  min-width: 65px;
}

/* Map Mock Card */
.map-placeholder-card {
  background-color: #0F172A;
  border: 1px solid #334155;
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.map-title {
  font-size: 0.95rem;
  color: #F8FAFC;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.map-visual-box {
  background-color: #1E293B;
  border: 1px solid #334155;
  border-radius: 0.375rem;
  padding: 1.25rem;
  text-align: center;
}

.map-visual-title {
  color: #38BDF8;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.map-visual-desc {
  font-size: 0.8rem;
  color: #94A3B8;
  margin-bottom: 1rem;
}

.whatsapp-box {
  background-color: #064E3B;
  border: 1px solid #059669;
  border-radius: 0.5rem;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.whatsapp-text-title {
  color: #ECFDF5;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.whatsapp-text-sub {
  color: #A7F3D0;
  font-size: 0.8rem;
}

/* Modal for Syllabus Download */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(10, 15, 29, 0.85);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background-color: #1E293B;
  border: 1px solid #38BDF8;
  border-radius: 0.5rem;
  max-width: 600px;
  width: 100%;
  padding: 2rem;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #94A3B8;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.modal-close-btn:hover {
  color: #FFFFFF;
}

.modal-title {
  font-size: 1.45rem;
  color: #F8FAFC;
  margin-bottom: 0.5rem;
}

.modal-desc {
  font-size: 0.9rem;
  color: #94A3B8;
  margin-bottom: 1.5rem;
}

.syllabus-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.syllabus-item {
  background-color: #0F172A;
  border: 1px solid #334155;
  border-radius: 0.375rem;
  padding: 0.85rem 1rem;
  margin-bottom: 0.65rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.syllabus-info-name {
  color: #F8FAFC;
  font-size: 0.9rem;
  font-weight: 600;
}

.syllabus-info-meta {
  color: #94A3B8;
  font-size: 0.75rem;
}

/* Footer */
.footer {
  background-color: #080C17;
  border-top: 1px solid #1E293B;
  padding: 4rem 0 2rem 0;
  font-size: 0.875rem;
}

.footer .brand-logo {
  height: auto;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.footer .brand-title {
  font-size: 1.05rem;
  line-height: 1.25;
  color: #F8FAFC;
  display: block;
}

.footer .brand-subtitle {
  display: block !important;
  font-size: 0.725rem;
  color: #0EA5E9;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  line-height: 1.3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-desc {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: #94A3B8;
  line-height: 1.6;
}

.footer-heading {
  font-size: 1rem;
  color: #F8FAFC;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
}

.footer-link-item {
  margin-bottom: 0.65rem;
}

.footer-link {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-link:hover {
  color: #38BDF8;
  text-decoration: underline;
}

.footer-hours-box {
  background-color: #0F172A;
  border: 1px solid #1E293B;
  padding: 1rem;
  border-radius: 0.375rem;
}

.footer-hours-row {
  margin-bottom: 0.5rem;
  font-size: 0.825rem;
}

.footer-hours-row strong {
  color: #E2E8F0;
  display: block;
}

.footer-bottom {
  border-top: 1px solid #1E293B;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: #64748B;
  font-size: 0.8rem;
}

.footer-disclaimer {
  max-width: 650px;
  line-height: 1.4;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .courses-grid {
    grid-template-columns: 1fr;
  }
  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .schedule-col:nth-child(2) {
    border-right: none;
  }
  .schedule-col:nth-child(1), .schedule-col:nth-child(2) {
    border-bottom: 1px solid #334155;
  }
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faculty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .scholarship-banner {
    grid-template-columns: 1fr;
  }
  .results-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  header#main-header:nth-of-type(1) > div:nth-of-type(1) > a#brand-logo:nth-of-type(1) > div:nth-of-type(2) > span:nth-of-type(2),
  .brand-subtitle {
    display: none !important;
  }

  .brand-title {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    white-space: nowrap;
    text-rendering: optimizeLegibility;
  }

  header#main-header:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(1) > a#nav-call-btn:nth-of-type(1),
  #nav-call-btn {
    width: 34px;
    height: 34px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    min-width: 34px;
    flex-shrink: 0;
  }

  header#main-header:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(1) > a#nav-call-btn:nth-of-type(1) .call-text,
  #nav-call-btn .call-text {
    display: none !important;
  }

  header#main-header:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(1) > a#nav-call-btn:nth-of-type(1) .call-icon,
  #nav-call-btn .call-icon {
    display: inline-block;
    margin: 0;
    font-size: 1rem;
    line-height: 1;
  }

  .top-strip {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #0F172A;
    border-bottom: 1px solid #334155;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    align-items: flex-start;
  }
  .nav-menu.open {
    display: flex;
  }
  .hero-title {
    font-size: 2.15rem;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .schedule-grid {
    grid-template-columns: 1fr;
  }
  .schedule-col {
    border-right: none !important;
    border-bottom: 1px solid #334155;
  }
  .schedule-col:last-child {
    border-bottom: none;
  }
  .facilities-grid {
    grid-template-columns: 1fr;
  }
  .materials-grid {
    grid-template-columns: 1fr;
  }
  .faculty-intro-box {
    grid-template-columns: 1fr;
  }
  .faculty-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer {
    padding: 2.5rem 0 1.5rem 0;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding-top: 1.5rem;
  }
  .footer-disclaimer {
    max-width: 100%;
  }

  /* Section #contact Mobile Refinements */
  section#contact:nth-of-type(12),
  #contact {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .inquiry-form-card {
    padding: 1.25rem 1rem;
  }
  .form-title {
    font-size: 1.25rem;
  }
  .form-subtitle {
    font-size: 0.825rem;
    margin-bottom: 1.25rem;
  }
  .form-group {
    margin-bottom: 1rem;
  }
  .form-control {
    padding: 0.65rem 0.75rem;
    font-size: 0.9rem;
  }
  #submit-inquiry-btn {
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }
  .campus-card {
    padding: 1.25rem 1rem;
  }
  .campus-name {
    font-size: 1.05rem;
  }
  .campus-detail {
    font-size: 0.825rem;
  }
  .campus-detail strong {
    min-width: 58px;
  }
  .map-placeholder-card {
    padding: 1.25rem 1rem;
  }
  .map-visual-box {
    padding: 1rem 0.75rem;
  }
  .whatsapp-box {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 0.85rem;
    padding: 1rem;
  }
  .whatsapp-box .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-floating-card {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .inquiry-form-card {
    padding: 1rem 0.75rem;
  }
  .campus-card {
    padding: 1rem 0.75rem;
  }
  .map-placeholder-card {
    padding: 1rem 0.75rem;
  }
  .brand-title {
    font-size: 0.825rem;
  }
  .brand-logo {
    gap: 0.4rem;
  }
  .brand-icon {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }
  .nav-actions {
    gap: 0.4rem;
  }
}
