@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;700&display=swap');

body {
    font-family: 'Heebo', Arial, sans-serif;
    direction: rtl;
    background: linear-gradient(135deg, #e0e7ff 0%, #f7f7f7 100%);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}
header {
    background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 100%);
    color: #fff;
    padding: 20px 0 10px 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(30,58,138,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo {
    height: 60px;
    vertical-align: middle;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 4px #0002);
}
nav {
    margin-top: 10px;
}
nav a {
    color: #fff;
    margin: 0 18px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: color 0.2s;
    position: relative;
}
nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width .3s;
    position: absolute;
    bottom: -4px;
    right: 0;
}
nav a:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}
nav a:hover {
    color: #a5b4fc;
}
main {
    padding: 30px 10px 20px 10px;
    max-width: 1000px;
    margin: auto;
    background: #fff;
    border-radius: 18px;
    margin-top: 30px;
    box-shadow: 0 4px 24px #0001;
}
footer {
    background: #1e3a8a;
    color: #fff;
    text-align: center;
    padding: 18px 0 10px 0;
    margin-top: 40px;
    font-size: 1.1em;
    letter-spacing: 1px;
    border-radius: 0 0 18px 18px;
}
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #2563eb 0%, #a5b4fc 100%);
    color: #fff;
    border-radius: 18px;
    padding: 60px 20px 40px 20px;
    box-shadow: 0 4px 32px #2563eb33;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    animation: heroFadeIn 1.2s cubic-bezier(.4,0,.2,1);
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: none; }
}
.hero-bg-video {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.25;
    border-radius: 18px;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.hero h1 {
    font-size: 3em;
    margin: 0 0 18px 0;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 0 4px 24px #0003;
}
.hero p {
    font-size: 1.5em;
    margin: 0 0 18px 0;
    font-weight: 400;
    text-shadow: 0 2px 8px #0002;
}
.cta-btn {
    background: linear-gradient(90deg, #2563eb 0%, #1e3a8a 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 16px 48px;
    font-size: 1.3em;
    font-weight: 800;
    margin-top: 24px;
    box-shadow: 0 4px 16px #2563eb55;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.cta-btn:hover {
    background: #fff;
    color: #2563eb;
    box-shadow: 0 8px 32px #2563eb77;
    transform: scale(1.05);
}
.services {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: 40px 0 0 0;
}
.service-card {
    background: linear-gradient(120deg, #f1f5ff 0%, #e0e7ff 100%);
    border-radius: 16px;
    box-shadow: 0 2px 12px #2563eb11;
    padding: 28px 22px 22px 22px;
    width: 260px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    border: 2px solid #2563eb22;
}
.service-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px #2563eb33;
    border-color: #2563eb55;
}
.service-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 12px;
}
.service-card h3 {
    margin: 0 0 8px 0;
    font-size: 1.3em;
    color: #1e3a8a;
    font-weight: 700;
}
.service-card p {
    font-size: 1em;
    color: #222;
    text-align: center;
}
.bot-demo {
    margin-top: 40px;
    background: #f1f5ff;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 2px 8px #2563eb11;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
#bot-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#bot-input {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #2563eb44;
    font-size: 1em;
}
#bot-response {
    background: #e0e7ff;
    border-radius: 8px;
    padding: 10px;
    margin-top: 6px;
    min-height: 24px;
    color: #1e3a8a;
    font-weight: 700;
}
button {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px #2563eb22;
}
button:hover {
    background: #1e3a8a;
    box-shadow: 0 4px 16px #2563eb33;
}
.floating-whatsapp {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 999;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px #25d36655;
    font-size: 2.2em;
    transition: background 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.floating-whatsapp:hover {
    background: #128c7e;
    box-shadow: 0 8px 32px #128c7e55;
}
.portfolio {
    margin: 60px auto 40px auto;
    max-width: 1100px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}
.portfolio-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px #2563eb11;
    padding: 24px 18px 18px 18px;
    width: 320px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid #2563eb22;
    position: relative;
    overflow: hidden;
}
.portfolio-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 12px;
}
.portfolio-item h4 {
    margin: 0 0 8px 0;
    font-size: 1.2em;
    color: #1e3a8a;
    font-weight: 700;
}
.portfolio-item p {
    font-size: 1em;
    color: #222;
    text-align: center;
}
.testimonials {
    margin: 40px auto 0 auto;
    max-width: 900px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.testimonial {
    background: linear-gradient(120deg, #e0e7ff 0%, #f1f5ff 100%);
    border-radius: 14px;
    box-shadow: 0 2px 12px #2563eb11;
    padding: 22px 18px 18px 18px;
    width: 320px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #2563eb22;
    font-style: italic;
    position: relative;
    overflow: hidden;
}
.testimonial:before {
    content: '“';
    font-size: 2.5em;
    color: #2563eb44;
    position: absolute;
    top: 10px; left: 18px;
}
.testimonial:after {
    content: '”';
    font-size: 2.5em;
    color: #2563eb44;
    position: absolute;
    bottom: 10px; right: 18px;
}
.testimonial strong {
    color: #1e3a8a;
    font-weight: 700;
    margin-top: 10px;
    display: block;
}
@media (max-width: 700px) {
    main {
        padding: 10px 2px;
        margin-top: 10px;
    }
    .hero h1 {
        font-size: 1.5em;
    }
    .services {
        flex-direction: column;
        gap: 16px;
    }
    .service-card {
        width: 100%;
        min-height: 160px;
    }
    .bot-demo {
        padding: 8px;
    }
}
@media (max-width: 900px) {
    .portfolio, .testimonials {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .portfolio-item, .testimonial {
        width: 95%;
    }
}
