@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0B2B4F;
  --navy-dark: #051a2f;
  --navy-light: #1a3d66;
  --crimson: #B22234;
  --crimson-light: #c93a4c;
  --crimson-dark: #8a1a28;
  --gold: #D4AF37;
  --gold-light: #e4c75f;
  --gold-dark: #b8962e;
  --white: #ffffff;
  --off-white: #faf8f5;
  --light-gray: #e9ecef;
  --text-dark: #1e2a3a;
  --text-muted: #5a6874;
  --text-light: #8a98a5;
  --bg-light: #fefefe;
  --bg-gray: #f5f7f9;
  --card-shadow: rgba(0, 0, 0, 0.08);
  --shadow: 0 15px 40px -12px rgba(0, 0, 0, 0.15);
  --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --primary: #0B2B4F;
  --primary-light: #eef2f7;
  --accent: #B22234;
  --accent-light: #c93a4c;
  --accent-dark: #8a1a28;
  --accent-gold: #D4AF37;
  --border: #e2e8f0;
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--off-white);
}

body {
  overflow-x: hidden;
  background-color: var(--off-white);
  line-height: 1.55;
  font-family: 'Inter', sans-serif;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--light-gray);
}
::-webkit-scrollbar-thumb {
  background: var(--crimson);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--crimson-dark);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 80px 0;
  position: relative;
  background: var(--off-white);
}

.text-center {
  text-align: center;
}

.highlight {
  color: var(--crimson);
}

.gold-text {
  color: var(--gold);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  color: var(--navy);
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.top-header {
  background-color: var(--navy);
  border-bottom: none;
  font-size: 0.85rem;
  padding: 10px 0;
  color: var(--white);
}
.top-header-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-header-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.top-header-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-header-info i {
  color: var(--gold);
}
.top-header-links {
  display: flex;
  gap: 15px;
}
.top-header-links a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}
.top-header-links a:hover {
  color: var(--gold);
}

.main-header {
  background: var(--white);
  backdrop-filter: none;
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}
.logo-img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}
.logo-text h1 {
  font-size: 1.35rem;
  color: var(--navy);
  line-height: 1.2;
}
.logo-text p {
  font-size: 0.75rem;
  color: var(--crimson);
  letter-spacing: 0.15em;
  font-weight: 600;
  text-transform: uppercase;
}

.navbar-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}
.nav-item {
  position: relative;
}
.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-link:hover, .nav-link.active {
  color: var(--crimson);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--crimson);
  transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--crimson);
  list-style: none;
  min-width: 220px;
  border-radius: 0 0 8px 8px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  padding: 10px 0;
  z-index: 100;
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.dropdown-menu a:hover {
  color: var(--crimson);
  background: var(--bg-gray);
  padding-left: 25px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Menu Close Button */
.mobile-menu-close-item {
  list-style: none;
  text-align: right;
  border-bottom: 1px solid var(--border);
  padding-bottom: 15px;
  margin-bottom: 10px;
  display: none;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--crimson);
  padding: 5px 10px;
}

.mobile-menu-close:hover {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: var(--crimson);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(178, 34, 52, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(178, 34, 52, 0.4);
  background: var(--crimson-dark);
}
.btn-secondary {
  background: transparent;
  color: var(--crimson);
  border: 2px solid var(--crimson);
}
.btn-secondary:hover {
  background: var(--crimson);
  color: var(--white);
  border-color: var(--crimson);
}
.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.hero {
  position: relative;
  height: 650px;
  overflow: hidden;
}
.hero-slides {
  width: 100%;
  height: 100%;
  position: relative;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}
.slide.active {
  opacity: 1;
}
.slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(11, 43, 79, 0.3), rgba(5, 26, 47, 0.6));
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  width: 90%;
  max-width: 900px;
}
.hero-content h2 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}
.hero-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 35px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-prev { left: 25px; }
.slider-next { right: 25px; }
.slider-prev:hover,
.slider-next:hover {
  background: var(--crimson);
  color: white;
  border-color: var(--crimson);
  transform: translateY(-50%) scale(1.05);
}
.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}
.dot.active {
  background: var(--gold);
  transform: scale(1.2);
}
.dot:hover {
  background: var(--gold);
  transform: scale(1.1);
}

.announcement-bar {
  background: var(--light-gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  height: 50px;
  overflow: hidden;
}
.announcement-label {
  background: var(--crimson);
  color: white;
  font-weight: 700;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  z-index: 10;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
}
.announcement-ticker {
  flex-grow: 1;
  overflow: hidden;
}
.ticker-content {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: ticker 25s linear infinite;
}
.ticker-item {
  display: inline-block;
  padding: 0 30px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.ticker-item:hover {
  color: var(--crimson);
}
.ticker-item i {
  color: var(--crimson);
  margin-right: 8px;
}

@keyframes ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.welcome-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 50px;
  align-items: center;
}
.welcome-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--navy);
}
.welcome-divider {
  width: 80px;
  height: 4px;
  background: var(--gold);
  margin-bottom: 25px;
  border-radius: 2px;
}
.welcome-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.stats-badge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 35px;
}
.stat-badge {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}
.stat-badge:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.stat-number {
  font-size: 2.2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--crimson);
  margin-bottom: 5px;
}
.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.president-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.president-img-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  overflow: hidden;
  border: 4px solid var(--gold);
  background: var(--white);
}
.president-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.president-card h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--navy);
}
.president-card .title {
  color: var(--crimson);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}
.president-card .msg {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 35px;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.feature-card:hover {
  transform: translateY(-8px);
  background: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.feature-icon-wrap {
  width: 70px;
  height: 70px;
  background: rgba(178, 34, 52, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  border: 1px solid rgba(178, 34, 52, 0.2);
}
.feature-icon-wrap i {
  font-size: 1.8rem;
  color: var(--crimson);
}
.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 15px;
  color: var(--navy);
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.split-section {
  background: var(--bg-gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.notice-board {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  height: 480px;
  display: flex;
  flex-direction: column;
}
.notice-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}
.notice-header i {
  font-size: 1.5rem;
  color: var(--crimson);
}
.notice-header h3 {
  font-size: 1.5rem;
  color: var(--navy);
}
.notice-list {
  list-style: none;
  overflow-y: auto;
  flex-grow: 1;
  padding-right: 5px;
}
.notice-list::-webkit-scrollbar {
  width: 5px;
}
.notice-list::-webkit-scrollbar-thumb {
  background: var(--crimson);
  border-radius: 2px;
}
.notice-item {
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.notice-item:hover {
  padding-left: 5px;
}
.notice-date {
  font-size: 0.75rem;
  color: var(--crimson);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.notice-title {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  display: block;
}
.notice-title:hover {
  color: var(--crimson);
}

.principal-message-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.principal-avatar {
  width: 100%;
  border-radius: 12px;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-sm);
  background: var(--bg-gray);
}
.principal-text h3 {
  font-size: 1.8rem;
  margin-bottom: 5px;
  color: var(--navy);
}
.principal-text .role {
  color: var(--crimson);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}
.principal-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}
.leadership-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.leadership-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.leadership-img-wrap {
  padding: 30px 0 20px 0;
  text-align: center;
  background: rgba(178, 34, 52, 0.03);
}
.leadership-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.leadership-content {
  padding: 20px 25px 25px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.leadership-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--crimson);
  text-align: center;
}
.leadership-quote {
  background: var(--bg-gray);
  padding: 15px;
  border-radius: 12px;
  margin: 15px 0;
  border-left: 4px solid var(--gold);
  font-style: italic;
}
.leadership-quote i {
  color: var(--gold);
  margin-right: 8px;
  opacity: 0.6;
}
.leadership-quote p {
  display: inline;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.leadership-message {
  max-height: 100px;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.leadership-message.expanded {
  max-height: 500px;
}
.leadership-message p {
  margin-bottom: 12px;
}
.leadership-message .signature {
  margin-top: 15px;
  font-weight: 600;
  color: var(--crimson);
  text-align: right;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}
.btn-readmore {
  background: none;
  border: none;
  color: var(--crimson);
  font-weight: 600;
  cursor: pointer;
  padding: 10px 0;
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: var(--transition);
  width: fit-content;
}
.btn-readmore:hover {
  color: var(--crimson-dark);
  gap: 12px;
}

.main-footer {
  background-color: var(--navy);
  border-top: none;
  padding: 70px 0 20px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.8fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-logo-area p {
  margin: 15px 0 20px 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}
.social-links {
  display: flex;
  gap: 15px;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.footer-col h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}
.footer-links i {
  font-size: 0.75rem;
  color: var(--gold);
}
.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.8);
}
.footer-contact i {
  color: var(--gold);
  margin-top: 4px;
}
.copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  text-align: center;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 992px) {
  .grid-3, .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .principal-message-card {
    grid-template-columns: 1fr;
  }
  .principal-avatar {
    width: 200px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-header {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu-close-item {
    display: block;
  }
  .navbar-links {
    position: fixed;
    top: 86px;
    left: -100%;
    width: 280px;
    height: calc(100vh - 86px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
    transition: var(--transition);
    border-top: 1px solid var(--border);
    overflow-y: auto;
    box-shadow: var(--shadow-sm);
    z-index: 999;
  }
  .navbar-links.active {
    left: 0;
  }
  .nav-item {
    width: 100%;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: var(--bg-gray);
    border: none;
    border-radius: 8px;
    box-shadow: none;
    margin-top: 10px;
    width: 100%;
    padding: 10px;
  }
  .hero-content h2 {
    font-size: 2rem;
  }
  .hero-buttons {
    flex-direction: column;
    padding: 0 20px;
  }
  .grid-2, .grid-3, .grid-4, .leadership-grid {
    grid-template-columns: 1fr;
  }
  .slider-prev, .slider-next {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }
  .dot {
    width: 8px;
    height: 8px;
  }
  .slider-dots {
    bottom: 15px;
    gap: 8px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .navbar-links {
    position: fixed;
    top: 86px;
    left: -100%;
    width: 280px;
    height: calc(100vh - 86px);
    background: #fff;
    flex-direction: column;
    padding: 50px 20px 20px 20px;
    transition: 0.3s;
    z-index: 999;
  }
  .navbar-links.active {
    left: 0;
  }
}