@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
  /* Colors */
  --primary: #00695c;
  --primary-800: #004d40;
  --primary-900: #003d33;
  --accent: #ffd166;
  --accent-light: #ffe4a3;
  --muted: #6b7280;
  --muted-light: #9ca3af;
  --bg: #f8fafc;
  --card-bg: #ffffff;
  --surface-1: #ffffff;
  --border-color: #e5e7eb;
  
  /* Animation Timing */
  --animate-duration: 0.8s;
  --animate-delay: 0.2s;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-800), var(--primary));
  --gradient-accent: linear-gradient(135deg, var(--accent), var(--accent-light));
  --gradient-text: linear-gradient(135deg, var(--accent), var(--accent-light));
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  
  /* Layout */
  --header-height: 90px;
  --container-padding: 24px;
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background: var(--bg);
  color: #0f172a;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 77, 64, 0.95);
  color: #fff;
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
  padding: 12px var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-height);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0.8;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.header-scrolled {
  background: rgba(0, 77, 64, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-scrolled::before {
  opacity: 1;
}

.header-hidden {
  transform: translateY(-100%);
}

.logo {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px 16px;
  border-radius: var(--border-radius);
}

.logo img {
  height: 72px;
  width: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  filter: brightness(1.05) contrast(1.05);
}

.logo h1 {
  font-size: 1.4rem;
  margin: 0;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.logo .location {
  display: inline-block;
  margin-left: 8px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

nav {
  margin-left: auto;
}

nav ul {
  display: flex;
  gap: 6px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a:not(.contact-btn) {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: inline-block;
  letter-spacing: 0.2px;
}

nav a:not(.contact-btn)::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

nav a:not(.contact-btn)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

nav a:not(.contact-btn):hover {
  color: #fff;
  transform: translateY(-1px);
}

nav a:not(.contact-btn):hover::before {
  width: 70%;
}

nav a:not(.contact-btn):hover::after {
  opacity: 1;
}

/* Contact button styling */
.contact-btn {
  background: var(--accent);
  color: var(--primary-900);
  padding: 12px 28px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 1.05rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 2px solid transparent;
  margin-left: 12px;
  white-space: nowrap;
  min-width: max-content;
  height: 42px;
}

.contact-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: var(--gradient-accent);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease;
  border-radius: 50%;
  z-index: -1;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 209, 102, 0.3);
  color: var(--primary-900);
  border-color: var(--accent-light);
}

.contact-btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.contact-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(255, 209, 102, 0.2);
}

.container{max-width:1100px;margin:0 auto;padding:0 var(--container-padding)}

.hero {
  position: relative;
  text-align: center;
  padding-top: calc(var(--header-height) + 10px);
  overflow: hidden;
  background: var(--primary-900);
}

.hero img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-bottom-left-radius: var(--border-radius-lg);
  border-bottom-right-radius: var(--border-radius-lg);
  filter: brightness(0.7);
  display: block;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.hero:hover img {
  filter: brightness(0.8);
  transform: scale(1.02);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to bottom, 
      rgba(0,0,0,0.2),
      rgba(0,0,0,0.4)
    ),
    radial-gradient(circle at center, 
      transparent 0%,
      rgba(0,0,0,0.3) 100%
    );
  pointer-events: none;
  z-index: 1;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-shadow: var(--text-shadow);
  max-width: 900px;
  padding: 0 20px;
  z-index: 2;
  animation: fadeInUp 1s ease forwards;
}

.hero-text h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin: 0 0 16px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.hero-text p {
  margin: 0;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.95);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 20px));
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.section {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  z-index: 3;
  background: transparent;
  margin-top: 18px;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-hidden {
  opacity: 0;
  transform: translateY(30px);
}

.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  margin-bottom: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.section p {
  max-width: 880px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* About section styling */
.intro {
  font-size: 1.2rem;
  margin-bottom: 48px !important;
  color: var(--primary-800) !important;
  font-weight: 500;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-card {
  background: var(--card-bg);
  padding: 32px;
  border-radius: var(--border-radius-lg);
  text-align: left;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transform: translateY(-100%);
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.about-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.about-card h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.about-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-card li {
  margin-bottom: 16px;
  line-height: 1.6;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 1.05rem;
}

.about-card li::before {
  content: '→';
  color: var(--accent);
  font-weight: bold;
  margin-top: 2px;
}

.about-card strong {
  color: var(--primary-800);
  margin-right: 4px;
  font-weight: 600;
}

@media (max-width:640px){
  .about-grid{
    grid-template-columns:1fr;
  }
  .about-card{
    padding:20px;
  }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  padding: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.95) saturate(1.05);
  cursor: pointer;
  border: 1px solid var(--border-color);
}

.gallery img:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: var(--shadow-xl);
  filter: brightness(1.05) saturate(1.1);
  z-index: 1;
}

.gallery-item {
  position: relative;
}

.gallery-item .delete-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(220, 53, 69, 0.9);
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  opacity: 1;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .delete-btn {
  opacity: 1;
}

.gallery-item .delete-btn:hover {
  background: rgba(220, 53, 69, 1);
  transform: scale(1.1);
}

/* Gallery Modal Styles */
.gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gallery-modal-img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-modal[style*="flex"] .gallery-modal-img {
  transform: scale(1);
  opacity: 1;
}

.gallery-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.gallery-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.staff-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.leadership-team {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  margin-top: 2rem;
}

.staff {
  background: var(--card-bg);
  padding: 32px;
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.staff.featured {
  padding: 40px;
  background: linear-gradient(
    to bottom,
    var(--card-bg),
    rgba(255, 255, 255, 0.95)
  );
}

.staff::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-accent);
  opacity: 0;
  transform: translateY(-100%);
  transition: var(--transition);
}

.staff:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.staff:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.staff-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-800), var(--primary));
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg),
              inset 0 2px 8px rgba(255, 255, 255, 0.2);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.staff.featured .staff-avatar {
  width: 220px;
  height: 220px;
  border: 6px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-xl),
              inset 0 2px 12px rgba(255, 255, 255, 0.25);
  background: linear-gradient(135deg, 
    var(--primary), 
    var(--primary-800),
    var(--primary)
  );
  background-size: 200% 200%;
  animation: gradientMove 8s ease infinite;
}

.staff:hover .staff-avatar {
  transform: scale(1.05) translateY(-5px);
  box-shadow: var(--shadow-xl),
              inset 0 2px 12px rgba(255, 255, 255, 0.3);
}

.staff-avatar .initials {
  font-size: 3.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(2px);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0.9)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.staff.featured .staff-avatar .initials {
  font-size: 4.2rem;
}

.staff-avatar::before,
.staff-avatar::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(45deg, 
    transparent 40%,
    rgba(255, 255, 255, 0.2) 45%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.2) 55%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.staff-avatar::after {
  filter: blur(4px);
}

.staff:hover .staff-avatar::before,
.staff:hover .staff-avatar::after {
  transform: translateX(100%);
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.staff:hover .staff-avatar::after {
  opacity: 1;
}

.staff-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.staff h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-800);
  letter-spacing: -0.01em;
}

.staff.featured h3 {
  font-size: 1.6rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.staff .designation {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0;
}

.staff .credentials {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
}

.staff .description {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 12px 0 0;
  max-width: 90%;
}

/* Contact section enhancements */
.map-container {
  margin-top: 40px;
  padding: 0 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  position: relative;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

.map-container::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: var(--border-radius-lg);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}

footer {
  background: var(--primary-900);
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 32px 20px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-accent);
  opacity: 0.8;
}

/* anchor offset to avoid sticky header hiding content */
section[id],.section{scroll-margin-top:calc(var(--header-height) + 12px)}

@media (max-width: 1024px) {
  .hero img {
    height: 480px;
  }
  
  .about-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 20px;
  }
  
  header {
    padding: 8px var(--container-padding);
  }

  .logo {
    padding: 4px 8px;
  }

  .logo img {
    height: 56px;
  }

  .logo h1 {
    font-size: 1.1rem;
  }

  .logo .location {
    font-size: 0.9rem;
    display: block;
    margin: 2px 0 0;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--primary-800);
    padding: 100px 32px;
    transition: 0.3s ease-in-out;
    overflow-y: auto;
  }

  nav.active {
    right: 0;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
  }

  nav ul {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  nav a:not(.contact-btn) {
    display: block;
    padding: 12px 20px;
    font-size: 1.1rem;
    text-align: left;
    border-radius: 8px;
  }

  .contact-btn {
    margin: 16px 0 0;
    width: 100%;
    text-align: center;
  }

  .menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 16px;
  }

  .menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    margin: 4px 0;
    transition: 0.3s;
  }

  .menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero img {
    height: 380px;
  }

  .hero-text {
    width: 90%;
  }
  
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 16px;
  }
  
  .gallery img {
    height: 240px;
  }
  
  .staff-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .staff {
    padding: 24px;
  }

  .staff-avatar {
    width: 160px;
    height: 160px;
  }

  .staff.featured .staff-avatar {
    width: 180px;
    height: 180px;
  }

  .staff-avatar .initials {
    font-size: 3rem;
  }

  .staff h3 {
    font-size: 1.3rem;
  }

  #contact p {
    padding: 0 16px;
  }

  .map-container {
    margin: 32px 16px 0;
  }
}
}

@media (max-width: 640px) {
  :root {
    --header-height: 80px;
  }
  
  header {
    padding: 8px var(--container-padding);
  }
  
  nav ul {
    gap: 8px;
  }
  
  .logo img {
    height: 56px;
  }
  
  .logo h1 {
    font-size: 1.1rem;
  }

  .contact-btn {
    padding: 8px 20px;
    font-size: 0.95rem;
    margin-left: 8px;
    height: 36px;
  }
  
  .hero img {
    height: 300px;
  }
  
  .hero-text {
    padding: 0 16px;
  }
  
  .about-card {
    padding: 24px;
  }
  
  .about-card h3 {
    font-size: 1.25rem;
  }
  
  .staff {
    padding: 20px;
  }
  
  .staff img {
    width: 120px;
    height: 120px;
  }
  
  .map-container iframe {
    height: 350px;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 70px;
  }

  .section {
    padding: 40px 16px;
  }

  .logo {
    gap: 12px;
  }

  .logo img {
    height: 48px;
  }

  .logo h1 {
    font-size: 1rem;
  }

  .logo .location {
    font-size: 0.85rem;
  }

  .hero img {
    height: 280px;
  }

  .hero-text h2 {
    font-size: 1.6rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .section h2 {
    font-size: 1.5rem;
  }

  .intro {
    font-size: 1rem;
    padding: 0 16px;
  }

  .about-card {
    padding: 20px;
  }

  .about-card h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }

  .about-card li {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .gallery {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 12px;
  }

  .gallery img {
    height: 220px;
  }

  .staff {
    padding: 20px;
  }

  .staff-avatar {
    width: 140px;
    height: 140px;
  }

  .staff.featured .staff-avatar {
    width: 160px;
    height: 160px;
  }

  .staff-avatar .initials {
    font-size: 2.5rem;
  }

  .staff h3 {
    font-size: 1.2rem;
  }

  .staff .designation {
    font-size: 1rem;
  }

  .staff .credentials {
    font-size: 0.9rem;
  }

  #contact p {
    font-size: 0.95rem;
    padding: 0 12px;
  }

  .map-container {
    margin: 24px 12px 0;
  }

  footer {
    padding: 20px 16px;
    font-size: 0.9rem;
  }
}

