/* Padmodaya Campus — Styles */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth;
    /* font-size: 25px;*/
     }

body {
  font-size:24px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #FAFAF8;
  color: 27C5F5;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }

/* NAVIGATION */
.navbar {
  position: sticky; top: 0; z-index: 40;
  background: #1C8ABD;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #F0F0F0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-logo {
  width: 40px; height: 44px; border-radius: 14px;
  background: #1A1A1A; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  transition: background 0.2s;
}
.brand:hover .brand-logo { background: #333; }
.brand-name { font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
.brand-sub { font-size: 1rem; color: #ffffff; line-height: 1.2; margin-top: 2px; }

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  background: rgba(240,240,240,0.6);
  border-radius: 999px; padding: 4px;
}
.nav-link {
  padding: 0.5rem 0.9rem;
  font-size: 1rem; font-weight: 500;
  color: #000000;
  border-radius: 999px;
  transition: all 0.2s;
}
.nav-link:hover { color: #1A1A1A; }
.nav-link.active { background: white; color: #1A1A1A; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.admin-link { background: #1A1A1A; color: white !important; margin-left: 0.5rem; }
.admin-link:hover { background: #333; }

.nav-toggle { display: none; font-size: 1.25rem; padding: 0.5rem; color: #1A1A1A; }

@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; border-radius: 0; padding: 1rem; flex-direction: column; align-items: stretch; border-bottom: 1px solid #F0F0F0; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}

/* HERO */
.hero {
  position: relative; overflow: hidden;
  padding: 5rem 0 3rem;
  background:
    radial-gradient(circle at 20% 10%, rgba(184,169,232,0.15), transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(245,166,35,0.1), transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(78,205,196,0.1), transparent 50%);
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1rem;
  color: #1A1A1A;
}
.text-lilac { color: #5B21B6; }
.hero-nepali { font-size: 1.125rem; color: #6B6B6B; font-weight: 500; margin-bottom: 0.25rem; }
.hero-tagline { font-size: 1.125rem; font-weight: 500; color: #1A1A1A; margin-bottom: 1.5rem; }
.hero-desc { font-size: 1rem; color: #6B6B6B; max-width: 42rem; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem; font-weight: 600;
  border-radius: 999px;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-sm { padding: 0.5rem 1rem; font-size: 0.75rem; }
.btn-primary {
  background: #B8A9E8; color: #1A1A1A;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.btn-primary:hover { background: #A89AD8; box-shadow: 0 4px 8px rgba(0,0,0,0.08); }
.btn-secondary {
  background: white; color: #1A1A1A;
  border: 1px solid #E0E0E0;
}
.btn-secondary:hover { background: #FAFAF8; }

.link-btn {
  font-size: 0.75rem; font-weight: 500;
  color: #5B21B6;
}
.link-btn:hover { text-decoration: underline; }

/* BADGES */
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.6875rem; font-weight: 600;
  border-radius: 999px;
  border: 1px solid;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.badge-lilac { background: rgba(184,169,232,0.15); color: #5B21B6; border-color: rgba(184,169,232,0.3); }
.badge-amber { background: rgba(245,166,35,0.1); color: #92400E; border-color: rgba(245,166,35,0.2); }
.badge-teal { background: rgba(78,205,196,0.1); color: #115E59; border-color: rgba(78,205,196,0.2); }
.badge-coral { background: rgba(255,107,107,0.1); color: #DC2626; border-color: rgba(255,107,107,0.2); }
.badge-green { background: rgba(74,222,128,0.1); color: #166534; border-color: rgba(74,222,128,0.2); }
.badge-hidden { background: #F0F0F0; color: #6B6B6B; border-color: #E0E0E0; }

/* SECTIONS */
.section { padding: 3rem 1.5rem; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.section-title { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; display: flex; align-items: center; gap: 0.5rem; }
.page-title { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; color: #1A1A1A; }
.page-desc { font-size: 1rem; color: #6B6B6B; max-width: 48rem; margin-bottom: 2rem; }

/* PAGES */
.page { display: none; animation: fadeIn 0.3s ease-out; }
.page.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* STATS GRID */
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; margin-top: 1rem;
}
.stat-card {
  background: white;
  border: 1px solid #F0F0F0;
  border-radius: 16px;
  padding: 1.25rem;
  transition: all 0.2s;
}
.stat-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.stat-icon {
  width: 36px; height: 36px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  margin-bottom: 0.75rem;
}
.stat-value { font-size: 1.75rem; font-weight: 800; color: #1A1A1A; }
.stat-label { font-size: 0.75rem; font-weight: 600; color: #1A1A1A; margin-top: 0.25rem; }
.stat-sub { font-size: 0.625rem; color: #9B9B9B; margin-top: 2px; }

/* PROGRAMS GRID */
.programs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}
.program-card {
  background: white;
  border: 1px solid #F0F0F0;
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.2s;
}
.program-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.program-icon {
  width: 48px; height: 48px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  margin-bottom: 1rem;
}
.program-card h3 { font-size: 1.125rem; font-weight: 700; margin: 0.5rem 0 0.25rem; }
.program-sub { font-size: 0.75rem; color: #9B9B9B; margin-bottom: 0.75rem; }
.program-desc { font-size: 0.875rem; color: #6B6B6B; margin-bottom: 1rem; }
.program-meta { display: flex; flex-wrap: wrap; gap: 0.75rem; font-size: 0.6875rem; color: #6B6B6B; }

/* PROGRAM DETAIL */
.program-detail {
  background: white;
  border: 1px solid #F0F0F0;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.program-detail-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.program-icon-lg {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; flex-shrink: 0;
}
.program-detail h2 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
.program-detail-header p { font-size: 0.875rem; color: #9B9B9B; margin-top: 0.25rem; }
.mini-info-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem; margin-bottom: 1.5rem;
}
.mini-info {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.75rem;
  background: #FAFAF8;
  border-radius: 12px;
}
.mini-icon {
  width: 32px; height: 32px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.mini-label { font-size: 0.625rem; color: #9B9B9B; font-weight: 500; }
.mini-value { font-size: 0.875rem; font-weight: 600; color: #1A1A1A; }
.curriculum-title { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin: 1.5rem 0 0.75rem; }
.curriculum-list { display: flex; flex-direction: column; gap: 0.5rem; }
.curriculum-row { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem; background: #FAFAF8; border-radius: 12px; font-size: 0.75rem; color: #6B6B6B; }
.curriculum-row .badge { margin-bottom: 0; flex-shrink: 0; }

/* TWO COL GRID */
.two-col-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.info-card {
  background: white;
  border: 1px solid #F0F0F0;
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.2s;
}
.info-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.info-card h3 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; color: #1A1A1A; }
.info-card p { font-size: 0.875rem; color: #6B6B6B; }
.info-icon {
  width: 44px; height: 44px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 1rem;
}
.check-list li { font-size: 0.875rem; color: #6B6B6B; padding: 0.4rem 0; }

/* LEADERS */
.leaders-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem; margin-top: 1rem;
}
.leader-card {
  background: white;
  border: 1px solid #F0F0F0;
  border-radius: 16px;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.2s;
}
.leader-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.leader-avatar {
  width: 56px; height: 56px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.125rem;
  margin: 0 auto 0.75rem;
}
.leader-name { font-size: 0.875rem; font-weight: 600; }
.leader-role { font-size: 0.6875rem; color: #9B9B9B; margin-top: 0.25rem; }

/* NOTICES */
.notice-list {
  background: white;
  border: 1px solid #F0F0F0;
  border-radius: 16px;
  overflow: hidden;
}
.notice-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #F0F0F0;
  cursor: pointer;
  transition: background 0.15s;
  text-align: left; width: 100%;
}
.notice-item:last-child { border-bottom: none; }
.notice-item:hover { background: #FAFAF8; }
.notice-dot { width: 8px; height: 8px; border-radius: 999px; margin-top: 6px; flex-shrink: 0; }
.notice-icon-wrap {
  width: 36px; height: 36px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.notice-body { flex: 1; min-width: 0; }
.notice-title { font-size: 0.875rem; font-weight: 600; color: #1A1A1A; }
.notice-content { font-size: 0.75rem; color: #6B6B6B; margin-top: 0.25rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.notice-date { font-size: 0.6875rem; color: #9B9B9B; margin-top: 0.5rem; }
.notice-item .badge { margin-bottom: 0; flex-shrink: 0; padding: 0.2rem 0.5rem; font-size: 0.625rem; }
.notice-chevron { color: #9B9B9B; margin-top: 4px; flex-shrink: 0; }

.filter-tabs {
  display: inline-flex; gap: 0.25rem;
  background: rgba(240,240,240,0.6);
  border-radius: 999px; padding: 4px;
  margin-bottom: 1.5rem;
}
.filter-tab {
  padding: 0.5rem 1rem;
  font-size: 0.75rem; font-weight: 500;
  color: #6B6B6B;
  border-radius: 999px;
  transition: all 0.2s;
}
.filter-tab.active { background: white; color: #1A1A1A; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }

.empty {
  text-align: center;
  padding: 3rem;
  color: #9B9B9B;
}

/* FACILITIES */
.facilities-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.facility-card {
  background: white;
  border: 1px solid #F0F0F0;
  border-radius: 16px;
  padding: 1.25rem;
  transition: all 0.2s;
}
.facility-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.fac-icon {
  width: 44px; height: 44px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 0.75rem;
}
.facility-card h4 { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.25rem; }
.facility-card p { font-size: 0.75rem; color: #6B6B6B; }

/* CONTACT */
.contact-rows { display: flex; flex-direction: column; gap: 1rem; }
.contact-row { display: flex; align-items: flex-start; gap: 0.75rem; transition: opacity 0.2s; }
.contact-row:hover { opacity: 0.8; }
.contact-icon {
  width: 36px; height: 36px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.contact-label { font-size: 0.625rem; color: #9B9B9B; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-value { font-size: 0.875rem; font-weight: 500; color: #1A1A1A; word-break: break-word; }
.time-box { display: flex; align-items: center; gap: 0.75rem; padding: 1rem; background: #FAFAF8; border-radius: 12px; margin-top: 0.75rem; }
.time-icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.time-value { font-size: 1.125rem; font-weight: 700; color: #1A1A1A; }
.time-sub { font-size: 0.75rem; color: #9B9B9B; }
.map-wrap { border-radius: 12px; overflow: hidden; border: 1px solid #F0F0F0; margin-top: 0.75rem; }
.map-caption { font-size: 0.6875rem; color: #9B9B9B; text-align: center; margin-top: 0.75rem; }

/* CTA */
.cta-card {
  background: white;
  border: 1px solid #F0F0F0;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin-top: 1.5rem;
}
.cta-icon {
  width: 56px; height: 56px; border-radius: 16px;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.cta-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.cta-card p { font-size: 0.875rem; color: #6B6B6B; margin-bottom: 1.25rem; max-width: 28rem; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }

/* FOOTER */
.footer {
  margin-top: 4rem;
  border-top: 1px solid #F0F0F0;
  background: white;
}
.footer-inner {
  padding: 2.5rem 1.5rem;
  display: grid; grid-template-columns: 2fr 3fr;
  gap: 2rem;
}
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-brand h3 { font-size: 0.875rem; font-weight: 700; }
.footer-brand p { font-size: 0.625rem; color: #9B9B9B; }
.footer-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.footer-cols h4 { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.footer-cols li { font-size: 0.75rem; color: #6B6B6B; padding: 0.25rem 0; }
.footer-cols a:hover { color: #1A1A1A; }
.footer-bottom { border-top: 1px solid #F0F0F0; padding: 1.5rem 0; }
.footer-bottom p { font-size: 0.625rem; color: #9B9B9B; text-align: center; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom .container p { text-align: left; }

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 50;
  background: rgba(26,26,26,0.4);
  backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.2s ease-out;
}
.modal-overlay.open { display: flex; }
.modal {
  background: white;
  border-radius: 24px;
  max-width: 32rem; width: 100%;
  overflow: hidden;
  border: 1px solid #F0F0F0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.modal-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #F0F0F0;
  display: flex; align-items: center; justify-content: space-between;
}
.modal-header-left { display: flex; align-items: center; gap: 0.5rem; }
.modal-header-icon {
  width: 32px; height: 32px; border-radius: 12px;
  background: rgba(255,107,107,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.modal-header h3 { font-size: 0.875rem; font-weight: 700; }
.modal-header p { font-size: 0.625rem; color: #9B9B9B; }
.modal-close {
  padding: 0.4rem; border-radius: 999px;
  color: #6B6B6B;
  transition: background 0.2s;
}
.modal-close:hover { background: #F0F0F0; }
.modal-body { padding: 1.5rem; }
.modal-body h2 { font-size: 1.125rem; font-weight: 700; margin: 0.5rem 0 0.75rem; letter-spacing: -0.02em; }
.modal-body p { font-size: 0.875rem; color: #6B6B6B; white-space: pre-wrap; }
.modal-footer {
  padding: 1rem 1.5rem;
  background: #FAFAF8;
  border-top: 1px solid #F0F0F0;
  display: flex; align-items: center; justify-content: space-between;
}
.large-admission-btn {
    display: inline-block;
    padding: 18px 40px;        /* Makes the button physically larger */
    background-color: #F54927;  /* Vibrant blue background color */
    color: #ffffff;             /* White text color */
    font-family: Arial, sans-serif;
    font-size: 20px;            /* Larger text size */
    font-weight: bold;
    border: none;               /* Removes default browser border */
    border-radius: 8px;         /* Rounded corners */
    cursor: pointer;            /* Changes cursor to hand icon on hover */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15); /* Adds depth */
    transition: all 0.2s ease;  /* Smooth transition for hover effects */
  }

  /* Hover effect */
  .large-admission-btn:hover {
    background-color: #F54927;  /* Darker blue background on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px); /* Subtle lift effect */
  }

  /* Active/Click effect */
  .large-admission-btn:active {
    transform: translateY(0);    /* Pushes button down when clicked */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  }
