/* Base Styles - Matching your existing theme */
:root {
    --primary-color: #4a6bff;
    --primary-dark: #3a56d4;
    --secondary-color: #6c99f5;
    --accent-color: #abf0f5;
    --text-color: #2d3748;
    --text-light: #4a5568;
    --bg-color: #fff;
    --bg-light: #f7fafc;
    --bg-dark: #1a202c;
    --border-color: #e2e8f0;
    --border-radius: 10px;
    --box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }
  
  body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--bg-light);
  }
  
  .container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  section {
    padding: 120px 0;
    position: relative;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--bg-dark);
  }
  
  h1 {
    font-size: 3.5rem;
    letter-spacing: -0.5px;
  }
  
  h2 {
    font-size: 2.5rem;
    letter-spacing: -0.3px;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  p {
    margin-bottom: 24px;
    color: var(--text-light);
    font-size: 1.05rem;
  }
  
  a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
    font-weight: 500;
  }
  
  a:hover {
    color: var(--primary-dark);
  }
  
  img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    object-fit: cover;
  }
  
  .btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    letter-spacing: 0.5px;
  }
  
  .btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .btn-primary {
    background: var(--primary-color);
    color: white;
    background-image: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  }
  
  .btn-primary:hover {
    background-image: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 107, 255, 0.25);
    color: white;
  }
  
  .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
  }
  
  .btn-secondary:hover {
    background: rgba(74, 107, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(74, 107, 255, 0.15);
  }
  
  /* Enhanced Navigation - Matching your existing theme */
  #navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
  }
  
  #navbar.sticky {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
  }
  
  #navbar.hide {
    transform: translateY(-100%);
  }
  
  .nav-container {
    width: 90%;
    max-width: 1280px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    height: auto;
  }
  
  .logo img {
    height: 78px;
    border-radius: 0;
    filter: none;
    transition: var(--transition-fast);
    box-shadow: none;
  }
  
  .logo img:hover {
    transform: scale(1.05);
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 0;
  }
  
  .nav-links li {
    margin: 0 15px;
  }
  
  .nav-links a {
    color: var(--text-dark);
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 6px;
    transition: var(--transition-fast);
    position: relative;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--primary-color);
    transition: var(--transition-fast);
    transform: translateX(-50%);
  }
  
  .nav-links a:hover::after,
  .nav-links a.active::after {
    width: 70%;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--primary-color);
  }
  
  /* Burger menu for mobile */
  .burger {
    display: none;
    cursor: pointer;
  }
  
  .burger div {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 5px;
    transition: var(--transition-fast);
    border-radius: 3px;
    position: static;
  }
  
  /* Gallery Hero Section */
  .gallery-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    color: white;
    overflow: hidden;
    padding-top: 80px;
  }
  
  .gallery-hero .hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .gallery-hero h1 {
    color: white;
    margin-bottom: 20px;
    font-size: 3.5rem;
  }
  
  .gallery-hero h1 span {
    color: var(--accent-color);
  }
  
  .gallery-hero p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
  }
  
  .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .hero-particles span {
    position: absolute;
    display: block;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float linear infinite;
  }
  
  @keyframes float {
    0% {
      transform: translateY(0) rotate(0deg);
      opacity: 1;
    }
    100% {
      transform: translateY(-1000px) rotate(720deg);
      opacity: 0;
    }
  }
  
  /* Section Header */
  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(74, 107, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .section-header p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-light);
  }
  
  /* Gallery Filter */
  .gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
  }
  
  .filter-btn {
    padding: 8px 20px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .filter-btn:hover,
  .filter-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 107, 255, 0.2);
  }
  
  /* Gallery Grid */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
  }
  
  .gallery-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 250px;
  }
  
  .gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .gallery-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 0;
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover .gallery-overlay {
    transform: translateY(0);
  }
  
  .gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: white;
  }
  
  .gallery-overlay p {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .event-date {
    font-size: 0.8rem;
    color: var(--accent-color);
    display: block;
  }
  
  /* Load More Button */
  .load-more-container {
    text-align: center;
    margin-top: 40px;
  }
  
  .load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  
  .load-more-btn i {
    transition: transform 0.3s ease;
  }
  
  .load-more-btn:hover i {
    transform: translateY(3px);
  }
  
  /* Lightbox */
  .gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1100;
    padding: 30px;
  }
  
  .lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  }
  
  .lightbox-caption {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
  
  .lightbox-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
  }
  
  .lightbox-description {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-light);
  }
  
  .lightbox-date {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .lightbox-close:hover {
    color: var(--accent-color);
    transform: scale(1.1);
  }
  
  .lightbox-prev,
  .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .lightbox-prev {
    left: -80px;
  }
  
  .lightbox-next {
    right: -80px;
  }
  
  .lightbox-prev:hover,
  .lightbox-next:hover {
    background-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
  }
  
  /* Event Highlights Section */
  .event-highlights {
    background-color: var(--bg-light);
  }
  
  .highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
  }
  
  .highlight-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
  }
  
  .highlight-card.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .highlight-image {
    position: relative;
    height: 220px;
    overflow: hidden;
  }
  
  .highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 0;
  }
  
  .highlight-card:hover .highlight-image img {
    transform: scale(1.1);
  }
  
  .highlight-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
  }
  
  .highlight-content {
    padding: 25px;
  }
  
  .highlight-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
  }
  
  .highlight-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--text-light);
  }
  
  .highlight-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .highlight-meta span {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .highlight-meta i {
    color: var(--primary-color);
  }
  
  /* Event Calendar Section */
  .event-calendar {
    background-color: white;
  }
  
  .calendar-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .calendar-card {
    display: flex;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
  }
  
  .calendar-card.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .calendar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .calendar-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px;
    min-width: 100px;
    text-align: center;
  }
  
  .calendar-date .month {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .calendar-date .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
  }
  
  .calendar-date .year {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  .calendar-content {
    padding: 20px;
    flex-grow: 1;
  }
  
  .calendar-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
  }
  
  .calendar-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--text-light);
  }
  
  .calendar-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .calendar-meta span {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .calendar-meta i {
    color: var(--primary-color);
  }
  
  .calendar-cta {
    text-align: center;
    margin-top: 40px;
  }
  
  /* Footer - Matching your existing theme */
  .footer {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 80px 0 20px;
  }
  
  .footer-container {
    display: flex;
    flex-direction: column;
  }
  
  .footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .footer-logo {
    margin-bottom: 20px;
  }
  
  .footer-logo img {
    height: 50px;
  }
  
  .footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 14px;
  }
  
  .footer-social {
    display: flex;
    gap: 15px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all var(--transition-fast);
  }
  
  .social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
  }
  
  .footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
  }
  
  .footer-links li {
    margin-bottom: 12px;
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .footer-links a:hover {
    color: var(--text-white);
    transform: translateX(5px);
  }
  
  .footer-links i {
    font-size: 12px;
    color: var(--primary-color);
  }
  
  .newsletter-form {
    position: relative;
    margin-top: 20px;
  }
  
  .newsletter-input {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border-radius: var(--border-radius-md);
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-family: var(--font-primary);
  }
  
  .newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  
  .newsletter-button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--text-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
  }
  
  .newsletter-button:hover {
    background-color: var(--primary-light);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .footer-copyright a {
    color: var(--primary-light);
  }
  
  .footer-copyright a:hover {
    text-decoration: underline;
  }
  
  /* Back to Top Button */
  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(78, 66, 212, 0.4);
  }
  
  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
  }
  
  /* Animation for elements */
  .animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 1s forwards;
    animation-delay: calc(var(--delay) * 0.3s);
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Styles */
  @media screen and (max-width: 992px) {
    html {
      font-size: 15px;
    }
    
    section {
      padding: 100px 0;
    }
    
    .gallery-hero {
      min-height: 400px;
    }
    
    .gallery-hero h1 {
      font-size: 3rem;
    }
    
    .highlights-grid,
    .calendar-cards {
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .lightbox-prev {
      left: -60px;
    }
    
    .lightbox-next {
      right: -60px;
    }
  }
  
  @media screen and (max-width: 768px) {
    html {
      font-size: 14px;
    }
    
    #navbar {
      padding: 12px 0;
    }
  
    .nav-links {
      position: fixed;
      top: 76px;
      right: -100%;
      width: 80%;
      height: 100vh;
      background: var(--bg-light);
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding-top: 40px;
      box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
      transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
      z-index: 1000;
    }
  
    .nav-links.active {
      right: 0;
    }
  
    .nav-links li {
      margin: 18px 0;
      opacity: 0;
      transform: translateX(50px);
      animation: slideIn 0.5s forwards;
      animation-delay: calc(0.1s * var(--i));
    }
    
    @keyframes slideIn {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    .burger {
      display: block;
      z-index: 1001;
    }
    
    .burger.active div:nth-child(1) {
      transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .burger.active div:nth-child(2) {
      opacity: 0;
    }
    
    .burger.active div:nth-child(3) {
      transform: rotate(45deg) translate(-5px, -6px);
    }
    
    section {
      padding: 80px 0;
    }
    
    .gallery-hero {
      min-height: 350px;
    }
    
    .gallery-hero h1 {
      font-size: 2.5rem;
    }
    
    .gallery-hero p {
      font-size: 1.1rem;
    }
    
    .gallery-grid {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      }
      
      .lightbox-content {
        max-width: 95%;
      }
      
      .lightbox-prev,
      .lightbox-next {
        width: 40px;
        height: 40px;
      }
      
      .lightbox-prev {
        left: 10px;
      }
      
      .lightbox-next {
        right: 10px;
      }
      
      .calendar-card {
        flex-direction: column;
      }
      
      .calendar-date {
        flex-direction: row;
        justify-content: space-around;
        padding: 15px;
        min-width: auto;
        width: 100%;
      }
      
      .calendar-date .month,
      .calendar-date .day,
      .calendar-date .year {
        margin: 0 5px;
      }
    }
    
    @media screen and (max-width: 576px) {
      .container {
        width: 95%;
        padding: 0 10px;
      }
      
      h1 {
        font-size: 2.3rem;
      }
      
      h2 {
        font-size: 1.8rem;
      }
      
      .btn {
        padding: 12px 28px;
        font-size: 0.95rem;
      }
      
      section {
        padding: 70px 0;
      }
      
      .gallery-hero {
        min-height: 300px;
      }
      
      .gallery-hero h1 {
        font-size: 2.2rem;
      }
      
      .gallery-hero p {
        font-size: 1rem;
      }
      
      .gallery-filter {
        flex-wrap: wrap;
        gap: 8px;
      }
      
      .filter-btn {
        padding: 6px 15px;
        font-size: 0.8rem;
      }
      
      .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
        gap: 20px;
      }
      
      .gallery-item {
        height: 200px;
      }
      
      .highlights-grid,
      .calendar-cards {
        grid-template-columns: 1fr;
      }
      
      .highlight-image {
        height: 180px;
      }
      
      .lightbox-caption {
        padding: 15px;
      }
      
      .lightbox-title {
        font-size: 1.2rem;
      }
      
      .lightbox-description {
        font-size: 0.9rem;
      }
      
      .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
      }
      
      .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
      }
      
      .footer-social {
        justify-content: center;
      }
      
      .footer-links a {
        justify-content: center;
      }
    }
    
    /* Animation for gallery items */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* Staggered animation for gallery items */
    .gallery-item:nth-child(1) { animation-delay: 0.1s; }
    .gallery-item:nth-child(2) { animation-delay: 0.2s; }
    .gallery-item:nth-child(3) { animation-delay: 0.3s; }
    .gallery-item:nth-child(4) { animation-delay: 0.4s; }
    .gallery-item:nth-child(5) { animation-delay: 0.5s; }
    .gallery-item:nth-child(6) { animation-delay: 0.6s; }
    .gallery-item:nth-child(7) { animation-delay: 0.7s; }
    .gallery-item:nth-child(8) { animation-delay: 0.8s; }
    .gallery-item:nth-child(9) { animation-delay: 0.9s; }
    
    /* Hover effects for gallery items */
    .gallery-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 1;
    }
    
    .gallery-item:hover::before {
      opacity: 1;
    }
    
    /* Custom scrollbar */
    ::-webkit-scrollbar {
      width: 10px;
    }
    
    ::-webkit-scrollbar-track {
      background: #f1f1f1;
    }
    
    ::-webkit-scrollbar-thumb {
      background: var(--primary-color);
      border-radius: 10px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
      background: var(--primary-dark);
    }
    
    /* Print styles */
    @media print {
      .gallery-hero,
      .gallery-filter,
      .load-more-container,
      .footer,
      .back-to-top {
        display: none;
      }
      
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .gallery-item {
        page-break-inside: avoid;
        break-inside: avoid;
      }
      
      .gallery-overlay {
        position: static;
        transform: none;
        background: none;
        color: var(--text-color);
        padding: 10px 0;
      }
      
      .gallery-overlay h3,
      .gallery-overlay p {
        color: var(--text-color);
      }
      
      .event-date {
        color: var(--primary-color);
      }
    }
    
  /* Newsletter Showcase Section */
  .newsletter-showcase {
    background-color: white;
    padding: 100px 0;
  }

  .newsletter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
  }

  .newsletter-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
  }

  .newsletter-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .newsletter-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .newsletter-image {
    position: relative;
    height: 200px;
    overflow: hidden;
  }

  .newsletter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 0;
  }

  .newsletter-card:hover .newsletter-image img {
    transform: scale(1.1);
  }

  .newsletter-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
  }

  .newsletter-content {
    padding: 25px;
  }

  .newsletter-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
  }

  .newsletter-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--text-light);
  }

  .newsletter-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
  }

  .newsletter-meta span {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .newsletter-meta i {
    color: var(--primary-color);
  }

  .newsletter-cta {
    text-align: center;
    margin-top: 40px;
  }
  }

  /* Recognition Wall Section */
  .recognition-wall {
    background-color: var(--bg-light);
    padding: 100px 0;
  }

  .recognition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
  }

  .recognition-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
  }

  .recognition-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .recognition-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .recognition-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .recognition-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .recognition-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
  }

  .recognition-content p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: var(--text-light);
  }

  .recognition-date {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
  }
  }

  /* View More Button */
  .view-more-container {
    text-align: center;
    margin-top: 40px;
  }

  .view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-size: 1rem;
    letter-spacing: 0.5px;
  }

  .view-more-btn:hover {
    background: rgba(74, 107, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(74, 107, 255, 0.15);
  }

  .view-more-btn i {
    transition: transform 0.3s ease;
  }

  .view-more-btn:hover i {
    transform: translateY(3px);
  }
  }

  <!-- Trainings -->
  .gallery-item.trainings {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 250px;
  }

  .gallery-item.trainings.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .gallery-item.trainings img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 0;
  }

  .gallery-item.trainings:hover img {
    transform: scale(1.1);
  }

  .gallery-item.trainings .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }

  .gallery-item.trainings:hover .gallery-overlay {
    transform: translateY(0);
  }

  .gallery-item.trainings .gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: white;
  }

  .gallery-item.trainings .gallery-overlay p {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.8);
  }

  .gallery-item.trainings .event-date {
    font-size: 0.8rem;
    color: var(--accent-color);
    display: block;
  }

  /* Ensure animation classes are working */
  .animate-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .animate-element.animated,
  .animate-element.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Add this to ensure JavaScript animation works */
  @media (prefers-reduced-motion: no-preference) {
    .gallery-item, .highlight-card, .calendar-card, .newsletter-card, .recognition-card {
      will-change: opacity, transform;
    }
  }
  /* Additional responsive fixes */
  @media screen and (max-width: 576px) {
    .newsletter-grid,
    .recognition-grid {
      grid-template-columns: 1fr;
    }
    
    .newsletter-image {
      height: 180px;
    }
    
    .recognition-card {
      padding: 20px;
    }
    
    .recognition-icon {
      width: 80px;
      height: 80px;
    }
    
    .view-more-btn {
      padding: 12px 25px;
      font-size: 0.9rem;
    }
    
    .section-header h2 {
      font-size: 2rem;
    }
    
    .gallery-filter {
      margin-bottom: 25px;
    }
  }
