/* Clean Consolidated CSS for IFCA Presentation */
/* All styles moved from HTML <style> tag to this external file */

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Arial", sans-serif;
    background: linear-gradient(135deg, #1a237e 0%, #311b92 50%, #4a148c 100%);
    color: white;
    overflow: hidden;
    height: 100vh;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bridgeBuild {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

@keyframes rotate3D {
    from {
        transform: rotateY(0deg) rotateX(0deg);
    }
    to {
        transform: rotateY(360deg) rotateX(360deg);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ===== IMPRESS.JS STEP STYLES ===== */
.step {
    width: 1000px;
    padding: 40px;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.step.active {
    opacity: 1;
}

/* ===== ENHANCED SLIDE STYLES ===== */
.enhanced-slide {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: visible;
    margin: 0 auto;
    max-width: 100%;
    box-sizing: border-box;
}

/* ===== TITLE SLIDE EFFECTS ===== */
.title-container {
    text-align: center;
    padding: 60px;
}

.floating-islands {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.island {
    width: 240px;
    height: 260px;
    border-radius: 25px;
    border: 4px solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    animation: float 6s ease-in-out infinite;
    padding: 20px 15px;
    box-sizing: border-box;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.island:hover {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.island.pr {
    background: linear-gradient(135deg, #ff4081, #ff9800);
    border-color: #ff9800;
    animation-delay: 0s;
}

.island.pr::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite linear;
}

.island.jp {
    background: linear-gradient(135deg, #00bcd4, #2196f3);
    border-color: #2196f3;
    animation-delay: 0.5s;
}

.island.jp::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite linear 1.5s;
}
.island img {
    max-width: 80%;
    max-height: 50%;
    border-radius: 12px;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
    margin-top: 10px;
    object-fit: contain;
}

.island:hover img {
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
    transform: scale(1.08);
}

.island h3 {
    margin: 5px 0;
    font-size: 1.4rem;
    font-weight: bold;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
    z-index: 2;
    position: relative;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
    color: white;
}

.island .flag-emoji {
    font-size: 2.5rem;
    margin: 5px 0;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.4));
    z-index: 2;
    position: relative;
    transition: transform 0.3s ease;
}

.island:hover .flag-emoji {
    transform: scale(1.2);
}

.bridge {
    height: 10px;
    background: linear-gradient(90deg, #ff4081, #00bcd4);
    margin: 40px auto;
    width: 0;
    animation: bridgeBuild 2s ease 1s forwards;
    border-radius: 5px;
}

/* ===== CULTURAL FUSION EFFECTS ===== */
.fusion-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin: 40px 0;
}

.culture-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-align: center;
    border: 2px solid;
    min-width: 300px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.culture-card.salsa {
    border-color: #ff4081;
    animation-delay: 0.5s;
}

.culture-card.japan {
    border-color: #00bcd4;
    animation-delay: 1s;
}

.fusion-heart {
    font-size: 3rem;
    color: #ff4081;
    animation: pulse 2s infinite;
}

/* ===== VIDEO OVERLAY EFFECTS ===== */
.video-container {
    position: relative;
    display: inline-block;
    margin: 20px 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.overlay-text {
    padding: 20px;
    color: white;
    text-align: left;
}

/* ===== CIRCLE MODEL ===== */
.circle-model {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 40px auto;
}

.circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff4081, #ff9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.circle-point {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid;
}

.point-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-color: #00bcd4;
}

.point-2 {
    top: 75%;
    left: 85%;
    transform: translate(-50%, -50%);
    border-color: #ff9800;
}

.point-3 {
    top: 75%;
    left: 15%;
    transform: translate(-50%, -50%);
    border-color: #ff4081;
}

.connection-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    transform-origin: left center;
}

.line-1 {
    transform: rotate(0deg);
}

.line-2 {
    transform: rotate(120deg);
}

.line-3 {
    transform: rotate(240deg);
}

/* ===== PARTICLE EFFECTS ===== */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ff4081;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
}

/* ===== SLIDE SPECIFIC STYLES ===== */

/* For Slide 1: Opening */
.subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    margin: 20px 0;
    text-align: center;
}

/* For Slide 2: Othering content */
.othering-content {
    margin: 30px 0;
}

.othering-quote {
    background: rgba(255, 64, 129, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 5px solid #ff4081;
    display: flex;
    align-items: center;
    gap: 20px;
}

.quote-icon {
    font-size: 3rem;
    min-width: 60px;
    text-align: center;
}

.quote-text {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    flex: 1;
}

.othering-definition {
    background: rgba(0, 188, 212, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 5px solid #00bcd4;
    display: flex;
    align-items: center;
    gap: 20px;
}

.definition-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
}

.definition-text {
    font-size: 1.3rem;
    line-height: 1.6;
    flex: 1;
}

.definition-text strong {
    color: #00bcd4;
}

.citation {
    background: rgba(0, 188, 212, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin: 25px 0;
    border-left: 5px solid #00bcd4;
    display: flex;
    align-items: center;
    gap: 20px;
}

.citation-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.citation-text {
    font-size: 1rem;
    line-height: 1.5;
    flex: 1;
    font-style: normal;
}

.citation-text em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.othering-universal {
    background: rgba(255, 152, 0, 0.1);
    border-radius: 15px;
    padding: 30px;
    border: 3px solid rgba(255, 152, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 20px;
}

.universal-icon {
    font-size: 3rem;
    min-width: 60px;
    text-align: center;
}

.universal-text {
    font-size: 1.3rem;
    line-height: 1.8;
    flex: 1;
}

.universal-text strong {
    color: #ff9800;
    display: block;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

/* For Othering Visual Slides */
.othering-visual {
    margin: 40px 0;
}

.visual-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.othering-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.visual-container:hover .othering-image {
    transform: scale(1.05);
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 25px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.visual-container:hover .visual-overlay {
    transform: translateY(0);
}

.overlay-text {
    color: white;
    font-size: 1.3rem;
    text-align: center;
    line-height: 1.6;
}

.othering-insight {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border-left: 5px solid;
}

.othering-insight:nth-child(1) {
    border-left-color: #ff4081;
}

.othering-insight:nth-child(2) {
    border-left-color: #00bcd4;
}

.othering-insight:nth-child(3) {
    border-left-color: #ff9800;
}

.insight-icon {
    font-size: 3rem;
    min-width: 60px;
    text-align: center;
}

.insight-text {
    font-size: 1.4rem;
    line-height: 1.6;
    flex: 1;
    font-weight: 600;
}

/* Image container for slide images */
.image-container {
    max-width: 800px;
    margin: 30px auto;
    text-align: center;
}

.slide-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: block;
    margin: 0 auto;
}

/* Optional: Different sizes for different contexts */
.slide-image.medium {
    max-width: 600px;
}

.slide-image.small {
    max-width: 400px;
}

.slide-image:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.quote {
    font-style: italic;
    font-size: 1.3rem;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border-left: 5px solid #ff9800;
}

/* For Slide 2: Othering visualization */
.visual-metaphor {
    margin: 40px 0;
    height: 200px;
    position: relative;
}

.isolated-dots {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
}

.isolated-dots::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.dot {
    width: 60px;
    height: 60px;
    background: #ff4081;
    border-radius: 50%;
    opacity: 0.7;
    animation: pulse 2s infinite;
    position: relative;
    z-index: 2;
}

.content {
    margin-top: 40px;
}

.point {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.point::before {
    content: "•";
    color: #ff4081;
    font-size: 2rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.highlight {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ff9800;
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 152, 0, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 152, 0, 0.3);
}

/* For Slide 3: Bridge visualization */
.bridge-visual {
    margin: 40px 0;
}

.bridge-image-container {
    height: 200px;
    background: linear-gradient(
        135deg,
        rgba(255, 64, 129, 0.3),
        rgba(0, 188, 212, 0.3)
    );
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.bridge-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bridge-quote {
    font-size: 1.4rem;
    font-style: italic;
    text-align: center;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    line-height: 1.6;
}

.bridge-connections {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    position: relative;
}

.connection-point {
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    min-width: 180px;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid;
    z-index: 2;
}

.connection-point.left {
    border-color: #ff4081;
}

.connection-point.right {
    border-color: #00bcd4;
}

.point-label {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.point-icon {
    font-size: 2.5rem;
}

.bridge-span {
    flex: 1;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 80px;
    position: relative;
    margin: 0 20px;
}

.bridge-span::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ff4081, #00bcd4);
    border-radius: 3px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.bridge-pillar {
    width: 20px;
    height: 40px;
    background: linear-gradient(to top, #ff9800, #ff4081);
    border-radius: 10px 10px 0 0;
    position: relative;
    z-index: 1;
}

.bridge-pillar:nth-child(2) {
    height: 60px;
    background: linear-gradient(to top, #00bcd4, #ff9800);
}

.bridge-pillar:nth-child(3) {
    background: linear-gradient(to top, #ff4081, #00bcd4);
}

.speech-content {
    margin-top: 50px;
}

.speech-point {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 5px solid;
    transition: all 0.3s ease;
}

.speech-point:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.speech-point:nth-child(1) {
    border-left-color: #ff4081;
}

.speech-point:nth-child(2) {
    border-left-color: #00bcd4;
}

.speech-point:nth-child(3) {
    border-left-color: #ff9800;
}

.speech-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
}

.speech-text {
    font-size: 1.2rem;
    line-height: 1.6;
    flex: 1;
}

.speech-question {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 152, 0, 0.1);
    border-radius: 15px;
    border: 3px solid rgba(255, 152, 0, 0.3);
}

.question-icon {
    font-size: 3rem;
    min-width: 60px;
    text-align: center;
}

.question-text {
    font-size: 1.4rem;
    line-height: 1.8;
    flex: 1;
}

.question-text strong {
    color: #ff9800;
}

/* For Slide 4: Video insights */
.insight {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
    text-align: center;
}

/* For Slide 6: Action steps */
.action-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px 0;
}

.action-step {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 3px solid;
    min-width: 280px;
    text-align: center;
    transition: all 0.3s ease;
}

.action-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.action-step:nth-child(1) {
    border-color: #ff4081;
}

.action-step:nth-child(2) {
    border-color: #00bcd4;
}

.action-step:nth-child(3) {
    border-color: #ff9800;
}

.action-step:nth-child(4) {
    border-color: #4caf50;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff4081, #ff9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 25px;
    color: white;
    box-shadow: 0 10px 20px rgba(255, 64, 129, 0.3);
}

.action-step h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #00bcd4;
}

.action-step p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* For Slide 7: Closing */
.final-thoughts {
    font-size: 1.6rem;
    margin: 50px 0;
    text-align: center;
    line-height: 2;
}

.final-thoughts p {
    margin: 15px 0;
}

.call-to-action {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 15px;
    border-left: 5px solid #ff9800;
    margin: 50px 0;
    font-size: 1.3rem;
    line-height: 1.8;
}

.call-to-action p {
    margin: 15px 0;
}

.thank-you {
    font-size: 2.2rem;
    text-align: center;
    margin-top: 60px;
    font-weight: bold;
    background: linear-gradient(45deg, #ff4081, #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== 3D TEXT EFFECTS ===== */
.text-3d {
    transform-style: preserve-3d;
    animation: rotate3D 20s linear infinite;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .step {
        width: 900px;
    }

    .fusion-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .step {
        width: 95vw;
        padding: 20px;
    }

    .enhanced-slide {
        padding: 20px;
    }

    .circle-model {
        width: 300px;
        height: 300px;
    }

    .floating-islands {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .island {
        width: 160px;
        height: 180px;
        padding: 12px;
        border-radius: 15px;
        border-width: 3px;
    }

    .island img {
        max-width: 75%;
        max-height: 50%;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .island h3 {
        font-size: 1.1rem;
        margin: 4px 0;
    }

    .island .flag-emoji {
        font-size: 1.8rem;
        margin: 4px 0;
    }

    .video-container video {
        width: 100%;
        height: auto;
    }

    .bridge {
        margin: 30px auto;
        height: 8px;
    }

    .title-container {
        padding: 30px;
    }

    .title-container h1 {
        font-size: 2.5rem;
        margin: 20px 0;
    }

    .title-container p {
        font-size: 1.2rem;
    }

    /* Responsive styles for new elements */
    .image-container {
        max-width: 90%;
        margin: 20px auto;
    }

    .slide-image {
        border-radius: 10px;
        border-width: 2px;
    }

    /* Othering content responsive */
    .othering-quote,
    .othering-definition,
    .citation,
    .othering-universal,
    .othering-insight {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }

    .quote-icon,
    .definition-icon,
    .citation-icon,
    .universal-icon,
    .insight-icon {
        font-size: 2.5rem;
        min-width: auto;
    }

    .quote-text,
    .definition-text,
    .citation-text,
    .universal-text,
    .insight-text {
        font-size: 1.1rem;
    }

    .visual-container {
        max-width: 90%;
        border-width: 2px;
    }

    .overlay-text {
        font-size: 1.1rem;
        padding: 15px;
    }

    .visual-overlay {
        padding: 15px;
    }

    /* Bridge visualization responsive */
    .bridge-image-container {
        height: 150px;
    }

    .bridge-quote {
        font-size: 1.1rem;
        padding: 15px;
    }

    .bridge-connections {
        flex-direction: column;
        gap: 30px;
    }

    .bridge-span {
        width: 6px;
        height: 100px;
        margin: 20px auto;
        flex: none;
    }

    .bridge-span::before {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 6px;
        height: 100%;
        background: linear-gradient(to bottom, #ff4081, #00bcd4);
    }

    .bridge-pillar {
        display: none;
    }

    .connection-point {
        min-width: 200px;
        padding: 15px;
    }

    .point-label {
        font-size: 1.1rem;
    }

    .point-icon {
        font-size: 2rem;
    }

    .speech-point {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 15px;
    }

    .speech-icon {
        font-size: 2rem;
        min-width: auto;
    }

    .speech-text {
        font-size: 1.1rem;
    }

    .speech-question {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }

    .question-icon {
        font-size: 2.5rem;
        min-width: auto;
    }

    .question-text {
        font-size: 1.2rem;
    }

    .action-steps {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .action-step {
        min-width: 250px;
        padding: 25px;
    }

    .final-thoughts {
        font-size: 1.3rem;
        margin: 30px 0;
    }

    .call-to-action {
        padding: 25px;
        font-size: 1.1rem;
    }

    .thank-you {
        font-size: 1.8rem;
        margin-top: 40px;
    }

    .quote {
        font-size: 1.1rem;
        padding: 15px;
    }

    .highlight {
        font-size: 1.1rem;
        padding: 15px;
    }

    .insight {
        padding: 20px;
        font-size: 1.1rem;
    }
}

/* For Slide 2: Othering visualization */
.isolated-dots {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
}

.dot {
    width: 60px;
    height: 60px;
    background: #ff4081;
    border-radius: 50%;
    opacity: 0.7;
    animation: pulse 2s infinite;
}

/* For Slide 3: Bridge model */
.bridge-model {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
    position: relative;
}

.group {
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    min-width: 200px;
}

.group.youth {
    background: rgba(255, 64, 129, 0.2);
    border: 2px solid #ff4081;
}
.group.providers {
    background: rgba(0, 188, 212, 0.2);
    border: 2px solid #00bcd4;
}
.group.caregivers {
    background: rgba(255, 152, 0, 0.2);
    border: 2px solid #ff9800;
}

.connections {
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff4081, #00bcd4, #ff9800);
    top: 50%;
    z-index: -1;
}

/* For Slide 6: Conditions for Belonging - Diamond Layout */
.diamond-layout {
    position: relative;
    width: 550px;
    height: 400px;
    margin: 15px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.diamond-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 40px 0;
}

.diamond-condition {
    position: relative;
    z-index: 2;
}

.diamond-condition.top {
    margin-bottom: 40px;
}

.diamond-condition.bottom {
    margin-top: 40px;
}

.diamond-condition.left {
    margin-right: 40px;
}

.diamond-condition.right {
    margin-left: 40px;
}

.condition-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    border: 2px solid;
    width: 160px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.condition-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.diamond-condition.top .condition-card {
    border-color: #ff4081;
}

.diamond-condition.left .condition-card {
    border-color: #00bcd4;
}

.diamond-condition.right .condition-card {
    border-color: #ff9800;
}

.diamond-condition.bottom .condition-card {
    border-color: #4caf50;
}

.condition-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.diamond-condition.top .condition-number {
    background: linear-gradient(135deg, #ff4081, #ff5e8d);
    color: white;
}

.diamond-condition.left .condition-number {
    background: linear-gradient(135deg, #00bcd4, #26c6da);
    color: white;
}

.diamond-condition.right .condition-number {
    background: linear-gradient(135deg, #ff9800, #ffb74d);
    color: white;
}

.diamond-condition.bottom .condition-number {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
}

.condition-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    color: white;
}

.condition-card p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.diamond-center {
    position: relative;
    z-index: 3;
}

.center-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #9c27b0, #673ab7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.4);
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(156, 39, 176, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(156, 39, 176, 0.6);
    }
}

.center-circle span {
    color: white;
    font-size: 0.95rem;
    font-weight: bold;
    text-align: center;
    padding: 6px;
}

.connection-line {
    position: absolute;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.1)
    );
    height: 3px;
    z-index: 1;
}

.line-1 {
    top: 80px;
    left: 195px;
    width: 160px;
    transform: rotate(0deg);
}

.line-2 {
    top: 200px;
    left: 95px;
    width: 160px;
    transform: rotate(60deg);
}

.line-3 {
    top: 200px;
    left: 295px;
    width: 160px;
    transform: rotate(-60deg);
}

.line-4 {
    top: 320px;
    left: 195px;
    width: 160px;
    transform: rotate(0deg);
}

/* Responsive styles for diamond layout */
@media (max-width: 1200px) {
    .diamond-layout {
        width: 500px;
        height: 350px;
    }

    .condition-card {
        width: 140px;
        padding: 14px;
    }

    .center-circle {
        width: 80px;
        height: 80px;
    }

    .line-1,
    .line-2,
    .line-3,
    .line-4 {
        width: 140px;
    }

    .line-1 {
        top: 70px;
        left: 180px;
    }

    .line-2 {
        top: 175px;
        left: 85px;
    }

    .line-3 {
        top: 175px;
        left: 265px;
    }

    .line-4 {
        top: 280px;
        left: 180px;
    }
}

@media (max-width: 768px) {
    .diamond-layout {
        width: 100%;
        height: auto;
        margin: 15px 0;
    }

    .diamond-row {
        flex-direction: column;
        margin: 15px 0;
    }

    .diamond-condition.top {
        margin-bottom: 15px;
    }

    .diamond-condition.bottom {
        margin-top: 15px;
    }

    .diamond-condition.left,
    .diamond-condition.right {
        margin: 15px 0;
    }

    .condition-card {
        width: 180px;
        margin: 6px 0;
        padding: 14px;
    }

    .diamond-center {
        order: -1;
        margin-bottom: 20px;
    }

    .center-circle {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

    .center-circle span {
        font-size: 0.85rem;
    }

    .connection-line {
        display: none;
    }
}

/* For Slide 7: Closing */
.final-thoughts {
    font-size: 1.5rem;
    margin: 40px 0;
    text-align: center;
}

.call-to-action {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #ff9800;
    margin: 40px 0;
}

.thank-you {
    font-size: 2rem;
    text-align: center;
    margin-top: 60px;
}

/* ===== OTHERING CAROUSEL ===== */
.othering-carousel {
    margin: 40px 0;
    position: relative;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.carousel-slide.previous {
    transform: translateX(-100%);
    opacity: 0.3;
    z-index: 1;
}

.carousel-slide.next {
    transform: translateX(100%);
    opacity: 0.3;
    z-index: 1;
}

.carousel-caption {
    margin-top: 20px;
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    max-width: 90%;
}

.carousel-caption h4 {
    color: #ff4081;
    margin: 0 0 10px 0;
    font-size: 1.5rem;
}

.carousel-caption p {
    color: white;
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.carousel-prev,
.carousel-next {
    background: rgba(255, 64, 129, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: #ff4081;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 64, 129, 0.4);
}

.carousel-indicators {
    display: flex;
    gap: 15px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ff4081;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background: #ff4081;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 64, 129, 0.5);
    transform: scale(1.1);
}

.carousel-hint {
    text-align: center;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-style: italic;
}

/* Auto-advance animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-100%);
    }
}

/* Responsive carousel */
@media (max-width: 768px) {
    .carousel-container {
        height: 400px;
    }

    .carousel-caption h4 {
        font-size: 1.2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .carousel-controls {
        gap: 20px;
    }

    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
}
