:root {
  --deep-violet: #1B0A2E;
  --electric-purple: #9050E9;
  --magenta: #B620E0;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
}

/* ── Animations ── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.comm-new-circle img { display: block; max-width: 100%; }

/* ── Section ── */
.comm-new-circle {
  padding: 5rem 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* ── Container ── */
/* .comm-new-circle .how-we-work-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
} */

/* ── Header ── */
.comm-new-circle .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.comm-new-circle .section-header .label-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 13px;
}
.comm-new-circle .section-header .label-line {
  width: 3rem;
  height: 4px;
  background: linear-gradient(90deg, #9050E9, #E602FF);
  border-radius: 9999px;
}
.comm-new-circle .section-header .label-text {
  color: var(--magenta);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.comm-new-circle .section-header h2 {
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  color: var(--deep-violet);
  line-height: 1.15;
  margin-bottom: 0px;
}
.comm-new-circle .section-header h2 span{
  -webkit-text-fill-color: transparent;
    background: linear-gradient(to right, #9050E9 0%, #E602FF 100%);
      background-clip: border-box;
    background-clip: border-box;
    -webkit-background-clip: text;
}
.comm-new-circle .section-header h2 br { display: none; }
.comm-new-circle .section-header p {
  color: var(--gray-500);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.625;
  font-weight: 500;
}

/* ── Grid ── */
.comm-new-circle .content-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

/* ── Sidebar ── */
.comm-new-circle .sidebar { display: flex; flex-direction: column; gap: 1rem; }

/* Mobile pill tabs */
.comm-new-circle .mobile-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  width: 100%;
}
.comm-new-circle .mobile-tabs button {
  flex: 1;
  padding: 0.75rem 0.5rem;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  border: 1px solid var(--gray-200);
  font-family: "DM Sans", sans-serif;
  background: #fff;
  color: var(--deep-violet);
  box-shadow: 0 1px 2px 0px rgba(0, 0, 0, 0.05);
  transition: all .3s;
}
.comm-new-circle .mobile-tabs button.active {
  background: var(--electric-purple);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 1px 2px 0px rgba(0, 0, 0, 0.05);
}

/* Desktop image tabs */
.comm-new-circle .desktop-tabs { display: none; flex-direction: column; gap: 1rem; }
.comm-new-circle .tab-btn {
  position: relative;
  width: 100%;
  height: 8rem;
  border-radius: 1rem;
  overflow: hidden;
  text-align: left;
  border: 2px solid transparent;
  opacity: .6;
  transition: all .3s;
  background: none;
  padding: 0;
}
.comm-new-circle .tab-btn:hover {
  opacity: .9;
  border-color: var(--gray-200);
}
.comm-new-circle .tab-btn.active {
  border-color: var(--electric-purple);
  box-shadow: 0 10px 25px rgba(144,80,233,.2);
  opacity: 1;
}
.comm-new-circle .tab-btn .tab-bg {
  position: absolute;
  inset: 0;
}
.comm-new-circle .tab-btn .tab-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s;
  transform: scale(1);
}
.comm-new-circle .tab-btn.active .tab-bg img { transform: scale(1.1); }
.comm-new-circle .tab-btn:hover .tab-bg img { transform: scale(1.05); }

/* Overlay */
.comm-new-circle .tab-btn .tab-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  transition: all .3s;
}
.comm-new-circle .tab-btn:hover .tab-overlay { background: rgba(0,0,0,.5); }
.comm-new-circle .tab-btn.active .tab-overlay {
  background: linear-gradient(to right, rgba(27,10,46,.9), rgba(27,10,46,.6), transparent);
}

/* Accent bar */
.comm-new-circle .tab-btn .tab-accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: transparent;
  transition: all .3s;
}
.comm-new-circle .tab-btn.active .tab-accent { background: var(--electric-purple); }

/* Inner content */
.comm-new-circle .tab-btn .tab-inner {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  transition: transform .3s;
}
.comm-new-circle .tab-btn.active .tab-inner { transform: translateX(0.5rem); }
.comm-new-circle .tab-btn .tab-inner h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: #f3f4f6;
  transition: color .3s;
}
.comm-new-circle .tab-btn.active .tab-inner h3 { color: #fff; }

/* Circle icon */
.comm-new-circle .tab-btn .tab-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: all .3s;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  transform: rotate(-45deg);
}
.comm-new-circle .tab-btn:hover .tab-icon { background: rgba(255,255,255,.2); }
.comm-new-circle .tab-btn.active .tab-icon {
  background: var(--electric-purple);
  color: #fff;
  transform: rotate(0);
}

/* ── Content Panel ── */
.comm-new-circle .content-panel {
  background: #f9fafb;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  animation: fadeIn .4s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.comm-new-circle .panel-text {
  flex: 1;
  z-index: 10;
  order: 2;
}
.comm-new-circle .panel-text h3 {
  font-size: 30px;
  font-weight: 700;
  color: #AE2AE2;
  margin-bottom: 1rem;
  line-height: 36px;
}
.comm-new-circle .panel-text p {
  color: var(--gray-600);
  font-size: 1.125rem;
  line-height: 1.625;
  margin-bottom: 2rem;
}

/* Actions row */
.comm-new-circle .panel-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.comm-new-circle .btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(90deg, #9050E9 0%, #E602FF 100%);
  border: none;
  box-shadow: 0 4px 6px rgba(0,0,0,.1);
  transition: all .3s;
  font-size: 16px;
}
.comm-new-circle .btn-explore:hover { box-shadow: 0 10px 15px rgba(0,0,0,.15); }
.comm-new-circle .btn-explore:active { transform: scale(.95); }
.comm-new-circle .btn-explore svg { flex-shrink: 0; }

/* Avatars */
.comm-new-circle .avatar-stack {
  display: flex;
  align-items: center;
}
.comm-new-circle .avatar-stack .avatar {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid #fff;
  overflow: hidden;
  background: var(--gray-100);
  margin-left: -1rem;
}
.comm-new-circle .avatar-stack .avatar:first-child { margin-left: 0; }
.comm-new-circle .avatar-stack .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comm-new-circle .avatar-stack .avatar-count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--magenta);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  margin-left: -1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
  z-index: 10;
}

/* Panel image */
.comm-new-circle .panel-image {
  width: 100%;
  height: 16rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0,0,0,.1);
  position: relative;
  order: 1;
  flex-shrink: 0;
}
.comm-new-circle .panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s;
}
.comm-new-circle .panel-image:hover img { transform: scale(1.05); }
.comm-new-circle .panel-image .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,10,46,.5), transparent);
  pointer-events: none;
}


@media (min-width: 768px) {
  .comm-new-circle { padding: 123px 0; }
  .comm-new-circle .section-header { margin-bottom: 55px; }
  .comm-new-circle .section-header h2 { font-size: 32px; }
  .comm-new-circle .section-header h2 br { display: block; }

  .comm-new-circle .content-panel {
    flex-direction: row;
    padding: 2rem;
  }
  .comm-new-circle .panel-text { order: 1; }
  .comm-new-circle .panel-image {
    width: 50%;
    height: 20rem;
    order: 2;
  }
}

@media (min-width: 1024px) {
  .comm-new-circle .content-grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .comm-new-circle .sidebar { grid-column: span 3; }
  .comm-new-circle .main-content { grid-column: span 9; }

  .comm-new-circle .mobile-tabs { display: none; }
  .comm-new-circle .desktop-tabs { display: flex; }
}























button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

/* ===== Animations ===== */
@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

@keyframes floatDelayed {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(20px) scale(1.03);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Owl Carousel fade animation classes */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .fadeOut {
  animation-name: owlFadeOut;
}

@keyframes owlFadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

.owl-carousel .fadeIn {
  animation-name: owlFadeIn;
}

@keyframes owlFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
}

/* ===== Floating Blobs ===== */
.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.blob-left {
  top: 5rem;
  left: 2.5rem;
  width: 16rem;
  height: 16rem;
  background-color: rgba(230, 2, 255, 0.05);
  filter: blur(48px);
  animation: float 6s ease-in-out infinite;
}

.blob-right {
  bottom: 5rem;
  right: 2.5rem;
  width: 18rem;
  height: 18rem;
  background-color: rgba(253, 158, 57, 0.1);
  filter: blur(48px);
  animation: floatDelayed 6s ease-in-out infinite;
  animation-delay: 2s;
}

/* ===== Hero Container ===== */
.hero-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

/* ===== Welcome Badge ===== */
.badge-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.welcome-badge {
  display: inline-flex;
  align-items: center;
  height: 46px;
  border-radius: 9999px;
  border: 1px solid rgba(182, 32, 224, 0.3);
  background-color: #ffffff;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  gap: 1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.welcome-badge:hover {
  border-color: rgba(182, 32, 224, 0.5);
  cursor: pointer;
}

.badge-text {
  font-size: 14px;
  font-weight: 700;
  color: #B620E0;
  line-height: 1;
  white-space: nowrap;
}

/* ===== Avatar Group ===== */
.avatar-group {
  display: flex;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  overflow: hidden;
  background-color: #f3f4f6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  margin-left: -10px;
}

.avatar:first-child {
  margin-left: 0;
}

.welcome-badge:hover .avatar {
  transform: scale(1.05);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Hero Title ===== */
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2D1B69;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(90deg, #9050E9 0%, #E602FF 50%, #FD9E39 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Hero Description ===== */
.hero-description {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  line-height: 1.75;
}

/* ===== CTA Buttons ===== */
.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 160px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn:active {
  transform: scale(0.95);
}





/* ===== Slider Wrapper ===== */
.slider-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  margin-left: auto;
  margin-right: auto;
}

/* ===== Owl Carousel Overrides ===== */
.hero-carousel .owl-stage-outer {
  border-radius: 1.5rem;
  overflow: hidden;
}

.hero-carousel.owl-carousel .owl-item {
  overflow: hidden;
}

/* ===== Slide Item ===== */
.slide-item {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease-out;
  transform: scale(1);

}

.owl-item.active .slide-item img {
  transform: scale(1.1);
}

/* .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 27, 105, 0.8), transparent, transparent);
  opacity: 0.6;
} */

/* ===== Slide Bottom Bar ===== */
.slide-bottom {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.slide-info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem;
  border-radius: 1rem;
  width: 100%;
  max-width: 28rem;
  text-align: left;
  transition: background 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.slide-info:hover {
  background: rgba(255, 255, 255, 0.2);
}

.slide-title {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  animation: fadeIn 0.6s ease-out;
}

.slide-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* ===== Owl Nav (combined: [<] dots [>]) ===== */
.hero-carousel .owl-nav {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 20;
  display: none;
  align-items: center;
  gap: 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 9999px;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0;
}

.hero-carousel .owl-nav button.owl-prev,
.hero-carousel .owl-nav button.owl-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin: 0;
  padding: 0 !important;
  font-size: 0 !important;
  line-height: 1;
  flex-shrink: 0;
}

.hero-carousel .owl-nav button.owl-prev:hover,
.hero-carousel .owl-nav button.owl-next:hover {
  background: #ffffff !important;
  color: #2D1B69;
}

.hero-carousel .owl-nav button.owl-prev svg,
.hero-carousel .owl-nav button.owl-next svg {
  width: 20px;
  height: 20px;
}

.hero-carousel .owl-nav button span {
  display: none;
}

/* ===== Owl Dots (inside nav pill) ===== */
.hero-carousel .owl-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.75rem;
  position: static;
  transform: none;
}

.hero-carousel.owl-theme .owl-nav [class*=owl-] {
  background: none;
}

.hero-carousel.owl-theme .owl-nav [class*=owl-]:hover {
  background: none;
}

.hero-carousel .owl-dots .owl-dot,
.hero-carousel.owl-theme .owl-nav .owl-dots .owl-dot,
.hero-carousel.owl-theme .owl-nav [class*=owl-].owl-dot {
  outline: none;
  background: transparent !important;
}

.hero-carousel .owl-dots .owl-dot:hover,
.hero-carousel.owl-theme .owl-nav [class*=owl-].owl-dot:hover {
  background: transparent !important;
}

.hero-carousel .owl-dots .owl-dot span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.hero-carousel .owl-dots .owl-dot span:hover {
  background: #ffffff;
}

.hero-carousel .owl-dots .owl-dot.active span {
  width: 32px;
  background: #FFFFFF;
}

/* ===========================
   RESPONSIVE: Tablet (768px+)
   =========================== */
@media (min-width: 768px) {

  .badge-wrapper {
    margin-bottom: 2.5rem;
  }

  .hero-title {
    font-size: 3.75rem;
  }

  .hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .cta-buttons {
    flex-direction: row;
    margin-bottom: 4rem;
  }

  .btn {
    width: auto;
  }

  .slide-item {
    aspect-ratio: 21 / 9;
  }

  .slide-overlay {
    opacity: 1;
  }

  .slide-bottom {
    bottom: 30px;
    left: 30px;
    right: 3rem;
    flex-direction: row;
    align-items: center;
  }

  .slide-info {
    padding: 1.5rem;
    width: auto;
    max-width: 28rem;
  }

  .slide-title {
    font-size: 1.5rem;
  }

  .slide-desc {
    display: block;
    font-size: 1rem;
  }

  /* Show combined nav pill on desktop */
  .hero-carousel .owl-nav {
    display: flex;
    bottom: 30px;
    right: 30px;
  }
}

/* ===========================
   RESPONSIVE: Small Mobile
   =========================== */
@media (max-width: 639px) {
  .btn {
    width: 100%;
  }

  .cta-buttons a {
    width: 100%;
  }
}

/* ===========================
   RESPONSIVE: Large (1024px+)
   =========================== */
@media (min-width: 1024px) {
  .hero-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero-title {
    font-size: 4.5rem;
  }
}


























/* ========================================================
   CALENDAR SECTION
   ======================================================== */

.calendar-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #F8F7FA;
  position: relative;
  overflow: hidden;
}

.calendar-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
  z-index: 10;
}

/* Section Header */
.calendar-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.label-line {
  width: 3rem;
  height: 4px;
  background: linear-gradient(90deg, #9050E9 0%, #E602FF 50%, #FD9E39 100%);
  border-radius: 9999px;
}

.label-text {
  color: #B620E0;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.calendar-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2D1B69;
  margin-bottom: 2rem;
}

.calendar-description {
  color: #6b7280;
  font-size: 1.125rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  font-weight: 500;
}

/* Action Bar */
.calendar-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.cal-btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  width: 100%;
}

.btn-outline-gray {
  background-color: #ffffff;
  color: #4b5563;
  border: 1px solid #e5e7eb;
}

.btn-outline-gray:hover {
  border-color: #9050E9;
  color: #9050E9;
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* View Toggle */
.view-toggle {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.view-btn {
  background: none;
  color: #9ca3af;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.view-btn:hover,
.view-btn.active {
  color: #9050E9;
}

/* Event Cards Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Event Card Base */
.event-card {
  position: relative;
  border-radius: 1rem;
  padding: 24px;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}

/* Past Event Card */
.event-card--past {
  background-color: #F9FAFB;
  color: #2D1B69;
  border: 1px solid rgba(230, 2, 255, 0.2);
}

.event-card--past:hover {
  border-color: rgba(230, 2, 255, 0.5);
}

/* Upcoming Event Card */
.event-card--upcoming {
  color: #ffffff;
  box-shadow: 0 8px 10px -6px rgba(230, 2, 255, 0.2),0px 20px 25px -5px rgba(230, 2, 255, 0.2);
  background: linear-gradient(90deg,rgb(144, 80, 233) 0%, rgb(230, 2, 255) 79%);
}

/* Card Top */
.event-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.event-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.event-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Date Badge */
.event-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0.5rem;
  overflow: hidden;
  width: 70px;
  background-color: #9050E9;
  color: #ffffff;
}

.event-card__date--dark {
  background-color: rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.event-card__day-name span{
  width: 100%;
  text-align: center;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.25rem 0;
  line-height: 15px;
  font-family: "DM Sans", sans-serif;
}

.event-card__day-num span {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  padding: 0.25rem 0;
  font-family: "DM Sans", sans-serif;
}

.event-card__month span{
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 0.25rem;
  opacity: 0.9;
  line-height: 13px;
  font-family: "DM Sans", sans-serif;
}

/* Card Body */
.event-card__body {
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.event-card__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    color: #1E1243;
}
.event-card--upcoming .event-card__title{
  color: #FFF;
}
.event-card__meta {
  font-size: 14px;
  white-space: pre-line;
  font-weight: 500;
  color: #6B7280;
  line-height: 20px;
  margin-bottom: 0;
}

.event-card__meta--light {
  color: rgba(255, 255, 255, 0.8);
}

/* Card Footer */
.event-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
}

/* Event Badges */
.event-badge {
  padding: 0.375rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.event-badge--past {
  background-color: #ffffff;
  color: #4b5563;
  border: 1px solid #f3f4f6;
}

.event-badge--upcoming {
  background-color: #ffffff;
  color: #9050E9;
  padding: 6px 16px;
  border-radius: 8px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
}

/* Arrow Buttons */
.event-card__arrow {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1),0px 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.event-card:hover .event-card__arrow {
  transform: scale(1.1);
}

.event-card__arrow--past {
  background-color: #9050E9;
  color: #ffffff;
}

.event-card__arrow--upcoming {
  background-color: #ffffff;
  color: #9050E9;
}

.arrow-icon {
  transform: rotate(-45deg);
}

/* Pagination */
.calendar-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pagination-dots {
  display: flex;
  gap: 0.5rem;
}

.pagination-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background-color: #d1d5db;
}

.pagination-dot--active {
  width: 2rem;
  background-color: #B620E0;
}

.pagination-arrows {
  display: flex;
  gap: 0.75rem;
}

.pagination-arrow {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.pagination-arrow:hover {
  border-color: #9050E9;
  color: #9050E9;
}


/* ========================================================
   RESPONSIVE
   ======================================================== */

@media (min-width: 640px) {
  .calendar-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 768px) {
  .calendar-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .calendar-header {
    margin-bottom: 6rem;
  }

  .calendar-title {
    font-size: 3rem;
  }

  .calendar-actions {
    flex-direction: row;
    gap: 1.5rem;
  }

  .cal-btn {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .calendar-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}


























.comm-about-sec {
  padding: 97px 0;
  background-color: #F9FAFB;
}
.comm-about-sec .comm-about-wrapper{
    display: flex;
    align-items: center;
    gap: 100px;
}
.comm-about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* Left Content */
.comm-about-tag {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #B620E0;
    margin-bottom: 16px;
    position: relative;
    padding-left: 64px;
    line-height: 20px;
}

.comm-about-tag::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 48px;
    height: 4px;
    transform: translateY(-50%);
    border-radius: 100px;
    background: linear-gradient(90deg,rgb(144, 80, 233) 0%, rgb(230, 2, 255) 75%);
}
.comm-about-content{
    max-width: 477px;
}
.comm-about-content h2 {
    font-size: 32px;
    line-height: 48px;
    color: #1E1243;
    margin-bottom: 30px;
    font-weight: 700;
}

.comm-about-content h2 span {
  color: #AE2AE2;
}

.comm-about-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8a2cff, #c24bff);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comm-about-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(138, 44, 255, 0.3);
}
.comm-about-image-wrap {
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 30px 60px -14px rgba(0, 0, 0, 0.25);
  transition: 0.4s ease-in-out;
  scale: 1;
}

.comm-about-image-wrap img {
    max-width: 341px;
    max-height: 341px;
}
.comm-about-image-wrap:hover{
  scale: 1.04;
}
/* Side Text */
.comm-about-side-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comm-about-side-text p {
    font-size: 18px;
    color: #4B5563;
    line-height: 26px;
    max-width: 232px;
    font-weight: 400;
}

.comm-about-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #9050E9;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: self-end;
  font-size: 18px;
  transition: 0.2s ease-in-out;
  scale: 1;
}

.comm-about-arrow:hover {
  scale: 1.1;
}

/* Responsive */
@media (min-width: 320px) and (max-width: 400.98px) {
    .badge-text{
      max-width: 132px;
      text-wrap: wrap;
      text-align: center;
    }
}
@media (min-width: 320px) and (max-width: 767.98px) {
  .slide-info{
    padding: 10px;
  }
  .slide-title{
    font-size: 16px;
  }
  .slide-desc{
    font-size: 11px;
  }
  .comm-about-sec{
    padding: 80px 0 44px 0;
  }
  .comm-about-sec .comm-about-wrapper{
    flex-direction: column;
    gap: 50px;
  }
  .comm-about-image-wrap img{
    max-height: 341px;
  }
  .comm-about-side-text p{
    font-size: 16px;
    color: #6B7280;
    line-height: 26px;
    max-width: 100%;
  }
  .comm-new-circle .section-header h2{
    font-size: 36px;
  }
  .events-grid{
    grid-template-columns: repeat(1,1fr);
    gap: 20px;
  }
  .open-roles{
    padding: 80px 0;
  }
  .section-header{
    margin-bottom: 64px;
  }
  .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1E1243;
    margin-bottom: 24px;
    line-height: 40px;
  }
  .roles-grid{
    grid-template-columns: repeat(1,1fr);
    gap: 20px;
  }
  .role-card{
    min-width: unset;
  }
  .view-all-roles{
    margin-top: 64px;
  }

  .comm-notification-sec .updates-grid{
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 991.98px) { 
    .comm-about-sec .comm-about-wrapper{
      flex-direction: column;
      gap: 60px;
    }
    .comm-about-content{
      max-width: unset;
    }
    .comm-about-side-text p{
      max-width: unset;
    }
    .comm-notification-sec{
      padding: 80px 0;
    }
    .comm-notification-sec .updates-grid{
      grid-template-columns: repeat(2, 1fr);
    }
    .comm-event-sec .container{
        max-width: 95% !important;
    }
    .events-grid{
      grid-template-columns: repeat(2, 1fr);
    }
    .event-card{
      padding: 15px;
    }

    .roles-grid{
      grid-template-columns: repeat(2,1fr);
      gap: 20px;
    }
    .role-card{
      min-width: unset;
      padding: 25px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) { 
    .comm-about-sec .comm-about-wrapper{
        gap: 40px;
    }
    .comm-about-content{
      max-width: 380px;
    }
    .comm-about-image-wrap img{
        max-width: 341px !important;
    }
    .comm-notification-sec .updates-grid{
      grid-template-columns: repeat(3, 1fr);
    }
    .role-card{
      padding: 25px;
      max-width: 400px;
      min-width: unset;
    }
    #events-calendar .container{
        max-width: 95% !important;
    }
    #events-calendar .events-grid{
      grid-template-columns: repeat(3,1fr);
      gap: 20px;
    }
}
