/* ==========================================================================
   SWAM ABOUT US PAGE STYLES
   Unified stylesheet for About SWAM hero, history timeline, leadership & programs
   ========================================================================== */

/* =========================================
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               BASE STYLES & VARIABLES
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ========================================= */
:root {
    --navy-900: #061632;
    --navy-800: #0d2753;
    --navy-700: #153975;
    --gold-400: #e3be6a;
    --gold-500: #c59d43;
    --gold-600: #a37e31;
    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-plus-jakarta-sans);
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utility Classes */
.swam-container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gold-gradient {
    background: linear-gradient(to right, #f6e27a, #c59d43, #dcb75f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gold-gradient {
    background: linear-gradient(to right, #dcb75f, #a37e31);
}

/* =========================================
                                                                                                                                                                                                                                                                                                                                                       ABOUT US HERO / HEADER SECTION
                                                                                                                                                                                                                                                                                                                                                       ========================================= */
.swam-about-hero {
    position: relative;
    background-color: #000e2e;
    background-image:
        linear-gradient(180deg,
            #000e2e 0%,
            rgba(0, 14, 46, 0.706) 50%,
            rgba(2, 38, 135, 0.5) 70%,
            rgba(2, 38, 135, 1) 100%),
        url('/assets/images/about-us/header-background.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 90px 0 280px;
    color: #ffffff;
    overflow: hidden;
}

.swam-about-hero-badge-wrap {
    margin-bottom: 24px;
}

.swam-about-glass-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 14px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.swam-about-glass-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

.swam-about-hero-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
}

.swam-about-hero-left {
    flex: 1.2;
}

.swam-about-hero-title {
    font-family: var(--font-plus-jakarta-sans);
    font-size: clamp(36px, 4.8vw, 62px);
    font-weight: 300;
    line-height: 1.12;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.swam-about-hero-right {
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
}

.swam-about-hero-desc {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14.5px;
    line-height: 1.65;
    font-weight: 300;
    max-width: 400px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* =========================================
                                                                                                                                                                                                                                                                                                                                                               /* =========================================
                                                                                                                                                                                                   SHOWCASE (VISION + STATS + JOIN US) SECTION
                                                                                                                                                                                                   ========================================= */
.swam-showcase-section {
    position: relative;
    background: #032683;
    padding: 80px 0 120px;
    color: #ffffff;
    overflow: hidden;
}

/* Left and Right Background Visuals */
.swam-showcase-bg-left {
    position: absolute;
    left: 0;
    top: 180px;
    width: 44%;
    max-width: 600px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.88;
}

.swam-showcase-bg-left img {
    width: 100%;
    height: auto;
    display: block;
}

.swam-showcase-bg-right {
    position: absolute;
    right: 0;
    top: 40px;
    width: 38%;
    max-width: 520px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.88;
}

.swam-showcase-bg-right img {
    width: 100%;
    height: auto;
    display: block;
}

.swam-showcase-container {
    position: relative;
    z-index: 2;
}

.swam-vision-center {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 64px;
}

.swam-vision-badge-wrap {
    margin-bottom: 24px;
}

.swam-vision-glass-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 18px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.swam-vision-main-title {
    font-family: var(--font-plus-jakarta-sans);
    font-size: clamp(34px, 4.2vw, 54px);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 28px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.swam-vision-main-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14.5px;
    line-height: 1.7;
    font-weight: 300;
    max-width: 720px;
    margin: 0 auto;
}

.swam-vision-main-desc p {
    margin-bottom: 16px;
}

.swam-vision-main-desc p:last-child {
    margin-bottom: 0;
}

/* Glass Stats Card */
.swam-stats-glass-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 34px 48px 48px;
    margin-bottom: 72px;
}

.swam-stats-card-title {
    text-align: center;
    font-family: var(--font-plus-jakarta-sans);
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 34px;
    letter-spacing: 0.3px;
}

.swam-stats-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.swam-stats-card-col {
    text-align: left;
    padding: 0 28px;
}

.swam-stats-card-col:not(:first-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.swam-stats-num {
    font-family: var(--font-plus-jakarta-sans);
    font-size: clamp(34px, 3.5vw, 50px);
    font-weight: 700;
    background: linear-gradient(180deg, #E9C266 0%, #FFEAB9 51%, #E9C266 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.swam-stats-label {
    font-size: 13.5px;
    font-weight: 600;
    color: #f7ca45;
    letter-spacing: 0.2px;
    line-height: 1.35;
}

/* Join Us Action Row */
.swam-join-action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.swam-join-action-left {
    max-width: 560px;
}

.swam-join-action-title {
    font-family: var(--font-plus-jakarta-sans);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.swam-join-action-subtitle {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

.swam-join-action-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 270px;
    min-width: 270px;
}

.swam-btn-gold {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(180deg, #fcd068 0%, #f6b43d 100%);
    color: #0b1c3d;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 13px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(246, 180, 61, 0.3);
}

.swam-btn-gold i {
    font-size: 16px;
    font-weight: 700;
}

.swam-btn-gold:hover {
    background: linear-gradient(180deg, #fde078 0%, #d97706 100%);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(246, 180, 61, 0.45);
}

.swam-btn-navy-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #E9C266;
    color: #ffffff;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 13px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.swam-btn-navy-outline:hover {
    background: #0b3296;
    border-color: #3b82f6;
    color: #ffffff;
    transform: translateY(-2px);
}

/* =========================================
                                                                                                                                       TIMELINE (OUR JOURNEY) SECTION
                                                                                                                                       ========================================= */
.swam-timeline-section {
    padding: 90px 24px 110px;
    background: #eef3f8;
    position: relative;
    overflow: hidden;
}

.swam-timeline-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(245, 248, 252, 0.88) 0%, rgba(232, 238, 244, 0.82) 48%, rgba(223, 229, 236, 0.9) 100%), url('/assets/images/about-us/bg-our-jurney.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}

.swam-timeline-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.swam-timeline-title {
    text-align: center;
    color: #0c2d67;
    margin-bottom: 56px;
    font-family: var(--font-plus-jakarta-sans);
    font-size: clamp(34px, 4.2vw, 54px);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.swam-journey-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

/* Central vertical line */
.swam-journey-container::before {
    content: '';
    position: absolute;
    top: 36px;
    bottom: -24px;
    left: 50%;
    width: 2px;
    background: #112853;
    transform: translateX(-50%);
    z-index: 1;
}

.swam-journey-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    width: 100%;
    z-index: 2;
}

.swam-journey-item.item-left {
    justify-content: flex-start;
}

.swam-journey-item.item-right {
    justify-content: flex-end;
}

.swam-journey-item.item-left .swam-journey-card {
    width: calc(50% - 36px);
    margin-right: auto;
    margin-left: 0;
}

.swam-journey-item.item-right .swam-journey-card {
    width: calc(50% - 36px);
    margin-left: auto;
    margin-right: 0;
}

/* Timeline Dot centered on vertical line */
.swam-journey-dot {
    position: absolute;
    left: 50%;
    top: 36px;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #112853;
    box-shadow: 0 0 0 3px #eef3f8;
    z-index: 3;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.swam-journey-item:hover .swam-journey-dot {
    transform: translate(-50%, -50%) scale(1.25);
    background: #194092;
}

/* Horizontal connector stem */
.swam-journey-item.item-left::after {
    content: '';
    position: absolute;
    right: 50%;
    top: 36px;
    width: 36px;
    height: 2px;
    background: #112853;
    z-index: 1;
}

.swam-journey-item.item-right::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 36px;
    width: 36px;
    height: 2px;
    background: #112853;
    z-index: 1;
}

.swam-journey-card {
    background: linear-gradient(145deg, #194092 0%, #13347c 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 22px 26px;
    box-shadow: 0 10px 28px rgba(10, 30, 80, 0.18);
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    z-index: 2;
}

.swam-journey-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(10, 30, 80, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

.swam-journey-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.swam-journey-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 4px 12px;
    color: #E9C266;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    flex-shrink: 0;
    line-height: 1.3;

    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.swam-journey-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.8),
            transparent);
}

.swam-journey-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.8),
            transparent,
            rgba(255, 255, 255, 0.3));
}

.swam-journey-desc {
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
    margin: 0;
}

.swam-journey-bullets {
    display: flex;
    flex-direction: column;
    margin-top: 6px;
}

.swam-journey-bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 11px;
    margin-top: 11px;
}

.swam-journey-arrow {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    flex-shrink: 0;
    line-height: 1.4;
}

.swam-journey-bullet-text {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 300;
}

/* Timeline ending footer */
.swam-journey-footer {
    position: relative;
    margin-top: 42px;
    text-align: center;
    z-index: 2;
}

.swam-journey-footer-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #112853;
    box-shadow: 0 0 0 3px #eef3f8;
    margin: 0 auto 12px;
}

.swam-journey-footer-text {
    display: inline-block;
    font-family: var(--font-plus-jakarta-sans);
    font-size: 19px;
    font-weight: 600;
    color: #112853;
    letter-spacing: 0.3px;
}

/* =========================================
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               GLOBAL (BUTTONS) SECTION
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ========================================= */
.swam-global {
    padding: 0 0 96px;
    position: relative;
    text-align: center;
    overflow: hidden;
    border-radius: 50px;
    margin: 100px;
    background-image: url('/assets/images/about-us/bg-swam-global.webp');
    background-position: top center;
    background-size: cover;
}

.swam-global-content {
    position: relative;
    z-index: 10;
    padding-top: 338px;

}

.swam-global-title {
    font-family: var(--font-elegant);
    font-weight: 400;
    color: #fff;
    font-size: 64px;
    margin-bottom: 64px;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.swam-global-actions {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.swam-global-actions a {
    text-decoration: none;
}

.swam-global-actions a:hover {
    transform: scale(1.05);
}

.swam-global-actions img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.swam-btn-purple {
    border-radius: 28px;
    padding: 24px 32px;
    width: 320px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 18px 40px rgba(9, 16, 54, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    background-size: cover;
    border: none;
    font-family: var(--font-elegant);

}

.swam-btn-purple:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 22px 50px rgba(9, 16, 54, 0.48);
}

.swam-btn-purple h3 {
    color: #fff;
    font-size: 36px;
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 500;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.swam-btn-purple:hover h3 {
    color: #fde047;
    /* yellow-300 */
}

.swam-btn-badge {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    padding: 4px 29px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.swam-btn-text {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 12px;
    width: 100%;
}

/* =========================================
                                                                                                                                                                                                                                                                                                                                                                                                                       OUR PROGRAMS SECTION
                                                                                                                                                                                                                                                                                                                                                                                                                       ========================================= */
.swam-our-programs {
    background: radial-gradient(ellipse at center, #032683 0%, #032683 65%, #032683 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.swam-our-programs::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(227, 190, 106, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.swam-programs-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 2;
}

.swam-programs-title {
    /* text-align: center;
                                                                                                                                    font-size: 62px;
                                                                                                                                    color: #0c2d67;
                                                                                                                                    margin-bottom: 64px;
                                                                                                                                    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
                                                                                                                                    font-style: italic;
                                                                                                                                    font-weight: 500;
                                                                                                                                    text-transform: none; */

    text-align: center;
    color: #0c2d67;
    margin-bottom: 56px;
    font-family: var(--font-plus-jakarta-sans);
    font-size: clamp(34px, 4.2vw, 54px);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: 1.5px;
    text-transform: uppercase;

}

.swam-programs-divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #f6e27a, #c59d43, #a37e31);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(227, 190, 106, 0.5);
}

/* Programs Slider */
.programs-slider-wrapper {
    position: relative;
    z-index: 2;
    padding: 0 10px;
}

.programs-carousel .owl-stage-outer {
    border-radius: 22px;
    overflow: hidden;
}

.program-slide-item {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(227, 190, 106, 0.35);
    background: rgba(12, 39, 83, 0.6);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(227, 190, 106, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.program-slide-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(227, 190, 106, 0.22);
    border-color: rgba(227, 190, 106, 0.6);
}

.program-slide-card {
    width: 100%;
    display: block;
    border-radius: 0;
    overflow: hidden;
    line-height: 0;
}

.program-slide-card:first-child {
    border-bottom: 1px solid rgba(227, 190, 106, 0.2);
}

.program-slide-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    object-fit: cover;
}

.programs-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    margin-top: 0;
    left: 0;
    z-index: 10;
    padding: 0 5px;
}

.programs-carousel .owl-nav button.owl-prev,
.programs-carousel .owl-nav button.owl-next {
    pointer-events: auto;
    width: 46px;
    height: 46px;
    border-radius: 50% !important;
    background: rgba(6, 22, 50, 0.88) !important;
    border: 1px solid rgba(227, 190, 106, 0.45) !important;
    color: #f6e27a !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 16px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease !important;
    margin: 0;
}

.programs-carousel .owl-nav button.owl-prev {
    transform: translateX(-15px);
}

.programs-carousel .owl-nav button.owl-next {
    transform: translateX(15px);
}

.programs-carousel .owl-nav button.owl-prev:hover,
.programs-carousel .owl-nav button.owl-next:hover {
    background: linear-gradient(135deg, #dcb75f, #a37e31) !important;
    color: #ffffff !important;
    border-color: #f6e27a !important;
    box-shadow: 0 6px 20px rgba(227, 190, 106, 0.4);
}

.programs-carousel .owl-dots {
    margin-top: 24px !important;
    text-align: center;
}

.programs-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 5px;
    background: rgba(255, 255, 255, 0.3) !important;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
}

.programs-carousel .owl-dots .owl-dot.active span {
    width: 28px;
    background: linear-gradient(90deg, #f6e27a, #c59d43) !important;
    box-shadow: 0 0 10px rgba(227, 190, 106, 0.5);
}

/* =========================================
                                                                                   PARTNERS (LOGOS) SECTION
                                                                                   ========================================= */
.swam-partners {
    background: linear-gradient(180deg, #032683 0%, #02123d 50%, #010a20 100%);
    padding: 70px 0 90px;
    position: relative;
    overflow: hidden;
}

.swam-partners-title {
    text-align: center;
    color: #ffffff;
    font-family: var(--font-plus-jakarta-sans);
    font-size: clamp(24px, 2.6vw, 36px);
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 48px;
}

.swam-partners-marquee-container {
    display: flex;
    flex-direction: column;
    gap: 36px;
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.swam-partners-track-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
    user-select: none;
}

.swam-partners-track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    will-change: transform;
}

.swam-partners-track:hover {
    animation-play-state: paused !important;
}

/* Baris 1: Kiri ke Kanan (Left to Right) */
.track-row-1 {
    animation: marquee-scroll-right 34s linear infinite;
}

/* Baris 2: Kanan ke Kiri (Right to Left) */
.track-row-2 {
    animation: marquee-scroll-left 34s linear infinite;
}

@keyframes marquee-scroll-right {
    0% {
        transform: translateX(-50%);
    }

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

@keyframes marquee-scroll-left {
    0% {
        transform: translateX(0%);
    }

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

.swam-partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 105px;
    min-width: 180px;
    padding: 0 8px;
    flex-shrink: 0;
}

.swam-partner-item img {
    max-height: 90px;
    max-width: 210px;
    width: auto;
    object-fit: contain;
    opacity: 0.95;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.45));
    transition: all 0.3s ease;
}

.swam-partner-item:hover img {
    opacity: 1;
    transform: scale(1.08);
    filter: drop-shadow(0 6px 18px rgba(255, 255, 255, 0.3));
}

/* =========================================
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               FOOTER
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ========================================= */
.swam-footer {
    background-color: #040e21;
    color: #d1d5db;
    padding: 64px 24px 24px;
    border-top: 1px solid #1f2937;
}

.swam-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.swam-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.swam-footer-logo i {
    font-size: 32px;
}

.swam-footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.swam-footer-links {
    list-style: none;
}

.swam-footer-links li {
    margin-bottom: 12px;
    font-size: 14px;
}

.swam-footer-links a:hover {
    color: var(--gold-400);
}

/* Footer Form */
.swam-footer-form {
    display: flex;
    background: #fff;
    border-radius: 4px;
    padding: 4px;
    margin-bottom: 24px;
}

.swam-footer-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 8px 12px;
    font-size: 14px;
}

.swam-footer-form button {
    background: #e5e7eb;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.swam-footer-form button:hover {
    background: #d1d5db;
}

/* Social Icons */
.swam-socials {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.swam-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #fff;
    color: var(--navy-900);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swam-socials a:hover {
    background: var(--gold-400);
    color: #fff;
}

.swam-copyright {
    font-size: 12px;
    color: #6b7280;
}

/* Footer Bottom */
.swam-footer-bottom {
    border-top: 1px solid #1f2937;
    margin-top: 48px;
    padding-top: 24px;
    text-align: center;
    font-size: 12px;
    color: #6b7280;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.swam-footer-bottom a:hover {
    color: #fff;
}

.swam-title-desktop {
    display: block;
}

.swam-title-mobile {
    display: none;
    font-size: 32px;
    color: #1d1864ff
}

/* =========================================
                                                                                                                                                                                                                                                                                                                                                           RESPONSIVE (MEDIA QUERIES)
                                                                                                                                                                                                                                                                                                                                                           ========================================= */
@media (max-width: 992px) {
    .swam-about-hero {
        padding: 55px 0 200px;
        background-position: center top;
    }

    .swam-about-hero-badge-wrap {
        margin-bottom: 22px;
    }

    .swam-about-hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .swam-about-hero-right {
        justify-content: flex-start;
    }

    .swam-about-hero-title {
        font-size: 36px;
        line-height: 1.15;
    }

    .swam-about-hero-desc {
        font-size: 15px;
        line-height: 1.6;
        max-width: 100%;
    }


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

    .swam-partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .swam-global-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .swam-timeline-item:nth-child(odd)::after,
    .swam-timeline-item:nth-child(even)::before {
        width: calc(50% - 52% - 10px);
    }

    .swam-showcase-section {
        padding: 60px 0 70px;
    }

    .swam-showcase-bg-left,
    .swam-showcase-bg-right {
        opacity: 0.35;
        width: 55%;
    }

    .swam-vision-center {
        margin-bottom: 40px;
    }

    .swam-vision-main-title {
        font-size: 30px;
    }

    .swam-vision-main-desc {
        font-size: 14px;
    }

    .swam-stats-glass-card {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .swam-stats-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 0;
    }

    .swam-stats-card-col {
        padding: 0 16px;
    }

    .swam-stats-card-col:nth-child(even) {
        border-left: 1px solid rgba(255, 255, 255, 0.16);
    }

    .swam-stats-card-col:nth-child(odd) {
        border-left: none;
    }

    .swam-join-action-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .swam-join-action-right {
        width: 100%;
        min-width: 100%;
    }

    .swam-btn-gold,
    .swam-btn-navy-outline {
        width: 100%;
    }

    /* Timeline / Journey Cards Mobile */
    .swam-timeline-section {
        padding: 60px 16px 80px;
    }

    .swam-timeline-title {
        margin-bottom: 36px;
        font-size: 28px;
    }

    .swam-journey-container {
        gap: 22px;
    }

    .swam-journey-container::before {
        left: 18px;
        transform: none;
        top: 28px;
        bottom: -16px;
    }

    .swam-journey-item {
        margin-bottom: 0;
        justify-content: flex-start !important;
    }

    .swam-journey-item.item-left .swam-journey-card,
    .swam-journey-item.item-right .swam-journey-card {
        width: calc(100% - 44px) !important;
        margin-left: 44px !important;
        margin-right: 0 !important;
        padding: 18px 16px;
    }

    .swam-journey-dot {
        left: 18px !important;
        top: 32px !important;
    }

    .swam-journey-item.item-left::after,
    .swam-journey-item.item-right::after {
        left: 18px !important;
        right: auto !important;
        top: 32px !important;
        width: 26px !important;
    }

    .swam-journey-footer {
        text-align: left;
        padding-left: 44px;
        margin-top: 24px;
    }

    .swam-journey-footer-dot {
        position: absolute;
        left: 18px;
        top: 4px;
        transform: translateX(-50%);
        margin: 0;
    }

    .swam-journey-footer-text {
        font-size: 16px;
    }

    .swam-journey-header {
        gap: 12px;
    }

    .swam-journey-badge {
        font-size: 12px;
        padding: 3px 10px;
    }

    .swam-journey-desc {
        font-size: 14px;
    }

    .swam-journey-bullet-text {
        font-size: 13px;
    }

    .swam-partner-item {
        min-width: 140px;
        height: 74px;
        padding: 0 4px;
    }

    .swam-partner-item img {
        max-height: 62px;
        max-width: 150px;
    }

    .swam-partners-track {
        gap: 28px;
    }

    .swam-footer-grid {
        grid-template-columns: 1fr;
    }

    .swam-btn-purple {
        width: 100%;
        max-width: 320px;
    }

    .swam-global {
        padding-bottom: 72px;
        margin: 0px;
        border-radius: 0;
    }

    .swam-global-hero {
        height: 260px;
    }

    .swam-global-content {
        padding-top: 180px;
    }

    .swam-global-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .swam-title-desktop {
        display: none;
    }

    .swam-our-programs {
        padding: 70px 0;
    }

    .swam-programs-header {
        margin-bottom: 40px;
    }

    .swam-programs-title {
        font-size: 32px;
    }

    .programs-slider-wrapper {
        padding: 0;
    }

    .programs-carousel .owl-nav {
        display: none;
    }
}