:root {
    --green-dome: #006C35;
    --gold-accent: rgba(222, 200, 147, 0.78);
    --marble-white: #F5F5F0;
    --stone-gray: #A8A8A8;
    --sky-blue: #7BB6E0;
    --text-dark: #2C3E50;
    --text-light: #6C7B7F;
    --shadow-soft: 0 4px 20px rgba(0, 108, 53, 0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--marble-white);
}

.arabic-text {
    font-family: 'Almarai', sans-serif;
    direction: rtl;
    text-align: right;
}

/* Navigation */
.navbar {
    background: rgba(245, 245, 240, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-dome);
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 200px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--green-dome);
}

.lang-toggle {
    background: var(--green-dome);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.lang-toggle:hover {
    background: var(--gold-accent);
}

/* Hero Section */
.hero {
    background:
        linear-gradient(135deg,
            #006C35 0%,
            #4A8B6B 25%,
            #7BB6E0 50%,
            rgba(222, 200, 147, 0.9) 75%,
            #006C35 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease-in-out infinite;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

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

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

    75% {
        background-position: 0% 100%;
    }

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

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 70% 80%, rgba(222, 200, 147, 0.15) 0%, transparent 35%),
        linear-gradient(45deg,
            transparent 0%,
            rgba(255, 255, 255, 0.04) 30%,
            transparent 60%,
            rgba(123, 182, 224, 0.08) 90%,
            transparent 100%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><pattern id="islamic-pattern" patternUnits="userSpaceOnUse" width="60" height="60"><g opacity="0.04" fill="none" stroke="white" stroke-width="0.5"><circle cx="30" cy="30" r="18"/><circle cx="30" cy="30" r="10"/><path d="M15 30 Q30 18 45 30 Q30 42 15 30"/><path d="M30 15 Q42 30 30 45 Q18 30 30 15"/></g></pattern></defs><rect width="400" height="400" fill="url(%23islamic-pattern)"/></svg>');
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
}


.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    text-align: left;
    animation: slideInLeft 1s ease-out;
}

.hero-image {
    position: relative;
    text-align: center;
    animation: slideInRight 1s ease-out 0.3s both;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow:
        0 20px 60px rgba(0, 108, 53, 0.4),
        0 10px 30px rgba(198, 165, 89, 0.3);
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.2));
    transition: transform 0.6s ease;
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg,
            rgba(198, 165, 89, 0.3),
            rgba(123, 182, 224, 0.3),
            rgba(0, 108, 53, 0.3));
    border-radius: 40px;
    z-index: -1;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        opacity: 0.5;
        transform: scale(0.95);
    }

    to {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    font-weight: 400;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 5%;
    animation-delay: 4s;
    background: rgba(123, 182, 224, 0.08);
    border-color: rgba(123, 182, 224, 0.15);
}

@keyframes float {

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

    25% {
        transform: translateY(-20px) rotate(90deg);
    }

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

    75% {
        transform: translateY(-30px) rotate(270deg);
    }
}

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

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

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-accent), #B8964A);
    color: var(--text-dark);
    box-shadow: 0 8px 30px rgba(198, 165, 89, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #B8964A, var(--gold-accent));
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(198, 165, 89, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green-dome);
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--green-dome);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--marble-white);
    border-radius: 15px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-dome);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Features Section */
.features {
    background: var(--marble-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green-dome), var(--gold-accent));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--green-dome);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
}

/* How It Works */
.how-it-works {
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--green-dome);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.25rem;
    color: var(--green-dome);
    margin-bottom: 1rem;
}

/* Target Audience */
.audience {
    background: var(--marble-white);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.audience-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.audience-icon {
    font-size: 3rem;
    color: var(--gold-accent);
    margin-bottom: 1rem;
}

/* Future Vision */
.future {
    background: linear-gradient(135deg, var(--sky-blue), var(--green-dome));
    color: white;
}

.future-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.future-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.future-item i {
    font-size: 2rem;
    color: var(--gold-accent);
}

/* Partners Section */
.partners {
    background: linear-gradient(135deg, var(--marble-white) 0%, #ffffff 100%);
    padding: 5rem 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-items: center;
}

.partner-logo-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 350px;
    border: 1px solid rgba(0, 108, 53, 0.1);
}

.partner-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 108, 53, 0.15);
}

.partner-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-logo-card:hover .partner-logo img {
    transform: scale(1.05);
}

.partner-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green-dome);
    margin-bottom: 0.5rem;
}

.partner-role {
    font-size: 1rem;
    color: var(--gold-accent);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.partner-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Team Section */
.team {
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.team-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 320px;
}

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

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--stone-gray);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo i {
    font-size: 3rem;
    color: white;
}

/* Call to Action */
.cta {
    background:
        linear-gradient(135deg,
            #006C35 0%,
            #4A8B6B 20%,
            rgba(222, 200, 147, 0.85) 40%,
            #7BB6E0 65%,
            #006C35 85%,
            #2D5A3D 100%);
    background-size: 400% 400%;
    animation: ctaGradientShift 12s ease-in-out infinite;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@keyframes ctaGradientShift {
    0% {
        background-position: 0% 50%;
    }

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

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

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

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(222, 200, 147, 0.15) 0%, transparent 35%),
        linear-gradient(45deg,
            transparent 0%,
            rgba(255, 255, 255, 0.05) 20%,
            transparent 40%,
            rgba(123, 182, 224, 0.1) 80%,
            transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><defs><pattern id="cta-pattern" patternUnits="userSpaceOnUse" width="50" height="50"><g opacity="0.06" fill="none" stroke="white" stroke-width="0.5"><circle cx="25" cy="25" r="15"/><circle cx="25" cy="25" r="8"/><path d="M12 25 Q25 15 38 25 Q25 35 12 25"/><path d="M25 12 Q35 25 25 38 Q15 25 25 12"/></g></pattern></defs><rect width="300" height="300" fill="url(%23cta-pattern)"/></svg>');
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 10;
}

.cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.cta p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

/* Enhanced CTA buttons for new gradient */
.cta .btn-primary {
    background: linear-gradient(135deg, #ffffff, #f0f8ff);
    color: var(--green-dome);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 700;
    text-shadow: none;
    backdrop-filter: blur(10px);
}

.cta .btn-primary:hover {
    background: linear-gradient(135deg, #f0f8ff, #ffffff);
    color: #004A26;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.cta .btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    color: white;
}

.cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.25);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold-accent);
}

/* Partner Items */
.partner-item {
    margin-bottom: 1.2rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-item:last-child {
    border-bottom: none;
}

.partner-item strong {
    color: white;
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.partner-item span {
    color: var(--gold-accent);
    font-size: 0.9rem;
    opacity: 0.9;
    display: block;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    justify-content: flex-start;
    direction: ltr;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: var(--green-dome);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    line-height: 1;
}

.social-icon i {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: inherit;
}

.social-icon:hover {
    background: var(--gold-accent);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .logo img {
        height: 50px;
        max-width: 160px;
    }

    .hero-container {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .cta h2 {
        font-size: 2.2rem;
    }

    .cta p {
        font-size: 1.2rem;
    }

    .hero-image img,
    .hero-image>div {
        width: 100% !important;
        max-width: 400px;
        height: auto;
    }

    .floating-element {
        display: none;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .social-icons {
        justify-content: center;
        gap: 1rem;
    }

    .partner-item {
        text-align: center;
    }

    /* Partners Mobile */
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .partner-logo-card {
        max-width: 100%;
        padding: 2rem;
    }

    .partner-logo {
        width: 100px;
        height: 100px;
    }

    .partner-name {
        font-size: 1.1rem;
    }

    .partner-role {
        font-size: 0.9rem;
    }

    .partner-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta h2 {
        font-size: 1.9rem;
    }

    .cta p {
        font-size: 1rem;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .logo img {
        height: 100px;
        max-width: 200px;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    /* Footer Mobile Small */
    .footer {
        padding: 2.5rem 0 1rem;
    }

    .footer-section h3 {
        font-size: 1rem;
    }

    .social-icons {
        justify-content: center;
        margin-top: 1rem;
    }

    .partner-item {
        text-align: center;
        margin-bottom: 1rem;
    }

    /* Partners Mobile Small */
    .partner-logo {
        width: 80px;
        height: 80px;
    }

    .partner-name {
        font-size: 1rem;
    }

    .partner-role {
        font-size: 0.85rem;
    }

    .partner-description {
        font-size: 0.8rem;
    }

    .partner-logo-card {
        padding: 1.5rem;
    }
}

/* Chatbot Interface */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Poppins', sans-serif;
}

body.rtl .chatbot-container {
    font-family: 'Almarai', sans-serif;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green-dome), #4A8B6B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 108, 53, 0.3);
    transition: all 0.3s ease;
    border: none;
    color: white;
    font-size: 1.5rem;
}

.chatbot-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 108, 53, 0.4);
}

.chatbot-widget {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 108, 53, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0) translateY(20px);
    opacity: 0;
    overflow: hidden;
    border: 1px solid rgba(0, 108, 53, 0.1);
}

.chatbot-widget.open {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.chatbot-widget.compact {
    width: 450px;
    height: 650px;
}

.chatbot-widget.medium {
    width: 550px;
    height: 750px;
}

.chatbot-widget.expanded {
    width: 700px;
    height: 1000px;
}

.chatbot-header {
    background: linear-gradient(135deg, var(--green-dome), #4A8B6B);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-title {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chatbot-title i {
    font-size: 1.2rem;
}

.chatbot-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chatbot-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 0.9rem;
}

.chatbot-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chatbot-body {
    height: calc(100% - 140px);
    display: flex;
    flex-direction: column;
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: var(--marble-white);
}

.chatbot-message {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.3s ease-out;
    align-items: flex-start;
}

.chatbot-message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.message-avatar.bot {
    background: linear-gradient(135deg, var(--green-dome), #4A8B6B);
}

.message-avatar.user {
    background: linear-gradient(135deg, var(--gold-accent), #B8964A);
}

.message-content {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    max-width: 85%;
    font-size: 1rem;
    line-height: 1.6;
    border: 1px solid rgba(0, 108, 53, 0.08);
    position: relative;
}

.chatbot-message.user .message-content {
    background: linear-gradient(135deg, var(--green-dome), #4A8B6B);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(0, 108, 53, 0.2);
}

/* Add speech bubble tails */
.message-content::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    top: 15px;
    border: 8px solid transparent;
}

.chatbot-message.bot .message-content::before {
    left: -15px;
    border-right-color: white;
}

.chatbot-message.user .message-content::before {
    right: -15px;
    border-left-color: var(--green-dome);
}

.suggested-questions {
    padding: 1rem;
    border-top: 1px solid #eee;
}

.suggested-questions h4 {
    font-size: 1rem;
    color: var(--green-dome);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.question-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.question-btn {
    background: rgba(0, 108, 53, 0.05);
    border: 1px solid rgba(0, 108, 53, 0.2);
    color: var(--green-dome);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.question-btn:hover {
    background: rgba(0, 108, 53, 0.1);
    border-color: var(--green-dome);
}

.chatbot-input {
    padding: 1rem;
    border-top: 1px solid #eee;
    background: white;
}

.input-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--marble-white);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.input-container:focus-within {
    border-color: var(--green-dome);
}

.message-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: var(--text-dark);
    outline: none;
    font-family: inherit;
}

.message-input::placeholder {
    color: var(--text-light);
}

.input-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.voice-btn {
    background: var(--green-dome);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.voice-btn:hover {
    background: #004A26;
    transform: scale(1.05);
}

.voice-btn.recording {
    background: #e74c3c;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.send-btn {
    background: var(--green-dome);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.send-btn:hover {
    background: #004A26;
    transform: scale(1.05);
}

.send-btn:disabled {
    background: var(--stone-gray);
    cursor: not-allowed;
    transform: none;
}

/* Language Toggle in Chatbot */
.chatbot-lang-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chatbot-lang-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* RTL Support for Chatbot */

body.rtl .chatbot-message {
    direction: rtl;
}

body.rtl .chatbot-message.user {
    flex-direction: row;
}

body.rtl .question-btn {
    text-align: right;
}

/* Arabic text in chatbot */
.chatbot-widget .arabic-text {
    font-family: 'Almarai', sans-serif;
    direction: rtl;
    text-align: right;
}

body.rtl .chatbot-title,
body.rtl .message-content,
body.rtl .question-btn,
body.rtl .message-input {
    text-align: right;
}

/* References Styles */
.references-message {
    margin-top: 10px !important;
}

.references-content {
    background: linear-gradient(135deg, rgba(198, 165, 89, 0.08), rgba(198, 165, 89, 0.12)) !important;
    border: 1px solid rgba(198, 165, 89, 0.25) !important;
    box-shadow: 0 2px 8px rgba(198, 165, 89, 0.15);
}

.references-header {
    user-select: none;
}

.references-header:hover {
    background: rgba(198, 165, 89, 0.1) !important;
    border-radius: 6px !important;
    transition: background 0.2s ease !important;
}

.references-list {
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.reference-item {
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    margin-bottom: 12px;
}

.reference-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(198, 165, 89, 0.2) !important;
}

.reference-source {
    word-break: break-word;
}

.reference-text {
    color: #333;
    line-height: 1.5 !important;
}

/* Context Message Styles */
.context-message {
    margin-top: 10px !important;
}

.context-header {
    user-select: none;
}

.context-header:hover {
    background: rgba(0, 108, 53, 0.1) !important;
    border-radius: 6px !important;
    transition: background 0.2s ease !important;
}

.context-content {
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

/* RTL support for references */
body.rtl .references-content {
    direction: rtl;
    text-align: right;
}

body.rtl .references-header {
    flex-direction: row-reverse;
}

body.rtl .reference-item {
    border-right: 3px solid #C6A559 !important;
    border-left: none !important;
}

/* Context Message Styles */
.context-message .message-content h4 {
    color: #006C35;
    margin: 0 0 10px 0;
    font-size: 0.95em;
    font-weight: 600;
}

.context-message .message-content ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.context-message .message-content li {
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-size: 0.9em;
}

.context-message .message-content li strong {
    color: #006C35;
}

/* RTL support for context messages */
body.rtl .context-message .message-content ul {
    padding-right: 1.5rem;
    padding-left: 0;
}

body.rtl .context-message .message-content {
    direction: rtl;
    text-align: right;
}

/* RTL support for collapsible headers */
body.rtl .references-header,
body.rtl .context-header {
    flex-direction: row-reverse;
}

body.rtl .references-header h4,
body.rtl .context-header h4 {
    text-align: right;
}

/* Toggle icon animations */
.references-header i,
.context-header i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Improved animations for smooth expand/collapse */
.references-list,
.context-content {
    will-change: max-height, opacity;
}

/* Better hover effects */
.references-header:active,
.context-header:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

body.rtl .input-container {
    direction: rtl;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .chatbot-container {
        bottom: 15px;
        right: 15px;
    }

    .chatbot-widget.compact,
    .chatbot-widget.medium,
    .chatbot-widget.expanded {
        width: calc(100vw - 20px);
        height: 85vh;
        bottom: 80px;
        right: -10px;
    }

}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}


/* Context and Image Messages */
.context-message .message-content {
    background: rgba(0, 108, 53, 0.05) !important;
    border: 1px solid rgba(0, 108, 53, 0.15) !important;
    font-size: 0.85em;
}

.image-message .message-content {
    padding: 0.5rem !important;
    background: white !important;
}

.image-message img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* HTML Formatting in Chat Messages */
.message-content h4 {
    color: var(--green-dome);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.25rem 0 0.75rem 0;
    border-bottom: 2px solid rgba(0, 108, 53, 0.15);
    padding-bottom: 0.5rem;
    background: linear-gradient(90deg, rgba(0, 108, 53, 0.05), transparent);
    padding-left: 0.75rem;
    border-radius: 4px 0 0 4px;
}

.message-content h4:first-child {
    margin-top: 0;
}

.message-content b {
    color: var(--green-dome);
    font-weight: 600;
    background: rgba(0, 108, 53, 0.08);
    padding: 0.15rem 0.3rem;
    border-radius: 4px;
    font-size: 0.95em;
}

.message-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    background: rgba(0, 108, 53, 0.02);
    border-left: 3px solid rgba(0, 108, 53, 0.2);
    padding: 0.75rem 0.75rem 0.75rem 2rem;
    border-radius: 0 6px 6px 0;
}

.message-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    position: relative;
}

.message-content li::marker {
    color: var(--green-dome);
    font-weight: bold;
}

.message-content em {
    color: var(--gold-accent);
    font-style: italic;
    background: rgba(184, 150, 74, 0.1);
    padding: 0.1rem 0.2rem;
    border-radius: 3px;
}

/* Enhanced References Section */
.references-section {
    margin-top: 1.5rem;
    border-top: 2px solid rgba(0, 108, 53, 0.15);
    padding-top: 1rem;
    background: linear-gradient(135deg, rgba(0, 108, 53, 0.02), rgba(184, 150, 74, 0.02));
    border-radius: 8px;
    padding: 1.25rem;
}

.references-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(0, 108, 53, 0.08), rgba(0, 108, 53, 0.04));
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 108, 53, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.references-header:hover {
    background: linear-gradient(135deg, rgba(0, 108, 53, 0.12), rgba(0, 108, 53, 0.06));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.references-title {
    color: var(--green-dome);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.references-count {
    background: var(--green-dome);
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.references-toggle {
    color: var(--green-dome);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    background: rgba(0, 108, 53, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
}

.references-toggle.expanded {
    transform: rotate(180deg);
    background: var(--green-dome);
    color: white;
}

.references-content {
    overflow: hidden;
    transition: all 0.4s ease-out;
    max-height: 0;
    opacity: 0;
}

.references-content.expanded {
    max-height: 2000px;
    opacity: 1;
}

.reference-item {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    margin-bottom: 0.75rem;
    background: white;
    border: 1px solid rgba(0, 108, 53, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    position: relative;
}

.reference-item:hover {
    background: rgba(0, 108, 53, 0.02);
    border-color: rgba(0, 108, 53, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.reference-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.reference-number {
    background: linear-gradient(135deg, var(--green-dome), #4A8B6B);
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 2rem;
    text-align: center;
}

.reference-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.reference-text {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: rgba(0, 108, 53, 0.02);
    border-radius: 8px;
    border-right: 3px solid rgba(0, 108, 53, 0.2);
}

.reference-text.truncated {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
}

.reference-text.truncated::after {
    content: '...';
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 0.5rem;
    background: linear-gradient(to left, rgba(0, 108, 53, 0.02), transparent);
}

.reference-expand-btn {
    background: rgba(0, 108, 53, 0.1);
    border: 1px solid rgba(0, 108, 53, 0.2);
    color: var(--green-dome);
    cursor: pointer;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.reference-expand-btn:hover {
    background: rgba(0, 108, 53, 0.15);
    transform: translateY(-1px);
}

.reference-link {
    background: linear-gradient(135deg, var(--gold-accent), #B8964A);
    color: white;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 500;
}

.reference-link:hover {
    background: linear-gradient(135deg, #B8964A, var(--gold-accent));
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(184, 150, 74, 0.3);
}

.reference-source {
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(184, 150, 74, 0.08);
    border-radius: 6px;
    border-right: 2px solid var(--gold-accent);
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* RTL support for references */
body.rtl .references-header {
    flex-direction: row-reverse;
}

body.rtl .reference-header {
    flex-direction: row-reverse;
}

body.rtl .reference-text {
    border-right: none;
    border-left: 3px solid rgba(0, 108, 53, 0.2);
}

body.rtl .reference-source {
    border-right: none;
    border-left: 2px solid var(--gold-accent);
}

/* Message hover effects */
.message-content:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.chatbot-message.user .message-content:hover {
    box-shadow: 0 6px 20px rgba(0, 108, 53, 0.25);
}

/* Typing indicator enhancement */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: rgba(0, 108, 53, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 108, 53, 0.1);
}

.typing-indicator .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-dome);
    animation: typingDots 1.4s infinite ease-in-out;
}

.typing-indicator .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDots {

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

    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* RTL support for HTML content */
body.rtl .message-content ul {
    padding-left: 0;
    padding-right: 1.2rem;
}

body.rtl .message-content h4 {
    text-align: right;
}

/* Arabic Version Styles */
.lang-ar {
    display: none;
}

body.rtl {
    direction: rtl;
}

body.rtl .lang-en {
    display: none !important;
}

body.rtl .lang-ar {
    display: revert !important;
}

/* Default English Version - Hide Arabic */
body:not(.rtl) .lang-ar {
    display: none !important;
}

body:not(.rtl) .lang-en {
    display: revert !important;
}

body.rtl .nav-container,
body.rtl .hero-content,
body.rtl .container {
    text-align: right;
}

body.rtl .nav-links {
    direction: rtl;
}

body.rtl .logo {
    flex-direction: row-reverse;
}

body.rtl .features-grid,
body.rtl .team-grid,
body.rtl .audience-grid,
body.rtl .steps,
body.rtl .stats,
body.rtl .partners-grid {
    direction: rtl;
}

body.rtl .feature-card,
body.rtl .team-card,
body.rtl .audience-card,
body.rtl .step,
body.rtl .stat-item,
body.rtl .future-item,
body.rtl .partner-logo-card {
    direction: rtl;
    text-align: center;
}

body.rtl .feature-card .lang-ar,
body.rtl .team-card .lang-ar,
body.rtl .audience-card .lang-ar,
body.rtl .step .lang-ar,
body.rtl .future-item .lang-ar {
    text-align: right;
    direction: rtl;
}

body.rtl .feature-card h3,
body.rtl .team-card h3,
body.rtl .audience-card h3,
body.rtl .step h3,
body.rtl .stat-item,
body.rtl .future-item h3 {
    text-align: center;
}

body.rtl .feature-card p,
body.rtl .team-card p,
body.rtl .audience-card p,
body.rtl .step p,
body.rtl .future-item p {
    text-align: center;
}

/* Specific Arabic text alignment */
body.rtl .feature-card .lang-ar h3,
body.rtl .team-card .lang-ar h3,
body.rtl .audience-card .lang-ar h3,
body.rtl .step .lang-ar h3,
body.rtl .future-item .lang-ar h3 {
    text-align: center;
    direction: rtl;
}

body.rtl .feature-card .lang-ar p,
body.rtl .team-card .lang-ar p,
body.rtl .audience-card .lang-ar p,
body.rtl .step .lang-ar p,
body.rtl .future-item .lang-ar p {
    text-align: center;
    direction: rtl;
}

body.rtl .feature-icon,
body.rtl .team-photo,
body.rtl .audience-icon,
body.rtl .step-number {
    margin: 0 auto 1.5rem auto;
}

body.rtl .cta-buttons,
body.rtl .stats {
    direction: rtl;
}

body.rtl .btn {
    direction: ltr;
}

/* Arabic text in cards should be right-aligned */
body.rtl .arabic-text {
    text-align: right !important;
    direction: rtl !important;
}

/* Ensure proper spacing in RTL cards */
body.rtl .team-card div,
body.rtl .feature-card div,
body.rtl .audience-card div {
    text-align: right;
}

/* Fix button alignment in RTL */
body.rtl .hero-content .cta-buttons {
    justify-content: center;
    direction: rtl;
}

/* Fix footer alignment in RTL */
body.rtl .footer-section {
    text-align: right;
}

body.rtl .footer-section a {
    text-align: right;
    display: block;
}

/* RTL Partner Items */
body.rtl .partner-item {
    text-align: right;
}

body.rtl .partner-item strong,
body.rtl .partner-item span {
    text-align: right;
}

/* RTL Social Icons */
body.rtl .social-icons {
    justify-content: flex-start;
    direction: rtl;
}

/* Section titles alignment in RTL */
body.rtl .section-title,
body.rtl .section-subtitle {
    text-align: center;
}

/* About section RTL layout */
body.rtl .about-content {
    direction: rtl;
}

body.rtl .about-text {
    text-align: right;
}

body.rtl .about-text h3 {
    text-align: right;
}

body.rtl .about-text p {
    text-align: right;
}

body.rtl .about-text ul {
    text-align: right;
    padding-right: 1.5rem;
    padding-left: 0;
}

/* RTL Mobile Footer */
@media (max-width: 768px) {
    body.rtl .social-icons {
        justify-content: center;
    }

    body.rtl .partner-item {
        text-align: center;
    }
}