﻿:root {
    --tarjim-light-green: #ECFDF5;
    --tarjim-dark: #1F2937;
    --tarjim-green: #14AE80;
    --tarjim-overlay: rgba(0, 0, 0, 0.4);
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--tarjim-light-green);
    overflow: hidden;
}

    .hero-section video {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        z-index: 0;
    }

    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--tarjim-overlay);
        z-index: 1;
    }

    .hero-section .section-container {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 64rem;
        margin-left: auto;
        margin-right: auto;
    }

.hero-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: white;
    line-height: 1.3;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

/* ===== CTA Buttons ===== */
.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-btn-primary {
    background-color: var(--tarjim-green);
    color: white;
    border: 2px solid transparent;
}

    .hero-btn-primary:hover {
        background-color: white;
        color: var(--tarjim-green);
        border-color: var(--tarjim-green);
    }

.hero-btn-secondary {
    background-color: white;
    color: var(--tarjim-green);
    border: 2px solid var(--tarjim-green);
    position: relative;
    overflow: hidden;
}

    .hero-btn-secondary:hover {
        background-color: var(--tarjim-green);
        color: white;
    }

.icon-btn {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}


@keyframes move-arrow {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-6px);
    }

    100% {
        transform: translateX(0);
    }
}

.hero-btn-secondary:hover .arrow-icon {
    animation: move-arrow 0.6s ease-in-out infinite;
}
/* أنماط صفحة About */
.team-card {
    transition: transform 0.3s;
}

    .team-card:hover {
        transform: translateY(-10px);
    }

.counter-item {
    padding: 2rem;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 1rem;
}

/* أنماط صفحة Contact */
#contactForm input,
#contactForm textarea {
    transition: border-color 0.3s;
}

    #contactForm input:focus,
    #contactForm textarea:focus {
        border-color: var(--tarjim-green);
        outline: none;
    }