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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Arial', 'Tahoma', 'جيزيرة', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    direction: rtl;
    text-align: right;
}

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

/* ===== Color Variables ===== */
:root {
    --sawa-purple: #9B6BA8;
    --sawa-dark-blue: #1E3A8A;
    --sawa-light-purple: #C9A8D4;
    --accent-pink: #E94B7A;
}

/* ===== Navigation Bar ===== */
.navbar {
    background: linear-gradient(94deg, #ffffff 15%, #ffffff 100%);
    color: #000000;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

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

.nav-links a {
    color: #27418f;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, var(--sawa-dark-blue) 0%, var(--sawa-purple) 100%);
    color: white;
    padding: 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* min-height: 600px; */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    order: 2;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    order: 1;
}

.chat-icon {
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.chat-icon svg {
    width: 120px;
    height: 120px;
    color: white;
}

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

/* ===== CTA Button ===== */
.cta-button {
    background: linear-gradient(135deg, var(--sawa-purple) 0%, var(--accent-pink) 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 75, 122, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Segoe UI', 'Arial', 'Tahoma', 'جيزيرة', sans-serif;
	text-decoration:none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 75, 122, 0.6);
	color:white;!important
}

.cta-button:active {
    transform: translateY(0);
}

 .chatDirectBTN {
        display: none;
    }

/* ===== Features Section ===== */
.features {
    padding: 10px 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--sawa-dark-blue);
}

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

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--sawa-purple);
    box-shadow: 0 10px 30px rgba(155, 107, 168, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--sawa-dark-blue);
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* ===== Security Section ===== */
.security {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--sawa-dark-blue) 0%, var(--sawa-purple) 100%);
    color: white;
}

.security h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.security-content {
    display: contents;
}

.security-text {
    order: 2;
}

.security-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.security-list {
    list-style: none;
}

.security-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: right;
}

.security-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    order: 1;
}

.lock-icon {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lock-icon svg {
    width: 100px;
    height: 100px;
    color: white;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 10px 0;
    background: white;
    text-align: center;
    margin-bottom: 20px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--sawa-dark-blue);
}

.cta-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--sawa-dark-blue);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer a {
    color: var(--sawa-light-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        padding: 50px 0;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .chat-icon {
        width: 150px;
        height: 150px;
    }

    .chat-icon svg {
        width: 80px;
        height: 80px;
    }

    .security .container {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 1rem;
    }

    .features h2,
    .security h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .modal-content {
        width: 95%;
        height: 500px;
        margin: 50% auto;
    }

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

    .logo-img {
        height: 40px;
    }
}

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

    .cta-button {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .nav-links {
        gap: 0.5rem;
        font-size: 0.9rem;
    }

    .logo-img {
        height: 35px;
    }
}

@media only screen and (max-width: 768px) {
    .chatDirectBTN {
        display: block;
    }

    .chatBTN {
        display: none;
    }
	.fabs
	{
		        display: none;

	}
}
