@font-face {
    font-family: '29LTAzer';
    src: url('fonts/29LTAzer-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: '29LTAzer', 'Cairo', 'Arial', sans-serif;
    background: #e8e8e8;
    overflow: hidden;
    height: 100vh;
    direction: rtl;
    position: relative;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8f4f8 0%, #d1e7f0 30%, #e0f2f5 60%, #e8f4f8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
    visibility: visible;
    overflow: hidden;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Digital Waves */
.digital-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 200px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 123, 255, 0.15) 25%,
            rgba(0, 123, 255, 0.25) 50%,
            rgba(0, 123, 255, 0.15) 75%,
            transparent 100%);
    animation: waveMove 8s linear infinite;
    opacity: 0.4;
}

.wave-1 {
    animation-duration: 8s;
    animation-delay: 0s;
    height: 150px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 123, 255, 0.2) 25%,
            rgba(0, 123, 255, 0.3) 50%,
            rgba(0, 123, 255, 0.2) 75%,
            transparent 100%);
}

.wave-2 {
    animation-duration: 10s;
    animation-delay: -2s;
    height: 180px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 86, 179, 0.15) 25%,
            rgba(0, 86, 179, 0.25) 50%,
            rgba(0, 86, 179, 0.15) 75%,
            transparent 100%);
}

.wave-3 {
    animation-duration: 12s;
    animation-delay: -4s;
    height: 200px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 149, 255, 0.15) 25%,
            rgba(0, 149, 255, 0.25) 50%,
            rgba(0, 149, 255, 0.15) 75%,
            transparent 100%);
}

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

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

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

/* Digital Grid */
.digital-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 123, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 123, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridPulse 4s ease-in-out infinite;
    z-index: 1;
    opacity: 0.2;
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.02);
    }
}

/* Digital Particles Loader */
.digital-particles-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle-loader {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #007bff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.6), 0 0 15px rgba(0, 123, 255, 0.4);
    animation: particleFloat 6s ease-in-out infinite;
    opacity: 0.7;
}

.particle-loader:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    background: #007bff;
}

.particle-loader:nth-child(2) {
    left: 30%;
    top: 60%;
    animation-delay: 1s;
    background: #0056b3;
}

.particle-loader:nth-child(3) {
    left: 50%;
    top: 10%;
    animation-delay: 2s;
    background: #0095ff;
}

.particle-loader:nth-child(4) {
    left: 70%;
    top: 40%;
    animation-delay: 0.5s;
    background: #007bff;
}

.particle-loader:nth-child(5) {
    left: 90%;
    top: 70%;
    animation-delay: 1.5s;
    background: #0056b3;
}

.particle-loader:nth-child(6) {
    left: 20%;
    top: 80%;
    animation-delay: 2.5s;
    background: #0095ff;
}

.particle-loader:nth-child(7) {
    left: 60%;
    top: 30%;
    animation-delay: 0.8s;
    background: #007bff;
}

.particle-loader:nth-child(8) {
    left: 40%;
    top: 90%;
    animation-delay: 1.8s;
    background: #0056b3;
}

.particle-loader:nth-child(9) {
    left: 80%;
    top: 15%;
    animation-delay: 2.8s;
    background: #0095ff;
}

.particle-loader:nth-child(10) {
    left: 15%;
    top: 50%;
    animation-delay: 0.3s;
    background: #007bff;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translate(20px, -30px) scale(1.2);
        opacity: 1;
    }

    50% {
        transform: translate(-15px, -50px) scale(0.8);
        opacity: 0.8;
    }

    75% {
        transform: translate(30px, -20px) scale(1.1);
        opacity: 0.9;
    }
}

/* Digital Lines */
.digital-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.digital-line {
    position: absolute;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 123, 255, 0.4) 50%,
            transparent 100%);
    height: 2px;
    width: 100%;
    animation: lineScan 3s linear infinite;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
}

.line-1 {
    top: 20%;
    animation-delay: 0s;
}

.line-2 {
    top: 40%;
    animation-delay: 0.75s;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 86, 179, 0.4) 50%,
            transparent 100%);
    box-shadow: 0 0 8px rgba(0, 86, 179, 0.5);
}

.line-3 {
    top: 60%;
    animation-delay: 1.5s;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 149, 255, 0.4) 50%,
            transparent 100%);
    box-shadow: 0 0 8px rgba(0, 149, 255, 0.5);
}

.line-4 {
    top: 80%;
    animation-delay: 2.25s;
}

@keyframes lineScan {
    0% {
        left: -100%;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

.loading-content {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 10;
}

.loading-logo {
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
    filter: blur(30px);
}

@keyframes glowPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
}

.loading-logo img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 123, 255, 0.5)) drop-shadow(0 0 40px rgba(0, 123, 255, 0.3)) brightness(1.1);
    animation: logoFloat 3s ease-in-out infinite, logoGlow 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    height: 60px;
    position: relative;
}

.spinner-ring {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 123, 255, 0.2);
    border-top-color: #007bff;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    position: relative;
}

.spinner-ring.digital-ring {
    box-shadow:
        0 0 8px rgba(0, 123, 255, 0.4),
        inset 0 0 8px rgba(0, 123, 255, 0.15);
}

.spinner-ring.digital-ring::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #007bff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.6);
    animation: dotPulse 1.2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translateX(-50%) scale(0.8);
    }
}

.loading-text {
    display: inline-flex;
    gap: 3px;
    margin-bottom: 25px;
    font-size: 1.3em;
    font-weight: 600;
    letter-spacing: 2px;
}

.text-char {
    color: #17a2b8;
    text-shadow:
        0 0 10px rgba(23, 162, 184, 0.8),
        0 0 20px rgba(23, 162, 184, 0.5),
        0 0 30px rgba(23, 162, 184, 0.3);
    animation: charGlow 1.5s ease-in-out infinite;
    display: inline-block;
}

.text-char:nth-child(1) {
    animation-delay: 0s;
}

.text-char:nth-child(2) {
    animation-delay: 0.1s;
}

.text-char:nth-child(3) {
    animation-delay: 0.2s;
}

.text-char:nth-child(4) {
    animation-delay: 0.3s;
}

.text-char:nth-child(5) {
    animation-delay: 0.4s;
}

.text-char:nth-child(6) {
    animation-delay: 0.5s;
}

.text-char:nth-child(7) {
    animation-delay: 0.6s;
}

.text-char:nth-child(8) {
    animation-delay: 0.7s;
}

.text-char:nth-child(9) {
    animation-delay: 0.8s;
}

.text-char:nth-child(10) {
    animation-delay: 0.9s;
}

.text-char:nth-child(11) {
    animation-delay: 1s;
}

.text-char:nth-child(12) {
    animation-delay: 1.1s;
}

.text-char:nth-child(13) {
    animation-delay: 1.2s;
}

.text-char:nth-child(14) {
    animation-delay: 1.3s;
}

.text-char:nth-child(15) {
    animation-delay: 1.4s;
}

@keyframes charGlow {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        text-shadow:
            0 0 10px rgba(23, 162, 184, 0.8),
            0 0 20px rgba(23, 162, 184, 0.5),
            0 0 30px rgba(23, 162, 184, 0.3);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.95);
        text-shadow:
            0 0 5px rgba(23, 162, 184, 0.6),
            0 0 10px rgba(23, 162, 184, 0.3),
            0 0 15px rgba(23, 162, 184, 0.2);
    }
}

/* Loading Progress Bar */
.loading-progress {
    width: 300px;
    margin: 0 auto;
    height: 4px;
    background: rgba(0, 123, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}

.progress-bar {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg,
            #007bff 0%,
            #0056b3 50%,
            #0095ff 100%);
    border-radius: 10px;
    animation: progressLoad 2s ease-in-out infinite;
    box-shadow:
        0 0 8px rgba(0, 123, 255, 0.5),
        0 0 15px rgba(0, 123, 255, 0.3);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.5) 50%,
            transparent 100%);
    animation: progressShine 1.5s ease-in-out infinite;
}

@keyframes progressLoad {
    0% {
        width: 0%;
    }

    50% {
        width: 70%;
    }

    100% {
        width: 100%;
    }
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }

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

@keyframes logoGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(0, 123, 255, 0.5)) drop-shadow(0 0 40px rgba(0, 123, 255, 0.3)) brightness(1.1);
    }

    50% {
        filter: drop-shadow(0 0 25px rgba(0, 123, 255, 0.6)) drop-shadow(0 0 50px rgba(0, 123, 255, 0.4)) brightness(1.2);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 10px 30px rgba(23, 162, 184, 0.5)) brightness(1.2);
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 15px 40px rgba(23, 162, 184, 0.7)) brightness(1.3);
    }
}

@keyframes logoFloat {

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

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


/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 50%, #e8e8e8 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Tech Grid Pattern */
.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(23, 162, 184, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 162, 184, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridMove 20s linear infinite;
    opacity: 0.8;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-element {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.2), rgba(19, 132, 150, 0.2));
    border: 3px solid rgba(23, 162, 184, 0.4);
    border-radius: 20px;
    left: var(--x);
    top: var(--y);
    animation: float var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(23, 162, 184, 0.3);
}

.floating-element::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    background: rgba(23, 162, 184, 0.25);
    border-radius: 10px;
    animation: pulse 3s ease-in-out infinite;
}

.floating-element::after {
    content: '';
    position: absolute;
    width: 30%;
    height: 30%;
    top: 35%;
    left: 35%;
    background: rgba(23, 162, 184, 0.3);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    25% {
        transform: translate(20px, -30px) rotate(90deg) scale(1.1);
    }

    50% {
        transform: translate(-15px, -50px) rotate(180deg) scale(0.9);
    }

    75% {
        transform: translate(30px, -20px) rotate(270deg) scale(1.05);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.3);
    }
}

/* Digital Particles */
.digital-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(23, 162, 184, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(23, 162, 184, 1), 0 0 25px rgba(23, 162, 184, 0.6);
    animation: particleFloat 15s linear infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 15s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 6s;
    animation-duration: 20s;
}

.particle:nth-child(5) {
    left: 20%;
    animation-delay: 8s;
    animation-duration: 14s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 10s;
    animation-duration: 16s;
}

.particle:nth-child(7) {
    left: 80%;
    animation-delay: 12s;
    animation-duration: 13s;
}

.particle:nth-child(8) {
    left: 40%;
    animation-delay: 14s;
    animation-duration: 17s;
}

.particle:nth-child(9) {
    left: 15%;
    animation-delay: 16s;
    animation-duration: 13s;
}

.particle:nth-child(10) {
    left: 45%;
    animation-delay: 18s;
    animation-duration: 19s;
}

.particle:nth-child(11) {
    left: 75%;
    animation-delay: 20s;
    animation-duration: 15s;
}

.particle:nth-child(12) {
    left: 25%;
    animation-delay: 22s;
    animation-duration: 18s;
}

.particle:nth-child(13) {
    left: 55%;
    animation-delay: 24s;
    animation-duration: 14s;
}

.particle:nth-child(14) {
    left: 85%;
    animation-delay: 26s;
    animation-duration: 16s;
}

.particle:nth-child(15) {
    left: 35%;
    animation-delay: 28s;
    animation-duration: 20s;
}

.particle:nth-child(16) {
    left: 65%;
    animation-delay: 30s;
    animation-duration: 12s;
}

@keyframes particleFloat {
    0% {
        top: 100%;
        opacity: 0;
        transform: translateX(0) scale(0.5);
    }

    10% {
        opacity: 1;
        transform: translateX(20px) scale(1);
    }

    50% {
        transform: translateX(-30px) scale(1.2);
    }

    90% {
        opacity: 1;
        transform: translateX(15px) scale(1);
    }

    100% {
        top: -10%;
        opacity: 0;
        transform: translateX(0) scale(0.5);
    }
}

/* Circuit Lines */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.6;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(23, 162, 184, 0.6) 50%,
            transparent 100%);
    height: 3px;
    animation: circuitFlow 8s linear infinite;
    box-shadow: 0 0 10px rgba(23, 162, 184, 0.5);
}

.line-1 {
    top: 20%;
    left: 0;
    width: 40%;
    animation-delay: 0s;
}

.line-2 {
    top: 60%;
    right: 0;
    width: 35%;
    animation-delay: 2s;
    animation-direction: reverse;
}

.line-3 {
    top: 80%;
    left: 30%;
    width: 50%;
    animation-delay: 4s;
}

.line-4 {
    top: 35%;
    left: 20%;
    width: 45%;
    animation-delay: 1s;
    animation-direction: reverse;
}

.line-5 {
    top: 70%;
    right: 10%;
    width: 40%;
    animation-delay: 3s;
}

.line-6 {
    top: 50%;
    left: 50%;
    width: 35%;
    animation-delay: 5s;
    animation-direction: reverse;
}

@keyframes circuitFlow {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    50% {
        opacity: 0.6;
    }

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

.presentation-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Modern Slide Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(-5deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.slide-content {
    background: #f5f5f5;
    width: 90%;
    max-width: 1200px;
    height: 85vh;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    padding: 40px;
    overflow-y: auto;
    position: relative;
}

/* Split Layout Style (Template Style) */
.slide-content.split-layout {
    padding: 0;
    display: flex;
    overflow: hidden;
    border-radius: 20px;
}

.split-content-left {
    flex: 0 0 65%;
    background: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.split-content-right {
    flex: 0 0 35%;
    position: relative;
    overflow: hidden;
    background: #000;
}

.split-content-right::before {
    content: '';
    position: absolute;
    left: -60px;
    top: 0;
    width: 120px;
    height: 100%;
    background: white;
    border-radius: 0 60% 60% 0;
    z-index: 1;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.split-content-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) contrast(1.1);
}

.split-title-large {
    font-size: 3.5em;
    font-weight: 900;
    color: #17a2b8;
    margin: 40px 0 20px 0;
    line-height: 1.2;
}

.split-title-large .english-word {
    font-size: 0.6em;
    font-weight: 400;
    color: #6c757d;
    display: block;
    margin-top: 10px;
}

/* Logos removed from slides - now in background */

.split-content-left .slide-header {
    margin-top: auto;
    margin-bottom: 0;
}

.split-content-left .slide-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Background Logos - Part of Animated Background */
.background-logos {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.background-logo {
    position: absolute;
    opacity: 0.2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: logoFloat 25s ease-in-out infinite;
    pointer-events: auto;
    z-index: 2;
}

.monshaat-bg-logo {
    opacity: 0.15;
}

.monshaat-bg-logo.logo-1 {
    top: 30px;
    right: 30px;
    animation-delay: 0s;
    animation-duration: 25s;
}

.monshaat-bg-logo.logo-2 {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    animation-delay: 5s;
    animation-duration: 30s;
}

.monshaat-bg-logo.logo-3 {
    bottom: 150px;
    right: 80px;
    animation-delay: 10s;
    animation-duration: 28s;
}

.monshaat-bg-logo.logo-4 {
    top: 200px;
    right: 200px;
    animation-delay: 15s;
    animation-duration: 32s;
}

.hcdp-bg-logo {
    bottom: 30px;
    left: 30px;
    animation-delay: 12s;
    animation-duration: 25s;
}

.bg-logo-img {
    height: 140px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(23, 162, 184, 0.4)) brightness(1.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: logoPulse 4s ease-in-out infinite;
}

.monshaat-bg-logo.logo-2 .bg-logo-img {
    height: 100px;
    animation-duration: 5s;
}

.monshaat-bg-logo.logo-3 .bg-logo-img {
    height: 120px;
    animation-duration: 3.5s;
}

.monshaat-bg-logo.logo-4 .bg-logo-img {
    height: 90px;
    animation-duration: 4.5s;
}

.background-logo:hover {
    opacity: 0.35;
}

.background-logo:hover .bg-logo-img {
    transform: scale(1.15);
    filter: drop-shadow(0 10px 20px rgba(23, 162, 184, 0.6)) brightness(1.2);
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    25% {
        transform: translate(15px, -20px) rotate(3deg) scale(1.05);
    }

    50% {
        transform: translate(-10px, -25px) rotate(-2deg) scale(0.98);
    }

    75% {
        transform: translate(20px, -15px) rotate(2deg) scale(1.03);
    }
}

@keyframes logoPulse {

    0%,
    100% {
        opacity: 0.8;
        filter: drop-shadow(0 6px 12px rgba(23, 162, 184, 0.4)) brightness(1.1);
    }

    50% {
        opacity: 1;
        filter: drop-shadow(0 8px 16px rgba(23, 162, 184, 0.6)) brightness(1.15);
    }
}

.slide-content::-webkit-scrollbar {
    width: 8px;
}

.slide-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.slide-content::-webkit-scrollbar-thumb {
    background: #17a2b8;
    border-radius: 10px;
}

/* Cover Slide */
.cover-slide {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.cover-text {
    position: relative;
    z-index: 2;
    width: 100%;
}

.main-title {
    font-size: 3.5em;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideDown 1s ease-out;
}

.subtitle {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: slideUp 1s ease-out;
}

.cover-image {
    margin-top: 40px;
    animation: fadeIn 1.5s ease-out;
}

.cover-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Slide Header */
.slide-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #17a2b8;
    animation: fadeInUp 0.5s ease-out;
    position: relative;
}

.slide-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #17a2b8, #138496);
    animation: slideInRight 0.8s ease-out 0.3s forwards;
}

.slide-number {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
    margin-left: 20px;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.4);
    animation: scaleIn 0.5s ease-out;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.slide-number::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

.slide-number:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(23, 162, 184, 0.6);
}

.slide-header h2 {
    font-size: 2em;
    color: #333;
    font-weight: 700;
}

/* Slide Body */
.slide-body {
    padding: 20px 0;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.content-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out backwards;
    position: relative;
    overflow: hidden;
}

.content-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(23, 162, 184, 0.1), transparent);
    transition: left 0.5s;
}

.content-item:hover::before {
    left: 100%;
}

.content-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(23, 162, 184, 0.2);
}

.content-item:nth-child(1) {
    animation-delay: 0.1s;
}

.content-item:nth-child(2) {
    animation-delay: 0.2s;
}

.content-item:nth-child(3) {
    animation-delay: 0.3s;
}

.content-item:nth-child(4) {
    animation-delay: 0.4s;
}

.content-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1) contrast(1);
}

.content-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
    box-shadow: 0 8px 20px rgba(23, 162, 184, 0.3);
}

.content-item h3 {
    color: #17a2b8;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 700;
}

.content-item p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05em;
}

.content-item ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.content-item ul li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
}

.content-item ul li:last-child {
    border-bottom: none;
}

.content-item.full-width {
    grid-column: 1 / -1;
}

/* Content List */
.content-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.list-item {
    display: flex;
    gap: 25px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
    animation: fadeInUp 0.6s ease-out backwards;
    position: relative;
    overflow: hidden;
}

.list-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(23, 162, 184, 0.1), transparent);
    transition: right 0.5s;
}

.list-item:hover::after {
    right: 100%;
}

.list-item:hover {
    transform: translateX(-8px) scale(1.01);
    box-shadow: 0 10px 30px rgba(23, 162, 184, 0.2);
}

.list-item:nth-child(1) {
    animation-delay: 0.1s;
}

.list-item:nth-child(2) {
    animation-delay: 0.2s;
}

.list-item:nth-child(3) {
    animation-delay: 0.3s;
}

.list-item:nth-child(4) {
    animation-delay: 0.4s;
}

.list-item img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1) contrast(1);
}

.list-item:hover img {
    transform: scale(1.08) rotate(1deg);
    filter: brightness(1.1) contrast(1.1);
    box-shadow: 0 8px 20px rgba(23, 162, 184, 0.3);
}

.list-content {
    flex: 1;
}

.list-content h3 {
    color: #17a2b8;
    font-size: 1.4em;
    margin-bottom: 12px;
    font-weight: 700;
}

.list-content p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05em;
}

/* Risk Grid */
.risk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.risk-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.risk-item:hover {
    transform: scale(1.05);
}

.risk-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.risk-item h3 {
    color: #17a2b8;
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: 700;
}

.risk-item p {
    color: #555;
    font-size: 0.95em;
    line-height: 1.6;
}

.risk-matrix {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #17a2b8;
    margin-top: 20px;
}

.risk-matrix h3 {
    color: #17a2b8;
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.risk-matrix p {
    color: #555;
    font-size: 1.1em;
    line-height: 1.8;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.tool-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(23, 162, 184, 0.3);
}

.tool-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.tool-item h3 {
    color: #17a2b8;
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: 700;
}

.tool-item p {
    color: #666;
    font-size: 0.95em;
}

/* Activity Content */
.activity-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.activity-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.activity-tasks {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.activity-tasks h3 {
    color: #17a2b8;
    font-size: 1.8em;
    margin-bottom: 25px;
    font-weight: 700;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-bottom: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.task-item:hover {
    transform: translateX(-5px);
}

.task-number {
    background: #17a2b8;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
    flex-shrink: 0;
}

.task-text {
    font-size: 1.2em;
    color: #333;
    font-weight: 600;
}

/* Outputs */
.outputs-content h3 {
    color: #17a2b8;
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.outputs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.output-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.output-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(23, 162, 184, 0.3);
}

.output-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.output-item h4 {
    color: #17a2b8;
    font-size: 1.2em;
    font-weight: 700;
}

/* Closing Slide */
.closing-slide {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.closing-content h1 {
    font-size: 4em;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.closing-content h2 {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 40px;
    opacity: 0.95;
}

.closing-content img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    font-size: 1.3em;
    margin: 10px 0;
    opacity: 0.9;
}

/* Navigation Buttons */
.nav-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: #17a2b8;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(23, 162, 184, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    font-family: '29LTAzer', 'Cairo', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(23, 162, 184, 0.6);
    background: #138496;
}

.nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.nav-btn span {
    font-size: 1.3em;
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-btn:disabled:hover {
    transform: translateY(-50%);
    box-shadow: 0 5px 20px rgba(23, 162, 184, 0.4);
}

/* Slide Indicator */
.slide-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: 600;
    color: #17a2b8;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

/* Principles Image Container */
.principles-image-container {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out;
}

.principles-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
    transition: all 0.3s ease;
}

.principles-main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.3);
}

/* Principles Grid */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.principle-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #17a2b8;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.principle-item:nth-child(1) {
    animation-delay: 0.1s;
}

.principle-item:nth-child(2) {
    animation-delay: 0.2s;
}

.principle-item:nth-child(3) {
    animation-delay: 0.3s;
}

.principle-item:nth-child(4) {
    animation-delay: 0.4s;
}

.principle-item:nth-child(5) {
    animation-delay: 0.5s;
}

.principle-item:nth-child(6) {
    animation-delay: 0.6s;
}

.principle-item:nth-child(7) {
    animation-delay: 0.7s;
}

.principle-item:nth-child(8) {
    animation-delay: 0.8s;
}

.principle-item:nth-child(9) {
    animation-delay: 0.9s;
}

.principle-item:nth-child(10) {
    animation-delay: 1s;
}

.principle-item:nth-child(11) {
    animation-delay: 1.1s;
}

.principle-item:nth-child(12) {
    animation-delay: 1.2s;
}

.principle-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(23, 162, 184, 0.2);
    border-left-width: 6px;
}

.principle-number {
    display: inline-block;
    background: #17a2b8;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: 700;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.principle-item h4 {
    color: #17a2b8;
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: 700;
}

.principle-item p {
    color: #555;
    font-size: 0.95em;
    line-height: 1.6;
}

/* Conflict Matrix */
.conflict-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.conflict-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out backwards;
    border-top: 4px solid #17a2b8;
}

.conflict-item.accommodating {
    border-top-color: #28a745;
}

.conflict-item.collaborating {
    border-top-color: #17a2b8;
}

.conflict-item.avoiding {
    border-top-color: #6c757d;
}

.conflict-item.competitive {
    border-top-color: #dc3545;
}

.conflict-item.compromising {
    border-top-color: #ffc107;
}

.conflict-item:nth-child(1) {
    animation-delay: 0.1s;
}

.conflict-item:nth-child(2) {
    animation-delay: 0.2s;
}

.conflict-item:nth-child(3) {
    animation-delay: 0.3s;
}

.conflict-item:nth-child(4) {
    animation-delay: 0.4s;
}

.conflict-item:nth-child(5) {
    animation-delay: 0.5s;
}

.conflict-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(23, 162, 184, 0.3);
}

.conflict-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.conflict-item h3 {
    color: #17a2b8;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 700;
}

.conflict-item p {
    color: #555;
    font-size: 0.95em;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* Tuckman Image Container */
.tuckman-image-container {
    text-align: center;
    margin-top: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.tuckman-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
    transition: all 0.3s ease;
}

.tuckman-main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.3);
}

/* Tuckman Stages (kept for backward compatibility) */
.tuckman-stages {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.stage-item {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 15px;
    border-right: 5px solid #17a2b8;
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out backwards;
    align-items: center;
}

.stage-item.stage-forming {
    border-right-color: #ffc107;
}

.stage-item.stage-storming {
    border-right-color: #dc3545;
}

.stage-item.stage-norming {
    border-right-color: #17a2b8;
}

.stage-item.stage-performing {
    border-right-color: #28a745;
}

.stage-item.stage-adjourning {
    border-right-color: #6c757d;
}

.stage-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stage-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stage-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stage-item:nth-child(4) {
    animation-delay: 0.4s;
}

.stage-item:nth-child(5) {
    animation-delay: 0.5s;
}

.stage-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 10px 30px rgba(23, 162, 184, 0.2);
}

.stage-number {
    background: #17a2b8;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.4);
}

.stage-content {
    flex: 1;
}

.stage-content h3 {
    color: #17a2b8;
    font-size: 1.5em;
    margin-bottom: 12px;
    font-weight: 700;
}

.stage-content p {
    color: #555;
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* Agile Cycle */
.agile-cycle {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    grid-template-rows: auto auto auto;
    gap: 15px;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    justify-items: center;
}

/* Top Row Items (Right to Left in RTL) */
.cycle-item.cycle-analysis {
    grid-column: 1;
    grid-row: 1;
}

.cycle-item.cycle-design {
    grid-column: 3;
    grid-row: 1;
}

.cycle-item.cycle-programming {
    grid-column: 5;
    grid-row: 1;
}

/* Bottom Row Items (Left to Right in RTL) */
.cycle-item.cycle-testing {
    grid-column: 5;
    grid-row: 3;
}

.cycle-item.cycle-review {
    grid-column: 3;
    grid-row: 3;
}

.cycle-item.cycle-release {
    grid-column: 1;
    grid-row: 3;
}

/* Arrows */
.cycle-arrow {
    font-size: 2.5em;
    color: #17a2b8;
    font-weight: 700;
    animation: pulse 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
}

/* Arrows - Top Row (Right to Left in RTL) */
.cycle-arrow.arrow-right {
    grid-row: 1;
    align-self: center;
    justify-self: center;
}

.cycle-arrow.arrow-right:nth-of-type(1) {
    grid-column: 2;
}

.cycle-arrow.arrow-right:nth-of-type(2) {
    grid-column: 4;
}

/* Arrow Down from Programming to Testing */
.cycle-arrow.arrow-down-right {
    grid-column: 5;
    grid-row: 2;
    align-self: center;
    justify-self: center;
}

/* Arrows - Bottom Row (Left to Right in RTL) */
.cycle-arrow.arrow-left {
    grid-row: 3;
    align-self: center;
    justify-self: center;
}

.cycle-arrow.arrow-left:nth-of-type(1) {
    grid-column: 4;
}

.cycle-arrow.arrow-left:nth-of-type(2) {
    grid-column: 2;
}

/* Return Arrow from Release to Analysis */
.cycle-arrow.cycle-return {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    justify-self: start;
    font-size: 3em;
    transform: rotate(-90deg) translateX(-40px) translateY(-20px);
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
}

.cycle-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    min-width: 150px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    animation: scaleIn 0.6s ease-out backwards;
}

.cycle-item.cycle-analysis {
    animation-delay: 0.1s;
}

.cycle-item.cycle-design {
    animation-delay: 0.2s;
}

.cycle-item.cycle-programming {
    animation-delay: 0.3s;
}

.cycle-item.cycle-testing {
    animation-delay: 0.4s;
}

.cycle-item.cycle-review {
    animation-delay: 0.5s;
}

.cycle-item.cycle-release {
    animation-delay: 0.6s;
}

.cycle-item:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 30px rgba(23, 162, 184, 0.3);
}

.cycle-icon {
    font-size: 3em;
    margin-bottom: 10px;
}

.cycle-item h3 {
    color: #17a2b8;
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: 700;
}

.cycle-item p {
    color: #666;
    font-size: 0.9em;
    line-height: 1.6;
}


.cycle-note {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #17a2b8;
    margin-top: 20px;
    text-align: center;
}

.cycle-note p {
    color: #555;
    font-size: 1.1em;
    line-height: 1.8;
}

/* Scrum Image Container */
.scrum-image-container {
    text-align: center;
    margin-top: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.scrum-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
    transition: all 0.3s ease;
}

.scrum-main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.3);
}

/* Scrum Framework (kept for backward compatibility) */
.scrum-framework {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.scrum-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.scrum-section h3 {
    color: #17a2b8;
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #17a2b8;
}

.scrum-roles,
.scrum-events,
.scrum-artifacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.role-item,
.event-item,
.artifact-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #17a2b8;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.role-item:nth-child(1),
.event-item:nth-child(1),
.artifact-item:nth-child(1) {
    animation-delay: 0.1s;
}

.role-item:nth-child(2),
.event-item:nth-child(2),
.artifact-item:nth-child(2) {
    animation-delay: 0.2s;
}

.role-item:nth-child(3),
.event-item:nth-child(3),
.artifact-item:nth-child(3) {
    animation-delay: 0.3s;
}

.role-item:nth-child(4),
.event-item:nth-child(4) {
    animation-delay: 0.4s;
}

.role-item:hover,
.event-item:hover,
.artifact-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 20px rgba(23, 162, 184, 0.2);
}

.role-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.role-item h4,
.event-item h4,
.artifact-item h4 {
    color: #17a2b8;
    font-size: 1.3em;
    margin-bottom: 10px;
    font-weight: 700;
}

.role-item p,
.event-item p,
.artifact-item p {
    color: #555;
    font-size: 1em;
    line-height: 1.7;
}

/* Presenter Container */
.presenter-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 30px;
    animation: fadeInUp 0.8s ease-out;
}

.presenter-image {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(23, 162, 184, 0.3);
    border: 4px solid #17a2b8;
    animation: scaleIn 0.8s ease-out 0.2s backwards;
}

.presenter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.presenter-image:hover img {
    transform: scale(1.05);
}

.presenter-info {
    flex: 1;
}

.presenter-name {
    color: #17a2b8;
    font-size: 2.5em;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
    border-bottom: 3px solid #17a2b8;
    padding-bottom: 15px;
}

.presenter-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail-item {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 15px;
    border-right: 4px solid #17a2b8;
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.detail-item:nth-child(1) {
    animation-delay: 0.4s;
}

.detail-item:nth-child(2) {
    animation-delay: 0.5s;
}

.detail-item:nth-child(3) {
    animation-delay: 0.6s;
}

.detail-item:nth-child(4) {
    animation-delay: 0.7s;
}

.detail-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 10px 25px rgba(23, 162, 184, 0.2);
    border-right-width: 6px;
}

.detail-item.highlight {
    background: linear-gradient(135deg, #e7f7f9 0%, #d1f2f6 100%);
    border-right-color: #dc3545;
    border-right-width: 5px;
}

.detail-icon {
    font-size: 2.5em;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.2);
}

.detail-content {
    flex: 1;
}

.detail-content h4 {
    color: #17a2b8;
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: 700;
}

.detail-item.highlight .detail-content h4 {
    color: #dc3545;
}

.detail-content p {
    color: #555;
    font-size: 1.1em;
    line-height: 1.8;
}

.certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.cert-badge {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1em;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
    transition: all 0.3s ease;
    animation: scaleIn 0.5s ease-out backwards;
}

.cert-badge:nth-child(1) {
    animation-delay: 0.8s;
}

.cert-badge:nth-child(2) {
    animation-delay: 0.85s;
}

.cert-badge:nth-child(3) {
    animation-delay: 0.9s;
}

.cert-badge:nth-child(4) {
    animation-delay: 0.95s;
}

.cert-badge:nth-child(5) {
    animation-delay: 1s;
}

.cert-badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(23, 162, 184, 0.4);
}

/* Agenda Container */
.agenda-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    max-height: 75vh;
    overflow-y: auto;
    padding-right: 10px;
}

.agenda-container::-webkit-scrollbar {
    width: 8px;
}

.agenda-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.agenda-container::-webkit-scrollbar-thumb {
    background: #17a2b8;
    border-radius: 10px;
}

.agenda-container::-webkit-scrollbar-thumb:hover {
    background: #138496;
}

.agenda-item {
    display: flex;
    gap: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 15px;
    border-right: 5px solid #17a2b8;
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out backwards;
    align-items: flex-start;
}

.agenda-item:nth-child(1) {
    animation-delay: 0.1s;
}

.agenda-item:nth-child(2) {
    animation-delay: 0.2s;
}

.agenda-item:nth-child(3) {
    animation-delay: 0.3s;
}

.agenda-item:nth-child(4) {
    animation-delay: 0.4s;
}

.agenda-item:nth-child(5) {
    animation-delay: 0.5s;
}

.agenda-item:nth-child(6) {
    animation-delay: 0.6s;
}

.agenda-item:nth-child(7) {
    animation-delay: 0.7s;
}

.agenda-item:nth-child(8) {
    animation-delay: 0.8s;
}

.agenda-item:nth-child(9) {
    animation-delay: 0.9s;
}

.agenda-item:nth-child(10) {
    animation-delay: 1s;
}

.agenda-item:hover {
    transform: translateX(-8px);
    box-shadow: 0 12px 30px rgba(23, 162, 184, 0.25);
    border-right-width: 7px;
}

.agenda-number {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(23, 162, 184, 0.4);
    transition: all 0.3s ease;
}

.agenda-item:hover .agenda-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.5);
}

.agenda-content {
    flex: 1;
    padding-top: 5px;
}

.agenda-content h3 {
    color: #17a2b8;
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.4;
}

.agenda-content p {
    color: #666;
    font-size: 1.05em;
    line-height: 1.8;
}

/* Comparison Container */
.comparison-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    margin-top: 20px;
    align-items: start;
}

.comparison-side {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out backwards;
}

.comparison-side.unsuccessful {
    border-top: 5px solid #dc3545;
}

.comparison-side.unsuccessful:nth-child(1) {
    animation-delay: 0.1s;
}

.comparison-side.successful {
    border-top: 5px solid #28a745;
}

.comparison-side.successful:nth-child(3) {
    animation-delay: 0.3s;
}

.comparison-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.comparison-icon {
    font-size: 3em;
    margin-bottom: 10px;
}

.comparison-header h3 {
    color: #333;
    font-size: 1.8em;
    font-weight: 700;
    margin: 0;
}

.comparison-side.unsuccessful .comparison-header h3 {
    color: #dc3545;
}

.comparison-side.successful .comparison-header h3 {
    color: #28a745;
}

.comparison-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.comparison-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.comparison-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comparison-image {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.comparison-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.comparison-item:hover .comparison-image img {
    transform: scale(1.05);
}

.comparison-text {
    flex: 1;
}

.comparison-text h4 {
    color: #007bff;
    font-size: 1.4em;
    margin-bottom: 12px;
    font-weight: 700;
}

.comparison-side.unsuccessful .comparison-text h4 {
    color: #dc3545;
}

.comparison-side.successful .comparison-text h4 {
    color: #28a745;
}

.comparison-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-text ul li {
    color: #555;
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 8px;
    padding-right: 25px;
    position: relative;
}

.comparison-text ul li::before {
    content: "•";
    position: absolute;
    right: 0;
    color: #007bff;
    font-weight: 700;
    font-size: 1.2em;
}

.comparison-side.unsuccessful .comparison-text ul li::before {
    color: #dc3545;
}

.comparison-side.successful .comparison-text ul li::before {
    color: #28a745;
}

.comparison-features {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-top: 10px;
}

.comparison-features h4 {
    color: #333;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 700;
}

.comparison-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-features ul li {
    color: #555;
    font-size: 1.1em;
    line-height: 2;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-features ul li:last-child {
    border-bottom: none;
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vs-badge {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0, 123, 255, 0.4);
    animation: pulse 2s ease-in-out infinite;
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes pulse {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 5px 20px rgba(0, 123, 255, 0.4);
    }

    50% {
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 8px 30px rgba(0, 123, 255, 0.6);
    }
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.skill-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out backwards;
    border-top: 3px solid #17a2b8;
}

.skill-item:nth-child(1) {
    animation-delay: 0.05s;
}

.skill-item:nth-child(2) {
    animation-delay: 0.1s;
}

.skill-item:nth-child(3) {
    animation-delay: 0.15s;
}

.skill-item:nth-child(4) {
    animation-delay: 0.2s;
}

.skill-item:nth-child(5) {
    animation-delay: 0.25s;
}

.skill-item:nth-child(6) {
    animation-delay: 0.3s;
}

.skill-item:nth-child(7) {
    animation-delay: 0.35s;
}

.skill-item:nth-child(8) {
    animation-delay: 0.4s;
}

.skill-item:nth-child(9) {
    animation-delay: 0.45s;
}

.skill-item:nth-child(10) {
    animation-delay: 0.5s;
}

.skill-item:nth-child(11) {
    animation-delay: 0.55s;
}

.skill-item:nth-child(12) {
    animation-delay: 0.6s;
}

.skill-item:nth-child(13) {
    animation-delay: 0.65s;
}

.skill-item:nth-child(14) {
    animation-delay: 0.7s;
}

.skill-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(23, 162, 184, 0.3);
    border-top-width: 5px;
}

.skill-number {
    background: #17a2b8;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.4);
}

.skill-item h4 {
    color: #17a2b8;
    font-size: 1.1em;
    font-weight: 700;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .slide-content {
        width: 95%;
        height: 90vh;
        padding: 20px;
    }

    .main-title {
        font-size: 2em;
    }

    .subtitle {
        font-size: 1.3em;
    }

    .slide-header h2 {
        font-size: 1.3em;
    }

    .bg-logo-img {
        height: 80px;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .conflict-matrix {
        grid-template-columns: 1fr;
    }

    .tuckman-stages {
        gap: 15px;
    }

    .stage-item {
        flex-direction: column;
        text-align: center;
    }

    .agile-cycle {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto);
        gap: 15px;
    }

    .cycle-item.cycle-analysis,
    .cycle-item.cycle-design,
    .cycle-item.cycle-programming,
    .cycle-item.cycle-testing,
    .cycle-item.cycle-review,
    .cycle-item.cycle-release {
        grid-column: 1;
    }

    .cycle-item.cycle-analysis {
        grid-row: 1;
    }

    .cycle-item.cycle-design {
        grid-row: 3;
    }

    .cycle-item.cycle-programming {
        grid-row: 5;
    }

    .cycle-item.cycle-testing {
        grid-row: 7;
    }

    .cycle-item.cycle-review {
        grid-row: 9;
    }

    .cycle-item.cycle-release {
        grid-row: 11;
    }

    .cycle-arrow {
        grid-column: 1;
        transform: rotate(90deg);
    }

    .cycle-arrow.arrow-right:nth-of-type(1) {
        grid-row: 2;
    }

    .cycle-arrow.arrow-right:nth-of-type(2) {
        grid-row: 4;
    }

    .cycle-arrow.arrow-down-right {
        grid-row: 6;
    }

    .cycle-arrow.arrow-left:nth-of-type(1) {
        grid-row: 8;
    }

    .cycle-arrow.arrow-left:nth-of-type(2) {
        grid-row: 10;
    }

    .cycle-arrow.cycle-return {
        grid-row: 12;
        transform: rotate(0deg) translateX(0);
    }

    .scrum-framework {
        grid-template-columns: 1fr;
    }

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

    .comparison-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comparison-divider {
        order: 2;
        margin: 20px 0;
    }

    .vs-badge {
        position: relative;
        transform: none;
        top: auto;
    }

    .comparison-side.unsuccessful {
        order: 1;
    }

    .comparison-side.successful {
        order: 3;
    }

    .comparison-item {
        flex-direction: column;
    }

    .comparison-image {
        width: 100%;
        height: 200px;
    }

    .presenter-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .presenter-image {
        width: 250px;
        height: 250px;
    }

    .presenter-name {
        font-size: 2em;
    }

    .detail-item {
        flex-direction: column;
        text-align: center;
    }

    .detail-icon {
        margin: 0 auto;
    }

    .agenda-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .agenda-number {
        margin: 0 auto;
    }

    .loading-logo img {
        width: 150px;
    }

    .logo-glow {
        width: 200px;
        height: 200px;
    }

    .loading-text {
        font-size: 1.1em;
    }

    .loading-progress {
        width: 250px;
    }

    .wave {
        height: 100px;
    }

    .wave-1 {
        height: 80px;
    }

    .wave-2 {
        height: 100px;
    }

    .wave-3 {
        height: 120px;
    }

    .spinner-ring {
        width: 40px;
        height: 40px;
    }

    .spinner-ring:nth-child(2) {
        width: 32px;
        height: 32px;
    }

    .spinner-ring:nth-child(3) {
        width: 24px;
        height: 24px;
    }

    .list-item {
        flex-direction: column;
    }

    .list-item img {
        width: 100%;
        height: 200px;
    }

    .nav-btn {
        padding: 12px 20px;
        font-size: 0.9em;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .closing-content h1 {
        font-size: 2.5em;
    }

    .closing-content h2 {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .slide-content {
        padding: 15px;
    }

    .main-title {
        font-size: 1.5em;
    }

    .subtitle {
        font-size: 1em;
    }

    .slide-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .slide-number {
        margin-bottom: 15px;
        margin-left: 0;
    }

    .bg-logo-img {
        height: 60px;
    }

    .monshaat-bg-logo {
        top: 10px;
        right: 10px;
    }

    .hcdp-bg-logo {
        bottom: 10px;
        left: 10px;
    }
}