* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #5DADE2;
    --secondary-color: #3498DB;
    --accent-color: #00BFFF;
    --sky-blue-light: #87CEEB;
    --sky-blue-dark: #4682B4;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f0f8ff;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(93, 173, 226, 0.2);
    --shadow-lg: 0 10px 25px rgba(93, 173, 226, 0.3);
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(93, 173, 226, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(93, 173, 226, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.language-switcher-mobile {
    display: none;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-right: 2rem;
    align-items: center;
}

.lang-btn {
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    white-space: nowrap;
}

.lang-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(93, 173, 226, 0.3);
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 2px 6px rgba(93, 173, 226, 0.4);
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    background: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.85) 0%, rgba(52, 152, 219, 0.85) 50%, rgba(0, 191, 255, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    height: 220px;
    width: auto;
    object-fit: contain;
    margin-bottom: 2rem;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
    animation: fadeInUp 1.2s ease;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    opacity: 0.95;
    line-height: 1.8;
    font-weight: 400;
}

.hero-location {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.15rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(0, 191, 255, 0.3);
    letter-spacing: 0.5px;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--sky-blue-dark), var(--secondary-color));
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 191, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-top: 2rem;
    line-height: 1.8;
}

/* Statistics Section */
.statistics {
    background: var(--white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.1), rgba(52, 152, 219, 0.1));
    padding: 3.5rem 2rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(93, 173, 226, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(93, 173, 226, 0.15);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(93, 173, 226, 0.15) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.stat-item:hover::before {
    transform: scale(1);
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.05);
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.2), rgba(52, 152, 219, 0.2));
    box-shadow: 0 20px 40px rgba(93, 173, 226, 0.3);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    filter: drop-shadow(0 4px 8px rgba(93, 173, 226, 0.3));
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    color: var(--accent-color);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 8px rgba(93, 173, 226, 0.2);
    display: block;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* About Section */
.about {
    background: linear-gradient(to bottom, var(--white) 0%, var(--bg-light) 100%);
    padding: 120px 0;
}

.about-content {
    display: grid;
    gap: 3rem;
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 2;
    text-align: justify;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(93, 173, 226, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 35px rgba(93, 173, 226, 0.25);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.05), rgba(52, 152, 219, 0.05));
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    filter: drop-shadow(0 2px 4px rgba(93, 173, 226, 0.3));
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--accent-color);
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

/* Services Section */
.services {
    background: var(--white);
    padding: 120px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(93, 173, 226, 0.1);
    box-shadow: 0 5px 15px rgba(93, 173, 226, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(93, 173, 226, 0.25);
    background: var(--white);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.1), rgba(52, 152, 219, 0.1));
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.15);
}

.service-card:hover .service-image::after {
    opacity: 0.3;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.2), rgba(52, 152, 219, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-icon {
    font-size: 3.5rem;
    margin: 1.5rem 0 1rem 0;
    filter: drop-shadow(0 2px 6px rgba(93, 173, 226, 0.3));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    padding: 0 2rem;
    margin-bottom: 1.2rem;
}

.service-card p {
    padding: 0 2rem 2.5rem 2rem;
    margin: 0;
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Why Us Section */
.why-us {
    background: linear-gradient(to bottom, var(--bg-light) 0%, var(--white) 100%);
    padding: 120px 0;
}

.why-us-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.why-us-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(93, 173, 226, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(93, 173, 226, 0.15);
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-us-card:hover::before {
    transform: scaleX(1);
}

.why-us-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(93, 173, 226, 0.3);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.05), rgba(52, 152, 219, 0.05));
}

.why-us-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.why-us-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    filter: drop-shadow(0 2px 6px rgba(93, 173, 226, 0.3));
}

.why-us-card:hover .why-us-icon {
    transform: scale(1.15) rotate(-5deg);
    color: var(--accent-color);
}

.why-us-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.why-us-card p {
    color: var(--text-light);
    line-height: 2;
    font-size: 1.1rem;
    text-align: justify;
}

/* Contact Section */
.contact {
    background: linear-gradient(to bottom, var(--white) 0%, var(--bg-light) 100%);
    padding: 120px 0;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(93, 173, 226, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(93, 173, 226, 0.1);
}

.contact-item:hover {
    box-shadow: 0 15px 35px rgba(93, 173, 226, 0.25);
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.05), rgba(52, 152, 219, 0.05));
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    filter: drop-shadow(0 2px 4px rgba(93, 173, 226, 0.3));
}

.contact-item:hover .contact-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--accent-color);
}

.contact-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-details h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-align: center;
    font-weight: 700;
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-align: center;
    font-size: 1.05rem;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent-color);
}

.phone-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
    direction: ltr;
    width: 100%;
}

.phone-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    direction: ltr;
    text-align: center;
    display: inline-block;
    font-size: 1.1rem;
    padding: 0.3rem 0;
}

.phone-link:hover {
    color: var(--accent-color);
    transform: scale(1.05);
}

.whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.whatsapp-icon:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon svg {
    width: 18px;
    height: 18px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(93, 173, 226, 0.25);
    border: 3px solid rgba(93, 173, 226, 0.2);
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 15px 40px rgba(93, 173, 226, 0.35);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: var(--white);
    text-align: center;
    padding: 3rem 0;
    margin-top: 0;
}

.footer p {
    font-size: 1rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .language-switcher {
        display: none;
    }

    .language-switcher-mobile {
        display: block;
        padding: 1.5rem 0;
        border-top: 1px solid rgba(93, 173, 226, 0.2);
        margin-top: 1rem;
    }

    .language-switcher-mobile-inner {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
    }

    .lang-btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .logo-img {
        height: 55px;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .hero-logo {
        height: 180px;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-us-content {
        grid-template-columns: 1fr;
    }

    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 45px;
    }

    .logo h1 {
        font-size: 1rem;
    }

    .hero-logo {
        height: 150px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        padding: 2.5rem 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-icon {
        font-size: 3.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

