 
 
 @import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
 
 :root {
      --bg-color: #f8fafc;
      --text-main: #0f172a;
      --text-muted: #475569;
      --primary-blue: #1d4ed8;
      --navy-dark: #0f1e36;
      --hover-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
      --card-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
      /*--gradient-deep-blue: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #0f172a 100%);*/
      --gradient-deep-blue: linear-gradient(360deg, #2488cd 0%, #217acb 50%, #155cc0 100%);
      --gradient-vibrant-blue: radial-gradient(circle at top right, #1f99d6, #1d4ed8, #1e3a8a);
    }

    body {
      background-color: var(--bg-color);
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      color: var(--text-main);
      -webkit-font-smoothing: antialiased;
    }

    /* --- Typography & Global Utilities --- */
    .section-title {
      font-family: 'Merriweather', Georgia, serif;
      font-weight: 700;
      color: #142d4c;
	  margin-bottom: 20px !important;
    }
    .section-title.light {
      color: #ffffff;
    }
    .section-subtitle {
      font-size: 1.1rem;
      color: var(--text-muted);
      max-width: 650px;
      margin: 0.5rem auto 2.5rem auto;
      line-height: 1.6;
    }
    .section-subtitle.light {
      color: #93c5fd;
    }

    /* --- Header & Top Hero --- */
    .header-section {
      padding: 5rem 1rem 3.5rem 1rem;
    }

    .main-title {
	  font-family: 'Merriweather', Georgia, serif;	
      font-weight: 700;
      font-size: 2.25rem;
      color: #142d4c;
      margin-bottom: 0.75rem;
    }

    .subtitle {
      font-size: 1.125rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      color: var(--primary-blue);
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }

    .description {
      font-size: 1.25rem;
      color: var(--text-muted);
      max-width: 750px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* Animated voice text styles */
    .highlight-blue {
      color: #0d6efd;
      font-weight: 600;
      display: inline-block;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .highlight-blue.fade-out {
      opacity: 0;
      transform: translateY(-4px);
    }

    /* --- Custom Cards (Section 1) --- */
    .custom-card {
      background-color: #ffffff;
      border: 1px solid rgba(226, 232, 240, 0.8);
      border-radius: 20px;
      padding: 3rem 2.5rem;
      height: 100%;
      box-shadow: var(--card-shadow);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .custom-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--hover-shadow);
    }

    .icon-badge {
      width: 56px;
      height: 56px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 2rem;
    }

    .badge-amber {
      background-color: #fffbeb;
      border: 1px solid #fef3c7;
    }

    .badge-blue {
      background-color: #eff6ff;
      border: 1px solid #dbeafe;
    }

    .badge-green {
      background-color: #f0fdf4;
      border: 1px solid #dcfce7;
    }

    .card-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 1.5rem;
    }

    .bullet-list {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0;
    }

    .bullet-list li {
      display: flex;
      align-items: flex-start;
      margin-bottom: 1.25rem;
      font-size: 1rem;
      line-height: 1.5;
      color: #727375;
    }

    .bullet-list li:last-child {
      margin-bottom: 0;
    }

    .bullet-icon {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      margin-right: 1rem;
      margin-top: 0.15rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .visit-link {
      color: #0d6efd;
      text-decoration: underline;
      font-weight: 400;
      transition: color 0.2s ease;
    }

    .visit-link:hover {
      color: #0a58ca;
    }

    /* --- SECTION 2: Meetings & Activities --- */
    .meetings-section {
      background: var(--gradient-deep-blue);
      color: #ffffff;
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
    }

    /* Subdued decorative pattern */
    .meetings-section::before {
      content: "";
      position: absolute;
      top: -20%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

 /* Equal Height Match Wrapper */
    .meetings-content-wrapper {
      max-width: 980px;
      margin: 0 auto;
    }

    /* Left Card: CAC Meeting Card */
    .cac-meeting-card {
      background: #ffffff;
      color: var(--text-main);
      border-radius: 24px;
      padding: 2.25rem 2rem;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
      min-height: 380px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .cac-meeting-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .cac-meeting-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 1.5rem;
    }

    .cac-meeting-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.2rem;
      font-size: 0.98rem;
      color: #334155;
      line-height: 1.5;
    }

    .cac-meeting-icon {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #2563eb;
      margin-top: 2px;
    }

    .cac-meeting-text {
      color: #334155;
    }

    .cac-location-title {
      font-weight: 600;
      color: #1e293b;
    }

    .cac-location-sub {
      color: #64748b;
      font-size: 0.92rem;
      line-height: 1.45;
    }

    .cac-divider {
      border-top: 1px solid #e2e8f0;
      opacity: 1;
      margin: 1.5rem 0 1rem 0;
    }

    .cac-meeting-note {
      font-style: italic;
      color: #64748b;
      font-size: 0.95rem;
      margin-bottom: 0;
    }






    .event-card {
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 16px;
      padding: 1.5rem;
      margin-bottom: 1.25rem;
      transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .event-card:hover {
      transform: translateY(-3px);
      background: rgba(255, 255, 255, 0.12);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .event-info h3 {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: #ffffff;
    }

    .event-meta {
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.8);
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .event-meta span {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }

    .btn-register {
      background-color: #ffffff;
      color: var(--primary-blue);
      border: none;
      font-size: 0.9rem;
      font-weight: 600;
      padding: 0.4rem 1.2rem;
      border-radius: 10px;
      transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s;
    }

    .btn-register:hover {
      background-color: #f1f5f9;
      transform: scale(1.03);
      color: #1e3a8a;
    }

    /* --- jQuery Calendar Layout Styling --- */
    .calendar-outer-wrapper {
      /*max-width: 420px;
      margin: 0 auto;
	  */
	  width: 100%;
      max-width: 325px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      height: 100%; 
    }

    .btn-submit-event-top {
      background-color: #f1f5f9;
      color: #0f172a;
      font-weight: 600;
      font-size: 1.05rem;
      padding: 0.75rem 2rem;
      border-radius: 12px;
      border: none;
      width: 100%; 
      display: block;
      transition: background-color 0.2s ease, transform 0.1s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      cursor: default;
    }

    .btn-submit-event-top:hover {
      background-color: #e2e8f0;
    }

    .calendar-card {
      background: #ffffff;
      color: var(--text-main);
      border-radius: 24px;
      padding: 1.25rem 1rem;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .calendar-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.75rem;
    }

    .calendar-nav-btn {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      border: 1px solid #e2e8f0;
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #94a3b8;
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.2s ease;
      outline: none;
    }

    .calendar-nav-btn:hover {
      background: #f8fafc;
      border-color: #cbd5e1;
      color: #475569;
    }

    .calendar-month-year {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 1.25rem;
      color: #1e293b;
      margin: 0;
    }

    .calendar-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 0.5rem;
      text-align: center;
    }

    .calendar-day-label {
      font-size: 0.95rem;
      font-weight: 500;
      color: #3b82f6; /* Matching soft blue layout header labels */
      padding-bottom: 0.75rem;
    }

    .calendar-day {
      font-size: 1rem;
      font-weight: 500;
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      color: #1e293b;
      transition: all 0.2s;
      user-select: none;
    }

    .calendar-day.muted {
      color: #cbd5e1;
    }

    .calendar-day.active {
      background-color: #1d4ed8; /* Solid blue square for active date */
      color: #ffffff;
      font-weight: 700;
      border-radius: 6px;
      box-shadow: 0 4px 10px rgba(29, 78, 216, 0.3);
    }

    /* --- SECTION 3: Community Gallery with Owl Carousel --- */
    .gallery-section {
      padding: 6rem 0;
      background-color: #ffffff;
    }

    .gallery-carousel-container {
      position: relative;
      padding: 0 50px; /* Space for the overlay navigation chevrons */
    }

    .gallery-card {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--card-shadow);
      border: 1px solid rgba(226, 232, 240, 0.7);
      background: #ffffff;
      /*transition: transform 0.3s ease, box-shadow 0.3s ease;*/
      height: 100%;
      position: relative;
    }

    .gallery-card:hover {
      /*transform: translateY(-6px);
      box-shadow: var(--hover-shadow);*/
    }

    .gallery-image-wrapper {
      position: relative;
      height: 240px;
      width: 100%;
      background: #e2e8f0;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .gallery-svg {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Custom Info Badge on top left of the card */
    .gallery-info-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.95);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 1.1rem;
      color: var(--text-main);
      box-shadow: 0 2px 6px rgba(15, 23, 42, 0.15);
      z-index: 20;
      cursor: pointer;
      transition: background-color 0.2s, transform 0.2s;
    }

    .gallery-info-badge:hover {
      background-color: #ffffff;
      transform: scale(1.1);
    }

    /* White Popover Snippet Box (Recreated from image_e6a5f1.png) */
    .gallery-snippet-popover {
      position: absolute;
      top: 56px;
      left: 16px;
      right: 16px;
      background: #ffffff;
      border-radius: 12px;
      padding: 1.25rem;
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
      border: 1px solid rgba(226, 232, 240, 0.95);
      z-index: 15;
      font-size: 0.95rem;
      line-height: 1.6;
      color: #334155;
      opacity: 0;
      transform: translateY(-10px);
      pointer-events: none;
      transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .gallery-card.show-snippet .gallery-snippet-popover {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    /* Custom Navigation buttons overlaying the carousel structure */
    .gallery-nav-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.85);
      border: 1px solid rgba(226, 232, 240, 0.8);
      color: var(--text-main);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
      cursor: pointer;
      z-index: 20;
      transition: all 0.2s ease;
    }

    .gallery-nav-arrow:hover {
      background: #ffffff;
      transform: translateY(-50%) scale(1.08);
      box-shadow: 0 6px 18px rgba(15, 23, 42, 0.15);
    }

    .gallery-nav-arrow.prev {
      left: 15px;
    }

    .gallery-nav-arrow.next {
      right: 15px;
    }
	
	
	/* ==========================================================================
       KEY UPDATE: Pause / Play & Counter Controls (from image_6b44d1.png)
       ========================================================================== */
    .gallery-carousel-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.85rem;
      margin-top: 1.75rem;
      color: #64748b;
      font-size: 0.95rem;
      font-weight: 500;
      user-select: none;
    }

    .gallery-play-pause-btn {
      background: transparent;
      border: none;
      padding: 0.25rem;
      color: #64748b;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border-radius: 4px;
      transition: color 0.2s ease, transform 0.15s ease;
    }

    .gallery-play-pause-btn:hover {
      color: var(--primary-blue);
      transform: scale(1.15);
    }

    .gallery-counter {
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      font-weight: 500;
      color: #64748b;
      letter-spacing: 0.05em;
    }
	

    .gallery-footer {
      text-align: right;
      margin-top: 3.5rem;
      font-size: 1.05rem;
    }

    .gallery-footer-link {
      font-weight: 600;
      color: var(--primary-blue);
      text-decoration: none;
      border-bottom: 2px solid rgba(29, 78, 216, 0.2);
      padding-bottom: 2px;
      transition: all 0.2s ease;
    }

    .gallery-footer-link:hover {
      color: #1d4ed8;
      border-color: #1d4ed8;
    }

    /* --- SECTION 4: Your Voice Testimonial --- */
    .voice-section {
      background: var(--gradient-deep-blue);
      padding: 6rem 0;
      position: relative;
    }

    .testimonial-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: #ffffff;
      padding: 0.5rem 1.4rem;
      border-radius: 30px;
      font-weight: 600;
      font-size: 0.9rem;
      margin-bottom: 2rem;
    }

    .voice-title {
	  font-family: 'Merriweather', Georgia, serif; 	
      font-weight: 700;
      font-size: 3.2rem;
      color: #ffffff;
      margin-bottom: 3.5rem;
    }

    .voice-underline {
      text-decoration: underline;
      text-underline-offset: 12px;
      text-decoration-color: rgba(255, 255, 255, 0.8);
      text-decoration-thickness: 3px;
    }

    .testimonial-card {
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 24px;
      padding: 4rem 3rem;
      box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
      max-width: 900px;
      margin: 0 auto;
      position: relative;
    }

    .testimonial-quote {
      /*font-family: 'Playfair Display', Georgia, serif;*/
      font-size: 1.3rem;
      line-height: 1.6;
      font-style: italic;
      color: #ffffff;
      margin-bottom: 2.5rem;
      text-align: left;
      position: relative;
	  font-weight: 600;
    }

    .testimonial-author {
      font-size: 1.1rem;
      font-weight: 600;
      color: #ffffff;
      text-align: left;
      margin-bottom: 0;
    }

    .testimonial-author-title {
      font-size: 0.9rem;
      color: #93c5fd;
      text-align: center;
      margin-top: 0.25rem;
    }

    /* --- SECTION 5: Who's Involved --- */
    .involved-section {
      background-color: #f1f5f9;
      padding: 6rem 0;
    }

    .profile-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 1.75rem;
      border: 1px solid rgba(226, 232, 240, 0.8);
      box-shadow: var(--card-shadow);
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      /*flex-direction: column;
      align-items: center;
      text-align: center;*/
    }

    .profile-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--hover-shadow);
    }

    .avatar-circle {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 1.25rem;
      color: #ffffff;
	  margin-right: 1rem;
	  flex: 0 0 16%;
    }

    .avatar-blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
    .avatar-purple { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
    .avatar-indigo { background: linear-gradient(135deg, #6366f1, #4338ca); }
    .avatar-emerald { background: linear-gradient(135deg, #10b981, #047857); }
    .avatar-orange { background: linear-gradient(135deg, #f97316, #c2410c); }
    .avatar-rose { background: linear-gradient(135deg, #f43f5e, #be123c); }

    .profile-name {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy-dark);
      margin-bottom: 0.35rem;
	  font-family: 'Merriweather', Georgia, serif;
    }

    .profile-title {
      font-size: 1rem; 
      color: var(--text-muted);
      margin: .3rem 0;
      /*background-color: #e5eaea !important;
      border-radius: 25px; */
	  line-height: 1.4;
      display: inline-flex;
    }

    .profile-meta {
      font-size: 1rem;
      color: var(--text-main);
      line-height: 1.3;
    }

    /* --- SECTION 6: Impact & Accomplishments --- */
    .impact-section {
      background-color: #f1f5f9;
      padding: 6rem 0;
    }

    .impact-panel {
      max-width: 800px;
      margin: 0 auto;
      background: #ffffff;
      border-radius: 24px;
      border: 1px solid rgba(226, 232, 240, 0.9);
      box-shadow: var(--hover-shadow);
      padding: 3rem;
    }

    .impact-panel-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin-bottom: 2rem;
      font-weight: 700;
      color: var(--navy-dark);
      font-size: 1.35rem;
    }

    .impact-list {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0;
    }

    .impact-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 1.5rem;
      font-size: 1.05rem;
      line-height: 1.6;
      color: #334155;
    }

    .impact-item:last-child {
      margin-bottom: 0;
    }

    .impact-check {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      margin-right: 1.25rem;
      margin-top: 0.15rem;
      background-color: #eff6ff;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    /* --- SECTION 7: Footer --- */
    .site-footer {
      background-color: #0f172a;
      color: #94a3b8;
      padding: 2rem 0 2rem 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-title {
      /*font-family: 'Playfair Display', Georgia, serif;*/
      font-weight: 700;
      color: #ffffff;
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }

    .footer-subtitle {
      font-size: 0.85rem;
      color: #64748b;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 2rem;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-bottom: 2.5rem;
    }

    .footer-links a {
      color: #94a3b8;
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.2s ease;
    }

    .footer-links a:hover {
      color: #ffffff;
    }

    .footer-divider {
      height: 1px;
      background: rgba(255, 255, 255, 0.08);
      margin-bottom: 2rem;
    }

    .footer-copy {
      font-size: 0.85rem;
      text-align: center;
      color: #64748b;
    }

    /* --- Responsive Styling --- */
    @media (max-width: 991.98px) {
      .main-title {
        font-size: 2.25rem;
      }
      .voice-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
      }
      .custom-card {
        padding: 2.5rem 2rem;
      }
      .event-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
      }
      .btn-register {
        width: 100%;
        text-align: center;
      }
      .testimonial-card {
        padding: 2.5rem 1.75rem;
      }
      .testimonial-quote {
        font-size: 1.2rem;
      }
    }
.modal-Subt	{
	padding-right: 2rem !important;
    padding-left: 2rem !important;
    color: hsl(215 15% 50%);
	}	
.submit-event-popover {
      position: absolute;
      bottom: 125%;
      left: 50%;
      transform: translateX(-50%) translateY(8px);
      background-color: #ffffff;
      color: var(--text-main);
      border: 1px solid #cbd5e1;
      border-radius: 10px;
      padding: 0.55rem 1.25rem;
      font-size: 0.95rem;
      font-weight: 500;
      white-space: nowrap;
      box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
      z-index: 50;
      pointer-events: none;
    }

    /* Little down arrow for the submit-event popover */
    .submit-event-popover::after {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      border-width: 6px;
      border-style: solid;
      border-color: #ffffff transparent transparent transparent;
      z-index: 52;
    }

    .submit-event-popover::before {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      border-width: 7px;
      border-style: solid;
      border-color: #cbd5e1 transparent transparent transparent;
      z-index: 51;
    }
.submit-event-container {
      position: relative;
      width: 100%;
      margin-bottom: 1.5rem;
    }
    /* Trigger popover on hover */
    .submit-event-container:hover .submit-event-popover {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }	
	.gallery-footer-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background-color: #ffffff;
      border: 1px solid #cbd5e1;
      border-radius: 8px;
      padding: 0.5rem 1rem;
      color: #1e293b;
      font-weight: 500;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.25s ease;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	  text-align: center;
    }

    .gallery-footer-btn:hover {
      background-color: #2494ec; /* Exact vivid sky blue matching image_8ecbee.png */
      border-color: #2494ec;
      color: #ffffff !important;
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(36, 148, 236, 0.25);
    }
.gallery-footer-btn svg {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      margin-right: 0.75rem;
    }