@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --deep-purple: #473bf0;
  --light-purple: #696AE6;
  --yellow: #FFD37F;
  --light-yellow: #FFE8BB;
  --light-gray: #F5F5F5;
  --dark-black: #383838
}

h1,h2,h3,h4{
  font-weight: 600;
  color: var(--dark-black);
}

h1{
  font-size: 46px;
}

p {
  color: #212529;
}

a {
  text-decoration: none;
}

* {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
}

.py-70 {
  padding: 70px 0px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.title h2 {
  font-size: 40px;
  margin-bottom: 15px !important;
}

.title h2 span {
  font-size: inherit;
}

.title h3 {
  font-size: 20px;
  font-weight: 400;
  color: #595c5f;
}

.title h3 span {
  font-size: inherit;
}

.btn-main {
  background: var(--deep-purple);
  padding: 10px 30px !important;
  color: white;
  font-weight: 500;
}

.btn-main:hover {
  background: var(--light-purple);
  color: white;
}

.btn-main2 {
  background: var(--yellow);
  padding: 10px 30px !important;
  color: black;
  font-weight: 500;
}

.btn-main2:hover {
  background: var(--light-yellow);
}



.btn-outline {
  padding: 10px 30px !important;
  font-weight: 500;
  color: black;
  border: 1px solid black;
}

.btn-outline:hover {
  color: #473bf0;
  border: 1px solid #473bf0;
}

.btn-light-purple {
  background: var(--light-purple);
  padding: 10px 30px !important;
  color: white;
  font-weight: 500;
}

.btn-light-purple:hover {
  background: var(--deep-purple);
  color: white;
}

.btn-yellow {
  background: var(--yellow);
  padding: 10px 30px !important;
  color: black;
  font-weight: 500;
}

.btn-yellow:hover {
  background: #e6b24d;
  color: black;
}


.text-primary {
  color: var(--deep-purple) !important;
}

/* Sticky Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: white;
  box-shadow: none;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.10);
}

.navbar .nav-item {
  margin-left: 20px;
}

/* Navbar Dropdown Styles */
.navbar .dropdown {
  position: relative;
}

.navbar .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  min-width: 200px;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  /* margin-top: 8px; */
  background-color: white;
}

.navbar .dropdown-item {
  padding: 10px 20px;
  color: #595c5f;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.navbar .dropdown-item:hover {
  background-color: var(--light-gray);
  color: var(--deep-purple);
}

.navbar .dropdown-item:active {
  background-color: var(--light-gray);
  color: var(--deep-purple);
}

.navbar .dropdown-divider {
  margin: 10px 0;
}

.navbar .dropdown-toggle::after {
  display: none;
}

.navbar .dropdown-toggle i {
  margin-left: 5px;
  font-size: 14px;
}


.navbar .nav-item .nav-link {
  font-weight: 500;
}

.navbar .nav-item .nav-link.active {
  color: var(--deep-purple);
}

/* Dropdown toggle icon styles */
.navbar .nav-item.dropdown {
  display: inline-flex;
  align-items: center;
}

.navbar .dropdown-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  cursor: pointer;
  /* padding: 8px 10px; */
  transition: all 0.3s ease;
}

.navbar .dropdown-toggle-icon i {
  font-size: 14px;
  color: #595c5f;
  transition: transform 0.3s ease;
}

.navbar .dropdown-toggle-icon:hover i {
  color: var(--deep-purple);
}

.navbar .dropdown-toggle-icon[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.safety .swiper-pagination-bullet {
  background: var(--deep-purple);
}

/* Desktop hover effect */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
  }

  .navbar .dropdown .dropdown-menu {
    display: none;
  }

  .navbar .dropdown .dropdown-menu.show {
    display: block;
  }

  /* Show dropdown on hover over the toggle icon */
  .navbar .dropdown-toggle-icon:hover+.dropdown-menu,
  .navbar .dropdown-toggle-icon:hover~.dropdown-menu {
    display: block;
  }
}

/* Mobile dropdown styles */
@media (max-width: 991px) {
  .navbar .nav-item.dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    flex-wrap: wrap;
  }

  .navbar .dropdown-toggle-icon {
    padding: 5px 10px;
    margin-left: auto;
    min-width: 35px;
    min-height: 35px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .navbar .dropdown-toggle-icon:active {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(0.95);
  }

  .navbar .dropdown-toggle-icon[aria-expanded="true"] {
    background: var(--deep-purple);
  }

  .navbar .dropdown-toggle-icon[aria-expanded="true"] i {
    color: white;
  }

  .navbar .dropdown-toggle-icon i {
    font-size: 18px;
    color: #333;
  }

  .navbar .nav-item.dropdown .nav-link {
    flex: 1;
    padding: 12px 0;
  }

  .navbar .dropdown-menu {
    position: static;
    float: none;
    border: none;
    box-shadow: none;
    background-color: #f8f8f8;
    padding: 8px 0;
    margin-top: 8px;
    margin-bottom: 8px;
    width: 100%;
    flex-basis: 100%;
    border-radius: 8px;
    /* border-left: 3px solid var(--deep-purple); */
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .navbar .dropdown-item {
    padding: 12px 20px;
    font-size: 18px;
    color: #333;
    transition: all 0.2s ease;
  }

  .navbar .dropdown-item:hover,
  .navbar .dropdown-item:active {
    background-color: rgba(103, 80, 164, 0.1);
    padding-left: 24px;
  }
}

.heroSection {
  /* height: calc(100vh - 82px); */
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(105.91deg, #E7E5FF 0%, #E7E6F2 50%, #FDFCFF 100%);
}

.heroSection h1 {
  margin-bottom: 20px;
  font-size: 48px;
}

.heroSection p {
  margin-bottom: 25px;
  font-size: 20px;
  padding-right: 100px;
}


.marquee-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  height: 650px;
  /* adjust to taste */
  /* transform: rotate(5deg); */
  -webkit-mask: linear-gradient(to bottom, transparent 0, #000 88px, #000 calc(100% - 88px), transparent 100%);
  mask: linear-gradient(to bottom, transparent 0, #000 88px, #000 calc(100% - 88px), transparent 100%);
}

.marquee-wrap img {
  height: 200px;
  object-fit: cover;
}

.marquee-column {
  height: 100%;
  width: 100%;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  padding: 8px;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.marquee-content img {
  width: 100%;
  border-radius: 12px;
  flex-shrink: 0;
}

.scroll-up .marquee-content {
  animation-name: scrollUp;
  animation-duration: 20s;
}

.scroll-down .marquee-content {
  animation-name: scrollDown;
  animation-duration: 20s;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes scrollDown {
  0% {
    transform: translateY(-50%);
  }

  100% {
    transform: translateY(0);
  }
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  border-radius: 14px;
  overflow: hidden;
  /* box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08); */
}

.heroSection .swiper-slide img {
  aspect-ratio: 3 / 4;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  /* aspect-ratio: 3 / 4; */
  /* adjust for poster-like look; change to 1/1 for square */
}

/* pause on hover */
.vertical-up:hover .swiper,
.vertical-down:hover .swiper {
  animation-play-state: paused;
}

/* Force linear timing so it never eases */
.vertical-up .swiper-wrapper,
.vertical-down .swiper-wrapper {
  transition-timing-function: linear !important;
}

.authenticPortfolio.whyFeatsclub{
  background-color: #E7E6F2;
}

.authenticPortfolio .card:hover{
  box-shadow: none;
}

.whyFeatsclub {
  padding: 80px 0px;
  /* background: radial-gradient(222.05% 147.29% at 96.05% -8.32%, rgb(255 221 181 / 0%) 0%, rgba(247, 247, 247, 0.5525) 45.82%, rgb(105 106 230 / 20%) 100%); */
  overflow-x: hidden;
  position: relative;
}

.whyFeatsclub.event {
  background: #edecfc !important;
}
/* 
.whyFeatsclub h2 {
  font-size: 48px;
} */

.whyFeatsclub h2 span {
  color: var(--deep-purple);
  font-size: inherit;
}

.whyFeatsclub h3 {
  font-size: 24px;
  font-weight: 400;
}

.whyFeatsclub h3 span {
  color: var(--deep-purple);
  font-size: inherit;
}

.whyFeatsclub h5 span {
  font-size: inherit;
}

.whyFeatsclub .why-heading {
  margin-bottom: 20px;
  font-size: 40px;
}

.whyFeatsclub .why-subheading {
  margin-bottom: 10px;
}

.whyFeatsclub .why-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.whyFeatsclub .why-description span {
  color: var(--deep-purple);
  font-size: inherit;
}

.whyFeatsclub .highlightText {
  font-size: 25px;
  font-weight: 400;
}

.whyFeatsclub .highlightText span {
  color: var(--deep-purple);
  font-size: 30px;
  font-weight: 500;
}


.whyFeatsclub h3.semibold {
  font-weight: 500;
}

.whyFeatsclub .card {
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #ababab;
  height: 100%;
  transition: 0.3s;
  display: block;
}

.whyFeatsclub .card img{
  height: 255px;
}

.whyFeatsclub a .card:hover h5{
  color: #473bf0;
  transition: .3s;
}
.whyFeatsclub .card .textBox {
  min-height: 115px;
}

.whyFeatsclub .card:hover {
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.1);
}

.whyFeatsclub .card h5 {
  margin-top: 15px;
  font-size: 24px;
  margin-bottom: 15px;
}

.whyFeatsclub .card:hover a i {
  transform: translateX(10px);
}

.whyFeatsclub .card p {
  margin-bottom: 0px;
  margin-top: 10px;
  color: #5f5f5f;
  /* font-size: 16px; */
}

.whyFeatsclub .card p span {
  font-weight: 500;
}

.whyFeatsclub .card ul {
  padding-left: 15px;
  margin-bottom: 0px;
}

.whyFeatsclub .card ul li {
  margin-top: 10px;
  color: #5f5f5f;
}


.whyFeatsclub .card a {
  text-decoration: none;
  color: var(--light-purple);
  font-weight: 500;
  transition: 0.3s;
  /* font-size: 16px; */
}

.whyFeatsclub.event .card h5 {
  min-height: 55px;
}


.whyFeatsclub .card a i {
  margin-left: 10px;
  width: unset;
  height: unset;
  background: transparent !important;
  min-width: unset;
  color: var(--light-purple) !important;
  min-height: unset !important;
  transition: 0.3s;
}

.whyFeatsclub .card i {
  width: 40px;
  height: 40px;
  min-width: 40px;
  text-align: center;
  line-height: 40px;
  background: var(--light-purple);
  border-radius: 10px;
  color: white;
}

/* Event Cards Swiper */
.event-cards-swiper {
  width: 100%;
}

.event-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.event-card img {
  width: 100%;
  height: auto;
  display: block;
}

.event-card-content {
  padding: 25px;
}

.event-card-content h5 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.event-card-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.event-card-content a {
  color: #1a1a1a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
  font-weight: 500;
}

.event-card-content a:hover {
  gap: 12px;
}

.event-card-content a i {
  font-size: 16px;
  transition: transform 0.3s;
}

/* Desktop: Show as 3-column grid */
@media (min-width: 992px) {
  .event-cards-swiper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-bottom: 0;
  }

  .event-cards-swiper .swiper-wrapper {
    display: contents !important;
    transform: none !important;
  }

  .event-cards-swiper .swiper-slide {
    width: auto !important;
    margin: 0 !important;
  }

  .event-cards-swiper .swiper-pagination {
    display: none !important;
  }
}

.features-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}


.features-swiper {
  overflow: visible;
}

.features-swiper .swiper-slide-prev {
  opacity: 0;
}

.whomWeServe {
  padding: 80px 0px;
  background: var(--light-yellow);
}

.whomWeServe h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.whomWeServe .lead {
  font-size: 24px;
  color: #333;
  margin-bottom: 0px;
  font-weight: 400;
}

.whomWeServe img {
  max-width: 100%;
  height: auto;
}

/* Serve Card Styles */
.whomWeServe .serve-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whomWeServe .serve-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.whomWeServe .serve-card:hover .serve-link i {
  transform: translateX(10px);
}

.whomWeServe .serve-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: white;
}

.whomWeServe .serve-icon-organizations {
  background: #6366f1;
}

.whomWeServe .serve-icon-students {
  background: #f5a623;
}

.whomWeServe .serve-icon-community {
  background: #10b981;
}

.whomWeServe .serve-card h5 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.whomWeServe .serve-card p {
  color: #5f5f5f;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 120px;
}

.whomWeServe .serve-link {
  text-decoration: none;
  color: #1a1a1a;
  transition: 0.3s;
  display: inline-block;
  font-weight: 500;
}

.whomWeServe .serve-link i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.connectAchieve {
  padding: 80px 0px;
  padding-top: 70px;
}

.connectAchieve .title h2 {
  font-size: 45px;
}

.connectAchieve .title h3 {
  font-weight: 400;
  font-size: 22px;
}

.connectAchieve .videoBox {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  margin: auto;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 6px 6px 0 0 #9a98b2;
}

.connectAchieve .videoBox i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px;
  color: white;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  background: #56565691;
}

.becomeAnAmbassador {
  padding: 50px 0px;
  background: radial-gradient(circle at top left, rgba(255, 205, 107, .5), #e6cd9c17 30%), radial-gradient(circle at top right, rgb(237 237 250), #e1929200 30%), radial-gradient(circle at bottom left, rgba(229, 220, 254, .5), transparent 30%);
}

.becomeAnAmbassador h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.becomeAnAmbassador h2 span {
  font-size: 45px;
  color: #473bf0;
}

.becomeAnAmbassador p {
  font-size: 24px;
  margin-bottom: 15px;
}

.empoweringWithAi {
  padding: 70px 0px;
  background: #e8e5f3;
}

.empoweringWithAi h2 {
  font-size: 45px;
  color: #1a1a1a;
}

.empoweringWithAi h3 {
  font-size: 22px;
  color: #473bf0;
}

.empoweringWithAi .ai-features-card {
  background: #fef9f0;
  padding: 35px 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.empoweringWithAi .ai-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.empoweringWithAi .ai-icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}

.empoweringWithAi .ai-content h5 {
  font-size: 24px;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.empoweringWithAi .ai-content p {
  color: #333;
  margin-bottom: 0;
}

.empoweringWithAi img {
  max-width: 100%;
  height: auto;
}












.footerNew {
  background-color: #2e2e33;
  padding-top: 90px;
  padding-bottom: 30px;
  position: relative
}

.copyright .fs-xs {
  font-size: 14px
}

#orgfaq,
#talentfaq,
.TbFds,
.footerNew .logoWhite,
.footerNew .logoWrapper .logoFooter.logoMobile,
.footerNew .logoWrapper .logoHolder.logoHolderMob,
.footerNew .logoWrapper .logoHolder.logoHolderTab,
.headersmaller,
.navlink.dropdown-toggle::after,
.whiteFooterLogo {
  display: none;
}

.footerNew h6 {
  color: #fff;
  margin-bottom: 15px;
  margin-top: 5px
}

.footerNavs,
.footerNew .downloadAPP {
  position: relative;
  z-index: 11
}

.footerNew ul {
  padding: 0;
  margin: 0
}

.footerNew ul li {
  list-style: none;
  margin-bottom: 15px
}

.footerNew ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px
}

.footerNew .logoWrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 48%;
  height: 100%;
  object-position: right
}

.footerNew .logoWrapper .logoHolder {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right
}

.footerNew .logoWrapper .logoFooter {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translate(0, -50%);
  width: 275px
}

.sitefooter {
  width: 100%;
  height: auto;
  background: #141414;
  padding: 80px 0 30px
}

.footerleadtext {
  margin-top: 30px;
  margin-bottom: 30px;
  overflow: hidden
}

.foottextadjust {
  margin-top: 18px;
  margin-left: 20px
}

.footlink {
  text-decoration: none
}

.footlink:hover {
  color: #7970f0
}

.socialicons {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 8px;
  background: 0 0;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center
}

.socialicons:hover {
  background: #7970f0;
  border: 1px solid #7970f0
}

.footerleadtext,
.footersubtext,
.footlink {
  font-size: 16px;
  color: #fff;
}


.testimonial {
  padding: 70px 0px;
  background: var(--light-purple);
  overflow-x: hidden;
}

.testimonial h2 {
  color: white;
  font-size: 45px;
}

.testimonial h3 {
  color: white;
  font-size: 18px;
  font-weight: 400;
}

.testimonial .card {
  padding: 30px;
  border-radius: 15px;
}

.testimonial .card img {
  width: 50px;
  height: 50px;
  min-width: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial .card .card-body {
  padding: 0px;
}


.testimonial .card h5 {
  font-size: 20px;
  margin-bottom: 5px;
}


.swiper-pagination {
  position: static;
  margin-top: 15px;
}

.swiper-pagination-bullet-active {
  background: white;
}

.swiper-button-next {
  right: -50px;
}

.swiper-button-prev {
  left: -50px;
}

.swiper-button-next,
.swiper-button-prev {
  color: black;
  top: calc(50% - 30px);
  width: 40px;
  height: 40px;
  background: #ffffff7d;
  border-radius: 50%;
}

.testimonial-swiper {
  overflow: visible;
}

.testimonial-swiper .swiper-slide-prev {
  opacity: 0;
}

.swiper-button-prev:after {
  font-size: 20px;
}

.swiper-button-next:after {
  font-size: 20px;
}

.achievement {
  background: var(--light-gray);
}

.achievement img {
  height: 167px;
  object-fit: contain;
}

.achievement h3 b {
  font-size: 1.75rem;
  font-weight: 600;
}

.downloadAppSection {
  /* padding: 70px 0px; */
  background: var(--light-yellow);
  overflow: hidden;
  margin-bottom: -35px;
}

.downloadAppSection h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.downloadAppSection h3 {
  font-size: 24px;
  font-weight: 400;
  max-width: 80%;
}

.downloadAPP {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.downloadAPP img {
  height: 55px;
}


.orgBanner {
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
}

.orgBanner .orgImg {
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: 0px;
  /* height: -webkit-fill-available; */
  /* object-fit: contain; */
  object-position: right;
  z-index: -1;
}

.orgBanner h1 {
  margin-bottom: 25px;
}

.orgBanner p {
  margin-bottom: 25px;
  font-size: 20px;
}

.orgBanner .btn-outline {
  background: white;
}

.orgBanner .orgFeatures {
  padding: 25px;
  background: white;
  border-radius: 15px;
  border: 1px solid #cfcefc;
}

.orgBanner .orgFeatures h3 {
  font-size: 25px;
}

.orgBanner .orgFeatures ul {
  padding: 0px;
  margin: 0px;
}

.orgBanner .orgFeatures ul li {
  list-style: none;
  display: flex;
  font-size: 18px;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #cfcefc;
}

.orgBanner .orgFeatures ul li:last-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: none;
}

.orgBanner .orgFeatures ul li .fa-bolt {
  width: 40px;
  height: 40px;
  min-width: 40px;
  text-align: center;
  line-height: 40px;
  background: var(--light-purple);
  border-radius: 10px;
  color: white;
}

.orgBanner .orgFeatures ul li h5 {
  margin-bottom: 5px;
}

.orgBanner .orgFeatures ul li p {
  font-size: 14px;
  margin-bottom: 0px;
}

.solution {
  padding: 70px 0px;
  background: #e8e5f3;
}

.solution h3 {
  font-size: 20px;
}

.solution-card-link {
  text-decoration: none;
  display: block;
  height: 100%;
  transition: transform 0.3s;
}

.solution-card-link:hover {
  transform: translateY(-5px);
}

.solution-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  border: none;
}

.solution-card img {
  width: 100%;
  object-fit: cover;
}

.solution-content {
  padding: 25px;
}

.solution-content ul{
  padding-left: 15px;
  margin-bottom: 0px;
}

.solution-content ul li{
  margin-top: 10px;
  color: #313131;
}

.solution-header {
  margin-bottom: 15px;
}

.solution-header h4 {
  margin: 0;
  font-size: 24px;
  color: #1a1a1a;
}

.solution-content p {
  margin: 0;
  margin-bottom: 15px;
  line-height: 1.6;
  color: #5f5f5f;
}

.solution-content .learn-more {
  display: inline-block;
  color: #000;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}

.solution-content .learn-more i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.solution-card-link:hover .learn-more i {
  transform: translateX(5px);
}

/* Solution Swiper Styles */
.solution-swiper {
  width: 100%;
}

.solution-swiper .swiper-slide {
  height: auto;
}

.solution-swiper .swiper-pagination {
  bottom: 10px;
}

.solution-swiper .swiper-pagination-bullet {
  background: #473bf0;
  opacity: 0.5;
}

.solution-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Desktop: Show as 2-column grid */
@media (min-width: 768px) {
  .solution-swiper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 0;
  }

  .solution-swiper .swiper-wrapper {
    display: contents;
  }

  .solution-swiper .swiper-slide {
    display: block;
    width: auto !important;
    margin-bottom: 25px;
  }

  .solution-swiper .swiper-pagination {
    display: none;
  }
}

.howItWorks {
  background: radial-gradient(circle at top left, rgb(226 226 248), #e6cd9c17 30%), radial-gradient(circle at top right, rgb(237 237 250), #e1929200 30%), radial-gradient(circle at bottom left, rgba(229, 220, 254, .5), transparent 30%);
}

.howItWorks .simpleToHost .card h5 {
  margin-bottom: 0px;
  font-size: 20px !important;
}

.howItWorks .card {
  text-align: center;
  background: transparent;
  border: none;
  position: relative;
}

.howItWorks .card.noline::before {
  display: none;
}

.howItWorks .card::before {
  content: '';
  width: 100px;
  height: 8px;
  background: url(../img/line.png);
  position: absolute;
  left: -70px;
  top: 100px;
  background-size: cover;
}



.howItWorks .card img {
  height: 250px;
  width: unset;
  display: block;
  margin: auto;
  margin-bottom: 20px;
}

.howItWorks .card h5 {
  font-size: 30px;
}

.howItWorks .card p {
  font-size: 20px;
}

/* Mobile: Show h5 before image */
@media (max-width: 767px) {
  .howItWorks .card {
    display: flex;
    flex-direction: column-reverse;
  }
}


.safety .card {
  padding: 25px;
  border-radius: 15px;
  height: 100%;
}

.safety .card img {
  height: 200px;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
}

.safety .card i {
  font-size: 25px;
  width: 60px;
  min-width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: var(--light-purple);
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}

.safety .card p {
  margin-bottom: 0px;
}

/* Safety Swiper Styles */
.safety-swiper {
  width: 100%;
}

.safety-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  height: calc(100% - 10px);
  box-shadow: 0 2px 10px rgb(0 0 0 / 15%);
  transition: transform 0.3s, box-shadow 0.3s;
  max-width: calc(100% - 20px);
  margin: auto;
  margin-top: 5px;
}

.lowCost .text{
  padding: 100px 0px;
  position: relative;
  background: url(../img/hi.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
}

.lowCost h4 {
  font-size: 40px;
  margin-bottom: 20px;
}

.lowCost p {
  font-size: 20px;
}

/* .safety-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
} */

.safety-icon {
  width: 70px;
  height: 70px;
  background: #463aec;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.safety-icon i {
  font-size: 32px;
  color: white;
}

.safety-card h5 {
  font-size: 24px;
  margin-bottom: 15px;
}

.safety-card p {
  /* font-size: 16px; */
  color: #666;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Desktop: Show as 3-column grid */
@media (min-width: 768px) {
  .safety-swiper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding-bottom: 0;
  }

  .safety-swiper .swiper-wrapper {
    display: contents !important;
    transform: none !important;
  }

  .safety-swiper .swiper-slide {
    width: auto !important;
    margin: 0 !important;
  }

  .safety-swiper .swiper-pagination {
    display: none !important;
  }
}


.heroEvent {
  min-height: 650px;
  display: flex;
  align-items: center;
}

.heroEvent h1{
  font-size: 48px;
  margin-bottom: 20px;
}

.heroEvent h1 span {
  font-size: inherit;
  color: var(--deep-purple);
}

.heroEvent p {
  font-size: 20px;
}

.heroEvent .eventHeroImg {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50%;
  z-index: -1;
}


.safety.event {
  background: linear-gradient(45deg, #e8e7fa, #f6f5ff)
}


.safety.event .col-md-4:last-child {
  border-right: none;
}

.safety.event .card {
  background: white;
  /* text-align: center; */
  display: block;
}

.safety.event .card i {
  margin: auto;
  margin-bottom: 20px;
}

.safety.event .card h5 {
  font-size: 24px;
  margin-bottom: 15px;
}

.simpleToHost .card {
  text-align: center;
  border: none;
  position: relative;
}

.simpleToHost .card::before {
  content: '';
  width: 100px;
  height: 8px;
  background: url(../img/line.png);
  position: absolute;
  left: -70px;
  top: 25px;
  background-size: cover;
}

.simpleToHost.event .card::before {
  display: none;
}

.simpleToHost .card.first::before {
  display: none;
}

.simpleToHost .card p {
  margin-bottom: 0px;
  padding-left: 50px;
  text-align: left;
}

.simpleToHost .card i {
  width: 60px;
  min-width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: #6364d830;
  border-radius: 10px;
  color: var(--deep-purple);
  margin: auto;
  margin-bottom: 20px;
  font-style: normal;
  font-size: 25px;
  font-weight: 600;
}

/* Mobile: Show h5, then p, then image */
@media (max-width: 767px) {
  .simpleToHost.event .card {
    display: flex;
    flex-direction: column;
  }

  .simpleToHost.event .card img {
    order: 3;
  }

  .simpleToHost.event .card h5 {
    order: 1;
  }

  .simpleToHost.event .card p {
    order: 2;
  }
}

.case-thumbs {
  max-width: 980px;
  margin: 14px auto 0;
  padding: 6px 40px;
  /* side padding to align with arrows above */
}

.case-thumbs .swiper-slide {
  transition: .2s ease;
  filter: grayscale(100%);
  opacity: .4;
}

.case-thumbs .swiper-slide img {
  width: 100%;
  height: 86px;
  object-fit: cover;
  border-radius: 14px;
}

.case-thumbs .swiper-slide-thumb-active {
  filter: none;
  opacity: 1;
  transform: translateY(-2px);
}

.case-thumbs .swiper-slide-thumb-active img {
  outline: 2px solid #FFC862;
  /* accent ring */
  outline-offset: 2px;
}

.org-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
  max-width: 980px;
  margin-inline: auto;
}

.org-logos .logo {
  background: #f2f2f7;
  border-radius: 12px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 0 rgba(0, 0, 0, .06);
  padding: 8px;
}

.org-logos .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .9;
  transition: .2s ease;
}

.org-logos .logo:hover img {
  filter: none;
  opacity: 1;
}


.case-thumbs .swiper-slide {
  box-shadow: none !important;
}


.inspiringEvents {
  background: var(--deep-purple);
}


.inspiringEvents .case-swiper .card {
  flex-direction: row;
  gap: 20px;
  border: 1px solid #ddd;
  align-items: center;
  max-width: 80%;
  margin: auto;
  padding: 10px;
  border-radius: 20px;
}

.inspiringEvents .case-swiper .card img {
  width: 250px;
  border-radius: 15px;
}

.inspiringEvents .swiper-slide {
  box-shadow: none;
}

.fc-accordion .accordion-item {
  border: 1px solid #ddd !important;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}

.fc-accordion .accordion-button:focus{
  box-shadow: none;
  border-bottom: 1px solid #ddd;
}

.fc-accordion .accordion-button {
  background: #fff;
  /* border: 1px solid #2c2c2c; */
  /* border-radius: 10px !important; */
  font-weight: 500;
  padding: 18px 20px;
  /* color: black; */
  font-size: 18px;
}

.fc-accordion .accordion-button::after {
  filter: grayscale(100%);
}

/* subtle chevron */
.fc-accordion .accordion-button:not(.collapsed) {
  color: #111;
  background: #fff;
  /* border-color:#2c2c2c;
  box-shadow:6px 6px 0 #cfd3da; */
}

/* .fc-accordion .accordion-collapse{
  border-left:1px solid #2c2c2c;
  border-right:1px solid #2c2c2c;
  border-bottom:1px solid #2c2c2c;
  border-radius:0 0 10px 10px;
  box-shadow:6px 6px 0 #cfd3da;
} */
.fc-accordion .accordion-body {
  background: #fff;
  border-radius: 0 0 8px 8px;
  padding: 18px 20px;
  line-height: 1.6;
}

.fc-accordion .accordion-body p{
  font-size: 16px;
}

/* .frequentlyAskedQuestions .title h2{
    font-size: 45px;
} */

.socialNetworkSection {
  padding-top: 80px;
  padding-bottom: 80px;
  background: url(../img/bg-feats.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% -185px;
}

.socialNetworkSection .title h2 {
  font-size: 45px;
}

.socialNetworkSection .title h3 {
  font-size: 22px;
}

.socialNetworkSection .singleCard {
  padding: 20px;
  background: rgba(245, 245, 245, 1);
  border: 1px solid rgba(213, 213, 213, 1);
  border-radius: 15px;
}

.socialNetworkSection .singleCard h5 {
  text-align: center;
  font-size: 25px;
  margin-bottom: 20px;
}

.socialNetworkSection .singleCard h5 img {
  width: 70px;
}

.socialNetworkSection .singleCard .subcard {
  padding: 15px;
  border-radius: 10px;
  background: white;
  border: 1px solid #ddd;
}

.socialNetworkSection .singleCard .subcard h6 {
  text-align: center;
  margin-bottom: 15px;
}


.socialNetworkSection .singleCard .subcard.small img {
  height: 110px;
  width: 100%;
  border-radius: 7px;
  object-fit: contain;
}

.socialNetworkSection .singleCard .subcard.big img {
  width: 250px;
  display: block;
  margin: auto;
}

.singleCard.community h5 img {
  background: #333fe5;
  height: 70px;
  object-fit: contain;
  padding: 10px;
  border-radius: 50%;
  margin-right: 5px;
}

.singleCard.org h5 img {
  background: rgba(105, 106, 230, 1);
  height: 70px;
  object-fit: contain;
  padding: 10px;
  border-radius: 50%;
  margin-right: 5px;
}

.singleCard.skill h5 img {
  background: rgba(255, 200, 98, 1);
  height: 70px;
  object-fit: contain;
  padding: 10px;
  border-radius: 50%;
  margin-right: 5px;
}


.socialNetworkSection .singleCard.community {
  margin-top: 20px;
}

.socialNetworkSection .singleCard.org {
  margin-top: 250px;
}

.socialNetworkSection .singleCard.skill {
  margin-top: 20px;
}

.downloadAppSection .appScreenCarousels {
  display: flex;
  /* height: 500px; */
  transform: rotate(5deg);

}

.downloadAppSection .appScreenCarousels .swiper {
  height: 600px;
}




.whyFeatsclub .singlePoint {
  display: flex;
  flex-direction: row;
  margin-bottom: 25px;
  padding-top: 35px;
  padding-bottom: 35px;
}

.whyFeatsclub .singlePoint h5 {
  margin-top: 0px;
  font-size: 40px;
  margin-bottom: 20px;
}

.whyFeatsclub .singlePoint p {
  font-size: 20px;
}


.schoolHero {
  padding: 80px 0px;
  background: linear-gradient(to right, #CFCEFC, transparent);
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
}

 

.schoolBenefits {
  padding-top: 80px;
  padding-bottom: 60px;
}

.schoolBenefits .title {
  font-size: 45px;
}

.schoolBenefits .title span {
  font-size: inherit;
}

.schoolBenefits .singleFeetbackCard {
  padding: 30px;
  border: 1px solid #2c2c2c38;
  box-shadow: 6px 6px 0 #cfd3da;
  border-radius: 15px;
  position: relative;
  margin-top: 30px;
  margin-bottom: 20px;
  margin-right: 10px;
}

.schoolBenefits .singleFeetbackCard::before {
  content: "\f10e";
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  right: 20px;
  font-weight: 700;
  color: var(--deep-purple);
  font-size: 70px;
  top: -35px;
  line-height: 1;
}

.schoolBenefits .singleFeetbackCard h2 {
  font-size: 24px;
}

.schoolBenefits .singleFeetbackCard .userMeta {
  display: flex;
  align-items: center;
}

.schoolBenefits .singleFeetbackCard .userMeta img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.schoolBenefits .singleFeetbackCard .userMeta h6 {
  margin-bottom: 5px;
  font-size: 18px;
}

.schoolBenefits .singleFeetbackCard .userMeta p {
  margin-bottom: 0px;
  font-size: 18px;
}

.schoolBenefits .swiper-pagination-bullet-active {
  background: black;
}


.benefitInAdvance {
  background: #F5F5FE;
}

.benefitInAdvance .subTitle {
  font-size: 20px;
  margin: auto;
  margin-bottom: 20px;
  margin-top: 10px;
  color: var(--deep-purple);
}

.benefitInAdvance .card {
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 15px;
  background: #fff;
  border: none;
}

.benefitInAdvance ul {
  padding: 0px;
  margin: 0px;
}

.benefitInAdvance ul li {
  list-style: none;
}

.benefitInAdvance .card ul li {
  margin-top: 10px;
  font-size: 16px;
}

.benefitInAdvance .card ul li i {
  margin-right: 5px;
  color: var(--deep-purple);
}

.benefitInAdvance .card h5 {
  font-size: 24px;
}

.schoolKeyFeature {
  padding-bottom: 80px;
  padding-top: 80px;
  background: radial-gradient(circle at top left, rgba(255, 205, 107, .5), #e6cd9c17 30%), radial-gradient(circle at top right, rgb(237 237 250), #e1929200 30%), radial-gradient(circle at bottom left, rgba(229, 220, 254, .5), transparent 30%);
}

.schoolKeyFeature.bagOther {
  background: #F8F7FA !important;
}

.schoolKeyFeature .title {
  font-size: 45px;
  margin-bottom: 20px;
}

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

.schoolKeyFeature .card {
  padding: 20px;
  border-radius: 15px;
  height: 100%;
}

.schoolKeyFeature .card p {
  font-size: 16px;
  margin-bottom: 0px;
}

.schoolKeyFeature .card ul {
  padding-left: 10px;
  margin: 0px;
}

.schoolKeyFeature .card ul li {
  font-size: 14px;
  margin-top: 10px;
}

.schoolKeyFeature .card h5 {
  min-height: 50px;
  color: #4438e5;
  margin-bottom: 10px;
}

.contentCard h5 {
  font-size: 30px !important;
  color: #4438e5;
  margin-bottom: 24px;
}

.contentCard.two h5 {
  font-size: 30px !important;
  color: #7E5C05;
  margin-bottom: 24px;
}

.contentCard ul {
  padding-left: 20px;
}

.contentCard ul li {
  font-size: 20px !important;
  margin-bottom: 10px;
}

.contentCard ul li:last-child {
  margin-bottom: 0;
}

.radiusStudentcard .row {
  border-radius: 20px;
}

.radiusStudentcard .row .contentCard h5 {
  color: #111827 !important;
}

.radiusStudentcard .row .contentCard ul li {
  color: #5f5f5f;
}

.platformHighlights {
  padding: 70px 0px;
}

.platformHighlights .title {
  font-size: 40px;
}

.platformHighlights .card {
  padding: 20px;
  border-radius: 15px;
  height: 100%;
  flex-direction: row;
  gap: 15px;
}

.platformHighlights .card h5 {
  font-size: 24px;
}

.platformHighlights .card p {
  margin-bottom: 0px;
  color: #666;
}


.platformHighlights .card i {
  width: 40px;
  height: 40px;
  min-width: 40px;
  text-align: center;
  line-height: 40px;
  background: var(--light-purple);
  border-radius: 10px;
  color: white;
}

/* New Highlight Cards */
.highlight-card {
  background: #e8e5f3;
  padding: 20px 24px;
  border-radius: 15px;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.highlight-card i {
  width: 40px;
  min-width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--light-purple);
  border-radius: 10px;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.highlight-text {
  flex: 1;
}

.highlight-card h5 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.highlight-card p {
  /* font-size: 16px; */
  color: #666;
  margin-bottom: 0;
  line-height: 1.5;
}

.phone-mockup {
  max-width: 250px;
  margin: 0 auto;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .phone-mockup {
    max-width: 250px;
    margin: 30px auto;
  }
}

.platformHighlights.communities .card i {
  background: var(--yellow);
  color: black;
}

/* Community Features Swiper - Mobile carousel, Desktop grid */
.community-features-swiper {
  width: 100%;
  /* padding-bottom: 50px; */
}

@media (min-width: 768px) {
  .community-features-swiper {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding-bottom: 0;
  }

  .community-features-swiper .swiper-wrapper {
    display: contents !important;
    transform: none !important;
  }

  .community-features-swiper .swiper-slide {
    width: auto !important;
    margin: 0 !important;
  }

  .community-features-swiper .swiper-pagination {
    display: none !important;
  }
}

/* NonProfit Features Swiper - Mobile carousel, Desktop grid */
.nonprofit-features-swiper {
  width: 100%;
}

@media (min-width: 768px) {
  .nonprofit-features-swiper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-bottom: 0;
  }

  .nonprofit-features-swiper .swiper-wrapper {
    display: contents !important;
    transform: none !important;
  }

  .nonprofit-features-swiper .swiper-slide {
    width: auto !important;
    margin: 0 !important;
  }

  .nonprofit-features-swiper .swiper-pagination {
    display: none !important;
  }
}

/* Corporate Features Swiper - Mobile carousel, Desktop grid */
.corporate-features-swiper {
  width: 100%;
  /* padding-bottom: 50px; */
}

@media (min-width: 768px) {
  .corporate-features-swiper {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding-bottom: 0;
  }

  .corporate-features-swiper .swiper-wrapper {
    display: contents !important;
    transform: none !important;
  }

  .corporate-features-swiper .swiper-slide {
    width: auto !important;
    margin: 0 !important;
  }

  .corporate-features-swiper .swiper-pagination {
    display: none !important;
  }
}

/* Highlights Swiper for School Page */
.highlights-swiper {
  width: 100%;
}

.highlights-swiper .swiper-slide {
  height: auto;
}

.highlights-swiper .highlight-card {
  height: 100%;
}

.schoolContact {
  padding-top: 60px;
  padding-bottom: 80px;
  background: #e7e6f2;
}

.schoolContact .title {
  font-size: 40px;
}

.schoolContact form {
  border-radius: 10px;
  box-shadow: 6px 6px 0 #cfd3da;
  padding: 20px;
  padding-top: 0px;
  background: white;
  border: 1px solid #ddd;
}

.schoolContact form .form-control {
  border: 1px solid #ddd;
  padding: 10px 15px;
}

.schoolContact form .form-select {
  border: 1px solid #ddd;
  padding: 10px 15px;
}

.schoolContact form label {
  font-weight: 500;
  margin-bottom: 4px;
}







.whyFeatsclub.event h2 {
  margin-bottom: 40px;
}

.whyFeatsclub.event .feature-tabs {
  text-align: center;
  margin-bottom: 20px;
}

.whyFeatsclub.event .feature-tabs button {
  border: none;
  outline: none;
  background: transparent;
  margin-bottom: 20px;
  margin-right: 20px;
}

.whyFeatsclub.event .feature-tabs button.active {
  color: #333fe5;
  font-weight: 500;
}


.whyFeatsclub.event .swiper-slide {
  background: #fff;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 900px;
  height: 450px;
  transition: transform 0.3s ease;
  box-shadow: none;
  background: rgba(255, 232, 187, 1);
}


/* .whyFeatsclub.event .swiper-slide.swiper-slide-prev{
    position: relative;
    left: 720px;
    border: 1px solid #ddd;
    background: #efefef;
    height: 400px;
    margin-top: 25px;
  } */

/* .whyFeatsclub.event .swiper-slide.swiper-slide-next{
    position: relative;
    right: 720px;
    border: 1px solid #ddd;
    background: #efefef;
    height: 400px;
    margin-top: 25px;
  } */

/* .whyFeatsclub.event .swiper-slide.swiper-slide-active{
    box-shadow: none;
    background: rgba(255, 232, 187, 1);
  } */

.whyFeatsclub.event .swiper-slide .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 90%;
}

/* .whyFeatsclub.event .swiper-slide img {
    height: 350px;
    border-radius: 16px;
    width: unset;
  } */
.whyFeatsclub.event .swiper-slide .textBox {
  width: 50%;
}

.whyFeatsclub.event .swiper-slide .textBox h5 {
  font-weight: 500;
  margin-bottom: 10px;
  color: #111;
  font-size: 35px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whyFeatsclub.event .swiper-slide .textBox h5 i {
  color: #333fe5;
  font-size: 35px;
  font-weight: 400;
}

.whyFeatsclub.event .swiper-slide .textBox p {
  color: #444;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.whyFeatsclub.event .swiper-slide .textBox a {
  color: #333fe5;
  font-weight: 600;
  text-decoration: none;
  font-size: 18px;
}

.whyFeatsclub.event .swiper-slide .textBox a i {
  transition: 0.3s;
}

.whyFeatsclub.event .swiper-slide .textBox a:hover i {
  transform: translateX(4px);
}

.whyFeatsclub.event .swiper-pagination-bullet {
  background: #bbb;
  opacity: 1;
}

.whyFeatsclub.event .swiper-pagination-bullet-active {
  background: #333fe5;
}


.simpleToHost.event .card img {
  height: 280px;
  margin-bottom: 30px;
  max-width: 100%;
  object-fit: contain;
}

.simpleToHost.event .card h5 {
  font-size: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-align: left;
  margin-top: 15px;

  /* justify-content: center; */
}

.simpleToHost.event .card h5 span {
  color: #333fe5;
  font-size: 40px;
  font-weight: 600;
  width: 50px;
  min-width: 50px;
}

.simpleToHost.event.donation .card h5 span {
  color: #FFC862;
}

.frequentlyAskedQuestions {
  position: relative;
  background: radial-gradient(circle at top left, rgba(255, 205, 107, .5), #e6cd9c17 30%), radial-gradient(circle at top right, rgb(237 237 250), #e1929200 30%), radial-gradient(circle at bottom left, rgba(229, 220, 254, .5), transparent 30%);
}

.frequentlyAskedQuestions .fc-faq {
  background: #fff;
  padding: 50px;
  border-radius: 10px;
}

.frequentlyAskedQuestions .img1 {
  position: absolute;
  width: 200px;
  left: 20px;
  top: 50px;
}

.frequentlyAskedQuestions .img2 {
  position: absolute;
  width: 200px;
  right: 20px;
  bottom: 50px;
}


.donationHero {
  padding: 70px 0px;
  background: var(--light-yellow);
}

.donationHero p {
  font-size: 20px;
}

.donationHero .wrapper {
  position: relative;
  width: 90%;
  margin: auto;
}

.donationHero .wrapper .a2 {
  position: absolute;
  right: 18px;
  top: 17px;
}

.notJustFunrising .title {
  max-width: 70%;
  margin: auto;
}

.notJustFunrising ul {
  padding: 0px;
  margin: 0px;
}

.notJustFunrising ul li {
  list-style: none;
  margin-bottom: 40px;
}

.notJustFunrising ul li h5 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
}

.notJustFunrising ul li:last-child {
  margin-bottom: 0px;
}

.notJustFunrising ul li p {
  margin-bottom: 0px;
  color: #595c5f;
}

.notJustFunrising ul li h5 i {
  color: var(--deep-purple);
  font-size: 25px;
}


.everythingYouNeed {
  background: linear-gradient(109.49deg, rgba(207, 206, 252, 0.5) 0.79%, rgba(255, 255, 255, 0.5) 100%);
  position: relative;
}

.everythingYouNeed.bg-white {
  background: white !important;
}

.everythingYouNeed ul {
  padding: 0px;
  margin: 0px;
}

.everythingYouNeed ul li {
  list-style: none;
  display: flex;
  /* align-items: center; */
  gap: 15px;
  margin-bottom: 25px;
}

.everythingYouNeed ul li:last-child {
  margin-bottom: 0px;
}

.everythingYouNeed ul li p {
  margin-bottom: 0px;
  color: #595c5f;
}

.everythingYouNeed ul li i {
  width: 35px;
  min-width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  background: #9e97ff;
  border-radius: 10px;
  font-size: 18px;
  color: white;
  font-weight: 300;
}

.everythingYouNeed ul li h5 {
  margin-bottom: 5px;
  font-size: 20px;
}


.everythingYouNeed .main {
  position: absolute;
  right: 0px;
  width: 50%;
  top: 50%;
  z-index: 0;
  transform: translate(0%, -50%);
}

.pricingNote .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.pricingNote .wrapper .coinImg {
  width: 200px;
}

.pricingNote {
  background: rgb(244 244 244);
  padding: 40px 0px;
}

.pricingNote .wrapper h5 {
  font-size: 35px;
  font-weight: 600;
}

.pricingNote .wrapper .btn {
  background: rgba(105, 106, 230, 1);
  color: white;
  font-weight: 500;
  padding: 10px 25px;
  font-size: 16px;
}


.frequentlyAskedQuestions .img3 {
  position: absolute;
  width: 200px;
  right: 20px;
  top: 200px;
}

.frequentlyAskedQuestions .img4 {
  position: absolute;
  width: 170px;
  right: 20px;
  bottom: 50px;
}

.nonProfitOrgHero {
  padding: 70px 0px;
  background: linear-gradient(45deg, #9e97ff66, #ffe8bb80);
}

.nonProfitOrgHero h1 span {
  font-size: inherit;
}

.nonProfitOrgHero img {
  border-radius: 10px;
}


.commonSolutionForNonProfit .nav-link {
  text-align: left;
  padding: 15px;
  margin-bottom: 10px;
  color: #5e5e5e;
  font-weight: 500;
}

.commonSolutionForNonProfit .nav-link i {
  margin-right: 10px;
  color: #bfbfbf;
  font-size: 20px;
}

.commonSolutionForNonProfit .nav-link.active {
  background: #faf9f7;
  color: rgba(51, 63, 229, 1);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.commonSolutionForNonProfit .nav-link.active i {
  color: rgba(51, 63, 229, 1);
}

.commonSolutionForNonProfit .tab-content {
  /* margin-left: 20px; */
  padding: 50px;
  border-radius: 10px;
  background: #FAF9F7;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.commonSolutionForNonProfit .tab-content ul {
  padding: 0px;
  margin: 0px;
}

.commonSolutionForNonProfit .tab-content ul li {
  color: #5e5e5e;
  margin-bottom: 20px;
}

.commonSolutionForNonProfit .tab-content ul li:last-child {
  margin-bottom: 0px;
}

.commonSolutionForNonProfit .tab-content img {
  height: 300px;
  width: 100%;
  object-fit: contain;
  border-radius: 10px;
}



.saveCost .card {
  padding: 25px;
  border-radius: 10px;
  height: 100%;
}

.saveCost .card i {
  width: 60px;
  min-width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  background: var(--deep-purple);
  margin-bottom: 20px;
  border-radius: 10px;
  color: #fff;
  font-size: 25px;
  font-weight: 300;
}

.saveCost .card p {
  margin-bottom: 0px;
}

.successStory {
  background: #d6d3ff;
}

.successStory .container{
  position: relative;
}

.successStory .container .bottom-logo{
  position: absolute;
  bottom: -70px;
  left: 12%;
  transform: translateX(-50%);
  max-width: 350px;
}

.successStory .singleStory {
  padding: 35px 140px;
  border-radius: 15px;
  background: white;
  text-align: center;
  /* border: 4px solid var(--deep-purple); */
  max-width: 80%;
  margin: auto;
}

.successStory .singleStory h5 {
  font-size: 24px;
  margin-bottom: 15px;
}

.successStory .singleStory h3 img{
  width: 55px;
}

.successStory .singleStory ul {
  padding: 0px;
  margin: 0px;
}

.successStory .singleStory ul li {
  list-style: none;
  display: inline-block;
  margin-right: 35px;
}

.successStory .singleStory ul li:last-child {
  margin-right: 0px;
}

.successStory .singleStory ul li h4 {
  font-size: 40px;
  font-weight: 600;
  color: var(--deep-purple);
}

.successStory .singleStory ul li p {
  font-weight: 500;
  margin-top: 0px;
  font-size: 18px;
  opacity: 1;
}

.successStory .singleStory p {
  font-size: 18px;
  margin-bottom: 0px;
  margin-top: 30px;
  /* opacity: 0.7; */
}

.successStory .swiper-pagination-bullet-active {
  background: #473bf0;
}




.buildCommunity {
  background: #fff;
}

.buildCommunity .title h2 {
  margin-bottom: 10px;
}


/* Common card style */
.buildCommunity .featureCard {
  border: none;
  border-radius: 15px;
  padding: 30px 25px;
  color: #111;
  height: 100%;
  position: relative;
  overflow: hidden;
  /* box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06); */
  transition: all 0.3s ease;
  display: block;
}

.buildCommunity .featureCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.buildCommunity .featureCard i {
  font-size: 45px;
  margin-bottom: 15px;
  display: inline-block;
  font-weight: 300;
}

.buildCommunity .featureCard h5 {
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 10px;
}

.buildCommunity .featureCard p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 0px;
}

.buildCommunity .featureCard .tag {
  display: inline-block;
  background: #3254ff;
  color: #fff;
  font-size: 16px;
  border-radius: 6px;
  padding: 3px 8px;
  margin-bottom: 8px;
}

.buildCommunity .featureCard .tag.orange {
  background: #ffb937;
  color: #111;
}

/* Individual gradients */
.buildCommunity .card-mobile {
  background: linear-gradient(135deg, #fdfbff, #e8e8ff);
}

.buildCommunity .card-web {
  background: linear-gradient(135deg, #fff8f0, #fdebd4);
}

.buildCommunity .card-cloud {
  background: linear-gradient(135deg, #f8f9ff, #e8e8ff);
}

.buildCommunity .card-secure {
  background: linear-gradient(135deg, #fff8ec, #fef3df);
}

.buildCommunity .card-payments {
  background: linear-gradient(135deg, #f7f5ff, #e8e8ff);
}

.buildCommunity .card-analytics {
  background: linear-gradient(135deg, #fff8ec, #fdebd4);
}

/* Icon colors */
.buildCommunity .card-mobile i {
  color: #3254ff;
}

.buildCommunity .card-web i {
  color: #b87400;
}

.buildCommunity .card-cloud i {
  color: #8b8ef1;
}

.buildCommunity .card-secure i {
  color: #ffb937;
}

.buildCommunity .card-payments i {
  color: #8b6ee8;
}

.buildCommunity .card-analytics i {
  color: #e67e22;
}


.howItWorks.nonprofit .card p {
  margin-bottom: 0px;
  font-size: 16px;
}


.membershipAndFees {
  padding: 80px 0px;
  min-height: 650px;
  display: flex;
  align-items: center;
}

.membershipAndFees h1 {
  margin-bottom: 15px;
}

.membershipAndFees h1 span {
  font-size: inherit;
}

.membershipAndFees p {
  font-size: 20px;
}

.moreThanOperation {
  padding: 70px 0px;
  background: linear-gradient(109.49deg, rgba(207, 206, 252, 0.5) 0.79%, rgba(255, 255, 255, 0.5) 100%);
}

.moreThanOperation .card {
  border-radius: 20px;
  height: 100%;
  border: none;
  overflow: hidden;
}

.moreThanOperation .card h5{
  font-size: 24px;
}

.eventThatInspired {
  background: url(../img/bg-1.png);
  background-size: contain;
  background-position: center;
}

.eventThatInspired .title {
  font-size: 40px;
}

/* Event Inspired Testimonial Carousel */
.eventInspiredSwiper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 25px;
}

.eventInspiredSwiper .testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eventInspiredSwiper .testimonial-text {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
}

.eventInspiredSwiper .testimonial-author {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 0;
  text-align: left;
}

/* Navigation Arrows */
.eventInspiredSwiper .swiper-button-prev,
.eventInspiredSwiper .swiper-button-next {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.eventInspiredSwiper .swiper-button-prev:after,
.eventInspiredSwiper .swiper-button-next:after {
  font-size: 20px;
  font-weight: bold;
  color: #5B48E8;
}

.eventInspiredSwiper .swiper-button-prev {
  left: 0;
}

.eventInspiredSwiper .swiper-button-next {
  right: 0;
}

/* Pagination */
.eventInspiredSwiper .swiper-pagination {
  bottom: -40px;
}

.eventInspiredSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.eventInspiredSwiper .swiper-pagination-bullet-active {
  background: #FFD700;
  width: 32px;
  border-radius: 6px;
}


.classHeroSection {
  background: linear-gradient(180deg, #9e97ff66, transparent);
  min-height: 650px;
  display: flex;
  align-items: center;
}

.classHeroSection p {
  font-size: 20px;
}


/* Club Classes Testimonial Section */


.clubClasses .section-title {
  font-size: 35px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.3;
}

.club-testimonial-wrapper {
  position: relative;
}

/* Decorative Pattern Positioning */
.pattern-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

/* Club Classes Swiper */
.clubClassesSwiper {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.clubClassesSwiper .club-testimonial-card {
  padding: 50px;
  padding-top: 0px;
  padding-left: 20px;
  padding-right: 0px;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  position: relative;
}

.clubClassesSwiper .quote-icon {
  margin-bottom: 24px;
}

.clubClassesSwiper .quote-icon svg {
  width: 50px;
  height: auto;
}

.clubClassesSwiper .testimonial-text {
  font-size: 18px;
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 400;
}

.clubClassesSwiper .testimonial-author {
  border-top: 2px solid #f0f0f0;
  padding-top: 20px;
}

.clubClassesSwiper .author-name {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.clubClassesSwiper .author-org {
  font-size: 16px;
  font-weight: 500;
  color: #666;
  margin: 0;
}

/* Navigation Arrows for Club Classes */
.clubClassesSwiper .swiper-button-prev,
.clubClassesSwiper .swiper-button-next {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.clubClassesSwiper .swiper-button-prev:hover,
.clubClassesSwiper .swiper-button-next:hover {
  background: #5B48E8;
  box-shadow: 0 6px 20px rgba(91, 72, 232, 0.3);
}

.clubClassesSwiper .swiper-button-prev:after,
.clubClassesSwiper .swiper-button-next:after {
  font-size: 22px;
  font-weight: bold;
  color: #5B48E8;
}

.clubClassesSwiper .swiper-button-prev:hover:after,
.clubClassesSwiper .swiper-button-next:hover:after {
  color: white;
}

.clubClassesSwiper .swiper-button-prev {
  left: 0;
}

.clubClassesSwiper .swiper-button-next {
  right: 0;
}

/* Pagination for Club Classes */
.clubClassesSwiper .swiper-pagination {
  bottom: -50px;
}

.clubClassesSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #d0d0d0;
  opacity: 1;
  transition: all 0.3s ease;
}

.clubClassesSwiper .swiper-pagination-bullet-active {
  background: #FDB750;
  width: 36px;
  border-radius: 6px;
}

.clubClasses {
  margin-top: 70px;
  margin-bottom: 120px;
}

.comingSoonSection {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
}

/* ============================================
   COMING SOON PAGE STYLES (SIMPLE)
   ============================================ */

.comingSoonSection {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  background: #ffffff;
}

.coming-soon-content h1 {
  font-size: 56px;
  color: #1a1a2e;
  margin-bottom: 20px;
}

.coming-soon-content .lead {
  font-size: 20px;
  color: #64748b;
}

.coming-soon-graphic img {
  max-width: 100%;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}


.studentHero {
  background: linear-gradient(rgba(255, 255, 255, 0.1)), url(../img/bg-student.png);
  background-size: cover;
  background-color: #ffedbfa3;
  /* padding-top: 70px; */
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
}

.studentHero h1{
  font-size: 48px;
}

.studentHero p {
  font-size: 20px;
}

.studentHero .heroimg {
  position: absolute;
  width: 50%;
  right: 0px;
  bottom: 0px;
  height: -webkit-fill-available;
  object-fit: contain;
  object-position: right bottom;
}

.schoolHero .heroimg {
  position: absolute;
  width: 60%;
  right: 0px;
  bottom: 0px;
  height: -webkit-fill-available;
  object-fit: contain;
  object-position: 70px 0px;
}

.impactAndPurpose{
  position: relative;
  background: url(../img/bg-im.png);
  background-size: cover;
}
.leftSider{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.leftSider img{
  max-height: 470px;
}
.rightSider{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.rightSider img{
  height: 100%;
}
.impactAndPurpose.new .impactSwiper .impactCard{
  background: transparent;
  border: 3px solid #7e5c0538;
  box-shadow: 4px 4px 4px 0px #00000026;
  background-color: #ffffff;
}


.impactAndPurpose .topSliderArea {
  position: relative;
  background: var(--yellow);
  padding: 40px;
  max-width: 1100px;
  margin: auto;
  border-radius: 20px;
}

.impactAndPurpose .topSliderArea .mainImg {
  position: absolute;
  width: 40%;
  top: -50%;
}

.impactAndPurpose .topSliderArea h5 {
  margin-bottom: 0px;
  font-size: 20px;
  font-weight: 400;
}

.impactAndPurpose .topSliderArea h5 span {
  font-size: 28px;
  font-weight: 600;
}

.impactAndPurpose .sliderBottomArea h6 {
  margin-top: 30px;
  margin-bottom: 0px;
  line-height: 1.5;
}

.impactAndPurpose .sliderBottomArea {
  max-width: 1100px;
  margin: auto;
}

.impactAndPurpose .title {
  margin-bottom: 100px;
}

.commonSolutionForNonProfit.keyBenefits {
  background: url(../img/benefits.png);
  background-size: cover;
}

.keyBenefits .tab-content img {
  position: absolute;
  height: 300px;
  object-fit: contain;
}

.commonSolutionForNonProfit {
  background-color: #f6f6f6;
}

.commonSolutionForNonProfit .wrapperBox {
  background: white;
  max-width: 80%;
  margin: auto;
  padding: 25px;
  border-radius: 15px;
}

.commonSolutionForNonProfit .wrapperBox .nav {
  padding: 40px 0px;
}


.keyBenefits .wrapperBox {
  background: white;
  max-width: 80%;
  margin: auto;
  padding: 25px;
  border-radius: 15px;
}

.keyBenefits .wrapperBox .nav {
  padding: 40px 0px;
}

.keyBenefits .wrapperBox .nav-link.active {
  color: #7E5C05 !important;
  background: #FAF9F7;
}

.keyBenefits .wrapperBox .nav-link.active i {
  color: #7E5C05 !important;
}

.keyBenefits .wrapperBox .nav-link {
  padding: 25px;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
}

.keyBenefits .tab-content {
  position: relative;
  height: 100%;
}

/* Key Benefits Accordion Styles (Mobile) */
.keyBenefits .accordion {
  max-width: 100%;
}

.keyBenefits .accordion-item {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 12px !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.keyBenefits .accordion-button {
  background: white;
  color: #1F2937;
  font-weight: 500;
  font-size: 16px;
  padding: 18px 20px;
  border: none;
  box-shadow: none;
}

.keyBenefits .accordion-button:not(.collapsed) {
  background: #FAF9F7;
  color: #7E5C05;
  box-shadow: none;
}

.keyBenefits .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.keyBenefits .accordion-button i {
  color: #9CA3AF;
  font-size: 18px;
}

.keyBenefits .accordion-button:not(.collapsed) i {
  color: #7E5C05;
}

.keyBenefits .accordion-body {
  padding: 20px;
  background: white;
}

.keyBenefits .accordion-body .list-points {
  margin-bottom: 16px;
}

.keyBenefits .accordion-body img {
  max-height: 250px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

/* ============================================
   STATS SWIPER PAGINATION DOTS
   ============================================ */
.statsSwiper .swiper-pagination {
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.statsSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.statsSwiper .swiper-pagination-bullet-active {
  background: #6366f1;
  width: 32px;
  border-radius: 6px;
}

/* ============================================
   BUILD FOR STUDENT FEATURE CARDS
   ============================================ */
.buildForStudent .featureCard {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 32px 24px;
  height: 100%;
  transition: all 0.3s ease;
}

/* 
.buildForStudent .featureCard:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
} */

.buildForStudent .featureCard .iconBox {
  width: 56px;
  height: 56px;
  background: #F9BE3E;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.buildForStudent .featureCard .iconBox i {
  font-size: 24px;
  color: #1F2937;
  font-weight: 400;
}

.buildForStudent .featureCard h5 {
  font-size: 24px;
  font-weight: 500;
  color: #1F2937;
  margin-bottom: 12px;
}

.buildForStudent .featureCard p {
  line-height: 1.6;
  color: #6B7280;
  margin-bottom: 0;
}

/* Student Security Swiper - Mobile carousel, Desktop grid */
.student-security-swiper {
  width: 100%;
}

.buildForStudent .swiper-pagination-bullet-active {
  background: #463aec;
}

.swiper-pagination-bullet-active {
  background: #463aec;
}

@media (min-width: 768px) {
  .student-security-swiper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-bottom: 0;
  }

  .student-security-swiper .swiper-wrapper {
    display: contents !important;
    transform: none !important;
  }

  .student-security-swiper .swiper-slide {
    width: auto !important;
    margin: 0 !important;
  }

  .student-security-swiper .swiper-pagination {
    display: none !important;
  }
}

/* ============================================
   IMPACT AND PURPOSE SLIDER
   ============================================ */
.impactSwiper {
  position: relative;
}

.impactSwiper .impactCard {
  background: linear-gradient(35deg, #FFD37F 0%, #FFF7DE 100%);
  border-radius: 20px;
  padding: 60px 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.impactSwiper .impactCard h3 {
  font-size: 40px;
  font-weight: 600;
  color: #8B6914;
  margin-bottom: 10px;
}

.impactSwiper .impactCard p {
  font-size: 16px;
  color: #5A4A1F;
  line-height: 1.5;
  margin-bottom: 0;
}

.impactSwiper .quoteText {
  padding-top: 10px;
}

.impactSwiper .quoteText p {
  font-size: 18px;
  color: #5A4A1F;
  font-weight: 500;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

.impactSwiper .swiper-pagination {
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.impactSwiper .swiper-pagination-bullet {
  height: 8px;
  background: #D1D5DB;
  opacity: 1;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.impactSwiper .swiper-pagination-bullet-active {
  background: #1F2937;
  width: 40px;
}

.discoverRecognision {
  padding-top: 70px;
  background: url(../img/new-bg.png);
  padding-bottom: 380px;
  background-size: cover;
  background-position: 0% 0%;
}

.discoverRecognision h2 {
  text-transform: uppercase;
  font-size: 30px;
  margin-bottom: 10px;
}

.discoverRecognision p {
  margin-bottom: 30px;
  margin-top: 20px;
}

.discoverRecognision .btn {
  background: #473bf0;
  color: white;
  padding: 11px 20px;
  font-weight: 500;
}


.studentHero.community {
  background: url(../img/bg-comm.png);
}

.bottomSpecialSection {
  position: relative;
}

.bottomSpecialSection::before {
  content: '';
  width: 100%;
  height: 85%;
  background: linear-gradient(45deg, #FFC862, #FFE8BB);
  position: absolute;
  bottom: 0px;
  z-index: -1;
}

.bottomSpecialSection h2 {
  margin-top: 50px;
  margin-bottom: 15px;
}

.bottomSpecialSection p {
  margin-bottom: 20px;
}

.bottomSpecialSection .btn {
  background: black;
  color: white;
  padding: 11px 20px;
  font-weight: 500;
}

/* 
.successStory .container{
  position: relative;
}

.successStory .mainimg{
  position: absolute;
  left: 0px;
  bottom: 0px;
} */


.footerNew .downloadAPP {
  display: block;
}

.footerNew .downloadAPP img {
  height: unset;
}

.socialPurpose {
  padding: 80px 0px;
  background: linear-gradient(0deg, var(--light-yellow), transparent, transparent, transparent);
}

.socialPurpose img {
  mask: linear-gradient(to bottom, transparent 0, #000 88px, #000 calc(100% - 88px), transparent 100%);
}


.socialPurpose h2 {
  font-size: 40px;
}

.socialPurpose h2 span {
  font-size: 45px;
  color: #c89208;
}

.socialPurpose h3 {
  font-size: 25px;
  font-weight: 500 !important;
}

.corporateEmpHero {
  min-height: 650px;
  display: flex;
  align-items: center;
  position: relative;
}

.corporateEmpHero .esr1 {
  position: absolute;
  width: 50%;
  right: 0px;
  bottom: 0px;
  height: -webkit-fill-available;
  object-fit: contain;
  object-position: right;
}

.moreThanOperation .card ul {
  padding-left: 15px;
}

.moreThanOperation .card p{
  color: #5f5f5f;
  margin-top: 15px;
}

.moreThanOperation .card ul li {
  margin-top: 10px;
}

.commonSolutionForNonProfit.corporate {
  background: white !important;
}

.corporate .wrapperBox .nav-link.active {
  color: var(--deep-purple) !important;
  background: #f5f4fe;
}

.corporate .wrapperBox .nav-link.active i {
  color: var(--deep-purple) !important;
}

.corporate .tab-content img {
  position: static !important;
  border-radius: 10px;
}

.platformHighlights.highlight {
  background: #f8f7fa;
}

.lowerFees {
  padding: 25px 0px;
}

.lowerFees .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.lowerFees .wrapper img {
  height: 170px;
}

.lowerFees .wrapper h4 {
  font-size: 30px;
}





/* Responsive adjustments */
@media (max-width: 1199px) {
  .clubClasses .section-title {
    font-size: 36px;
  }

  .clubClassesSwiper {
    padding: 0 60px;
  }

  .clubClassesSwiper .club-testimonial-card {
    padding: 40px;
    min-height: 340px;
  }
}

@media (max-width: 991px) {
  .clubClasses .section-title {
    font-size: 32px;
  }

  .clubClassesSwiper {
    padding: 0 50px;
  }

  .clubClassesSwiper .club-testimonial-card {
    padding: 35px;
    min-height: 320px;
  }

  .clubClassesSwiper .testimonial-text {
    font-size: 16px;
  }

  .clubClassesSwiper .swiper-button-prev,
  .clubClassesSwiper .swiper-button-next {
    width: 46px;
    height: 46px;
  }

  .clubClassesSwiper .swiper-button-prev:after,
  .clubClassesSwiper .swiper-button-next:after {
    font-size: 18px;
  }

  .eventInspiredSwiper {
    padding: 0 50px;
  }

  .eventInspiredSwiper .testimonial-card {
    padding: 30px;
    min-height: 240px;
  }

  .eventInspiredSwiper .swiper-button-prev,
  .eventInspiredSwiper .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .eventInspiredSwiper .swiper-button-prev:after,
  .eventInspiredSwiper .swiper-button-next:after {
    font-size: 16px;
  }
}

@media (max-width: 767px) {

  .title h3 {
    font-size: 18px;
  }

  .contentCard ul {
    padding-left: 15px;
}

  .title h3 br {
    display: none;
  }

  .navbar .nav-item {
    margin-left: 0px;
  }

  .navbar .nav-item .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .heroSection p {
    padding-right: 0px;
    font-size: 18px;
  }

  .corporateEmpHero .esr1 {
    position: relative;
    width: 100%;
    right: -10px;
    top: -10px;
  }

  .bottomSpecialSection .col-md-8 {
    order: 2;
  }

  .bottomSpecialSection .col-md-4 {
    order: 1;
  }

  .bottomSpecialSection {
    padding-bottom: 70px;
  }

  /* .nonProfitOrgHero img{
        margin-top: 30px;
    } */

  .successStory .singleStory ul li {
    margin-right: 0px;
    margin-bottom: 20px;
  }

  .successStory .singleStory p {
    margin-top: 0px;
    font-size: 16px;
    margin-bottom: 14px;
  }

  .saveCost .card {
    height: unset;
    margin-bottom: 20px;
  }

  .whomWeServe .card p {
    min-height: unset;
  }

  .clubClasses .section-title {
    font-size: 26px;
  }

  .pattern-decoration {
    display: none;
  }

  .clubClassesSwiper {
    padding: 0px;
  }

  .clubClassesSwiper .club-testimonial-card {
    padding: 28px;
    min-height: auto;
  }

  .clubClassesSwiper .quote-icon svg {
    width: 40px;
  }

  .clubClassesSwiper .testimonial-text {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .clubClassesSwiper .author-name {
    font-size: 14px;
  }

  .clubClassesSwiper .author-org {
    font-size: 13px;
  }

  .clubClassesSwiper .swiper-button-prev,
  .clubClassesSwiper .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .clubClassesSwiper .swiper-button-prev:after,
  .clubClassesSwiper .swiper-button-next:after {
    font-size: 16px;
  }

  .clubClassesSwiper .swiper-pagination {
    bottom: -40px;
  }

  .eventThatInspired .title {
    font-size: 28px;
  }

  .eventInspiredSwiper {
    padding: 0 10px;
  }

  .eventInspiredSwiper .testimonial-card {
    padding: 24px;
    min-height: auto;
  }

  .eventInspiredSwiper .testimonial-text {
    font-size: 14px;
  }

  .eventInspiredSwiper .testimonial-author {
    font-size: 12px;
  }

  .eventInspiredSwiper .swiper-button-prev,
  .eventInspiredSwiper .swiper-button-next {
    width: 36px;
    height: 36px;
  }

  .eventInspiredSwiper .swiper-button-prev:after,
  .eventInspiredSwiper .swiper-button-next:after {
    font-size: 14px;
  }

  .eventInspiredSwiper .swiper-pagination {
    bottom: -30px;
  }
}

@media (max-width: 480px) {
  .clubClasses .section-title {
    font-size: 22px;
  }

  .clubClassesSwiper {
    padding: 0 0px;
  }

  .clubClassesSwiper .club-testimonial-card {
    padding: 24px;
    border-radius: 14px;
    border: 1px solid #ddd
  }

  .clubClassesSwiper .testimonial-text {
    font-size: 14px;
  }
}


/* A Growth Platform Section */
.aGrowthPlatform {
  background: linear-gradient(135deg, #FFF4E0 0%, #FFE8C5 100%);
}

.aGrowthPlatform .title h2 {
  font-size: 40px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.aGrowthPlatform .title p {
  font-size: 18px;
  color: #666;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

.platform-image-wrapper {
  padding: 20px;
}

.feature-cards-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card ul {
  padding-left: 15px;
  margin-bottom: 0px;
}

.feature-card ul li{
  margin-top: 5px;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(91, 72, 232, 0.15);
  border-color: rgba(91, 72, 232, 0.2);
}

.feature-icon {
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5B48E8;
  font-size: 24px;
}

.feature-icon i {
  font-size: 25px;
  margin-top: 3px;
}

.feature-content h4 {
  font-size: 24px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.feature-content p {
  /* font-size: 16px; */
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Responsive for A Growth Platform */
@media (max-width: 1199px) {
  .aGrowthPlatform .title h2 {
    font-size: 36px;
  }

  .aGrowthPlatform .title p {
    font-size: 17px;
  }

  .feature-card {
    padding: 24px 28px;
  }

  .feature-content h4 {
    font-size: 18px;
  }

  /* .feature-content p {
    font-size: 15px;
  } */
}

@media (max-width: 991px) {
  .aGrowthPlatform .title h2 {
    font-size: 32px;
  }

  .aGrowthPlatform .title p {
    font-size: 16px;
  }

  .platform-image-wrapper {
    padding: 0;
    margin-bottom: 20px;
  }

  .feature-card {
    padding: 22px 24px;
  }

  .feature-icon {
    font-size: 22px;
  }
}

@media (max-width: 767px) {

  .navbar .logo {
    height: 40px;
  }

  .whyFeatsclub h2 {
    font-size: 30px !important;
  }

  .socialPurpose h5{
    font-size: 18px;
  }

  .orgBanner .orgImg {
    position: absolute;
    height: 400px;
    width: 100%;
    object-fit: cover;
    right: 0px;
    left: unset;
    object-position: left;
  }

  .whyFeatsclub .highlightText {
    font-size: 18px;
  }

  .navbar .btn-main {
    padding: 8px 15px !important;
    font-size: 16px;
    margin-right: 20px !important;
  }

  .whyFeatsclub .highlightText span {
    font-size: 18px;
  }

  .impactAndPurpose .topSliderArea {
    padding: 20px;
  }

  .corporateEmpHero .esr1.v {
    right: 0px;
    top: 0px;
  }

  .navbar .navbar-toggler {
    padding: 0px;
    border: 0px;
    outline: 0px;
  }

  .navbar .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
    border: none;
  }

  .corporateEmpHero {
    padding-bottom: 40px;
  }

  .comingSoonSection {
    padding: 0px;
  }

  .coming-soon-content h1 {
    font-size: 40px;
  }

  .socialNetworkSection {
    background-position: 50% -150px;
  }

  .achievement img {
    height: 130px;
    object-fit: contain;
    display: block;
    margin: auto;
    margin-bottom: 30px;
  }

  .achievement h3 {
    font-size: 18px;
  }

  .achievement h3 b {
    font-size: 18px;
  }

  .socialNetworkSection .singleCard h5 img {
    width: 60px;
    height: 60px;
  }

  .becomeAnAmbassador p {
    font-size: 16px;
  }

  .empoweringWithAi h3 {
    font-size: 18px;
  }

  .heroSection {
    padding-top: 40px;
  }

  .heroSection h1 {
    font-size: 30px;
  }

  .whyFeatsclub .card {
    height: unset !important;
  }

  .whyFeatsclub .card .textBox {
    min-height: unset !important;
  }

  .whomWeServe h3 {
    font-size: 18px;
  }

  .whyFeatsclub h3 {
    font-size: 18px;
  }

  .socialNetworkSection .title h2 {
    font-size: 35px;
  }

  .whomWeServe h2 {
    font-size: 34px;
    text-align: center;
  }

  .heroSection .btn {
    margin-right: 0px !important;
    width: 100%;
    margin-bottom: 15px;
  }

  .marquee-wrap {
    height: 350px;
    margin-top: 30px;
    gap: 10px
  }

  .downloadAppSection {
    padding-top: 50px;
  }

  .downloadAPP {
    margin-bottom: 30px;
  }

  .successStory .singleStory {
    max-width: 100%;
    padding: 25px 25px;
  }

  .successStory .singleStory h5{
    font-size: 22px;
  }

  .successStory .container .bottom-logo{
    display: none;
  }
  .downloadAppSection h2 {
    font-size: 30px;
  }

  .downloadAppSection h3 {
    font-size: 18px;
    font-weight: 400;
    max-width: 100%;
  }

  .downloadAppSection .appScreenCarousels {
    display: flex;
    height: 350px;
    transform: rotate(5deg);
    margin-top: 30px;
  }

  .orgBanner {
    background: radial-gradient(circle at top left, rgb(158 151 255 / 45%), #9e97ff21 30%), radial-gradient(circle at top right, rgb(237 237 250), #e1929200 30%), radial-gradient(circle at bottom left, rgba(229, 220, 254, .5), transparent 30%);
    min-height: 400px;
    padding-bottom: 200px;
    padding-top: 50px;
  }

  .membershipAndFees {
    padding: 40px 0px;
  }

  .becomeAnAmbassador h2 {
    font-size: 30px;
    margin-top: 30px;
  }

  .empoweringWithAi img {
    margin-bottom: 30px;
  }

  .membershipAndFees .btn {
    margin-right: 0px !important;
    width: 100%;
    margin-top: 15px;
  }

  .membershipAndFees .downloadAPP img{
    margin-top: 0px;
  }

  .membershipAndFees .img-fluid {
    margin-top: 30px;
  }

  .schoolHero img {
    margin-top: 0px;
  }

  .schoolBenefits {
    padding-top: 60px;
  }

  .schoolBenefits .title {
    font-size: 30px;
    margin-bottom: 25px;
  }

  .schoolBenefits .singleFeetbackCard h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .schoolBenefits .benefitInAdvance .subTitle {
    font-size: 25px;
    max-width: 100%;
  }


  .schoolKeyFeature .title {
    font-size: 30px;
  }

  .schoolContact .title {
    font-size: 30px;
  }


  .heroEvent {
    padding-bottom: 60px;
  }


  .whyFeatsclub.event .swiper-slide .textBox {
    width: 100%;
  }

  .inspiringEvents .case-swiper .card {
    max-width: 95%;
    flex-direction: column;
  }

  .inspiringEvents .case-swiper .card img {
    width: 150px;
  }

  .frequentlyAskedQuestions .img1 {
    display: none;
  }

  .frequentlyAskedQuestions .img2 {
    display: none;
  }



  .whyFeatsclub.event .swiper-slide {
    width: 100%;
    height: unset;
  }

  .safety.event .col-md-4 {
    border: none;
  }

  .whyFeatsclub.event .swiper-slide img {
    height: 200px;
  }

  .whyFeatsclub.event .swiper-slide .textBox h5 {
    font-size: 25px;
  }

  .whyFeatsclub.event .swiper-slide .inner {
    flex-direction: column;
  }

  .heroEvent .eventHeroImg {
    position: static !important;
    width: 100%;
    margin-bottom: 30px;
  }

  .heroEvent .btn {
    margin-right: 0px !important;
    width: 100%;
    margin-top: 15px;
  }

  .aGrowthPlatform .title h2 {
    font-size: 30px;
  }

  .aGrowthPlatform .title p {
    font-size: 18px;
  }

  .feature-card {
    padding: 20px;
    gap: 16px;
  }

  .feature-icon {
    font-size: 20px;
  }

  .feature-content h4 {
    font-size: 20px;
  }

  /* .feature-content p {
    font-size: 14px;
  } */
}

@media (max-width: 480px) {
  .aGrowthPlatform .title h2 {
    font-size: 30px;
  }

  .feature-card {
    padding: 18px;
  }

  .feature-content h4 {
    font-size: 20px;
  }

  /* .feature-content p {
    font-size: 13px;
  } */
}


@media (max-width: 767px) {
  .downloadAppSection .appScreenCarousels .swiper {
    height: 400px;
  }

  .case-thumbs {
    padding: 6px 24px;
  }

  .case-thumbs .swiper-slide img {
    height: 72px;
  }

  .org-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1280px;
  }
}

@media (max-width: 1399px) {
  .footerNew .logoWrapper .logoFooter {
    width: 240px;
  }
}

@media (max-width: 1280px) {
  .footerNew .logoWrapper .logoFooter {
    width: 200px;
  }
}

@media (max-width: 1024px) {
  .footerNew {
    padding-top: 70px;
  }

  .footerNew .logoWrapper {
    width: 65%;
    display: none;
  }

  .footerNew .logoWrapper .logoHolder,
  .headerlarger {
    display: none;
  }

  .footerNew .logoWrapper .logoHolder.logoHolderTab,
  .whiteFooterLogo {
    display: block;
  }

  .footerNew .logoWrapper .logoFooter {
    left: 5%;
    display: none;
  }

  .footerNew .appColumn {
    width: 64%;
  }

  .footerNew .appColumn .downloadAppWrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
  }

  .footerNew h6 {
    margin: 0;
  }

  .footerNew .downloadAPP {
    display: flex;
    align-items: center;
    gap: 30px;
  }
}

@media (max-width: 768px) {

  .impactSwiper .impactCard {
    padding: 30px 20px;
  }

  .footerNew .logoWrapper .logoHolder.logoHolderTab,
  .footerNew h6 {
    display: none;
  }

  .footerNew .logoWrapper .logoFooter {
    display: none;
    top: 80%;
    left: 1%;
  }

  .footerNew .logoWrapper .logoFooter {
    display: none;
    top: 80%;
    left: 1%;
  }

  .footerNew .appColumn .downloadAppWrapper {
    gap: 20px;
    margin-top: 5px;
    justify-content: end;
  }

}

@media (max-width: 767px) {

  .discoverRecognision h2 {
    font-size: 20px;
  }

  .discoverRecognision {
    padding-top: 70px;
    background: url(../img/new-bg.png);
    padding-bottom: 200px;
    background-size: cover;
    background-position: 0px 45px;
  }

  .studentHero {
    min-height: unset;
    padding-top: 40px;
  }

  .keyBenefits .wrapperBox {
    max-width: 100%;
  }

  .impactAndPurpose .topSliderArea .mainImg {
    position: static;
    width: 100%;
    margin-bottom: 20px;
  }

  .impactAndPurpose .title {
    margin-bottom: 40px;
  }

  .keyBenefits .wrapperBox .nav-link {
    padding: 20px;
  }

  .commonSolutionForNonProfit .tab-content {
    margin-left: 0px;
    padding: 25px;
    padding-left: 30px;
    margin-top: 20px;
    height: unset;
  }

  .keyBenefits .tab-content img {
    display: none;
  }

  .studentHero .heroimg {
    position: static;
    width: 100%;
  }

  .studentHero .btn {
    margin-right: 0px !important;
    width: 100%;
    margin-top: 20px;
  }

  .footerNew {
    padding: 60px 20px;
  }

  .pricingNote .wrapper {
    display: block;
  }

  .pricingNote .wrapper img {
    margin-bottom: 25px;
    width: 100px !important;
  }

  .pricingNote .wrapper h5 {
    font-size: 30px;
  }

  .frequentlyAskedQuestions .img3 {
    display: none;
  }

  .frequentlyAskedQuestions .img4 {
    display: none;
  }

  .frequentlyAskedQuestions .btn-main {
    margin-top: 20px;
  }

  .everythingYouNeed .main {
    position: sticky;
    right: 0px;
    width: 100%;
    top: 50%;
    z-index: 0;
    transform: translate(0%, 0%);
    margin-top: 30px;
  }

  .notJustFunrising .title {
    max-width: 100%;
  }

  .notJustFunrising img {
    margin-bottom: 30px;
  }

  .donationHero .btn {
    margin-right: 0px !important;
    width: 100%;
    margin-top: 15px;
  }

  .donationHero .wrapper .a2 {
    position: absolute;
    right: 0px;
    top: 0px;
  }

  .donationHero .wrapper {
    width: 100%;
    /* margin-top: 30px; */
  }

  .platformHighlights .title {
    font-size: 30px;
    /* margin-bottom: 0px !important; */
  }

  .platformHighlights .col-md-8 h2 {
    text-align: center;
  }

  .platformHighlights .col-md-8 .text-muted {
    text-align: center;
  }

  .platformHighlights img {
    display: none;
  }

  .footerNew .appColumn,
  .footerNew .logoWrapper {
    width: 100%;
  }

  .footerNew .logoWhite {
    display: block;
    margin: auto auto 40px;
  }

  .footerNew .logoWhite2 {
    margin-bottom: 30px;
  }

  .footerNew .appColumn .downloadAppWrapper {
    display: none;
    text-align: center;
    justify-content: center;
  }

  .footerNavs .address {
    width: 100%;
    text-align: center;
    padding-top: 25px;
  }

  .footerNavs .address .d-flex {
    justify-content: center;
  }

}


/* ============================================
   COMPREHENSIVE RESPONSIVE FIXES FOR MOBILE & TABLET
   ============================================ */

@media (max-width: 767px) {
  /* Global Mobile Fixes */

  .clubClasses {
    margin-top: 0px;
    padding: 0px;
    margin-bottom: 30px;
  }

  .platformHighlights {
    margin-top: 0px !important;
  }

  .whyFeatsclub.event h2 br {
    display: none;
  }

  .safety .card {

    height: unset;
  }

  .howItWorks .card::before {
    display: none;
  }

  .howItWorks .card::after {
    display: none;
  }

  .howItWorks .card p {
    font-size: 18px;
  }

  /* .solution h2 {
        font-size: 35px;
    } */
  .solution h3 {
    font-size: 18px;
    font-weight: 400;
  }

  .solution .card {
    flex-direction: column;
  }

  .solution .card img {
    height: unset;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
  }

  .title h2 {
    font-size: 30px;
  }

  .socialNetworkSection .title h3 {
    font-size: 18px;
  }

  .socialNetworkSection .singleCard.org {
    margin-top: 0px;
  }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.aboutHero {
  background: linear-gradient(135deg, #fffbef 0%, #efe8d4 100%);
  min-height: 650px;
  display: flex;
  align-items: center;
}

#newsSection .join-cta-img {
  width: 167px !important;
  margin: auto;
  margin-bottom: 15px;
}

#newsSection h3 {
  font-size: 30px;
  padding-left: 0;
  margin: 0;
  font-weight: 400;
  color: #585858;
}

#newsSection h3 b {
  font-weight: 500;
  font-size: 30px;
  color: black;
}

.aboutHero .videoThumbnail {
  width: 90%;
  aspect-ratio: 16 / 9;
  margin: auto;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 6px 6px 0 0 #9a98b2;
  position: relative;
}

.aboutHero .videoThumbnail i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #565656ba !important;
  color: white;
  width: 68px;
  height: 68px;
  line-height: 68px;
  border-radius: 50%;
  text-align: center;
  font-size: 22px;
}


.ourStory .content p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #595c5f;
}

.missionVision h3 {
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 15px;
  color: black;
}

.missionVision p {
  font-size: 20px;
  line-height: 1.7;
  color: #595c5f;
  margin-bottom: 0px;
}

.missionBox,
.visionBox {
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
}


.ourTeam .teamCard {
  padding: 30px 20px;
  background: white;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.ourTeam .teamCard:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.ourTeam .teamCard h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000;
}

.ourTeam .teamCard .role {
  font-size: 16px;
  font-weight: 500;
  color: var(--deep-purple);
  margin-bottom: 4px;
}

.ourTeam .teamCard .location {
  font-size: 14px;
  color: #888;
}

.positionCard h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--deep-purple);
  margin-bottom: 10px;
}

.positionCard p {
  font-size: 16px;
  color: #595c5f;
  margin-bottom: 15px;
}

.recognition h3 {
  font-size: 32px;
  font-weight: 600;
  color: var(--deep-purple);
  margin-bottom: 10px;
}

.recognition .lead {
  font-size: 20px;
  color: #595c5f;
}

.ctaSection {
  background: linear-gradient(135deg, var(--deep-purple) 0%, var(--light-purple) 100%);
  color: white;
}

.ctaSection h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.ctaSection .lead {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
}

.ctaSection .btn-outline {
  background: white;
  color: var(--deep-purple);
  border: 2px solid white;
}

.ctaSection .btn-outline:hover {
  background: transparent;
  color: white;
  border: 2px solid white;
}

/* Responsive styles for About page */
@media (max-width: 768px) {
  .aboutHero h1 {
    font-size: 32px;
  }

  .ourStory .content p {
    font-size: 18px;
  }

  .missionVision h3 {
    font-size: 24px;
  }

  .ctaSection h2 {
    font-size: 28px;
  }
}

/* ============================================
   NEWS SECTION CAROUSEL
   ============================================ */

.newsSwiper {
  position: relative;
}

.newsSwiper .swiper-slide {
  height: auto;
}

.newsSwiper .singleNews {
  padding: 20px;
}

.newsSwiper .singleNews h3 {
  font-size: 24px;
  line-height: 1.4;
  margin-top: 20px;
  color: #000;
}

.newsSwiper .singleNews h3 b {
  color: var(--deep-purple);
}

.newsSwiper .join-cta-img {
  max-width: 200px;
  margin: 0 auto;
}

.newsSwiper .swiper-pagination {
  bottom: 0;
  left: 50%;
  width: auto;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.newsSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(71, 59, 240, 0.3);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.newsSwiper .swiper-pagination-bullet-active {
  background: var(--deep-purple);
  width: 30px;
  border-radius: 6px;
}

.blackStrip {
  background: url(../img/text-bg.png), #383838;
  padding: 48px 10px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.blackStrip h2 {
  color: white;
  font-size: 30px;
}

.aboutDescription {
  padding: 70px 0;
  background-color: #ffdb80;
  position: relative;
  overflow: hidden;
}

.aboutDescription::before {
  content: '';
  width: 341px;
  height: 590px;
  position: absolute;
  top: -131px;
  left: 0;
  background: url(../img/about-left-pattern.png);
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat;
}

.aboutDescription h2 {
  margin-bottom: 20px;
  font-size: 45px;
}

.aboutDescription p {
  margin-bottom: 30px;
  color: black;
}

.aboutDescription p small {
  font-size: 20px;
  opacity: 0.8;
}

.aboutDescription p big {
  font-size: 25px;
  font-weight: 500;
}


.ambcard {
  border: 1px solid #000;
  box-shadow: 5px 5px #9a98b2;
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  width: 100%;
}

.ambcard img {
  width: 100%;
  height: 265px;
  padding: 20px 20px 0;
}

.ambcard .ambImage,
.ambcard img,
.ctapatternbg,
.footerNew .logoWrapper,
.herobgimg img {
  object-fit: cover;
}

.ambcard .content {
  height: auto;
  padding: 20px;
  background: #fff;
  width: 100%;
}

.ambcard .content h4,
.ambnamehov h4 {
  font-size: 23px;
  font-weight: 600;
}

.ambcard .content span {
  color: #666;
  font-size: 15px;
  font-weight: 600;
}

.ambcardhovercontent {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #9e97ff;
  color: #f8f7fa;
  padding: 20px;
  display: none;
  border-radius: 20px;
}

.ambcardhovercontent p,
.footerNew .copyright a {
  font-size: 16px;
  color: #fff;
}

.ambnamehov {
  position: absolute;
  bottom: 40px;
}

#allfaq,
#epicbanner,
#hometabcontent,
.ambcard:hover .ambcardhovercontent,
.mainnav li.dropdown:hover .dropdown-menu {
  display: block;
}


.ourTeam .title h2 {
  font-size: 45px;
}


@media (max-width: 768px) {
  .newsSwiper .singleNews h3 {
    font-size: 20px;
  }

  .newsSwiper .join-cta-img {
    max-width: 150px;
  }

}


@media (max-width: 767px) {

  * {
    font-size: 16px;
  }

  .becomeAnAmbassador h2 span {
    font-size: 30px;
  }

  .socialPurpose h2 span {
    font-size: calc(1.375rem + 1.5vw);
  }

  .empoweringWithAi .ai-content h5 {
    font-size: 20px;
  }


  #newsSection h3 {
    font-size: 25px;
  }

  #newsSection h3 b {
    font-size: 25px;
  }

  .newsSwiper .singleNews {
    padding: 0px;
  }

  .aboutHero {
    padding-top: 40px;
  }

  .aboutHero .videoThumbnail {
    margin-top: 50px;
  }

  .blackStrip h2 {
    font-size: 25px;
  }

  .aboutDescription::before {
    display: none;
  }

  .aboutDescription h2 {
    font-size: 35px;
  }

  .aboutDescription p big {
    font-size: 20px;
  }

  .aboutDescription p {
    font-size: 18px;
  }

  .ambcard img {
    height: 150px !important;
    padding: 10px 10px 0;
  }

  .ambcard .content {
    padding: 16px !important;
  }

  .ambcard .content h4 {
    font-size: 16px !important;
    margin-bottom: 5px;
  }

  .ambcard .content span {
    font-size: 10px !important;
  }

  .ambcardhovercontent {
    display: none !important;
  }

  .ourTeam .title h2 {
    font-size: 30px !important;
  }

}

/* ============================================
   AMBASSADOR PAGE STYLES
   ============================================ */

.ambassadorHero {
  background: #473bf0;
}

.ambassadorHero img {
  width: 85%;
}

.ambassadorHero h1 {
  font-size: 75px;
  font-weight: 600;
  line-height: 75px;
  color: #fff;
}

.ambassadorHero h1 span {
  font-size: 26px;
  font-weight: 400;
  display: block;
}

.ambassadorHero .lead {
  font-size: 20px;
  color: #fff;
  line-height: 1.7;
}


.ambassadorBenefits {
  background: #faf7f3;
}


.ambassadorBenefits .benefitCard {
  padding: 30px 20px;
  background: white;
  border-radius: 12px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #ddd;
}

/* .ambassadorBenefits .benefitCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
} */

.ambassadorBenefits .benefitCard h4 {
  font-size: 23px;
  font-weight: 500;
  margin-bottom: 12px;
}

.ambassadorBenefits .benefitCard p {
  color: #595c5f;
  margin: 0;
}


.ambassadorForm {
  padding: 70px 0;
  padding-bottom: 100px;
  background: url(../img/am-bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
}

.ambassadorForm .formCard {
  background: white;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #2c2c2c;
  box-shadow: 6px 6px 0 #cfd3da;
}

.ambassadorForm .form-label {
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
}

.ambassadorForm .form-control {
  border: 1px solid #000;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 16px;
}

.ambassadorForm .form-control:focus {
  border-color: var(--deep-purple);
  box-shadow: 0 0 0 0.2rem rgba(71, 59, 240, 0.25);
}

.ambassadorForm textarea.form-control {
  resize: vertical;
  min-height: 120px;
}





/* Responsive styles for Ambassador page */
@media (max-width: 768px) {
  .ambassadorHero h1 {
    font-size: 40px;
    line-height: 1;
  }

  .ambassadorHero .lead {
    font-size: 18px;
  }

  .ambassadorForm .formCard {
    padding: 30px 20px;
    border: 1px solid #ccc;
  }

  .ambassadorHero img {
    width: 100%;
    margin-bottom: 30px;
  }

  .ambassadorHero h1 span {
    font-size: 22px;
    margin-top: 20px;
  }
}


/* Support Page Styles */
.ambassadorHero.support {
  background: #9e97ff;
}

.accountDelete .titleNew {
  text-align: center;
  font-weight: 500;
  font-size: 45px;
}

.accountDelete p a {
  color: #473bf0;
}

/* Responsive styles for Support page */
@media (max-width: 768px) {
  .accountDelete .titleNew {
    font-size: 35px;
  }
}


/* Blog Page Styles */
.blogHero {
  background: linear-gradient(135deg, var(--yellow) 0%, #FFE8BB 100%);
  padding: 100px 0 80px 0;
}

.blogHero h1 {
  font-size: 56px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.blogHero .lead {
  font-size: 20px;
  color: #2c2c2c;
}

.featuredPost h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.featuredPost .badge {
  background: var(--deep-purple) !important;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
}

.blogCategories .btn-category {
  border: 2px solid var(--deep-purple);
  color: var(--deep-purple);
  background: white;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin: 5px;
}

.blogCategories .btn-category:hover,
.blogCategories .btn-category.active {
  background: var(--deep-purple);
  color: white;
}

.blogCard {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); */
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
  cursor: pointer;
}


.blogCard .blogImage {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.blogCard .blogImage img {
  border-radius: 20px 20px 0 0;
  transition: transform 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.blogCard .blogBadge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  color: #595c5f;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  border-top: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blogCard .blogBadge i {
  font-size: 16px;
}

.blogCard .blogContent {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: white;
}

.blogCard h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #000;
  line-height: 1.3;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 62px;
}

.blogCard .blogMeta {
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}

.blogCard .blogAuthor {
  color: #888;
  font-size: 14px;
  font-weight: 500;
}

.blogCard .blogDate {
  color: #999;
  font-size: 13px;
  font-weight: 400;
}

.blogCard .blogDescription {
  color: #595c5f;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 72px;
}

.blogCard p {
  color: #595c5f;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.blogCard .blogLink {
  color: var(--deep-purple);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.blogCard .blogLink:hover {
  color: var(--light-purple);
  transform: translateX(5px);
}

.blogPagination .pagination {
  gap: 10px;
}

.blogPagination .page-link {
  border: 2px solid var(--deep-purple);
  color: var(--deep-purple);
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.blogPagination .page-link:hover {
  background: var(--deep-purple);
  color: white;
  border-color: var(--deep-purple);
}

.blogPagination .page-item.active .page-link {
  background: var(--deep-purple);
  border-color: var(--deep-purple);
  color: white;
}

.blogPagination .page-item.disabled .page-link {
  border-color: #ddd;
  color: #999;
}

/* Blog Detail Page Styles */
.blogDetail {
  background: #f7f7f7;
  padding-top: 50px;
}

.blogDetail .container {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.blogDetailHeader h1 {
  font-size: 36px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 20px;
}

.blogBadgeDetail {
  display: inline-flex;
  align-items: center;
  background: #f0f0f0;
  color: #2d2d2d;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid #e5e5e5;
}

.blogBadgeDetail i {
  margin-right: 6px;
  color: var(--deep-purple);
}

.blogMetaDetail p {
  color: #666;
  font-weight: 500;
}

.blogMetaDetail i {
  color: var(--deep-purple);
}

.blogFeaturedImage {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.blogFeaturedImage img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 400px;
  background: #000;
}

.blogContentDetail {
  font-size: 16px;
  line-height: 1.7;
  color: #2d2d2d;
}

.blogContentDetail .lead {
  font-size: 18px;
  font-weight: 400;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.6;
}

.blogContentDetail h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 30px;
  margin-bottom: 12px;
}

.blogContentDetail h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 25px;
  margin-bottom: 12px;
}

.blogContentDetail p {
  margin-bottom: 16px;
}

.blogContentDetail ul,
.blogContentDetail ol {
  margin-bottom: 20px;
  padding-left: 10px;
}

.blogContentDetail ul li,
.blogContentDetail ol li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.blogContentDetail strong {
  color: #1a1a1a;
  font-weight: 600;
}

.blogCTA {
  background: linear-gradient(135deg, var(--deep-purple) 0%, var(--light-purple) 100%);
  border-radius: 12px;
  text-align: center;
  margin-top: 40px;
}

.blogCTA h4 {
  color: white;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.blogCTA p {
  color: white;
  opacity: 0.95;
  font-size: 15px;
}

.blogCTA .btn-main {
  background: white;
  color: var(--deep-purple);
  border: none;
  font-weight: 600;
}

.blogCTA .btn-main:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.blogShare {
  border-top: 1px solid #e5e5e5;
  padding-top: 30px;
  margin-top: 40px;
}

.blogShare h5 {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.shareBtn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f5f5f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2d2d2d;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid #e5e5e5;
}

.shareBtn:hover {
  background: var(--deep-purple);
  color: white;
  transform: translateY(-2px);
  border-color: var(--deep-purple);
}

.relatedBlogs {
  background: var(--light-gray);
}

.relatedBlogs h2 {
  font-size: 36px;
  font-weight: 600;
  color: #000;
}

.blogNewsletter h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.blogNewsletter .form-control {
  border: 1px solid #000;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 16px;
}

.blogNewsletter .form-control:focus {
  border-color: var(--deep-purple);
  box-shadow: 0 0 0 0.2rem rgba(71, 59, 240, 0.25);
}

.blogPosts {
  background: #f5f5f5;
}

/* Privacy Policy Page Styles */
.privacyPolicy {
  background: #f9f9f9;
  font-size: 15px;
  line-height: 1.6;
  padding: 50px 0;
}

.privacyPolicy .container {
  max-width: 1200px;
}

.privacyPolicy .content {
  background: white;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.privacyPolicy h3 {
  font-size: 22px;
  font-weight: 600;
  color: #2d2d2d;
  margin-top: 25px;
  margin-bottom: 12px;
}

.privacyPolicy h3 strong {
  font-size: 25px;
  font-weight: 600;
}

.privacyPolicy h2 {
  font-size: 25px;
}

.privacyPolicy b {
  font-weight: 500;
}

.privacyPolicy h2 strong {
  font-size: 25px;
  font-weight: 600;
}

.privacyPolicy p {
  font-size: 16px;
  color: #444;
  margin-bottom: 12px;
  line-height: 1.6;
}

.privacyPolicy ul {
  padding-left: 15px;
  margin-bottom: 12px;
}

.privacyPolicy ul li {
  font-size: 16px;
  color: #444;
  margin-bottom: 8px;
  line-height: 1.6;
}

.privacyPolicy a {
  color: var(--deep-purple);
  text-decoration: none;
}

.privacyPolicy a:hover {
  color: var(--light-purple);
  text-decoration: underline;
}

.privacyPolicy strong {
  font-weight: 600;
  color: #2d2d2d;
}

/* Sidebar Navigation */
.privacyPolicy .sidepanel {
  position: sticky;
  top: 100px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  list-style: none;
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #d5d5d5 transparent;
}

.privacyPolicy .sidepanel::-webkit-scrollbar {
  width: 6px;
}

.privacyPolicy .sidepanel::-webkit-scrollbar-track {
  background: transparent;
}

.privacyPolicy .sidepanel::-webkit-scrollbar-thumb {
  background-color: #d5d5d5;
  border-radius: 3px;
}

.privacyPolicy .sidepanel::-webkit-scrollbar-thumb:hover {
  background-color: #b5b5b5;
}

.privacyPolicy .sidepanel li {
  margin-bottom: 8px;
}

.privacyPolicy .sidepanel a {
  display: block;
  font-size: 16px;
  color: #666;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.privacyPolicy .sidepanel a:hover {
  background: #f5f5f5;
  color: var(--deep-purple);
  text-decoration: none;
}

.privacyPolicy .sidepanel a.active {
  background: var(--deep-purple);
  color: white;
}

/* Table Styles */
.privacyPolicy table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 13px;
}

.privacyPolicy table td {
  padding: 12px;
  border: 1px solid #ddd;
  vertical-align: top;
}

.privacyPolicy table td p {
  margin-bottom: 8px;
}

.privacyPolicy table td p:last-child {
  margin-bottom: 0;
}

.imagePosition {
  position: absolute;
  top: calc(50% - 170px);
  left: 50%;
  transform: translateX(-50%);
  height: 310px !important;
}

.imagePosition2 {
  position: absolute;
  top: calc(50% - 140px);
  left: 50%;
  transform: translateX(-50%);
  height: 230px !important;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .privacyPolicy .sidepanel {
    position: relative;
    top: 0;
    margin-bottom: 25px;
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .privacyPolicy {
    padding: 30px 0;
  }

  .privacyPolicy .content {
    padding: 20px;
  }

  .privacyPolicy h3 {
    font-size: 16px;
  }

  .privacyPolicy p,
  .privacyPolicy ul li {
    font-size: 14px;
  }

  .privacyPolicy .sidepanel {
    padding: 15px;
    max-height: 300px;
    display: none;
  }

  .privacyPolicy .sidepanel a {
    font-size: 11px;
    padding: 6px 10px;
  }

  .privacyPolicy table {
    font-size: 11px;
  }

  .privacyPolicy table td {
    padding: 8px;
  }
}

.calendy {
  padding: 70px 0;
  min-height: calc(100vh - 450px);
  display: flex;
  align-items: center;
  background: #f6f6f6;
}

.calendy .wrapper {
  border: 1px solid #ddd;
  border-radius: 20px;
  margin: auto;
  background: white;
}


/* Responsive styles for Blog page */
@media (max-width: 768px) {
  .calendy {
    padding: 40px 0;
    padding-top: 0px;
  }

  .calendy .wrapper {
    border: none;
  }

  .blogDetail {
    padding-top: 30px;
  }

  .blogFeaturedImage {
    margin-top: 20px;
  }

  .blogMetaDetail {
    gap: 10px !important;
  }

  .blogDetail .container {
    padding: 25px 20px;
    border-radius: 12px;
  }

  .blogDetailHeader h1 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .blogFeaturedImage {
    margin-bottom: 20px;
  }

  .blogFeaturedImage img {
    max-height: 250px;
  }

  .blogContentDetail {
    font-size: 15px;
  }

  .blogContentDetail .lead {
    font-size: 16px;
  }

  .blogContentDetail h3 {
    font-size: 20px;
    margin-top: 25px;
  }

  .blogContentDetail h4 {
    font-size: 18px;
    margin-top: 20px;
  }

  .blogCTA h4 {
    font-size: 20px;
  }

  .blogCTA p {
    font-size: 14px;
  }

  .blogHero h1 {
    font-size: 40px;
  }

  .blogHero .lead {
    font-size: 18px;
  }

  .featuredPost h2 {
    font-size: 28px;
    margin-top: 20px;
  }

  .blogNewsletter h2 {
    font-size: 28px;
  }

  .blogCategories .btn-category {
    font-size: 14px;
    padding: 8px 16px;
  }

  .blogCard h4 {
    font-size: 18px;
  }

  .whomWeServe img {
    display: none;
  }

  .whomWeServe .lead {
    font-size: 16px;
    text-align: center;
  }
}


@media (max-width: 767px) {

  .imagePosition{
    top: calc(50% - 165px);
    height: 280px !important;
  }
  .imagePosition2 {
    top: calc(50% - 130px);
    height: 200px !important;
  }

  .lowCost .text{
    padding-top: 50px;
    padding-bottom: 200px;
    position: relative;
    background: url(../img/hi.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
  }

  .lowCost h4 {
    font-size: calc(1.375rem + 1.5vw);
  }

  .lowCost p {
    font-size: 16px;
  }

  .lowCost p br {
    display: none;
  }

  .donationHero {
    padding: 40px 0px
  }

  .simpleToHost.event .card img {
    margin-top: 30px;
    margin-bottom: 0;
  }

  .howItWorks {
    background: #fff;
  }

  .safety-card {
    margin-bottom: 5px;
  }

  .safety {
    background: #f7f7f7;
  }

  .lowerFees .wrapper img {
    height: 100px;
  }

  .frequentlyAskedQuestions .fc-faq {
    padding: 20px;
  }

  .simpleToHost.event .card h5 span {
    width: 40px;
    min-width: 40px;
    text-align: center;
  }

  .simpleToHost.event .card h5 {
    font-size: 20px;
    justify-content: center;
  }

  .simpleToHost .card p {
    padding-left: 0px;
    text-align: center;
  }

  .schoolHero {
    padding-bottom: 0px;
    padding-top: 40px;
    min-height: unset;
  }

  .nonProfitOrgHero {
    padding: 40px 0px;
  }

  .ambassadorHero {
    padding: 40px 0px;
  }

  .schoolHero .heroimg {
    position: static;
    width: 100%;
    right: 0px;
    bottom: 0px;
    height: -webkit-fill-available;
    object-fit: contain;
    object-position: unset;
  }

  .benefitInAdvance img {
    margin-bottom: 30px;
  }

  .successStory .singleStory ul li h4 {
    font-size: 30px;
  }

  .schoolKeyFeature .col {
    width: 100%;
    min-width: 100%;
  }

  .schoolKeyFeature .card{
    padding: 12px 0px;
  }
  .schoolKeyFeature .card h5 {
    min-height: unset;
    font-size: 22px !important;
    margin-top: 16px;
  }
  .schoolKeyFeature.bagOther .card h5{
    margin-top: 0;
  }
  .schoolKeyFeature .card ul li{
    font-size: 14px !important;
  }

  .contentCard.two h5{
    min-height: unset;
    font-size: 20px !important;
    /* margin-top: 20px; */
  }
  .student .contentCard.two h5{
    margin-top: 20px;
  }
  .imageOfContent img{
    border-radius: 10px;
  }
  .contentCard ul li{
    font-size: 16px !important;
  }

  .commonSolutionForNonProfit .contentCard h5{
    min-height: unset;
    font-size: 22px !important;
    /* margin-top: 20px; */
    margin-bottom: 10px;
  }

  .becomeAnAmbassador {
    text-align: center;
  }

  .becomeAnAmbassador img {
    width: 250px;
  }

  .empoweringWithAi .ai-features-card {
    gap: 25px;
  }

  .marquee-wrap img {
    height: 120px;
  }

  .navbar .nav-item.dropdown .nav-link {
    font-size: 18px;
  }

  .navbar .nav-item .nav-link {
    font-size: 18px;
  }

}


/* ========================================
   Key Features New - Card Grid Layout
   ======================================== */

.keyFeaturesNew {
  background-color: #f9f9fb;
}

.feature-card-new {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-card-new__image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.feature-card-new__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.feature-card-new__content {
  padding: 20px 24px 24px;
}

.feature-card-new__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.feature-card-new__title i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--deep-purple) 0%, var(--light-purple) 100%);
  color: #ffffff;
  border-radius: 8px;
  font-size: 14px;
}

.feature-card-new__title h5 {
  margin: 0;
  font-size: 24px;
  color: #1a1a2e;
}

.feature-card-new ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-card-new ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  /* font-size: 16px; */
  line-height: 1.5;
}

.feature-card-new ul li:last-child {
  margin-bottom: 0;
}

.feature-card-new ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background-color: var(--deep-purple);
  border-radius: 50%;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .feature-card-new__image {
    height: 160px;
  }
}

@media (max-width: 767.98px) {
  .keyFeaturesNew .row {
    gap: 0;
  }

  .feature-card-new__image {
    height: 180px;
  }

  .feature-card-new__content {
    padding: 16px 20px 20px;
  }

  .feature-card-new__title h5 {
    font-size: 20px;
  }

  .studentHero h1{
    font-size: 30px;
  }

  .studentHero p {
    font-size: 18px;
}
.impactAndPurpose .topSliderArea h5{
  font-size: 18px;
}

.simpleToHost .title.mb-5{
  margin-bottom: 1rem !important;
}

.buildForStudent .title h2{
  margin-bottom: 15px !important;
}

.impactSwiper .impactCard h3{
  font-size: 24px;
}

.impactSwiper .quoteText p{
  font-size: 16px;
}

.platformHighlights .card h5{
  font-size: 22px;
}

h1{
  font-size: 30px;
}
.orgBanner p{
  font-size: 18px;
}

.orgBanner h1{
  margin-bottom: 15px;
}

.safety-card h5{
  font-size: 22px;
}

.heroEvent h1{
  font-size: 30px;
}

.heroEvent p {
  font-size: 18px;
}

.safety.event .card h5{
  font-size: 22px;
}

.event-card-content h5{
  font-size: 22px;
}

.fc-accordion .accordion-button{
  font-size: 16px;
}

.fc-accordion .accordion-item{
  margin-bottom: 20px;
}

.donationHero p{
  font-size: 18px;
}

.notJustFunrising ul li h5{
  font-size: 22px;
}

.membershipAndFees p{
  font-size: 18px;
}

.title p br{
  display: none;
}

.classHeroSection p{
  font-size: 18px;
  margin-top: 18px;
}

.schoolHero p{
  font-size: 18px;
}

.schoolBenefits .singleFeetbackCard::before {
  content: "\f10e";
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  right: 20px;
  font-weight: 700;
  color: var(--deep-purple);
  font-size: 55px;
  top: -24px;
  line-height: 1;
}
.benefitInAdvance .subTitle{
  font-size: 18px;
}

.benefitInAdvance .card h5{
  font-size: 22px;
}

.benefitInAdvance .card ul li {
  margin-top: 10px;
  font-size: 16px;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.schoolKeyFeature{
  padding-top: 70px;
  padding-bottom: 70px;
}

.nonProfitOrgHero p{
  font-size: 18px;
}

.solution-header h4{
  font-size: 22px;
}

.buildCommunity .featureCard p{
  font-size: 16px;
}


.corporateEmpHero p{
  font-size: 18px;
}


}


/* Contact Us Page */
.contactCard {
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  padding: 40px;
}

.contactCard .form-control,
.contactCard .form-select {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 18px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contactCard .form-control:focus,
.contactCard .form-select:focus {
  border-color: var(--deep-purple);
  box-shadow: 0 0 0 0.2rem rgba(71, 59, 240, 0.15);
}

.contactCard textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.contactCard .form-label {
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
  font-size: 18px;
}

.contactCard .btn-main {
  font-size: 18px;
  border-radius: 10px;
  padding: 14px 30px !important;
}

.contactInfoCard {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--light-gray);
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  margin-bottom: 16px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.contactInfoCard:hover {
  border-color: var(--deep-purple);
  box-shadow: 0 4px 16px rgba(71, 59, 240, 0.08);
}

.contactInfoIcon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--deep-purple);
  color: #fff;
  font-size: 20px;
}

.contactInfo h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-black);
  margin-bottom: 8px;
}

.contactInfo a {
  color: var(--deep-purple);
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  word-break: break-all;
}

.contactInfo a:hover {
  text-decoration: underline;
}

.contactInfo p {
  font-size: 18px;
}

.contactInfo .socialLink {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--deep-purple);
  color: var(--deep-purple);
  font-size: 18px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, color 0.2s;
}

.contactInfo .socialLink:hover {
  background: var(--deep-purple);
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

#formSuccess i {
  color: var(--deep-purple);
}

#formSuccess p {
  font-size: 18px;
}

@media (max-width: 991px) {
  .contactCard {
    padding: 24px;
  }

  .contactInfo {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .contactInfoCard {
    flex: 1 1 calc(50% - 8px);
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .contactCard {
    padding: 20px;
    box-shadow: none;
    border: 1px solid #eee;
  }

  .contactInfoCard {
    flex: 1 1 100%;
  }

  .contactCard .form-control,
  .contactCard .form-select,
  .contactCard .form-label,
  .contactCard .btn-main,
  .contactInfo h5,
  .contactInfo a,
  .contactInfo p,
  #formSuccess p {
    font-size: 16px;
  }
}