@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #d97706;
  --secondary: #059669;
  --accent: #dc2626;
  --background: #fafaf9;
  --surface: #ffffff;
  --text-primary: #1c1917;
  --text-secondary: #57534e;
  --border: #e7e5e4;
  --shadow: rgba(0, 0, 0, 0.1);
}

body {
  font-family: "Noto Sans Devanagari", "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background);
}

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

/* Enhanced Navigation Styles */
.navbar {
  background: var(--surface);
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.logo-icon {
  font-size: 2rem;
}

.logo span:last-child {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

/* Modern Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  position: relative;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-toggle span:nth-child(1) {
  top: 6px;
}

.mobile-menu-toggle span:nth-child(2) {
  top: 13px;
}

.mobile-menu-toggle span:nth-child(3) {
  top: 20px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav-header {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-left: auto;
}

/* Enhanced nav link styles */
.nav-link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(217, 119, 6, 0.1);
}

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* Header */
.header {
  background: var(--surface);
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.school-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.school-tagline {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--primary);
}

.lang-toggle {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.lang-toggle:hover {
  background: #b45309;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.9), rgba(5, 150, 105, 0.8)),
    url("/placeholder.svg?height=600&width=1200") center / cover;
  color: white;
  padding: 6rem 2rem;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  min-width: 150px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Toppers Section */
.toppers-section {
  padding: 5rem 2rem;
  background: var(--surface);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.toppers-category {
  margin-bottom: 4rem;
}

.category-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--secondary);
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--secondary);
  display: inline-block;
  width: 100%;
}

.toppers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.topper-card {
  background: var(--background);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.topper-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.rank-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.rank-1 .rank-badge {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1c1917;
}

.rank-2 .rank-badge {
  background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
  color: #1c1917;
}

.rank-3 .rank-badge {
  background: linear-gradient(135deg, #cd7f32, #daa520);
  color: white;
}

.topper-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.topper-info {
  padding: 1.5rem;
  text-align: center;
}

.topper-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.topper-percentage {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.topper-subjects {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Staff Section */
.staff-section {
  padding: 5rem 2rem;
  background: var(--background);
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.staff-card {
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform 0.3s;
}

.staff-card:hover {
  transform: translateY(-5px);
}

.staff-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.staff-info {
  padding: 1.5rem;
  text-align: center;
}

.staff-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.staff-position {
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.staff-qualification {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Facilities Section */
.facilities-section {
  padding: 5rem 2rem;
  background: var(--surface);
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.facility-card {
  background: var(--background);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.facility-card.featured {
  background: linear-gradient(135deg, );
 
}

.facility-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.facility-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.facility-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Student Strength Section */
.student-strength {
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.05), rgba(5, 150, 105, 0.05));
  border-radius: 16px;
}

.strength-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 2rem;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.strength-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.3s;
}

.strength-card:hover {
  transform: scale(1.05);
}

.strength-card.total {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

.class-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.strength-card.total .class-name {
  color: white;
  font-size: 1.1rem;
}

.student-count {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.strength-card.total .student-count {
  color: white;
  font-size: 2.5rem;
}

/* History Section */
.history-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.05), rgba(5, 150, 105, 0.05));
}

.history-content {
  max-width: 1000px;
  margin: 0 auto;
}

.history-text {
  background: var(--surface);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px var(--shadow);
}

.history-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  text-align: justify;
}

.institutions-list {
  background: var(--background);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  border-left: 4px solid var(--primary);
}

.institution-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  font-weight: 500;
}

.institution-item .number {
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.milestones {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(217, 119, 6, 0.1));
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.milestones h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.milestones ul {
  list-style: none;
  padding: 0;
}

.milestones li {
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  background: var(--surface);
  border-radius: 8px;
  border-left: 4px solid var(--secondary);
  font-size: 1rem;
  line-height: 1.6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

.milestones li:hover {
  transform: translateX(8px);
}

.milestones li strong {
  color: var(--primary);
  font-weight: 700;
  margin-right: 0.5rem;
}

/* Staff Statistics */
.staff-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  color: white;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform 0.3s;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-num {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.95;
}

/* Staff Category */
.staff-category {
  margin-bottom: 4rem;
}

.staff-category .category-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--secondary);
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--secondary);
  display: block;
}

.staff-contact {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Admission Section */
.admission-section {
  padding: 5rem 2rem;
  background: var(--background);
}

.admission-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.admission-card {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.admission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.admission-card .card-icon {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.admission-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.admission-list {
  list-style: none;
  padding: 0;
}

.admission-list li {
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  background: var(--background);
  border-radius: 8px;
  border-left: 4px solid var(--secondary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.admission-list li:hover {
  transform: translateX(8px);
  border-left-color: var(--primary);
  background: linear-gradient(90deg, rgba(217, 119, 6, 0.05), transparent);
}

.admission-list li.highlight {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(217, 119, 6, 0.1));
  border-left-color: var(--primary);
  font-weight: 600;
  color: var(--text-primary);
}

/* Uniform Section */
.uniform-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.03), rgba(5, 150, 105, 0.03));
}

.uniform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.uniform-card {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s;
}

.uniform-card:hover {
  transform: translateY(-8px);
}

.uniform-card.common-requirements {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.08), rgba(5, 150, 105, 0.08));
}

.uniform-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 1.5rem 2rem;
  text-align: center;
}

.uniform-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.uniform-details {
  padding: 2rem;
}

.uniform-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 2px solid var(--border);
}

.uniform-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.item-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.item-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.item-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.uniform-note {
  background: var(--surface);
  padding: 2rem;
  border-radius: 12px;
  border-left: 5px solid var(--accent);
  box-shadow: 0 4px 15px var(--shadow);
  max-width: 1100px;
  margin: 0 auto;
}

.uniform-note p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  font-weight: 500;
  margin: 0;
}

/* About Section */
.about-section {
  padding: 5rem 2rem;
  background: var(--background);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--surface);
  border-radius: 8px;
  font-weight: 600;
}

.feature-icon {
  font-size: 1.5rem;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px var(--shadow);
}

/* Contact Section */
.contact-section {
  padding: 5rem 2rem;
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: var(--background);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px var(--shadow);
}

.contact-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.contact-card h4 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.contact-card p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.contact-card strong {
  color: var(--text-primary);
  display: inline-block;
  margin-top: 0.5rem;
}

/* Footer */
.footer {
  background: var(--text-primary);
  color: white;
  text-align: center;
  padding: 2rem;
}

.footer p {
  margin-bottom: 0.5rem;
}

.developer-credit {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.developer-credit a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.developer-credit a:hover {
  color: #fbbf24;
  text-decoration: underline;
}

/* Modern Mobile Navigation Styles */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    order: 2;
    width: 46px;
    height: 46px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  }

  .mobile-menu-toggle:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
  }

  .nav-container {
    position: relative;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 88vw;
    max-width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.18);
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem 1.5rem 2rem;
    gap: 0;
    transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    z-index: 1000;
    backdrop-filter: blur(18px);
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    margin-left: 0;
  }

  .nav-links.active {
    right: 0;
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 1.5rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .mobile-nav-title {
    font-size: 0.95rem;
    color: var(--text-secondary);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
  }

  .mobile-menu-close {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    color: var(--text-primary);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }

  .mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.12);
    transform: scale(1.05);
  }

  .nav-link {
    width: 100%;
    padding: 1rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    text-align: left;
    transition: padding-left 0.3s ease, color 0.3s ease, background 0.3s ease;
    color: var(--text-primary);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--primary);
    padding-left: 15px;
    background: rgba(217, 119, 6, 0.06);
  }

  .nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
  }

  .lang-toggle {
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.95rem 1rem;
    justify-content: center;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
  }

  .mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }
}
