:root {
  --primary-blue: #003366;
  --light-blue: #00509e;
  --accent-gold: #ffcc00;
  --text-dark: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --bg-light: #f4f7f6;
}

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

html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  position: relative;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

h1, h2, h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--primary-blue);
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

.bg-light {
  background-color: var(--bg-light);
}

.container {
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.section-padding {
  padding: 60px 0;
}

.grid-4, .grid-3, .grid-2 {
  display: grid;
  gap: 25px;
  margin-top: 30px;
}
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }


.top-bar {
  background-color: #222;
  color: #ccc;
  font-size: 13px;
  padding: 8px 0;
}
.top-bar a:hover {
  color: var(--accent-gold);
}
.contact-info span {
  margin-right: 15px;
}

.main-header {
  background: var(--white);
  padding: 15px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;   /* FIXED */
  left: 0;
  width: 100%;
  z-index: 1000;
}

.main-header .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  margin-right: 40px;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}
.logo-img {
  height: 60px;
  width: auto;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.logo-text h1 {
  font-size: 1.2rem;
  margin-bottom: 2px;
  line-height: 1.2;
}
.logo-text p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.2;
}

/* Footer */
.site-footer { background: #282727; color: #fff; padding: 40px 0; margin-top: auto; }
.site-footer a { color: #fff; }
.footer-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); align-items: start; }
.footer-col h4 { color: var(--accent-gold); margin-bottom: 10px; font-size: 1.05rem; }
.footer-col p, .footer-col li { color: #f2f2f2; line-height: 1.5; }
.footer-links ul { padding-left: 0; list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #fff; opacity: 0.95; }
.footer-contact .visitor-counter { margin-top: 10px; font-weight: 700; color: var(--white); }
.footer-bottom { text-align: center; margin-top: 22px; font-size: 14px; opacity: 0.95; }

@media (max-width: 700px) {
  .site-footer { padding: 28px 0; }
  .footer-grid { gap: 16px; }
  .footer-col h4 { font-size: 1rem; }
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-left: auto;
}


.nav-links li {
  position: relative;
}
.nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--light-blue);
}

.nav-item .dropdown-icon {
  font-size: 0.7rem;
  margin-left: 6px;
  color: var(--text-light);
  display: inline;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s ease;
  z-index: 1200;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--primary-blue);
}

.nav-item.dropdown:hover > .dropdown-menu,
.nav-item.dropdown:focus-within > .dropdown-menu,
.nav-item.dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary-blue);
}

.btn-primary, button.btn-primary {
  display: inline-block;
  background: var(--accent-gold);
  color: #000;
  padding: 12px 25px;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 4px;
  margin-right: 10px;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-primary:hover, button.btn-primary:hover {
  background: #e6b800;
}

.btn-secondary {
  border: 2px solid white;
  color: white;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 4px;
  transition: 0.3s;
}
.btn-secondary:hover {
  background: white;
  color: var(--primary-blue);
}

.btn-highlight {
  background: var(--primary-blue);
  color: white !important;
  padding: 8px 20px;
  border-radius: 4px;
}
.btn-highlight:hover {
  background: var(--accent-gold);
  color: black !important;
}

.btn-link {
  color: var(--light-blue);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 10px;
  display: inline-block;
  transition: color 0.3s;
}
.btn-link:hover {
  color: var(--accent-gold);
}

.hero-section {
  height: 650px;
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #003366;
}

/* Slider Wrapper */
.hero-slider-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; 
  z-index: 1;
}

/* Slider Track */
.hero-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

/* Individual Slides */
.hero-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Arrow Buttons */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0, 51, 102, 0.7);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  background: rgba(255, 204, 0, 0.9);
  color: var(--primary-blue);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow-left {
  left: 20px;
}

.slider-arrow-right {
  right: 20px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.slider-dot.active {
  background: var(--accent-gold);
  border-color: white;
  transform: scale(1.2);
}

.slider-dot:hover {
  background: rgba(255, 204, 0, 0.7);
}

.hero-overlay {
  background: rgba(0, 33, 71, 0.7);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.hero-text {
  color: white;
  max-width: 600px;
}
.hero-text h2 {
  color: var(--accent-gold);
  font-size: 3rem;
  margin-bottom: 15px;
}
.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.notification-bar {
  background: var(--primary-blue);
  color: white;
  padding: 10px 0;
}
.notification-label {
  background: var(--accent-gold);
  color: black;
  padding: 5px 15px;
  font-weight: bold;
  border-radius: 3px;
  font-size: 14px;
  white-space: nowrap;
  margin-right: 15px;
}
.marquee-container {
  width: 100%;
  overflow: hidden;
}

.ticker-scroll {
  display: inline-block;
  white-space: nowrap;
  animation: tickerMove 30s linear infinite;
}

.ticker-scroll:hover {
  animation-play-state: paused;
}

.ticker-scroll span {
  color: #fff;
  font-size: 14px;
}

@keyframes tickerMove {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.affiliations-bar {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  background: white;
}
.aff-item {
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.aff-item i {
  color: var(--primary-blue);
  font-size: 1.2rem;
}
.aff-divider {
  width: 1px;
  height: 20px;
  background: #ccc;
  display: none;
}
@media(min-width: 768px) { .aff-divider { display: block; } }

.card {
  background: white;
  padding: 25px;
  border-bottom: 3px solid var(--primary-blue);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  cursor: pointer;
  display: block;
}
.card:hover {
  transform: translateY(-5px);
}
.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.card .card-link,
.card a {
  color: var(--light-blue);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 10px;
  display: inline-block;
}

.feature-box {
  background: white;
  padding: 25px;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: 0.3s;
}
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-color: var(--accent-gold);
}
.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.event-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  gap: 12px;
  padding: 14px;
  width: 100%;
  border: 1px solid #edf1f6;
}

a.event-card { text-decoration: none; color: inherit; }
a.notice-card { text-decoration: none; color: inherit; display: block; }
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}
.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  color: white;
  border-radius: 8px;
  min-width: 68px;
  padding: 10px 6px;
  font-weight: bold;
  text-align: center;
  flex-shrink: 0;
}
.event-day { font-size: 1.2rem; font-weight: 700; }
.event-month { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; margin-top: 5px; }

.event-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.event-date-text {
  color: var(--primary-blue);
  font-weight: 700;
  margin: 6px 0 4px;
  font-size: 0.95rem;
}

.notice-date-text {
  color: var(--primary-blue);
  font-weight: 700;
  margin: 6px 0 4px;
  font-size: 0.9rem;
}


.event-content h3 {
  font-size: 0.98rem;
  margin-bottom: 6px;
  color: var(--primary-blue);
}
.event-time, .event-location {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 5px;
}
.event-description {
  color: var(--text-light);
  margin-top: 4px;
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Upcoming Events Section (Activities Page) */
.upcoming-events-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.upcoming-event-card {
  background: var(--bg-light);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 24px 28px 18px 28px;
  transition: box-shadow 0.2s;
  border-left: 5px solid var(--primary-blue);
  position: relative;
}
.upcoming-event-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
}
.upcoming-event-card h3 {
  margin-bottom: 10px;
  color: var(--primary-blue);
  font-size: 1.25rem;
}
.event-details {
  display: flex;
  gap: 18px;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--light-blue);
  flex-wrap: wrap;
}
.event-detail i {
  margin-right: 6px;
  color: var(--accent-gold);
}
.event-description {
  color: var(--text-dark);
  font-size: 1rem;
  margin-top: 2px;
}
@media (max-width: 600px) {
  .upcoming-event-card {
    padding: 16px 10px 12px 14px;
  }
  .event-details {
    gap: 10px;
    font-size: 0.97rem;
  }
  .upcoming-events-list {
    gap: 14px;
  }
}

.home-feature-grid {
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}

.home-feature-grid__layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: start;
}

.home-feature-main {
  background: white;
  border: 1px solid #e9eef5;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.home-section-title {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.home-intro-text {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 1rem;
}

.home-highlight-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.mini-card {
  background: #f7f9fc;
  border: 1px solid #e3e9f2;
  border-radius: 10px;
  padding: 18px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mini-card h3 {
  font-size: 1.05rem;
  color: var(--primary-blue);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.home-feature-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.academics-campus-inline {
  margin-top: 0;
  padding-top: 0;
}

.inline-section-title {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
  text-align: left;
}


.vertical-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.vertical-cards .card {
  background: #f7f9fc;
  border: 1px solid #e3e9f2;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  text-decoration: none;
}

.vertical-cards .card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.vertical-cards .card h3 {
  font-size: 1.1rem;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.vertical-cards .card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.vertical-cards .card .card-link {
  color: var(--light-blue);
  font-weight: 600;
  font-size: 0.9rem;
}

.scroll-widget {
  background: white;
  border: 1px solid #e9eef5;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.scroll-widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.scroll-widget-header h3 {
  font-size: 1.1rem;
  color: var(--primary-blue);
}

.scroll-widget .vertical-marquee {
  max-height: 320px;
}

.notice-card {
  background: #ffffff;
  border: 1px solid #edf1f6;
  border-radius: 8px;
  padding: 14px;
  display: flex;
  gap: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.notice-date {
  min-width: 68px;
  text-align: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  color: white;
  padding: 10px 6px;
  font-weight: 700;
  flex-shrink: 0;
}

.notice-day {
  font-size: 1.2rem;
  display: block;
}

.notice-month {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.notice-content h4 {
  font-size: 0.98rem;
  color: var(--primary-blue);
  margin-bottom: 6px;
}

.notice-content p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.notice-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--light-blue);
  background: #eef4ff;
  padding: 4px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.events-list,
.notices-list {
  display: grid;
  gap: 20px;
}

.page-header {
  background: linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.8)),
  url("../images/uni1.jpeg");
  background-size: cover;
  background-position: center;
  padding: 40px 0;
  color: white;
  text-align: center;
}
.page-header h1 { font-size: 2.5rem; color: var(--accent-gold); }
.page-header p { font-size: 0.9rem; opacity: 0.8; margin-top: 5px; }

.page-layout {
  display: grid;
  grid-template-columns: 25% 70%;
  gap: 5%;
  align-items: start;
}

.sidebar-widget {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary-blue);
}
.sidebar-widget h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.sidebar-menu li { list-style: none; margin-bottom: 10px; }
.sidebar-menu a {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 4px;
  transition: 0.2s;
}
.sidebar-menu a:hover, .sidebar-menu a.active-link {
  background: var(--primary-blue);
  color: white;
  padding-left: 15px;
}

.sidebar-menu li {
  position: relative;
}

.sidebar-submenu {
  display: none;
  padding-left: 15px;
  margin-top: 5px;
  border-left: 2px solid var(--accent-gold);
  margin-left: 10px;
}

.sidebar-menu li:hover .sidebar-submenu {
  display: block;
}

.sidebar-submenu li {
  margin-bottom: 5px;
}

.sidebar-submenu a {
  font-size: 0.9rem;
  padding: 6px 10px;
  font-weight: 500;
}

.sidebar-submenu a:hover,
.sidebar-submenu a.active-link {
  background: var(--light-blue);
  color: white;
  padding-left: 12px;
}

.content-area { min-width: 0; width: 100%; }
.content-area h2 { font-size: 2rem; margin-bottom: 20px; color: var(--primary-blue); }
.content-area h3 { font-size: 1.5rem; margin-top: 30px; margin-bottom: 15px; }
.content-area p { margin-bottom: 15px; text-align: justify; }
.content-img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.highlight-box {
  background: #fff8e1;
  border: 1px solid var(--accent-gold);
  padding: 20px;
  border-radius: 5px;
  margin: 20px 0;
}
.highlight-box ul li { margin-bottom: 8px; font-weight: 600; }

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
  border: 1px solid #eee;
}
.course-table {
  width: 100%;
  border-collapse: collapse;
  min-width: auto;
}
.course-table th, .course-table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: left;
}
.course-table th { background-color: var(--primary-blue); color: white; }
.course-table tr:nth-child(even) { background-color: #f9f9f9; }

.form-group { margin-bottom: 20px; width: 100%; }
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 0.95rem;
}
.form-group input, .form-group textarea,
.simple-form input, .simple-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  background-color: #fcfcfc;
  transition: border 0.3s ease;
  margin-bottom: 15px;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary-blue);
  outline: none;
  background-color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info-area { width: 100%; }
.contact-box { margin-bottom: 20px; }
.contact-box h3 { font-size: 1.1rem; margin-bottom: 5px; }

.section-title {
  font-size: 2.2rem;
  text-align: center;
  color: var(--primary-blue);
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.achievement-subsection { margin-bottom: 50px; }
.subsection-title {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-gold);
}

.achievement-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  text-align: center;
  border-top: 4px solid var(--primary-blue);
}
.achievement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.achievement-card:hover .achievement-icon-box {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.achievement-icon-box {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #e8eff7, #f4f8fb);
  color: var(--primary-blue);
  border: 1px solid #d7e2ef;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.6);
  transition: transform 0.3s, box-shadow 0.3s;
}
.achievement-icon {
  width: 34px;
  height: 34px;
  font-size: 1.5rem;
}

.achievement-card-content h4 {
  font-size: 1.1rem;
  color: var(--primary-blue);
  margin-bottom: 8px;
  font-weight: 700;
}
.achievement-count {
  font-size: 1.3rem;
  color: var(--accent-gold);
  font-weight: 700;
  margin: 0;
}

.results-year-section { margin-bottom: 40px; }
.results-year {
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
  font-weight: 700;
}

.result-card {
  background: white;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border-left: 5px solid var(--light-blue);
}
.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}
.result-card h5 {
  font-size: 1.1rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-gold);
}

.result-stats {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}
.stat-label { color: var(--text-light); font-size: 0.95rem; font-weight: 600; }
.stat-value { color: var(--light-blue); font-size: 1.3rem; font-weight: 700; }

footer {
  background: #1a1a1a;
  color: #888;
  padding: 40px 0 20px;
}

footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 20px;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-section p {
  color: #888;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.footer-section a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-blue);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-blue);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
}

.vertical-marquee {
  max-height: 520px;
  overflow: hidden;
  position: relative;
  margin-top: 10px;
}
.marquee-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation-name: marqueeScroll;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.marquee-track .event-card {
  margin: 0;
}
@keyframes marqueeScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.vertical-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@media (max-width: 1024px) {
  .home-feature-grid__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .page-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

}