/* 
 * Content Sections Styles
 * ARISE Landing Page
 */

.section-title {
    font-size: 4.0625rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.2;
}

/* Project Goals Section */
.project-goals-section {
    padding: 61px 71px;
    margin: 35px 30px;
    background-color: var(--teal);
    border-radius: 40px;
}

.project-goals-section .section-title {
    color: white;
    text-align: start;
    font-size: 4.0625rem;
    margin-bottom: 61px;
}

.project-goals-section .row,
.project-goals-section .row > * {
    margin: 0;
}

@media (max-width: 768px) {
    .project-goals-section .row .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.goal-card {
    background-color: var(--primary-dark-blue);
    color: #ffffff;
    padding: 45px 54px 62px 54px;
    border-radius: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    text-align: start;
    transition: transform 0.2s ease;
}

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

.goal-title {
    font-size: 2.4375rem;
    font-weight: 700;
    margin-bottom: 34px;
    color: #ffffff;
    line-height: 1.2;
}

.goal-divider {
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    margin-bottom: 40px;
    margin-top: 0;
}

.goal-description {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
}

/* How It Works Section */
.how-it-works-section {
    padding-top: 40px;
    padding-bottom: 0;
    background-color: #fff;
}

.how-it-works-wrapper {
    max-width: 100%;
    padding: 0;
}

.how-it-works-flow {
    position: relative;
    max-width: 1100px;
    margin: 60px auto 0;
    height: 750px;
}

.step-item {
    position: absolute;
}

.step-1 {
    top: 0%;
    left: 5%;
}

.step-2 {
    top: 28%;
    right: 5%;
}

.step-3 {
    top: 55%;
    left: 25%;
}

.step-circle {
    width: 300px;
    height: 225px;
    overflow: hidden;
    position: relative;
}

.step-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    transition: opacity 0.8s ease-in-out;
}

.step-image.fade-out {
    opacity: 0;
}

.step-label {
    padding: 14px 10px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1875rem;
    color: #ffffff;
    white-space: nowrap;
    text-align: center;
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    min-width: 292px;
}

.step-label-blue {
    background-color: var(--primary-dark-blue);
}

.step-label-light-blue {
    background-color: var(--light-blue);
}

.step-label-teal {
    background-color: var(--teal);
}

.step-arrow {
    position: absolute;
    z-index: 1;
}

.arrow-1 {
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: auto;
}

.arrow-2 {
    top: 64%;
    left: 62%;
    transform: translateX(-50%);
    width: 200px;
    height: auto;
}


/* Who Is It For Section */
.who-is-it-for-section {
    padding: 80px 0;
}

.who-is-it-for-section .who-is-it-for-container {
    padding: 0 96px;
    gap: 35px;
    display: flex;
    flex-direction: column;
}

.who-is-it-for-row {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.who-is-it-for-row:first-child .who-title-box {
    flex: 0 0 45%;
}

.who-is-it-for-row:first-child .audience-card {
    flex: 1;
}

.who-is-it-for-row:last-child .audience-card:first-child {
    flex: 1;
    padding-right: 100px;
    padding-left: 100px;
    text-wrap: balance;
}

.who-is-it-for-row:last-child .audience-card:last-child {
    flex: 0 0 45%;
}

.who-title-box {
    background-color: #ffffff;
    padding: 30px;
    border: 1px solid var(--light-blue);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 380px;
}

.who-title-box .section-title {
    margin: 0;
    color: var(--text-dark);
    font-size: 4.0625rem;
    font-weight: 700;
}

.audience-card {
    padding: 30px;
    border-radius: 30px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.audience-card-blue {
    background-color: var(--light-blue);
}

.audience-card-dark-blue {
    background-color: var(--primary-dark-blue);
}

.audience-card-teal {
    background-color: var(--teal);
}

.audience-title {
    font-size: 4.0625rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}

body.mic-toolbox-fonts-simple .who-title-box .section-title {
    font-size: 3.25rem;
}

body.mic-toolbox-fonts-simple .audience-title {
    font-size: 3.25rem;
}

body.mic-toolbox-fonts-simple .audience-card {
    padding: 25px;
}

body.mic-toolbox-fonts-simple .who-title-box {
    padding: 25px;
}

body.mic-toolbox-fonts-simple .who-is-it-for-row:last-child .audience-card:first-child {
    padding-right: 80px;
    padding-left: 80px;
}

/* Partners Section */
.partners-section {
    padding: 0 150px;
    margin-bottom: 62px;
}

#partners-title { 
    font-size: 4.0625rem;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.2;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.partner-logo {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Stats Section */
.stats-section {
    padding: 57px 213px;
    background-color: var(--primary-dark-blue);
}

.stats-container {
    display: flex;
    gap: 100px;
    align-items: start;
    justify-content: space-between;
}

.stats-title {
    color: #ffffff;
    font-size: 4.0625rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 50px;
    flex-shrink: 0;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1;
}

.stats-card-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 32px;
}

.stats-grid .stats-card-row:first-child {
    justify-content: flex-start;
}

.stats-grid .stats-card-row:last-child {
    justify-content: flex-end;
}

.stat-card {
    background-color: var(--light-blue);
    color: #ffffff;
    padding: 49px 85px 48px 55px;
    border-radius: 80px;
    display: flex;
    flex-direction: column;
    min-width: 477px;
}

.stat-number {
    font-size: 4.875rem;
    font-weight: semibold;
    margin-bottom: 10px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.stat-label {
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.3;
    color: #ffffff;
    opacity: 0.9;
}

/* Success Stories Section */
.success-stories-section {
    background-color: #fff;
    padding-bottom: 0;
    overflow: hidden;
}

.stories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 150px 50px 150px;
}

.stories-title {
    font-size: 4.0625rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.btn-view-all {
    display: none;
}

.stories-carousel-wrapper {
    background-color: var(--light-blue);
    padding: 40px 0 30px 0;
    overflow: hidden;
}

.stories-carousel {
    padding: 0 150px 40px;
    overflow: hidden;
}

.stories-carousel .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.swiper-slide.story-card {
    width: auto;
    background-color: transparent;
    padding: 0 20px 0 20px;
    height: auto;
    position: relative;
}

.stories-carousel .swiper-slide.story-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #1A479B;
}

.stories-carousel .swiper-slide.story-card:last-child::after {
    display: none;
}

@media (max-width: 1023px) {
    .stories-carousel .swiper-slide.story-card::after {
        display: none;
    }
    .swiper-slide.story-card {
        padding: 0 20px 0 20px;
    }
}

.story-author-name {
    font-size: 2.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.story-author-role {
    font-size: 1.375rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 40px 0;
    line-height: 1.3;
}

.story-quote {
    font-size: 1.375rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
}

.carousel-btn {
    background-color: var(--teal);
    color: #ffffff;
    border: none;
    width: 100px;
    height: 70px;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.carousel-arrow {
    width: 42px;
    height: auto;
    object-fit: contain;
}

.stories-pagination {
    display: flex !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: auto !important;
    margin: 0 !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.stories-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #3355A6;
    opacity: 0.2;
    border-radius: 50%;
    border: none;
    transition: opacity 0.3s;
}

.stories-pagination .swiper-pagination-bullet-active {
    background-color: #3355A6;
    opacity: 1;
}

.stories-pagination-placeholder {
    display: none;
}
