/* our-story-section starts */
.our-story-section {
  background-color: #f5f3f0;
  padding: 80px 0;
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.story-content-wrapper {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 60px;
  align-items: center;
}

/* Left Side - Image */
.story-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border-radius: 8px; */
}

/* Right Side - Content */
.story-content {
  display: flex;
  flex-direction: column;
}

.story-label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.story-heading {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  color: #131313;
  line-height: 1.2;
  margin-bottom: 20px;
}

.story-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 15px;
}

.story-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.story-feature-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.story-feature-icon svg {
  width: 100%;
  height: 100%;
  fill: #5b007f;
}

.story-feature-text {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
  flex: 1;
}

.story-btn {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 13px 32px;
  background-color: #5b007f;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: flex-start;
  margin-top: 10px;
}

.story-btn:hover {
  background-color: #75159b;
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .our-story-section {
    padding: 60px 0;
  }

  .story-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-image-wrapper {
    min-height: 350px;
    order: 1;
  }

  .story-content {
    order: 2;
  }

  .story-heading {
    font-size: 2.2rem;
  }
}

/* Mobile (< 576px) */
@media (max-width: 576px) {
  .our-story-section {
    padding: 45px 0;
  }

  .story-image-wrapper {
    min-height: 250px;
  }

  .story-heading {
    font-size: 1.7rem;
  }

  .story-label {
    font-size: 0.7rem;
  }

  .story-feature-text {
    font-size: 0.8rem;
  }

  .story-btn {
    width: 100%;
    text-align: center;
  }

  .story-features {
    gap: 14px;
  }
}

/* our-story-section ends */

/* growth-story-section starts */
.growth-story-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #fdfcff 0%, #f5f0ff 80%, #f5f0ff 100%);
  overflow: hidden;
}

.growth-story-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.growth-story-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: #131313;
  text-align: center;
  margin-bottom: 80px;
}

.timeline {
  position: relative;
  width: 100%;
}

/* The central line of the timeline */
.timeline::after {
  content: "";
  position: absolute;
  width: 2px;
  background-color: #131313;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
  z-index: 1;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}

/* The circular dots on the timeline */
.timeline-dot {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  right: -30px;
  background-color: #5b007f;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "DM Sans", sans-serif;
  font-weight: bold;
  font-size: 1rem;
  color: #ffffff;
}

/* Positioning for items on the left */
.timeline-item.left {
  left: 0;
  text-align: right;
}

/* Positioning for items on the right */
.timeline-item.right {
  left: 50%;
}

/* Attaching the dot for left items */
.timeline-item.left .timeline-dot {
  right: -30px;
}

/* Attaching the dot for right items */
.timeline-item.right .timeline-dot {
  left: -30px;
}

.timeline-content {
  padding: 20px 30px;
  position: relative;
}

.timeline-year {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #666;
  margin-bottom: 5px;
}

.timeline-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #131313;
  margin-bottom: 10px;
}

.timeline-description {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Responsive Design */
@media (max-width: 991px) {
  .growth-story-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 767px) {
  .growth-story-section {
    padding: 80px 0;
  }
  .growth-story-title {
    font-size: 2.2rem;
    margin-bottom: 60px;
  }

  /* Move the timeline to the left */
  .timeline::after {
    left: 30px;
  }

  /* Make all items full-width */
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 15px;
  }

  /* Reset positioning for all items */
  .timeline-item.left,
  .timeline-item.right {
    left: 0;
    text-align: left;
  }

  /* Position all dots on the new line */
  .timeline-item.left .timeline-dot,
  .timeline-item.right .timeline-dot {
    left: 0;
  }

  .timeline-content {
    padding: 20px 10px;
  }
}

@media (max-width: 575px) {
  .growth-story-section {
    padding: 60px 0;
  }
  .growth-story-title {
    font-size: 1.8rem;
  }
  .timeline-dot {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  .timeline::after {
    left: 25px;
  }
  .timeline-item {
    padding-left: 65px;
  }
  .timeline-item .timeline-dot {
    left: 0;
  }
}
/* growth-story-section ends */

/* our-values-section starts */

.our-values-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(to right, #fdfcff 0%, #f5f0ff 50%, #f5f0ff 100%);
  overflow: hidden;
}

.our-values-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.our-values-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
}

.our-values-title-content {
  max-width: 600px;
}

.our-values-subheading {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #131313;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.our-values-heading {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: #131313;
  line-height: 1.1;
}

.our-values-navigation {
  display: flex;
  gap: 15px;
}

.our-values-nav-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #5b007f;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.our-values-nav-btn:hover {
  background-color: #75159b;
}

.our-values-nav-btn svg {
  width: 24px;
  height: 24px;
}

/* Swiper Styles */
.our-values-slider-container {
  position: relative;
}

.swiper-values {
  overflow: visible;
}
.swiper-slide {
  margin-right: 60px !important;
}

.value-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
  width: 300px;
  height: 300px;
  border: 2px dashed #5b007f;
  border-radius: 50%;
  text-align: left;
  box-sizing: border-box;
}

.value-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #131313;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.value-title::before {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #131313;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.value-description {
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  color: #131313;
  line-height: 1.6;
  /* padding-left: 30px; */
}

/* Responsive Design */
@media (max-width: 1200px) {
  .our-values-heading {
    font-size: 3rem;
  }
}

@media (max-width: 991px) {
  .our-values-section {
    padding: 80px 0;
  }

  .our-values-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
  }

  .our-values-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .our-values-section {
    padding: 60px 0;
  }

  .our-values-heading {
    font-size: 2rem;
  }

  .value-card {
    width: 280px;
    height: 280px;
    padding: 30px;
  }

  .value-title {
    font-size: 1.1rem;
  }

  .value-description {
    font-size: 0.85rem;
  }
}

@media (max-width: 575px) {
  .our-values-heading {
    font-size: 1.8rem;
  }

  .our-values-navigation {
    align-self: flex-end;
  }

  .our-values-nav-btn {
    width: 50px;
    height: 50px;
  }

  .our-values-nav-btn svg {
    width: 20px;
    height: 20px;
  }

  .value-card {
    width: 250px;
    height: 250px;
    padding: 25px;
  }
}
/* our-values-section ends */

/* leadership-team-section starts */
.leadership-team-section {
  background-color: #5b007f;
  padding: 100px 0;
  overflow: hidden;
}

.leadership-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.leadership-header {
  margin-bottom: 50px;
}

.leadership-subheading {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.leadership-heading {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
  max-width: 800px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.team-member-card {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.team-member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-member-card:hover .team-member-img {
  transform: scale(1.05);
}

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0) 50%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.team-member-card:hover .member-overlay {
  opacity: 1;
}

.member-social-icons {
  position: absolute;
  left: 30px;
  top: 15%;
  transform: translateY(-50%) translateX(-20px);
  opacity: 1;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

.team-member-card:hover .member-social-icons {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.member-social-link {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  color: #5b007f;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1rem;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.member-social-link:hover {
  background-color: #131313;
  color: #ffffff;
}

.default-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  color: #131313;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  z-index: 1;
}

.team-member-card:hover .default-icon {
  opacity: 0;
  transform: scale(0.8);
}

/* Responsive Design */
@media (max-width: 991px) {
  .leadership-heading {
    font-size: 2.8rem;
  }
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-member-card {
    height: 450px;
  }
}

@media (max-width: 767px) {
  .leadership-team-section {
    padding: 80px 0;
  }
  .leadership-heading {
    font-size: 2.2rem;
  }
}

@media (max-width: 575px) {
  .leadership-team-section {
    padding: 60px 0;
  }
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .team-member-card {
    height: 420px;
  }
  .leadership-header {
    text-align: center;
  }
}
/* leadership-team-section ends */

/* marquee-section starts */
.marquee-section {
  background-color: #5b007f;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  overflow-x: hidden; /* Hide horizontal overflow */
}

.marquee-content {
  display: flex;
  width: fit-content; /* Make the container width equal to its content */
  animation: marquee-scroll 25s linear infinite;
}

.marquee-text {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  padding: 0 1.5rem;
  white-space: nowrap; /* Prevent text from wrapping */
}

.marquee-text.solid {
  color: #131313;
}

.marquee-text.outline {
  color: transparent;
  -webkit-text-stroke: 2px #ffffff;
  text-stroke: 2px #ffffff;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .marquee-text {
    font-size: 2.8rem;
  }
}

@media (max-width: 575px) {
  .marquee-section {
    padding: 20px 0;
  }
  .marquee-text {
    font-size: 2rem;
    padding: 0 1rem;
  }
}
/* marquee-section ends */

/* image-gallery-section starts */
.image-gallery-section {
  width: 100%;
  overflow-x: auto;
  padding: 0;
  background-color: #d9d9d9;
  cursor: grab; /* Add grab cursor for interactivity */
  user-select: none; /* Prevent text selection while dragging */
  /* For hiding the scrollbar */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* Active state for when the user is dragging */
.image-gallery-section.active {
  cursor: grabbing;
}

/* For hiding the scrollbar in Webkit browsers */
.image-gallery-section::-webkit-scrollbar {
  display: none;
}

.gallery-container {
  display: flex;
  width: fit-content; /* Adjusts width to content */
  pointer-events: none; /* Prevent image drag-and-drop interference */
}

.gallery-item {
  position: relative;
  flex-shrink: 0; /* Prevents items from shrinking */
  width: 400px;
  height: 350px;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.4s ease-in-out;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  background-color: rgba(0, 0, 0, 0.2);
}

.gallery-item:hover .gallery-img {
  filter: blur(5px);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.instagram-icon {
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.instagram-icon i {
  font-size: 28px;
  color: #5b007f;
}

/* Responsive Design */
@media (max-width: 991px) {
  .gallery-item {
    width: 350px;
    height: 300px;
  }
}

@media (max-width: 575px) {
  .gallery-item {
    width: 300px;
    height: 250px;
  }
  .instagram-icon {
    width: 50px;
    height: 50px;
  }
  .instagram-icon i {
    font-size: 24px;
  }
}
/* image-gallery-section ends */

/* upcoming-event-section starts */
.upcoming-event-section {
  padding: 100px 0;
  background: linear-gradient(to right, #fdfcff 0%, #f5f0ff 80%, #f5f0ff 100%);
  overflow: hidden;
}

.upcoming-event-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.event-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.event-header-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #131313;
}

.event-header-description {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  max-width: 400px;
  text-align: right;
}

.event-card-main {
  display: grid;
  grid-template-columns: 250px 1fr 1fr auto;
  align-items: center;
  gap: 40px;
}

.event-image-wrapper {
  width: 250px;
  height: 200px;
}

.event-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-info-main .event-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #131313;
  margin-bottom: 10px;
}

.event-info-main .event-description {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.event-timing {
  justify-self: start;
}

.event-timing .date,
.event-timing .time {
  margin-bottom: 20px;
}

.event-timing .label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-timing .value {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #131313;
  display: flex;
  align-items: center;
}

.event-timing .time .value::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #5b007f;
  border-radius: 50%;
  margin-right: 10px;
}

.event-buy-ticket-btn {
  background-color: #5b007f;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 4px;
}

.event-buy-ticket-btn:hover {
  background-color: #75159b;
}

/* Responsive Design */
@media (max-width: 991px) {
  .event-header-title {
    font-size: 2.2rem;
  }
  .event-card-main {
    grid-template-columns: 200px 1fr;
    gap: 30px;
  }
  .event-timing {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    gap: 30px;
    margin-top: 10px;
  }
  .event-buy-ticket-btn {
    grid-column: 2;
    grid-row: 3;
    justify-self: start;
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .upcoming-event-section {
    padding: 80px 0;
  }
  .event-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }
  .event-header-description {
    text-align: left;
    max-width: 100%;
  }
  .event-card-main {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .event-image-wrapper {
    width: 100%;
    height: 250px;
  }
  .event-info-main,
  .event-timing,
  .event-buy-ticket-btn {
    grid-column: 1;
  }
  .event-timing {
    grid-row: 3;
  }
  .event-buy-ticket-btn {
    grid-row: 4;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .upcoming-event-section {
    padding: 60px 0;
  }
  .event-header-title {
    font-size: 1.8rem;
  }
  .event-info-main .event-title {
    font-size: 1.3rem;
  }
  .event-timing {
    flex-direction: column;
    gap: 15px;
  }
  .event-timing .date,
  .event-timing .time {
    margin-bottom: 0;
  }
}
/* upcoming-event-section ends */

/* past-events-section starts */
.past-events-section {
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}

.past-events-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.past-events-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.past-events-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #131313;
}

.past-events-description {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  max-width: 450px;
  text-align: right;
}

.past-events-list {
  display: flex;
  flex-direction: column;
}

.past-event-item {
  display: grid;
  grid-template-columns: 250px 1fr auto auto;
  align-items: center;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid #e0d8f5;
}

.past-event-item:last-child {
  border-bottom: none;
}

.past-event-image-wrapper {
  width: 250px;
  height: 180px;
}

.past-event-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.past-event-info .event-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #131313;
  margin-bottom: 10px;
}

.past-event-info .event-description {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.past-event-timing {
  justify-self: start;
  min-width: 150px;
}

.past-event-timing .date,
.past-event-timing .time {
  margin-bottom: 15px;
}

.past-event-timing .date:last-child,
.past-event-timing .time:last-child {
  margin-bottom: 0;
}

.past-event-timing .label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.past-event-timing .value {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #131313;
  display: flex;
  align-items: center;
}

.past-event-timing .time .value::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #5b007f;
  border-radius: 50%;
  margin-right: 10px;
}

.past-event-explore-btn {
  background-color: #5b007f;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 4px;
  white-space: nowrap;
}

.past-event-explore-btn:hover {
  background-color: #75159b;
}

/* Responsive Design */
@media (max-width: 991px) {
  .past-events-title {
    font-size: 2.2rem;
  }
  .past-event-item {
    grid-template-columns: 200px 1fr;
    gap: 25px;
  }
  .past-event-timing {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    gap: 30px;
    margin-top: 15px;
  }
  .past-event-explore-btn {
    grid-column: 2;
    grid-row: 3;
    justify-self: start;
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .past-events-section {
    padding: 80px 0;
  }
  .past-events-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .past-events-description {
    text-align: left;
    max-width: 100%;
  }
  .past-event-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .past-event-image-wrapper {
    width: 100%;
    height: 250px;
  }
  .past-event-info,
  .past-event-timing,
  .past-event-explore-btn {
    grid-column: 1;
  }
  .past-event-timing {
    grid-row: 3;
  }
  .past-event-explore-btn {
    grid-row: 4;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .past-events-section {
    padding: 60px 0;
  }
  .past-events-title {
    font-size: 1.8rem;
  }
  .past-event-info .event-title {
    font-size: 1.3rem;
  }
  .past-event-timing {
    flex-direction: column;
    gap: 15px;
  }
}
/* past-events-section ends */

/* why-attend-section starts */
.why-attend-section {
  padding: 100px 0;
  background: linear-gradient(to right, #faf8f5 0%, #f5f0ff 70%, #f5f0ff 100%);
  overflow: hidden;
}

.why-attend-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.why-attend-content .title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: #131313;
  line-height: 1.2;
  margin-bottom: 20px;
}

.why-attend-content .description {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  max-width: 400px;
}

.accordion-container {
  width: 100%;
}

.accordion-item {
  margin-bottom: 15px;
}

.accordion-header {
  background-color: #5b007f;
  color: #ffffff;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "DM Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.accordion-icon {
  transition: transform 0.3s ease-in-out;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease-in-out,
    padding 0.3s ease-in-out;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  padding: 0 25px;
}

/* Active state for accordion */
.accordion-item.active .accordion-content {
  max-height: 200px; /* Adjust if content is taller */
  padding: 20px 25px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

/* Responsive Design */
@media (max-width: 991px) {
  .why-attend-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .why-attend-content .description {
    margin: 0 auto;
    max-width: 500px;
  }
  .why-attend-content .title {
    font-size: 2.8rem;
  }
}

@media (max-width: 575px) {
  .why-attend-section {
    padding: 80px 0;
  }
  .why-attend-content .title {
    font-size: 2.2rem;
  }
  .accordion-header {
    font-size: 1rem;
    padding: 18px 20px;
  }
  .accordion-content {
    font-size: 1rem;
  }
}
/* why-attend-section ends */

/* cta-join-section starts */
.cta-join-section {
  padding: 80px 0;
  background-color: #5b007f;
  overflow: hidden;
}

.cta-join-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-join-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 15px;
}

.cta-join-title strong {
  font-weight: 600;
  color: #ff6d01;
}

.cta-join-subtitle {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  max-width: 600px;
  margin-bottom: 35px;
}

.cta-join-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.get-early-bird-btn {
  background-color: #131313;
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
  border-radius: 4px;
}

.get-early-bird-btn:hover {
  background-color: #ffffff;
  color: #131313;
}

.cta-phone-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
}

.phone-icon-wrapper {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-icon-wrapper i {
  color: #131313;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 767px) {
  .cta-join-section {
    padding: 60px 0;
  }
  .cta-join-title {
    font-size: 2.5rem;
  }
  .cta-join-actions {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .cta-join-title {
    font-size: 2rem;
  }
  .cta-join-subtitle {
    font-size: 1rem;
  }
}
/* cta-join-section ends */

/* event-hero-section starts */
.event-hero-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: url("/images/home/banner-img-2.webp");
  background-size:cover;
}

.event-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  position: relative;
}

.event-hero-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 25px;
  max-width: 800px;
}

.event-meta-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  margin-bottom: 20px;
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.event-meta-info .separator {
  width: 6px;
  height: 6px;
  background-color: #5b007f;
  border-radius: 50%;
}

.event-hero-location {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #e0e0e0;
}

.event-hero-location strong {
  font-weight: 600;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 991px) {
  .event-hero-section {
    padding: 80px 0;
  }
  .event-hero-title {
    font-size: 3.2rem;
  }
}

@media (max-width: 575px) {
  .event-hero-section {
    padding: 70px 0;
  }
  .event-hero-title {
    font-size: 2.5rem;
  }
  .event-meta-info,
  .event-hero-location {
    font-size: 1rem;
  }
  .event-meta-info {
    gap: 10px;
  }
}
/* event-hero-section ends */

/* event-details-section starts */
.event-details-section {
  padding: 100px 0 30px 0;
  background: linear-gradient(to left, #fdfcff 0%, #f5f0ff 70%, #f5f0ff 100%);
  overflow: hidden;
}

.event-details-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* Left Column: Event Info */
.event-main-content .event-image {
  width: 100%;
  margin-bottom: 40px;
  object-fit: cover;
}

.event-main-content .about-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #131313;
  margin-bottom: 20px;
}

.event-main-content .about-description p {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

/* Right Column: Ticket Widget */
.ticket-widget {
  background-color: #5b007f;
  color: #ffffff;
  padding: 30px;
}

.ticket-widget-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.ticket-option,
.ticket-price-quantity {
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 15px;
  margin-bottom: 15px;
}

.ticket-price-quantity {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-info .price {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
}
.price-info .limit {
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  color: #e0e0e0;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 15px;
}
.quantity-selector button {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}
.quantity-selector .quantity {
  font-size: 1.1rem;
}

.cost-summary {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  margin-bottom: 25px;
}

.cost-summary p {
  margin: 5px 0;
}

.purchase-btn {
  background-color: #ffffff;
  color: #131313;
  border: none;
  width: 100%;
  padding: 15px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}
.purchase-btn:hover {
  background-color: #f0f0f0;
}

.meet-speakers-btn {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  width: 100%;
  padding: 15px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.meet-speakers-btn:hover {
  background-color: #ffffff;
  color: #131313;
}

/* Responsive Design */
@media (max-width: 991px) {
  .event-details-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 575px) {
  .event-details-section {
    padding: 80px 0;
  }
  .event-main-content .about-title {
    font-size: 1.8rem;
  }
  .ticket-widget {
    padding: 25px;
  }
}
/* event-details-section ends */

/* expect-attend-section starts */
.expect-attend-section {
  /* padding: 30px 0; */
  background: linear-gradient(to left, #fdfcff 0%, #f5f0ff 70%, #f5f0ff 100%);
  overflow: hidden;
}

.expect-attend-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* "What to Expect" Styling */
.what-to-expect {
  margin-bottom: 80px;
}

.section-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #131313;
  margin-bottom: 25px;
}

.section-description p {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}
.section-description p:last-child {
  margin-bottom: 0;
}

/* "Who Should Attend" Styling */
.who-should-attend-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.attendee-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 30px; /* Row and column gap */
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #131313;
}

.checklist-item svg {
  flex-shrink: 0; /* Prevents icon from shrinking */
}

.attendee-image-wrapper {
  width: 100%;
  max-width: 500px;
  justify-self: end;
}

.attendee-image-wrapper img {
  width: 100%;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 991px) {
  .who-should-attend-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .attendee-image-wrapper {
    justify-self: center;
    grid-row: 1; /* Move image to the top on tablet */
  }
  .attendee-content {
    grid-row: 2; /* Move content below image */
  }
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
  .expect-attend-section {
    padding: 80px 0;
  }
  .attendee-checklist {
    grid-template-columns: 1fr; /* Single column for the list on mobile */
    gap: 15px;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 1.8rem;
  }
  .section-description p,
  .checklist-item {
    font-size: 1rem;
  }
}
/* expect-attend-section ends */

/* event-logistics-section starts */
.event-logistics-section {
  padding: 100px 0;
  background: linear-gradient(to left, #fdfcff 0%, #f5f0ff 70%, #f5f0ff 100%);
  overflow: hidden;
}

.event-logistics-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.logistics-column {
  font-family: "DM Sans", sans-serif;
}

.logistics-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #131313;
  margin-bottom: 25px;
}

.logistics-item {
  margin-bottom: 20px;
}

.logistics-item .label {
  font-weight: bold;
  color: #131313;
  display: block;
  font-size: 1rem;
  margin-bottom: 5px;
}

.logistics-item .value {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

.logistics-map {
  width: 100%;
  height: 100%;
  min-height: 200px;
}

.logistics-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 991px) {
  .event-logistics-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media (max-width: 767px) {
  .event-logistics-section {
    padding: 80px 0;
  }
  .event-logistics-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .logistics-title {
    font-size: 1.3rem;
  }
}
/* event-logistics-section ends */

/* award-categories-section starts */
.award-categories-section {
  padding: 100px 0;
  background-color: #5b007f;
  color: #ffffff;
  overflow: hidden;
}

.award-categories-title-content .title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.award-categories-title-content .description {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 350px;
}

.award-card-2 {
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Card 1: AI Innovation Award (Primary) */
.award-card-2.card-primary {
  background-color: #5b007f;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.award-card-2.card-primary .card-title,
.award-card-2.card-primary .card-description,
.award-card-2.card-primary .criteria-list-item {
  color: #ffffff;
}

.award-card-2.card-primary .nominate-btn {
  background-color: #ffffff;
  color: #5b007f;
}

/* Card 2: IP Enforcement Excellence (Secondary) */
.award-card-2.card-secondary {
  background-color: #ffffff;
}

.award-card-2.card-secondary .card-title,
.award-card-2.card-secondary .card-description,
.award-card-2.card-secondary .criteria-list-item {
  color: #131313;
}

.award-card-2.card-secondary .nominate-btn {
  background-color: #5b007f;
  color: #ffffff;
}
.award-card-2.card-secondary .criteria-list-item svg path {
  stroke: #131313;
}

/* Shared Card Styles */
.card-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.card-description {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.criteria-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex-grow: 1;
}

.criteria-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
}

.criteria-list-item svg {
  flex-shrink: 0;
}

.nominate-btn {
  border: none;
  width: 100%;
  padding: 15px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 991px) {
  .award-categories-title-content {
    margin-bottom: 40px;
    text-align: center;
  }
  .award-categories-title-content .description {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .award-categories-section {
    padding: 80px 0;
  }
  .award-categories-title-content .title {
    font-size: 2.8rem;
  }
}
/* award-categories-section ends */

/* agenda-section starts */
.agenda-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #fdfcff 0%, #f5f0ff 80%, #f5f0ff 100%);
  overflow: hidden;
}

.agenda-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.agenda-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.agenda-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #131313;
}

.download-btn {
  background-color: #5b007f;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 4px;
  white-space: nowrap;
}
.download-btn:hover {
  background-color: #75159b;
}

.agenda-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.agenda-item {
  background: linear-gradient(to bottom right, #ffffff 0%, #f1f1f1 100%);
  border-radius: 50px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid grey;
}

.agenda-time {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  line-height: 1.5;
}

.agenda-details {
  border-left: 2px dotted #c2bfcb;
  padding-left: 20px;
}

.agenda-item-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #131313;
  margin-bottom: 5px;
}

.agenda-item-description {
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 0px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .agenda-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .agenda-section {
    padding: 80px 0;
  }
  .agenda-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .download-btn {
    width: 100%;
  }
  .agenda-title {
    font-size: 2.2rem;
  }
}
/* agenda-section ends */

/* media-partners-section starts */
.media-partners-section {
  padding: 100px 0;
  background: linear-gradient(
    to bottom right,
    #fdfcff 0%,
    #f5f0ff 80%,
    #f5f0ff 100%
  );
  overflow: hidden;
}

.media-partners-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: #131313;
  text-align: center;
  margin-bottom: 50px;
}

.partner-card {
  background: linear-gradient(to bottom right, #ffffff 0%, #ffffff 100%);
  border: 1px solid #131313;
  padding: 60px 50px;
  /* height: 120px;  */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: box-shadow 0.3s ease;
}

.partner-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.partner-logo-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.partner-logo-content img {
  height: 50px;
}

.partner-logo-content .partner-name {
  font-family: "DM Sans", sans-serif;
  font-size: 1.1rem;
  color: #131313;
  line-height: 1.4;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 991px) {
  .media-partners-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .media-partners-section {
    padding: 80px 0;
  }
  .media-partners-title {
    font-size: 2.2rem;
  }
  .partner-card {
    height: 100px;
  }
}

@media (max-width: 575px) {
  .partner-logo-content .partner-name {
    font-size: 1rem;
  }
}
/* media-partners-section ends */

/* speakers-section starts */
.speakers-section {
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}

.speakers-section h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 2.8rem;
  color: #131313;
  line-height: 1.2;
}

.speaker-card {
  margin-bottom: 30px;
  text-align: left;
}

.speaker-image-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.speaker-image-wrapper .speaker-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* The dark overlay that appears on hover */
.speaker-image-wrapper .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Container for the social media icons */
.speaker-social-icons {
  position: absolute;
  top: 57px;
  right: 20px;
  transform: translateY(-50%) translateX(15px); /* Start off-screen */
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 1;
  transition: all 0.3s ease;
}

.social-icon-link {
  width: 45px;
  height: 45px;
  background-color: #5b007fb5;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.social-icon-link:hover {
  background-color: #000;
  color: #ffffff;
}

/* HOVER EFFECT ACTIVATION */
.speaker-card:hover .speaker-img {
  transform: scale(1.05);
}

.speaker-card:hover .image-overlay {
  opacity: 1; /* Make overlay visible */
}

.speaker-card:hover .speaker-social-icons {
  transform: translateY(-50%) translateX(0);
}

.speaker-info .speaker-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #131313;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.speaker-info .speaker-name::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #5b007f;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.speaker-info .speaker-title {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #666;
  padding-left: 20px; /* Aligns with the name text */
}

/* Responsive Design */
@media (max-width: 991px) {
  .speakers-section {
    padding: 80px 0;
  }
  .speaker-card {
    text-align: center;
  }
  .speaker-info .speaker-name {
    justify-content: center;
  }
  .speaker-info .speaker-title {
    padding-left: 0;
  }
}

@media (max-width: 575px) {
  .speakers-section {
    padding: 60px 0;
  }
  .speaker-image-wrapper .speaker-img {
    height: 350px;
  }
}
/* speakers-section ends */
