@font-face {
    font-family: ClashDisplay;
    src: url(../font/ClashDisplay-Variable.ttf);
}

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

a{
    text-decoration: none;
}

* {
    font-family: ClashDisplay;
    font-size: 18px;
}

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

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

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

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

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

.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;
}

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

.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: 50px;
}

.heroSection p {
    margin-bottom: 25px;
}


.marquee-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    height: 600px;
    /* 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%);
}

.vertical-up,
.vertical-down {
    height: 100%;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    padding: 8px;
    overflow: hidden;
}

.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;
}


.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: unset !important;
}

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

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

.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 .textBox{
    min-height: 200px;
}

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

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

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

.whyFeatsclub .card p {
    margin-bottom: 0px;
    margin-top: 10px;
    color: #5f5f5f;
}

.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;
}

.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;
}

.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: 45px;
}

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

.whomWeServe .card {
    border-radius: 15px;
    border: none;
    overflow: hidden;
}

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

.whomWeServe .card img {
    height: 220px;
    object-fit: cover;
}

.whomWeServe .card a {
    font-weight: 500;
    text-decoration: none;
    color: var(--light-purple);
    transition: 0.3s;
}

.whomWeServe .card a i {
    margin-left: 10px;
    transition: 0.3s;
}

.whomWeServe .card h5 {
    font-size: 25px;
}

.whomWeServe .card p {
    min-height: 110px;
    color: #5f5f5f;
}

.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: 45px;
}

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

.empoweringWithAi {
    padding: 70px 0px;
}

.empoweringWithAi h2 {
    font-size: 45px;
}

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

.empoweringWithAi .nav-pills {
    display: block;
}

.empoweringWithAi .nav-pills .nav-link {
    width: 100%;
    text-align: left;
    color: black;
    border: 1px solid #929292;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.empoweringWithAi .nav-pills .nav-link i {
    width: 40px;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    /* border: 1px solid #696ae661; */
    opacity: 0;
    background: #696ae61c;
}

.empoweringWithAi .nav-pills .nav-link.active i {
    opacity: 1;
}

.empoweringWithAi .nav-pills .nav-link p {
    margin-bottom: 0px;
}

.empoweringWithAi .nav-pills .nav-link.active {
    background: white;
    color: var(--light-purple) !important;
    position: relative;
    border: none;
}

.empoweringWithAi .nav-pills .nav-link.active h5{
   color: var(--deep-purple);
}

.empoweringWithAi .nav-pills .nav-link.active p{
    color: var(--deep-purple)
}




.empoweringWithAi .nav-pills .nav-link.active::before {
    content: '';
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    background: linear-gradient(90deg, var(--light-purple) 0%, var(--yellow) 100%);
    position: absolute;
    top: -4px;
    left: -4px;
    z-index: -1;
    border-radius: 15px;
}












.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: 45px;
    margin-bottom: 20px;
}

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

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

.downloadAPP img {
    height: 55px;
}


.orgBanner {
  padding: 70px 0px;
  background-image: url(../img/org-bg.png);
  background-size: 100%;
  background-color: 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%);
  background-position: 0% 100%;
  background-repeat: no-repeat;
}

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

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

.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;
}

.solution h2 {
    font-size: 45px;
}

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

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

.solution .card img{
    height: 345px;
    width: 220px;
    border-radius: 10px;
    object-fit: cover;
}

.solution .card .toppart {
    margin-bottom: 10px;
}

.solution .card .toppart p {
    margin-bottom: 0px;
    color: #5f5f5f;
}

.solution .card .toppart i {
    font-size: 35px;
    width: 80px;
    min-width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background: #6364d830;
    border-radius: 10px;
    color: #6364d8;
    font-weight: 700;
}

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

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

.solution .card ul li:first-child {
    margin-top: 0px;
}

.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 .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;
}


.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;
}


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

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


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

.safety.event .col-md-4 {
    border-right: 1px solid #2125293b;
}

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

.safety.event .card {
    background: transparent;
    padding: 0px;
    text-align: center;
    display: block;
}

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

.safety.event .card h5 {
    font-size: 25px;
}

.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;
}

.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:0; margin-bottom:30px; }
.fc-accordion .accordion-button{
    background: #fff;
    border: 1px solid #2c2c2c;
    border-radius: 10px;
    box-shadow: 6px 6px 0 #cfd3da;
    font-weight: 500;
    padding: 18px 20px;
    color: black;
}
.fc-accordion .accordion-button:focus{ box-shadow:6px 6px 0 #cfd3da, 0 0 0 .2rem rgba(51,63,229,.15); }
.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;
}

/* .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: var(--light-yellow);
}

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

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

.schoolBenefits .singleFeetbackCard{
    padding: 30px;
    border: 1px solid #2c2c2c;
    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: 30px;
}

.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;
}


.schoolBenefits .benefitInAdvance{
    margin-top: 60px;
}

.schoolBenefits .benefitInAdvance .subTitle{
    font-size: 30px;
    max-width: 90%;
    margin: auto;
    margin-bottom: 20px;
    margin-top: 10px;
}

.schoolBenefits .benefitInAdvance .card{
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 15px;
    border: 1px solid #696ae663;
    background: #696ae60f;
}

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

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

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

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

.schoolBenefits .benefitInAdvance .card h5{
    color: var(--deep-purple);
}

.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 .title{
    font-size: 45px;
    margin-bottom: 20px;
}

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

.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: 0px;
}


.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: 20px;
}

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


.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;
}

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


.schoolContact{
    padding-top: 60px;
    padding-bottom: 60px;
    background: var(--light-gray);
}

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

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

.schoolContact form .form-control{
    border: 1px solid #2c2c2c;
    box-shadow: 3px 3px 0 #cfd3da;
    border-radius: 0px;
    padding: 10px 15px;
}

.schoolContact form .form-select{
    border: 1px solid #2c2c2c;
    box-shadow: 3px 3px 0 #cfd3da;
    border-radius: 0px;
    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;
    box-shadow: -4px 6px 0px #fff;
    transition: transform 0.3s ease;
  }


  .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: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    text-align: left;
    
    /* justify-content: center; */
  }

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

  .frequentlyAskedQuestions{
    position: relative;
  }

  .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 .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;
  }

  .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: 50px;
    min-width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background: #9e97ff;
    border-radius: 10px;
    font-size: 23px;
    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: rgba(207, 206, 252, 1);
    padding: 40px 0px;
  }

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

  .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 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: white;
    color: rgba(51, 63, 229, 1);
    box-shadow: 0px 0px 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: 1px solid #ddd;
    border-radius: 10px;
  }

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

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

  .commonSolutionForNonProfit .tab-content img{
    height: 200px;
    width: 100%;
    object-fit: cover;
    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: #f8f7fa;
  }


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

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

  .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: 16px;
    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;
  }

  .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;
  }

  .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);
  }


  /* 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: calc(100vh - 82px);
  display: flex;
  align-items: center;
}

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


.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;
}

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

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

.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%;
}

/* ============================================
   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;
}

/* ============================================
   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: 200px;
  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: black;
  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;
} 



  /* 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) {
    .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;
    }

    .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;
    }

    .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: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: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 5px;
  }

  .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) {


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

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

    .achievement img {
      height: 167px;
      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: 18px;
    }

    .empoweringWithAi h3{
      font-size: 18px;
    }
    .heroSection{
      padding-top: 40px;
    }
    .heroSection h1{
      font-size: 30px;
    }

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

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

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

    .whomWeServe h2{
      font-size: 35px;
    }

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

    .marquee-wrap{
      height: 400px;
      margin-top: 30px;
    }

    .downloadAppSection{
      padding-top: 50px;
    }
    .downloadAPP{
      margin-bottom: 30px;
    }
    .successStory .singleStory{
      max-width: 100%;
    }
    .downloadAppSection h2{
      font-size: 35px;
    }

    .downloadAppSection h3 {
      font-size: 20px;
      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%);
    }
    .membershipAndFees {
        padding: 40px 0px;
    }

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

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

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

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

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

    .schoolBenefits {
        padding-top: 60px;
    }

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

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

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


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

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


    .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: 17px;
    }

    .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: 16px;
    }

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


@media (max-width: 767px) {
    .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) {

    .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;
    }
    
    .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;
    }

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

    .studentHero .heroimg{
        position: static;
        width: 100%;
        margin-top: 30px;
    }

    .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;
    }

    .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;
    }

    .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;
    }

    .safety .card{
        margin-bottom: 20px;
        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: 16px;
        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: 35px;
    }
    .socialNetworkSection .title h3 {
        font-size: 18px;
    }
    .socialNetworkSection .singleCard.org{
        margin-top: 0px;
    }
}
