/* font face woff2 */
@font-face {
    font-family: 'ExpoArabic';
    src: url('fonts/ExpoArabic-Book.woff2') format('woff2'), url('fonts/ExpoArabic-Book.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #003D5B;
    --secondary-color: #2A9D8F;
    --text-color: #333;
    --white: #ffffff;
    --bg-light: #f9f9f9;
    --font-family: 'ExpoArabic', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    /*background-color: var(--white);*/
    background-image: url('images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.btn {
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #002a3f;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 61, 91, 0.2);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    box-shadow: 0 5px 15px rgba(0, 61, 91, 0.1);
}

.btn-secondary:hover {
    background-color: #002a3f;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 61, 91, 0.2);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: radial-gradient(circle at 10% 20%, rgba(42, 157, 143, 0.05) 0%, rgba(255, 255, 255, 1) 90%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-left: 50px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 80%;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.1));
}

/* Services & About */
.services,
.about {
    padding: 100px 0;
}

.services .container,
.about .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-image,
.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.service-image img,
.about-image img {
    max-width: 100%;
}

.service-content,
.about-content {
    flex: 1;
}

.service-content h2,
.about-content h2 {
    font-size: 2.5rem;
    font-style: bold;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-content p,
.about-content p {
    font-size: 1.3rem;
    color: #666;
}

/* CTA Section */
.cta {
    padding: 100px 0;
}

.cta-card {
    /*background-color: var(--primary-color);*/
    background-image: url('images/cta_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.1) 0%, transparent 70%);
}

.cta-content {
    flex: 1;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-image {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    z-index: 1;
}

.cta-image img {
    max-width: 100%;
}

/* Footer */
footer {
    padding: 40px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }

    .nav-actions {
        display: none;
    }

    .menu-toggle span {
        width: 25px;
        height: 3px;
        background-color: var(--primary-color);
        margin: 2px 0;
        transition: 0.4s;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hero .container,
    .services .container,
    .about .container,
    .cta-card {
        flex-direction: column;
        text-align: center;
    }

    .hero-content,
    .hero-image,
    .service-image,
    .service-content,
    .about-content,
    .about-image,
    .cta-content,
    .cta-image {
        padding: 0;
        margin-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }
}