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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background-color: #FFF8E7;
    color: #2C3E50;
    line-height: 1.6;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.language-switcher {
    position: absolute;
    top: 0;
    right: 0;
    background-color: white;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #4A5568;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-switcher:hover {
    background-color: #FF6B6B;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.language-icon {
    font-size: 18px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.logo-image {
    width: 120px;
    height: 120px;
    background-color: #CBD5E0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A5568;
    font-size: 14px;
    font-weight: 600;
    border: 2px dashed #A0AEC0;
    flex-shrink: 0;
}

.logo-text {
    text-align: left;
}

.logo {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 8px;
    color: #FF6B6B;
}

.subtitle-logo {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #4A5568;
    margin-bottom: 40px;
    text-align: center;
}

.tagline {
    font-size: 32px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 30px;
    line-height: 1.3;
}

.description {
    font-size: 18px;
    color: #4A5568;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.video-container {
    max-width: 800px;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

.download-section {
    margin-top: 30px;
    text-align: center;
}

.app-store-badge {
    display: inline-block;
    margin-top: 10px;
}

.app-store-badge img {
    height: 60px;
    width: auto;
}

.qr-code-container {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.qr-code-container img {
    width: 200px;
    height: 200px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: white;
    padding: 5px;
}

.qr-code-text {
    font-size: 16px;
    font-weight: 600;
    color: #2C3E50;
}


.copy-link-btn {
    margin-top: 20px;
    background-color: white;
    color: #4A5568;
    border: 2px solid #FF6B6B;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.copy-link-btn:hover {
    background-color: #FF6B6B;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.copy-link-btn:active {
    transform: translateY(0);
}

/* Show QR code on desktop, App Store badge on mobile */
@media (min-width: 769px) {
    .app-store-badge {
        display: none;
    }
    .qr-code-container {
        display: flex;
    }
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 40px;
}

.app-pitch {
    padding: 20px;
}

.app-pitch__lead {
    margin: 0 0 14px;
    font-size: clamp(1.02rem, 1.2vw + 0.85rem, 1.15rem);
}

.app-pitch__title {
    margin: 10px 0 10px;
    font-size: 1.05rem;
}

.app-pitch__arabic {
    font-weight: 600;
    white-space: nowrap;
}

.app-pitch__list {
    margin-left: 18px;
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}



.app-pitch__list li strong {
    font-weight: 700;
}


.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    color: #FF6B6B;
    border: none;
    font-size: 40px;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    z-index: 10;
}

footer {
    text-align: center;
    margin-top: 100px;
    padding-top: 50px;
    border-top: 2px solid #E2E8F0;
}

.footer-heading {
    font-size: 20px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-text {
    font-size: 16px;
    color: #4A5568;
    margin-bottom: 15px;
    line-height: 1.6;
}

.email-link {
    color: #FF6B6B;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.email-link:hover {
    text-decoration: underline;
}

.footer-logo {
    margin-top: 40px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #4A5568;
}


.footer-link {
    color: #FF6B6B;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.footer-link:hover {
    text-decoration: underline;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.slider__row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider__swiper {
    border-radius: 30px;
    overflow: hidden; /* this is what keeps the image corners rounded */
    flex: 1;
}

.slider__nav {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;

    color: rgba(255, 255, 255, 0.9);
    background-color: #FF6B6B;
    font-size: 60px;
    transition: all 0.3s ease;
}

.slider__nav:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #FF6B6B;
}

.slider__nav.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.slider__pagination {
    position: static; /* not absolute on top */
    margin-top: 15px;
}

.swiper-pagination-bullet {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background-color: #FF6B6B;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: #FF6B6B;
    width: 30px;
    border-radius: 6px;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

@media (max-width: 768px) {
    .logo {
        font-size: 28px;
        letter-spacing: 4px;
    }

    .subtitle-logo {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .tagline {
        font-size: 24px;
    }

    .container {
        padding: 40px 20px;
    }

    .language-switcher {
        margin-bottom: 20px;
    }

    .logo-container {
        flex-direction: column;
        gap: 20px;
    }

    .download-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .slider__swiper {
        border-radius: 16px;
    }

    /* hide prev/next button on mobile*/
    .slider__nav {
        display: none;
    }

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background-color: #FFF8E7;
    color: #2C3E50;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
}

header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.back-link {
    position: absolute;
    top: 0;
    left: 0;
    background-color: white;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #4A5568;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-link:hover {
    background-color: #FF6B6B;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.logo {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 6px;
    color: #FF6B6B;
    margin-bottom: 10px;
}

.subtitle-logo {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #4A5568;
    margin-bottom: 30px;
}

h1 {
    font-size: 32px;
    font-weight: 700;
    color: #2C3E50;
}

.text-containers {
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
    gap: 30px;
}

.my-list-style {
    margin-left: 25px;
}

.text-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: #FF6B6B;
    margin-bottom: 5px;
}

.card-body {
    font-size: 15px;
    color: #4A5568;
    line-height: 1.6;
}

.copy-text {
    background-color: #F7FAFC;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
    color: #2C3E50;
    border: 2px dashed #E2E8F0;
    word-break: break-word;
    font-family: monospace;
    margin-top: 10px;
}

.copy-btn {
    background-color: white;
    color: #4A5568;
    border: 2px solid #FF6B6B;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    margin-top: 10px;
}

.copy-btn:hover {
    background-color: #FF6B6B;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.copy-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }

    .text-containers {
        grid-template-columns: 1fr;
    }

    .back-link {
        position: static;
        margin-bottom: 30px;
        display: inline-flex;
    }

    .logo {
        font-size: 28px;
    }

    h1 {
        font-size: 26px;
    }
}