* {
  margin: 0;
  padding: 0px 0%;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.main {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 0px 4%;
  overflow: hidden;
}

.main .bg-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 100%;
  display: flex;
  animation: slideShow 15s infinite;
  z-index: -1;
}

.main .bg-slideshow .slide {
  width: 33.333%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.main .bg-slideshow .slide:nth-child(1) {
  background-image: url("https://icmatribhumibaluwatar.org/api/images/3788513348ac2f13");
  background-color: #1e3a5f; }

.main .bg-slideshow .slide:nth-child(2) {
  background-image: url("https://icmatribhumibaluwatar.org/api/images/f966879dbabfb344");
  background-color: linear-gradient(
    135deg,
    #667eea 0%,
    #764ba2 100%
  ); }

.main .bg-slideshow .slide:nth-child(3) {
  background-image: url("https://icmatribhumibaluwatar.org/api/images/b4edf38b67296cdb");
  background-color: linear-gradient(
    135deg,
    #f093fb 0%,
    #f5576c 100%
  ); }

.main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(12, 25, 49, 0.5), rgba(12, 25, 49, 0.5));
  z-index: -1;
  pointer-events: none;
}

header {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 70px);
  padding: 15px 20px 80px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@keyframes slideShow {
  0% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(0);
  }
  33.33% {
    transform: translateX(-33.333%);
  }
  63.33% {
    transform: translateX(-33.333%);
  }
  66.66% {
    transform: translateX(-66.666%);
  }
  96.66% {
    transform: translateX(-66.666%);
  }
  100% {
    transform: translateX(-100%);
  }
}
h1 {
  text-align: center;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: white;
  font-weight: 700;
  margin-bottom: 0;
  animation: fadeInUp 0.8s ease;
}

.header-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.header-underline {
  width: 100%;
  max-width: 320px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  margin-bottom: 5px;
  animation:
    fadeInUp 0.8s ease 0.1s both,
    underlineExpand 0.8s ease 0.3s both;
}

@keyframes underlineExpand {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

p {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.3rem);
  opacity: 0.95;
  margin-bottom: 200px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.left-side {
  position: absolute;
  bottom: 40px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
  position: relative;
  transition:
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.indicator-dot::after {
  content: "|";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  opacity: 0;
  transition:
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-indicator:hover .indicator-dot {
  background-color: rgba(255, 255, 255, 1);
  transform: scale(1.15);
}

.event-indicator.active .indicator-dot {
  background-color: transparent;
  transform: scale(1);
}

.event-indicator.active .indicator-dot::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.indicator-name {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  opacity: 0;
  transform: translateX(-10px);
  overflow: hidden;
  white-space: nowrap;
  transition:
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-indicator.active .indicator-name {
  opacity: 1;
  transform: translateX(0);
}

.event-indicator:hover .indicator-name {
  opacity: 0.7;
  transform: translateX(0);
}
.quick-links {
  position: absolute;
  bottom: 40px;
  right: 20px;
  text-align: right;
}

.quick-links h3 {
  margin: 0;
  font-weight: bold;
  text-decoration: underline;
}

.quick-links h2 {
  margin: 0 0 8px 0;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.quick-links a {
  display: block;
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  text-decoration: none;
  padding: 12px 20px;
  margin-top: 8px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  animation: slideInFromRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.quick-links a:nth-child(2) {
  animation-delay: 0.1s;
}

.quick-links a:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.quick-links a:hover {
  background: #f4c512;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
h2 {
  font-size: 1.5rem;
  color: white;
}
.short {
  padding-top: 20px;
  line-height: 1.6;
}

h3 {
  padding-top: 10px;
  padding-bottom: 15px;
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  color: #0c1931;
  font-weight: 700;
  margin-bottom: 0;
}

.main-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 5%;
  background-color: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0;
  animation: none;
}

.featured-event {
  position: relative;
  display: flex;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  max-width: 1200px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.featured-event:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #f4c512 0%, #f5a623 100%);
  color: #0c1931;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(244, 197, 18, 0.4);
}

.featured-badge i {
  font-size: 0.85rem;
}

.featured-image {
  position: relative;
  width: 45%;
  min-height: 450px;
  flex-shrink: 0;
}

.featured-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-image-placeholder i {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.3);
}

.featured-date-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: white;
  padding: 15px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.featured-date-badge .day {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #0c1931;
  line-height: 1;
}

.featured-date-badge .month {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #667eea;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-date-badge .year {
  display: block;
  font-size: 0.85rem;
  color: #999;
  margin-top: 2px;
}

.featured-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #666;
}

.meta-item i {
  color: #667eea;
  font-size: 1rem;
}

.featured-title {
  font-size: 1.8rem;
  color: #0c1931;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.featured-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 25px;
  animation: none;
}

.featured-details {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.detail-item i {
  font-size: 1.5rem;
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
  padding: 12px;
  border-radius: 12px;
}

.detail-label {
  display: block;
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 2px;
}

.detail-value {
  display: block;
  font-size: 1rem;
  color: #0c1931;
  font-weight: 600;
}

.featured-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #f4c512;
  color: #0c1931;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(244, 197, 18, 0.3);
}

.btn-secondary:hover {
  background: #0c1931;
  color: #f4c512;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(12, 25, 49, 0.3);
}

.btn-volunteer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(17, 153, 142, 0.3);
}

.btn-volunteer:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(17, 153, 142, 0.4);
}

.btn-volunteer.hidden {
  display: none;
}

.btn-sponsor {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(245, 87, 108, 0.3);
}

.btn-sponsor:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 87, 108, 0.4);
}

.btn-sponsor.hidden {
  display: none;
}

.btn-sponsor-small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 87, 108, 0.25);
}

.btn-sponsor-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 87, 108, 0.35);
}

.btn-sponsor-small.hidden {
  display: none;
}

.notify-section {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.notify-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.notify-checkbox input {
  display: none;
}

.notify-checkbox .checkmark {
  width: 22px;
  height: 22px;
  border: 2px solid #ddd;
  border-radius: 6px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.notify-checkbox input:checked + .checkmark {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #667eea;
}

.notify-checkbox input:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.notify-checkbox:hover .checkmark {
  border-color: #667eea;
}

.notify-text {
  font-size: 0.95rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}

.notify-text i {
  color: #667eea;
}

.upcoming-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 5px;
}

.upcoming-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  width: 100%;
}

.upcoming-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.upcoming-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.upcoming-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.upcoming-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.upcoming-image-placeholder.gradient-2 {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.upcoming-image-placeholder.gradient-3 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.upcoming-card:hover .upcoming-image-placeholder {
  transform: scale(1.05);
}

.upcoming-image-placeholder i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.3);
}

.upcoming-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  padding: 10px 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.upcoming-date .day {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0c1931;
  line-height: 1;
}

.upcoming-date .month {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #667eea;
  text-transform: uppercase;
}

.upcoming-content {
  padding: 25px;
}

.upcoming-category {
  display: inline-block;
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.upcoming-title {
  font-size: 1.3rem;
  color: #0c1931;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.upcoming-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  animation: none;
}

.upcoming-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.upcoming-meta span {
  font-size: 0.85rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
}

.upcoming-meta i {
  color: #667eea;
}

.upcoming-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.upcoming-link:hover {
  color: #764ba2;
  gap: 12px;
}

.upcoming-link i {
  transition: transform 0.3s ease;
}

.upcoming-link:hover i {
  transform: translateX(4px);
}

.no-events {
  text-align: center;
  padding: 80px 40px;
  background: white;
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  flex-direction: column;
  align-items: center;
}

.no-events-illustration {
  margin-bottom: 30px;
}

.no-events-icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #667eea20 0%, #764ba220 100%);
  border-radius: 50%;
  animation: gentlePulse 3s ease-in-out infinite;
}

.no-events-icon-wrapper i {
  font-size: 2.8rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.no-events-sparkle {
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 1.2rem;
  color: #f4c512;
  animation: sparkle 2s ease-in-out infinite;
}

.no-events-sparkle i {
  -webkit-text-fill-color: #f4c512;
}

@keyframes gentlePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2) rotate(15deg);
  }
}

.no-events h4 {
  color: #0c1931;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.no-events .no-events-main-text {
  color: #555;
  margin-bottom: 8px;
  font-size: 1rem;
  animation: none;
}

.no-events .no-events-sub-text {
  color: #999;
  margin-bottom: 25px;
  font-size: 0.9rem;
  animation: none;
}

.no-events-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.no-events-notify-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.no-events-notify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.no-events-notify-form {
  display: flex;
  gap: 8px;
  align-items: center;
  animation: fadeInUp 0.3s ease;
}

.no-events-notify-form input {
  padding: 10px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
  width: 220px;
}

.no-events-notify-form input:focus {
  border-color: #667eea;
}

.no-events-notify-form button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.no-events-notify-form button:hover {
  transform: scale(1.1);
}

.notify-me-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.25);
}

.notify-me-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.35);
}

.notify-me-btn.active {
  background: linear-gradient(135deg, #764ba2, #667eea);
}

.notify-me-btn i {
  font-size: 0.85rem;
}

.notify-input-container {
  margin-top: 12px;
  animation: fadeInUp 0.3s ease;
}

.notify-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.notify-send-btn:hover {
  transform: scale(1.1);
}

.no-events p {
  color: #888;
  margin-bottom: 0;
  animation: none;
}

/* ==========================================
   EVENTS CALENDAR SECTION
   ========================================== */

.events-calendar-section {
  padding: 80px 5%;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.events-calendar-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.calendar-container {
  max-width: 900px;
  margin: 0 auto 50px;
  background: white;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 0 10px;
}

.calendar-month-year {
  font-size: 1.8rem;
  color: #0c1931;
  font-weight: 700;
  margin: 0;
}

.cal-nav-btn {
  width: 45px;
  height: 45px;
  border: none;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-nav-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-bottom: 10px;
}

.calendar-weekdays span {
  text-align: center;
  font-weight: 600;
  color: #888;
  font-size: 0.9rem;
  padding: 10px 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  background: #f8f9fa;
}

.calendar-day:hover {
  background: #e9ecef;
  transform: scale(1.05);
}

.calendar-day.other-month {
  opacity: 0.3;
}

.calendar-day.today {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.calendar-day.today .day-number {
  color: white;
  font-weight: 700;
}

.calendar-day.has-event {
  cursor: pointer;
}

.calendar-day.has-event.upcoming {
  background: rgba(102, 126, 234, 0.15);
  border: 2px solid #667eea;
}

.calendar-day.has-event.past {
  background: rgba(136, 136, 136, 0.1);
  border: 2px solid #aaa;
}

.day-number {
  font-size: 1rem;
  font-weight: 500;
  color: #0c1931;
}

.event-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 4px;
}

.event-dot.upcoming {
  background: #667eea;
}

.event-dot.past {
  background: #888;
}

.calendar-legend {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #666;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.legend-dot.upcoming {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.legend-dot.past {
  background: #aaa;
}

.legend-dot.today {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

.calendar-events-list {
  max-width: 900px;
  margin: 0 auto;
}

.events-list-title {
  font-size: 1.5rem;
  color: #0c1931;
  margin-bottom: 25px;
  font-weight: 700;
  text-align: center;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.event-list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.event-list-item.upcoming {
  border-left-color: #667eea;
}

.event-list-item.past {
  border-left-color: #aaa;
  opacity: 0.8;
}

.event-list-item:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.event-list-item.highlight {
  animation: highlightPulse 0.5s ease 3;
}

@keyframes highlightPulse {
  0%,
  100% {
    background: white;
  }
  50% {
    background: rgba(102, 126, 234, 0.1);
  }
}

.event-list-date {
  text-align: center;
  min-width: 60px;
}

.event-list-date .event-day {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #0c1931;
  line-height: 1;
}

.event-list-date .event-month {
  display: block;
  font-size: 0.85rem;
  color: #888;
  text-transform: uppercase;
  font-weight: 600;
}

.event-list-content {
  flex: 1;
}

.event-category {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.event-category.upcoming {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
}

.event-category.past {
  background: rgba(136, 136, 136, 0.1);
  color: #888;
}

.event-list-title {
  font-size: 1.1rem;
  color: #0c1931;
  margin: 0 0 5px 0;
  font-weight: 600;
}

.event-status {
  font-size: 0.8rem;
  font-weight: 600;
}

.event-status.upcoming {
  color: #11998e;
}

.event-status.past {
  color: #888;
}

.event-list-action {
  flex-shrink: 0;
}

.event-details-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667eea;
  text-decoration: none;
  transition: all 0.3s ease;
}

.event-details-btn:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: scale(1.1);
}

.no-events-month {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.no-events-month i {
  font-size: 3rem;
  color: #ddd;
  margin-bottom: 15px;
}

.no-events-month p {
  color: #888;
  margin: 0;
  animation: none;
}

/* ==========================================
   EVENTS ARCHIVE SECTION
   ========================================== */

.events-archive-section {
  position: relative;
  padding: 100px 5%;
  background: linear-gradient(135deg, #0c1931 0%, #1a365d 50%, #2d3748 100%);
  overflow: hidden;
}

.archive-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(102, 126, 234, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(118, 75, 162, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(244, 197, 18, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.archive-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 1;
}

.archive-header {
  text-align: center;
  margin-bottom: 50px;
}

.archive-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #f4c512;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  border: 1px solid rgba(244, 197, 18, 0.3);
}

.archive-header h3 {
  color: white;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 15px;
  padding: 0;
}

.archive-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  animation: none;
}

.archive-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.search-box {
  position: relative;
  flex: 1;
  max-width: 450px;
  min-width: 280px;
}

.search-box i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
}

.search-box input {
  width: 100%;
  padding: 16px 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.search-box input:focus {
  border-color: #f4c512;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 30px rgba(244, 197, 18, 0.2);
}

.search-clear {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.search-clear:hover {
  background: rgba(255, 255, 255, 0.3);
}

.view-toggles {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.view-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.view-toggle:hover {
  color: white;
}

.view-toggle.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.tenure-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.tenure-nav {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tenure-nav:hover:not(:disabled) {
  background: #f4c512;
  border-color: #f4c512;
  color: #0c1931;
  transform: scale(1.1);
}

.tenure-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.tenure-display {
  text-align: center;
}

.tenure-label {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.tenure-year {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin: 0;
  background: linear-gradient(135deg, #f4c512 0%, #ff9500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tenure-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 25px 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #f4c512;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.events-timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.events-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    #f4c512,
    rgba(102, 126, 234, 0.5),
    rgba(255, 255, 255, 0.2)
  );
  transform: translateX(-50%);
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  display: flex;
  margin-bottom: 40px;
  cursor: pointer;
  align-items: center;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.marker-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f4c512;
  border: 4px solid #0c1931;
  box-shadow: 0 0 20px rgba(244, 197, 18, 0.5);
}

.timeline-item.past .marker-dot {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: none;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(244, 197, 18, 0.5),
    rgba(102, 126, 234, 0.3)
  );
  transform: translateY(-50%);
}

.timeline-item:nth-child(odd)::before {
  right: calc(50% + 10px);
}

.timeline-item:nth-child(even)::before {
  left: calc(50% + 10px);
}

.timeline-item.past::before {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.1)
  );
}

.timeline-card {
  width: calc(50% - 50px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  display: flex;
}

.timeline-item:nth-child(odd) .timeline-card {
  margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-card {
  margin-left: auto;
}

.timeline-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(244, 197, 18, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.timeline-image {
  position: relative;
  width: 180px;
  min-height: 180px;
  flex-shrink: 0;
}

.timeline-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-image-placeholder i {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.4);
}

.timeline-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.timeline-badge.upcoming {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  color: white;
}

.timeline-badge.past {
  background: rgba(10, 255, 10, 0.5);
  color: white;
}

.timeline-content {
  padding: 20px;
  flex: 1;
}

.timeline-date {
  color: #f4c512;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.timeline-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-category {
  display: inline-block;
  background: rgba(102, 126, 234, 0.3);
  color: #a5b4fc;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.timeline-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 12px;
  animation: none;
}

.timeline-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.timeline-meta span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.timeline-meta i {
  color: #f4c512;
}

.timeline-learn-more {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.timeline-learn-more:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.gradient-purple {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.gradient-gold {
  background: linear-gradient(135deg, #f4c512 0%, #ff9500 100%);
}
.gradient-pink {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.gradient-red {
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
}
.gradient-green {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}
.gradient-blue {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.gradient-teal {
  background: linear-gradient(135deg, #0093e9 0%, #80d0c7 100%);
}
.gradient-orange {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.month-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.month-nav {
  width: 45px;
  height: 45px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.month-nav:hover {
  background: #f4c512;
  border-color: #f4c512;
  color: #0c1931;
}

.month-display {
  display: flex;
  gap: 15px;
}

.month-select,
.year-select {
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.month-select:focus,
.year-select:focus {
  border-color: #f4c512;
  outline: none;
}

.month-select option,
.year-select option {
  background: #0c1931;
  color: white;
}

.month-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.month-event-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  cursor: pointer;
}

.month-event-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(244, 197, 18, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.month-card-image {
  position: relative;
  height: 160px;
}

.month-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.month-card-placeholder i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.3);
}

.month-card-date {
  position: absolute;
  bottom: -25px;
  left: 20px;
  background: white;
  padding: 10px 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mcd-day {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0c1931;
  line-height: 1;
}

.mcd-month {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #667eea;
  text-transform: uppercase;
}

.month-card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.month-card-badge.upcoming {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  color: white;
}

.month-card-badge.past {
  background: rgba(0, 0, 0, 0.5);
  color: white;
}

.month-card-content {
  padding: 35px 20px 20px;
}

.month-card-category {
  display: inline-block;
  background: rgba(102, 126, 234, 0.3);
  color: #a5b4fc;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.month-card-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.month-card-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
  animation: none;
}

.month-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.month-card-footer span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.month-card-footer i {
  color: #f4c512;
}

.month-card-btn {
  background: transparent;
  border: 2px solid #f4c512;
  color: #f4c512;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.month-card-btn:hover {
  background: #f4c512;
  color: #0c1931;
}

.no-results {
  text-align: center;
  padding: 80px 20px;
}

.no-results i {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}

.no-results h4 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.no-results p {
  color: rgba(255, 255, 255, 0.6);
  animation: none;
}

.event-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 25, 49, 0.9);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.event-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.event-modal {
  background: white;
  border-radius: 24px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9) translateY(30px);
  transition: all 0.4s ease;
}

.event-modal-overlay.active .event-modal {
  transform: scale(1) translateY(0);
}

.event-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.event-modal-header {
  padding: 40px;
  color: white;
  position: relative;
}

.event-modal-header.gradient-purple {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.event-modal-header.gradient-gold {
  background: linear-gradient(135deg, #f4c512 0%, #ff9500 100%);
  color: #0c1931;
}
.event-modal-header.gradient-pink {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.event-modal-header.gradient-red {
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
}
.event-modal-header.gradient-green {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}
.event-modal-header.gradient-blue {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.event-modal-header.gradient-teal {
  background: linear-gradient(135deg, #0093e9 0%, #80d0c7 100%);
}
.event-modal-header.gradient-orange {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.event-modal-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.event-modal-badge.upcoming {
  background: rgba(255, 255, 255, 0.3);
  color: white;
}

.event-modal-badge.past {
  background: rgba(0, 0, 0, 0.2);
  color: white;
}

.event-modal-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.event-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.event-modal-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.event-modal-body {
  padding: 30px 40px 40px;
}

.event-modal-description {
  margin-bottom: 30px;
}

.event-modal-description h4,
.event-modal-gallery h4 {
  font-size: 1.1rem;
  color: #0c1931;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.event-modal-description h4 i,
.event-modal-gallery h4 i {
  color: #667eea;
}

.event-modal-description p {
  color: #666;
  line-height: 1.7;
  animation: none;
}

.event-modal-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.modal-stat {
  flex: 1;
  min-width: 150px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 16px;
}

.modal-stat i {
  font-size: 1.5rem;
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
  padding: 15px;
  border-radius: 12px;
}

.modal-stat-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0c1931;
}

.modal-stat-label {
  font-size: 0.85rem;
  color: #888;
}

.event-modal-venue {
  margin-top: 30px;
  padding: 20px;
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #667eea;
}

.event-modal-venue h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #1e3a5f;
  display: flex;
  align-items: center;
  gap: 10px;
}

.event-modal-venue h4 i {
  color: #667eea;
}

.venue-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.venue-image {
  width: 100%;
  max-height: 200px;
  overflow: hidden;
}

.venue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-info p {
  color: #333;
  line-height: 1.6;
  font-size: 0.95rem;
}

.venue-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.venue-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #555;
}

.venue-meta span i {
  color: #667eea;
}

.event-modal-gallery {
  margin-top: 30px;
}

.event-modal-gallery h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #1e3a5f;
  display: flex;
  align-items: center;
  gap: 10px;
}

.event-modal-gallery h4 i {
  color: #667eea;
}

.modal-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
  min-height: 100px;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-placeholder i {
  font-size: 1.5rem;
  color: #ccc;
}

.view-all-photos-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-all-photos-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

@media (max-width: 1200px) {
  .timeline-card {
    width: calc(50% - 40px);
  }
}

@media (max-width: 992px) {
  .events-archive-section {
    padding: 80px 4%;
  }

    .events-timeline::before {
    left: 15px;
  }

  .timeline-item {
    flex-direction: column;
    padding-left: 50px;
  }

  .timeline-item::before {
    display: none;
  }

  .timeline-marker {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: 0;
  }

  .timeline-card {
    width: 100%;
    margin: 0 !important;
  }

  .timeline-card {
    flex-direction: column;
  }

  .timeline-image {
    width: 100%;
    height: 200px;
  }

  .tenure-stats {
    gap: 20px;
  }

  .stat-item {
    padding: 20px 30px;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .events-archive-section {
    padding: 60px 4%;
  }

  .archive-controls {
    flex-direction: column;
  }

  .search-box {
    width: 100%;
    max-width: none;
  }

  .view-toggles {
    width: 100%;
    justify-content: center;
  }

  .tenure-selector {
    gap: 15px;
  }

  .tenure-year {
    font-size: 2rem;
  }

  .tenure-nav {
    width: 40px;
    height: 40px;
  }

  .month-display {
    flex-direction: column;
    gap: 10px;
  }

  .month-events-grid {
    grid-template-columns: 1fr;
  }

  .event-modal-header {
    padding: 30px 20px;
  }

  .event-modal-header h2 {
    font-size: 1.5rem;
  }

  .event-modal-meta {
    flex-direction: column;
    gap: 10px;
  }

  .event-modal-body {
    padding: 20px;
  }

  .modal-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-modal-stats {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .archive-badge {
    font-size: 0.75rem;
    padding: 8px 16px;
  }

  .archive-header h3 {
    font-size: 1.8rem;
  }

  .view-toggle {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .stat-item {
    padding: 15px 25px;
    width: 100%;
  }

  .timeline-content {
    padding: 15px;
  }

  .timeline-title {
    font-size: 1.1rem;
  }

  .month-card-content {
    padding: 30px 15px 15px;
  }
}

/* ==========================================
   EMAIL NOTIFICATION MODAL
   ========================================== */

.notify-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 25, 49, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.notify-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.notify-modal {
  background: white;
  border-radius: 24px;
  padding: 40px;
  max-width: 450px;
  width: 90%;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.notify-modal-overlay.active .notify-modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #999;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}

.modal-close:hover {
  color: #0c1931;
  transform: rotate(90deg);
}

.modal-content,
.modal-success {
  text-align: center;
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  animation: bellRing 0.5s ease;
}

@keyframes bellRing {
  0%,
  100% {
    transform: rotate(0);
  }
  20%,
  60% {
    transform: rotate(-15deg);
  }
  40%,
  80% {
    transform: rotate(15deg);
  }
}

.modal-icon i {
  font-size: 2.5rem;
  color: white;
}

.modal-content h4,
.modal-success h4 {
  font-size: 1.5rem;
  color: #0c1931;
  margin-bottom: 10px;
  font-weight: 700;
}

.modal-content p,
.modal-success p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
  animation: none;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #667eea;
  font-size: 1.1rem;
}

.input-group input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: none;
  max-width: 100%;
}

.input-group input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.modal-submit-btn {
  width: 100%;
  padding: 16px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.modal-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  animation: successPop 0.5s ease;
}

@keyframes successPop {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.success-icon i {
  font-size: 3rem;
  color: white;
}

.modal-done-btn {
  padding: 14px 50px;
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-done-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(17, 153, 142, 0.4);
}

@media (max-width: 480px) {
  .notify-modal {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .modal-icon {
    width: 60px;
    height: 60px;
  }

  .modal-icon i {
    font-size: 1.8rem;
  }

  .modal-content h4,
  .modal-success h4 {
    font-size: 1.3rem;
  }

  .success-icon {
    width: 80px;
    height: 80px;
  }

  .success-icon i {
    font-size: 2.5rem;
  }
}

hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #ddd, transparent);
  max-width: 1500px;
  width: 90%;
  margin: 80px auto;
}

h4 {
  text-align: center;
  font-size: 2rem;
  color: #0c1931;
  margin-bottom: 20px;
  font-weight: 600;
}
.calendar {
  width: auto;
  min-height: 1000px;
  padding: 80px 5%;
  background-color: white;
}
.search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  padding-top: 50px;
}
input {
  padding: 15px 25px;
  width: 100%;
  max-width: 500px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  outline: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

input:focus {
  border-color: #007bff;
  box-shadow: 0 4px 20px rgba(0, 123, 255, 0.15);
}

.arrow {
  padding: 12px;
  font-size: 20px;
  text-decoration: none;
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.arrows-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: relative;
  margin-bottom: 50px;
}

.arrows-container span {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0c1931;
}

.arrow:hover {
  background-color: #0c1931;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.left-arrow {
  position: absolute;
  left: 30px;
}

.right-arrow {
  position: absolute;
  right: 30px;
}

.date-section1 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  padding: 50px 20px;
}

.date-section2 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  padding: 50px 20px;
}

.date-section1,
.date-section2 {
  display: none;
}

#date1:target {
  display: block;
}

#date2:target {
  display: block;
}

#date1 {
  display: block;
}
.Description {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  min-height: 600px;
  width: 100%;
  max-width: 1400px;
  position: relative;
}

.vertical-line {
  position: absolute;
  top: 90px;
  bottom: 73px;
  left: 50%;
  width: 3px;
  background: linear-gradient(to bottom, #007bff, #667eea);
  border-radius: 10px;
}

.horizontal-line {
  position: absolute;
  width: 200px;
  height: 3px;
  background: linear-gradient(to right, #007bff, #667eea);
  border-radius: 10px;
}

.left.top {
  left: 647px;
  top: 50%;
}

.left.bottom {
  left: 647px;
  top: 90%;
}

.right.top {
  right: 645px;
  top: 30%;
}

.right.bottom {
  right: 645px;
  top: 70%;
}

.box4 {
  position: absolute;
  top: -100px;
  width: 500px;
  min-height: 200px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  color: rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  background: white;
  padding: 25px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.box4:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.left .box4 {
  left: -500px;
}

.right .box4 {
  right: -500px;
}

h5 {
  font-size: 1.5rem;
  color: #0c1931;
  margin-bottom: 15px;
  font-weight: 600;
}
.smallbox3 {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 15px;
  height: 120px;
  width: 200px;
  margin-bottom: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.smallbox3:hover {
  transform: scale(1.05);
}

.context2 {
  text-align: left;
  width: 100%;
}
.event3 {
  display: flex;
  flex-direction: column;
}
.short2 {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}
.cta-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 80px 0;
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 30px;
  max-width: 1200px;
  margin: 80px auto;
  width: 90%;
}

h6 {
  text-align: center;
  font-size: 2.5rem;
  padding-bottom: 20px;
  color: white;
  font-weight: 700;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 15px 40px;
  background: #f4c512;
  border: 0;
  border-radius: 50px;
  color: #0c1931;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(244, 197, 18, 0.3);
}

.btn:hover {
  color: #f4c512;
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

@media (min-width: 769px) {
    .featured-event {
    flex-direction: row !important;
  }

  .featured-image {
    width: 45% !important;
    min-height: 450px !important;
  }

  .featured-content {
    flex: 1 !important;
    padding: 40px !important;
  }
}

@media (max-width: 1400px) {
  .horizontal-line.left {
    left: 550px !important;
  }

  .horizontal-line.right {
    right: 550px !important;
  }
}

@media (max-width: 1200px) {
  header {
    min-height: 600px;
    padding: 60px 20px 100px;
  }

  h1 {
    font-size: 3.5rem;
  }

  .left-side,
  .quick-links {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin: 20px auto;
    max-width: 400px;
  }

  .Description {
    display: none;
  }

  .calendar {
    text-align: center;
  }

  .arrows-container span {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .featured-event {
    flex-direction: column;
  }

  .featured-image {
    width: 100%;
    min-height: 300px;
  }

  .featured-badge {
    top: 15px;
    left: 15px;
  }

  .featured-content {
    padding: 30px;
  }

  .featured-details {
    flex-direction: column;
    gap: 15px;
  }

  .featured-actions {
    flex-wrap: wrap;
  }

    .calendar-container {
    padding: 20px;
  }

  .calendar-month-year {
    font-size: 1.4rem;
  }

  .calendar-legend {
    flex-wrap: wrap;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 2rem;
    padding-top: 10px;
    padding-bottom: 15px;
  }

  h4 {
    font-size: 1.5rem;
  }

  .main-content {
    padding: 60px 5%;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .featured-event {
    border-radius: 16px;
    margin-bottom: 30px;
  }

  .featured-image {
    min-height: 250px;
  }

  .featured-date-badge {
    bottom: 15px;
    right: 15px;
    padding: 12px 16px;
  }

  .featured-date-badge .day {
    font-size: 2rem;
  }

  .featured-content {
    padding: 25px;
  }

  .featured-title {
    font-size: 1.4rem;
  }

  .featured-meta {
    flex-direction: column;
    gap: 10px;
  }

  .featured-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
    padding: 14px 24px;
  }

  .btn-volunteer,
  .btn-sponsor {
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .upcoming-events-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .upcoming-card {
    border-radius: 16px;
  }

  .upcoming-image {
    height: 160px;
  }

  .upcoming-content {
    padding: 20px;
  }

  .upcoming-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .btn-sponsor-small {
    justify-content: center;
  }

    .events-calendar-section {
    padding: 60px 4%;
  }

  .calendar-header {
    padding: 0;
  }

  .cal-nav-btn {
    width: 40px;
    height: 40px;
  }

  .calendar-weekdays span {
    font-size: 0.75rem;
    padding: 5px 0;
  }

  .day-number {
    font-size: 0.85rem;
  }

  .event-list-item {
    padding: 15px;
    gap: 15px;
  }

  .event-list-date .event-day {
    font-size: 1.4rem;
  }

  .cta-section {
    padding: 60px 20px;
    margin: 60px 5%;
    width: 90%;
  }

  h6 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  header {
    min-height: 500px;
    padding: 40px 15px 80px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  .left-side,
  .quick-links {
    padding: 15px;
    margin: 15px;
  }

  input {
    max-width: 100%;
    padding: 12px 20px;
  }

  .arrows-container span {
    font-size: 1.5rem;
  }

  .arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .main-content {
    padding: 40px 4%;
  }

  .section-badge {
    font-size: 0.8rem;
    padding: 6px 16px;
  }

  .featured-badge {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .featured-image {
    min-height: 200px;
  }

  .featured-date-badge {
    padding: 10px 14px;
  }

  .featured-date-badge .day {
    font-size: 1.6rem;
  }

  .featured-date-badge .month {
    font-size: 0.85rem;
  }

  .featured-content {
    padding: 20px;
  }

  .featured-title {
    font-size: 1.25rem;
  }

  .featured-description {
    font-size: 0.95rem;
  }

  .detail-item i {
    font-size: 1.2rem;
    padding: 10px;
  }

  .upcoming-meta {
    flex-direction: column;
    gap: 8px;
  }

  .upcoming-title {
    font-size: 1.15rem;
  }

    .calendar-days {
    gap: 3px;
  }

  .calendar-day {
    border-radius: 8px;
  }

  .day-number {
    font-size: 0.75rem;
  }

  .event-dot {
    width: 4px;
    height: 4px;
  }

  .calendar-legend {
    gap: 10px;
    font-size: 0.8rem;
  }

  .legend-dot {
    width: 10px;
    height: 10px;
  }

  .event-list-item {
    flex-wrap: wrap;
  }

  .event-list-date {
    min-width: 50px;
  }

  .event-list-date .event-day {
    font-size: 1.2rem;
  }

  .event-list-action {
    width: 100%;
    margin-top: 10px;
  }

  .event-details-btn {
    width: 100%;
    border-radius: 10px;
    height: 40px;
  }
}

/* ==========================================
   JOIN US SECTION
   ========================================== */
.join-us-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.join-us-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(244, 197, 18, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(12, 25, 49, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(59, 130, 246, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.join-us-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.join-header {
  text-align: center;
  margin-bottom: 60px;
}

.join-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(
    135deg,
    rgba(12, 25, 49, 0.1),
    rgba(12, 25, 49, 0.05)
  );
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0c1931;
  border: 1px solid rgba(12, 25, 49, 0.2);
  margin-bottom: 25px;
}

.join-badge i {
  font-size: 1.1rem;
  color: #f4c512;
}

.join-title {
  font-size: 3rem;
  font-weight: 800;
  color: #0c1931;
  margin-bottom: 20px;
  line-height: 1.2;
}

.join-title .highlight {
  background: linear-gradient(135deg, #f4c512, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.join-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.sponsors-wrapper {
  background: white;
  border-radius: 30px;
  padding: 40px 50px;
  margin-bottom: 60px;
  border: 1px solid rgba(12, 25, 49, 0.1);
  box-shadow: 0 10px 40px rgba(12, 25, 49, 0.08);
}

.sponsors-header {
  text-align: center;
  margin-bottom: 25px;
}

.sponsors-header h3 {
  font-size: 1.8rem;
  color: #0c1931;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sponsors-header h3 i {
  color: #f4c512;
}

.sponsors-header p {
  color: #64748b;
  font-size: 1rem;
}

.sponsors-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.sponsors-carousel {
  display: flex;
  overflow: hidden;
  gap: 30px;
  flex: 1;
  scroll-behavior: smooth;
}

.sponsor-slide {
  flex: 0 0 calc(16.666% - 25px);
  min-width: 150px;
  transition: transform 0.3s ease;
}

.sponsor-logo {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.sponsor-logo:hover {
  transform: scale(1.05);
  border-color: #f4c512;
  box-shadow: 0 10px 30px rgba(244, 197, 18, 0.2);
}

.sponsor-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.sponsor-logo:hover img {
  filter: grayscale(0%);
}

.sponsor-nav {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(12, 25, 49, 0.08);
  border: 2px solid rgba(12, 25, 49, 0.2);
  color: #0c1931;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.sponsor-nav:hover {
  background: #f4c512;
  color: #0c1931;
  border-color: #f4c512;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(12, 25, 49, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots .dot.active {
  background: #f4c512;
  width: 30px;
  border-radius: 10px;
}

.join-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.join-card {
  background: white;
  border-radius: 25px;
  padding: 40px 30px;
  border: 1px solid rgba(12, 25, 49, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(12, 25, 49, 0.06);
}

.join-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 25px 25px 0 0;
}

.sponsor-card::before {
  background: linear-gradient(90deg, #f4c512, #ffd700);
}

.volunteer-card::before {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.notify-card::before {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.join-card:hover {
  transform: translateY(-10px);
  border-color: rgba(12, 25, 49, 0.15);
  box-shadow: 0 25px 50px rgba(12, 25, 49, 0.12);
}

.join-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.sponsor-card .join-card-icon {
  background: linear-gradient(
    135deg,
    rgba(244, 197, 18, 0.2),
    rgba(244, 197, 18, 0.1)
  );
  color: #f4c512;
}

.volunteer-card .join-card-icon {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.2),
    rgba(16, 185, 129, 0.1)
  );
  color: #10b981;
}

.notify-card .join-card-icon {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.2),
    rgba(59, 130, 246, 0.1)
  );
  color: #3b82f6;
}

.join-card h4 {
  font-size: 1.5rem;
  color: #0c1931;
  margin-bottom: 15px;
  font-weight: 700;
}

.join-card > p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.sponsor-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.sponsor-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #334155;
  padding: 10px 0;
  border-bottom: 1px solid rgba(12, 25, 49, 0.1);
}

.sponsor-benefits li:last-child {
  border-bottom: none;
}

.sponsor-benefits li i {
  color: #f4c512;
  font-size: 0.9rem;
}

.waitlist-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.waitlist-perks .perk {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(16, 185, 129, 0.1);
  padding: 12px 15px;
  border-radius: 10px;
  color: #334155;
  font-size: 0.95rem;
}

.waitlist-perks .perk i {
  color: #10b981;
  font-size: 1rem;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.waitlist-input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.waitlist-input-group input {
  width: 100%;
  padding: 14px 18px;
  background: #f8fafc;
  border: 2px solid rgba(12, 25, 49, 0.15);
  border-radius: 12px;
  color: #0c1931;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.waitlist-input-group input::placeholder {
  color: #94a3b8;
}

.waitlist-input-group input:focus {
  outline: none;
  border-color: #10b981;
  background: white;
}

.notify-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.notify-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
}

.notify-feature i {
  color: #3b82f6;
  font-size: 1.3rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 10px;
}

.notify-feature div {
  display: flex;
  flex-direction: column;
}

.notify-feature strong {
  color: #0c1931;
  font-size: 0.95rem;
}

.notify-feature span {
  color: #64748b;
  font-size: 0.85rem;
}

.notify-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notify-input-wrapper {
  position: relative;
}

.notify-input-wrapper i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
}

.notify-input-wrapper input {
  width: 100%;
  padding: 14px 18px 14px 50px;
  background: #f8fafc;
  border: 2px solid rgba(12, 25, 49, 0.15);
  border-radius: 12px;
  color: #0c1931;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.notify-input-wrapper input::placeholder {
  color: #94a3b8;
}

.notify-input-wrapper input:focus {
  outline: none;
  border-color: #3b82f6;
  background: white;
}

.privacy-note {
  text-align: center;
  color: rgba(100, 116, 139, 0.8);
  font-size: 0.8rem;
  margin-top: 12px;
  font-style: italic;
}

.join-card-btn {
  width: 100%;
  padding: 16px 25px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.sponsor-btn {
  background: linear-gradient(135deg, #f4c512, #ffd700);
  color: #0c1931;
}

.sponsor-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(244, 197, 18, 0.4);
}

.volunteer-btn {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
}

.volunteer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.notify-btn {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: white;
}

.notify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.join-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  background: linear-gradient(135deg, #0c1931 0%, #1a365d 100%);
  border-radius: 25px;
  padding: 40px;
  border: none;
}

.join-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.join-stat:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.join-stat > i {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(244, 197, 18, 0.2),
    rgba(244, 197, 18, 0.1)
  );
  border-radius: 15px;
  color: #f4c512;
  font-size: 1.5rem;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: 5px;
}

@media (max-width: 1200px) {
  .join-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .join-cards-grid .notify-card {
    grid-column: span 2;
  }

  .sponsor-slide {
    flex: 0 0 calc(25% - 22.5px);
  }

  .join-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .join-us-section {
    padding: 80px 5%;
  }

  .join-title {
    font-size: 2.5rem;
  }

  .sponsors-wrapper {
    padding: 35px 25px;
  }

  .sponsor-slide {
    flex: 0 0 calc(33.333% - 20px);
  }
}

@media (max-width: 768px) {
  .join-title {
    font-size: 2rem;
  }

  .join-subtitle {
    font-size: 1rem;
  }

  .join-cards-grid {
    grid-template-columns: 1fr;
  }

  .join-cards-grid .notify-card {
    grid-column: span 1;
  }

  .sponsor-slide {
    flex: 0 0 calc(50% - 15px);
  }

  .sponsor-nav {
    width: 40px;
    height: 40px;
  }

  .join-stats {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .join-stat {
    padding: 15px;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .join-us-section {
    padding: 60px 4%;
  }

  .join-title {
    font-size: 1.7rem;
  }

  .join-badge {
    font-size: 0.85rem;
    padding: 8px 18px;
  }

  .sponsors-wrapper {
    padding: 25px 20px;
  }

  .sponsors-header h3 {
    font-size: 1.4rem;
  }

  .sponsor-slide {
    flex: 0 0 100%;
  }

  .join-card {
    padding: 30px 20px;
  }

  .join-card h4 {
    font-size: 1.3rem;
  }

  .join-card-btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}

/* ==========================================
   EVENT PAGE - LANDING/HEADER RESPONSIVE
   ========================================== */

@media screen and (max-width: 1200px) {
  .main {
    padding: 0 3%;
  }

  header {
    padding: 15px 15px 60px;
  }

  h1 {
    font-size: clamp(2rem, 5vw, 4rem);
  }

  p {
    margin-bottom: 150px;
  }

  .left-side {
    bottom: 30px;
    left: 15px;
  }

  .indicator-name {
    font-size: 0.9rem;
  }

  .quick-links {
    bottom: 30px;
    right: 15px;
  }

  .quick-links h2 {
    font-size: 1.2rem;
  }

  .quick-links a {
    padding: 10px 18px;
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 1024px) {
  .main {
    min-height: auto;
    padding: 0 4%;
  }

  header {
    min-height: calc(100vh - 80px);
    padding: 100px 10px 80px;
  }

  h1 {
    font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  }

  p {
    margin-bottom: 120px;
  }

  .left-side {
    bottom: 25px;
    left: 10px;
    gap: 6px;
  }

  .indicator-dot {
    width: 10px;
    height: 10px;
  }

  .indicator-name {
    font-size: 0.85rem;
  }

  .quick-links {
    bottom: 25px;
    right: 10px;
  }

  .quick-links h2 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .quick-links a {
    padding: 10px 15px;
    font-size: 0.9rem;
    margin-top: 6px;
  }
}

@media screen and (max-width: 768px) {
  header {
    min-height: calc(100vh - 70px);
    padding: 90px 10px 120px;
    justify-content: flex-start;
    padding-top: 25vh;
  }

  h1 {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }

  .header-underline {
    max-width: 250px;
  }

  p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin-bottom: 0;
  }

    .left-side {
    display: none;
  }

    .quick-links {
    position: absolute;
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
    text-align: center;
    width: 90%;
    max-width: 350px;
  }

  .quick-links h2 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .quick-links a {
    padding: 12px 20px;
    font-size: 0.9rem;
    border-radius: 25px;
  }
}

@media screen and (max-width: 576px) {
  .main {
    padding: 0 3%;
  }

  header {
    padding: 80px 5px 100px;
    padding-top: 20vh;
  }

  h1 {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .header-underline {
    max-width: 200px;
    height: 2px;
  }

  p {
    font-size: 0.9rem;
  }

  .quick-links {
    bottom: 15px;
    width: 95%;
    max-width: 320px;
  }

  .quick-links h2 {
    font-size: 0.95rem;
  }

  .quick-links a {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
}

@media screen and (max-width: 400px) {
  header {
    padding: 70px 5px 90px;
    padding-top: 18vh;
  }

  h1 {
    font-size: 1.3rem;
  }

  .header-text {
    gap: 5px;
  }

  .header-underline {
    max-width: 160px;
  }

  p {
    font-size: 0.85rem;
  }

  .quick-links {
    bottom: 12px;
    max-width: 280px;
  }

  .quick-links h2 {
    font-size: 0.9rem;
  }

  .quick-links a {
    padding: 8px 15px;
    font-size: 0.8rem;
    margin-top: 5px;
  }
}

/* =============================================
   EVENT MODAL SPONSORS SECTION
   ============================================= */
.event-modal-sponsors {
  margin-top: 25px;
  padding: 24px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.event-modal-sponsors h4 {
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.event-modal-sponsors h4 i {
  color: #667eea;
}

.modal-sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 14px;
}

.modal-sponsor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.modal-sponsor-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-color: #667eea;
}

.modal-sponsor-logo {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}

.modal-sponsor-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-sponsor-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea20, #764ba220);
  border-radius: 10px;
  color: #667eea;
  font-size: 1.4rem;
}

.modal-sponsor-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.3;
}

.modal-sponsor-type {
  font-size: 0.7rem;
  color: #94a3b8;
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 10px;
}

/* =============================================
   FRONTEND EVENT SPONSORS SECTION (CAROUSEL)
   ============================================= */
.event-sponsors-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  overflow: hidden;
}

.event-sponsors-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.event-sponsors-header {
  text-align: center;
  margin-bottom: 40px;
}

.event-sponsors-header .sponsors-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #667eea15, #764ba215);
  color: #667eea;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.event-sponsors-header h3 {
  font-size: 2rem;
  color: #0c1931;
  margin-bottom: 10px;
}

.event-sponsors-header p {
  color: #64748b;
  font-size: 1rem;
  max-width: 550px;
  margin: 0 auto;
}

.event-sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.event-sponsors-grid.static-grid {
  display: grid;
}

.sponsors-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.sponsors-carousel-track {
  display: flex;
  gap: 24px;
  animation: sponsorsScroll var(--scroll-duration, 30s) linear infinite;
  width: max-content;
}

.sponsors-carousel-track:hover {
  animation-play-state: paused;
}

@keyframes sponsorsScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.sponsors-carousel-wrapper .event-sponsor-card {
  min-width: 260px;
  max-width: 260px;
  flex-shrink: 0;
}

.event-sponsor-card {
  background: white;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.event-sponsor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}

.event-sponsor-logo {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
}

.event-sponsor-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.event-sponsor-logo .sponsor-logo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea20, #764ba220);
  color: #667eea;
  font-size: 1.8rem;
}

.event-sponsor-info h5 {
  font-size: 1rem;
  color: #1e293b;
  margin-bottom: 4px;
}

.event-sponsor-info .sponsor-event-name {
  font-size: 0.8rem;
  color: #94a3b8;
}

.event-sponsor-info .sponsor-event-date {
  font-size: 0.75rem;
  color: #667eea;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
  justify-content: center;
}

.event-sponsor-type-badge {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 12px;
  border-radius: 20px;
  background: linear-gradient(135deg, #667eea15, #764ba215);
  color: #667eea;
}

.event-sponsor-website {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: #667eea;
  text-decoration: none;
  margin-top: 4px;
}

.event-sponsor-website:hover {
  text-decoration: underline;
}

.no-event-sponsors {
  text-align: center;
  padding: 40px;
  color: #94a3b8;
}

.no-event-sponsors i {
  font-size: 2.5rem;
  margin-bottom: 12px;
  opacity: 0.5;
}

.no-event-sponsors p {
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .event-sponsors-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
  }

  .event-sponsors-header h3 {
    font-size: 1.5rem;
  }

  .sponsors-carousel-wrapper .event-sponsor-card {
    min-width: 220px;
    max-width: 220px;
  }

  .modal-sponsors-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
  }
}
