/* Font Faces */
@font-face {
    font-family: 'Bahij TheSansArabic';
    src: url('/static/website/fonts/Bahij_TheSansArabic-Plain.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Bahij TheSansArabic';
    src: url('/static/website/fonts/Bahij_TheSansArabic-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Bahij TheSansArabic';
    src: url('/static/website/fonts/Bahij_TheSansArabic-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Bahij TheSansArabic';
    src: url('/static/website/fonts/Bahij_TheSansArabic-SemiLight.ttf') format('truetype');
    font-weight: 350;
    font-style: normal;
}

@font-face {
    font-family: 'Bahij TheSansArabic';
    src: url('/static/website/fonts/Bahij_TheSansArabic-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Bahij TheSansArabic';
    src: url('/static/website/fonts/Bahij_TheSansArabic-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Bahij TheSansArabic';
    src: url('/static/website/fonts/Bahij_TheSansArabic-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Bahij TheSansArabic';
    src: url('/static/website/fonts/Bahij_TheSansArabic-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

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

body {
    font-family: 'Bahij TheSansArabic', 'Arial', 'Tahoma', sans-serif;
    line-height: 1.6;
    color: #333;
    direction: rtl;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    padding-top: 20px;
}

.nav-container {
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

.logo img {
    height: 100px;
    width: auto;
    padding-bottom: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #6699cc;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('/static/website/img/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo {
    position: absolute;
    top: 100px;
    right: 40px;
    z-index: 3;
    color: white;
    font-size: 40px;
    font-weight: bold;
    text-align: right;
}

.hero-logo .ar {
    font-size: 48px;
}

.hero-logo .en {
    font-size: 24px;
    font-weight: 300;
}

.hero h1 {
    font-size: 4rem;
    font-weight: bold;
}

.hero h1 img {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.lo {
    width: 400px;
}

.hero .subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.btn-primary {
    background: #6699cc;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.btn-primary:hover {
    background: #b45309;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
}

.service-content {
    padding: 30px;
    text-align: center;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 15px;
}

.service-content p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.btn-service {
    background: linear-gradient(135deg, #6699cc, #3b82f6);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

/* Projects Section */
.projects {
    padding: 80px 0;
    background: #f9fafb;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 20px;
}

.section-header .underline {
    width: 60px;
    height: 4px;
    background: #6699cc;
    margin: 0 auto 40px;
}

.section-header h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #111827;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-top: 15px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
}

.project-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.project-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: white;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.stats-header img {
    height: 60px;
    margin-bottom: 30px;
}

.stats-header h2 {
    font-size: 2.2rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 20px;
}

.stats-header .highlight {
    color: #6699cc;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-number.teal {
    color: #6699cc;
}

.stat-number.blue {
    color: #3b82f6;
}

.stat-label {
    color: #6b7280;
    font-size: 1.1rem;
}

.stats-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: #e5e7eb;
    color: #374151;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #d1d5db;
}

.btn-dark {
    background: #1f2937;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: #111827;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f9fafb;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.about-images img:hover {
    transform: scale(1.05);
}

.about-text {
    text-align: right;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 20px;
}

.about-text h3 {
    font-size: 1.5rem;
    color: #6699cc;
    font-weight: 600;
    margin-bottom: 30px;
}

.about-text p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: white;
}

.partners-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.partners-slider {
    overflow: hidden;
    border-radius: 15px;
}

.partners-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.partner-item {
    flex: 0 0 calc(20% - 24px);
    min-width: calc(20% - 24px);
    background: white;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.partner-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partners-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 1.5rem;
    color: #374151;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.partners-nav:hover {
    background: #6699cc;
    color: white;
    border-color: #6699cc;
    transform: translateY(-50%) scale(1.1);
}

.partners-prev {
    left: 0;
}

.partners-next {
    right: 0;
}

/* Dark CTA Section */
.dark-cta {
    background: #1f2937;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.dark-cta h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.dark-cta h3 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.dark-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form {
    background: #f9fafb;
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #d97706;
}

.required {
    color: #ef4444;
}


/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about {
    padding-left: 30px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: #6699cc;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #6699cc;
    transform: translateX(-3px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-info svg {
    color: #6699cc;
    flex-shrink: 0;
}

.contact-info span,
.contact-info a {
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #6699cc;
    border-color: #6699cc;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 153, 204, 0.3);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6699cc;
}

.footer-links .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Responsive Design */

/* Tablets and Small Laptops */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .lo {
        width: 350px;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-header h3 {
        font-size: 1.8rem;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .partner-item {
        flex: 0 0 calc(33.333% - 20px);
        min-width: calc(33.333% - 20px);
    }

    .about-text h2 {
        font-size: 2.2rem;
    }

    .about-text h3 {
        font-size: 1.3rem;
    }
}

/* Mobile and Tablets Portrait */
@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding-top: 10px;
    }

    .nav-container {
        height: 60px;
        padding: 0 15px;
    }

    .logo img {
        height: 35px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        padding: 20px;
        gap: 15px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    /* Hero Section */
    .hero {
        height: 100vh;
        padding-top: 60px;
    }

    .hero-content {
        padding: 0 15px;
    }

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

    .lo {
        width: 280px;
    }

    .hero .subtitle {
        font-size: 1.2rem;
        letter-spacing: 0.1em;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }

    /* Projects Section */
    .projects {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header h3 {
        font-size: 1.5rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-card img {
        height: 250px;
    }

    /* Services Section */
    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-image {
        height: 250px;
    }

    .service-content {
        padding: 25px;
    }

    /* Partners Section */
    .partners {
        padding: 60px 0;
    }

    .partners-container {
        padding: 0 50px;
    }

    .partner-item {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
        padding: 25px;
    }

    .partner-item img {
        max-height: 60px;
    }

    .partners-nav {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    /* Stats Section */
    .stats {
        padding: 60px 0;
    }

    .stats-header h2 {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .stats-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .btn-secondary,
    .btn-dark {
        width: 100%;
        padding: 15px 30px;
    }

    /* About Section */
    .about {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        gap: 15px;
    }

    .about-images img {
        height: 180px;
    }

    .about-text {
        text-align: center;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text h3 {
        font-size: 1.3rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    /* Dark CTA Section */
    .dark-cta {
        padding: 60px 0;
    }

    .dark-cta h2 {
        font-size: 2.5rem;
    }

    .dark-cta h3 {
        font-size: 1.5rem;
    }

    .dark-cta p {
        font-size: 1.1rem;
    }

    /* Contact Section */
    .contact {
        padding: 60px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-form h2 {
        font-size: 1.5rem;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* WhatsApp Button */
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }

    .logo img {
        height: 30px;
        padding-bottom: 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .lo {
        width: 220px;
    }

    .hero .subtitle {
        font-size: 1rem;
        letter-spacing: 0.05em;
    }

    .hero p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .btn-primary {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .container {
        padding: 0 15px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header h3 {
        font-size: 1.2rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .project-card img {
        height: 200px;
    }

    .project-info h3 {
        font-size: 1.2rem;
    }

    .services-grid {
        gap: 25px;
    }

    .service-image {
        height: 220px;
    }

    .service-content {
        padding: 20px;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

    .service-content p {
        font-size: 0.95rem;
    }

    .btn-service {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .partners-container {
        padding: 0 45px;
    }

    .partner-item {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 20px;
    }

    .partners-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .stats-header h2 {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-text h3 {
        font-size: 1.1rem;
    }

    .about-images img {
        height: 150px;
    }

    .dark-cta h2 {
        font-size: 2rem;
    }

    .dark-cta h3 {
        font-size: 1.3rem;
    }

    .dark-cta p {
        font-size: 1rem;
    }

    .contact-form {
        padding: 25px 15px;
    }

    .form-group input,
    .form-group select {
        padding: 10px;
        font-size: 0.95rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* Very Small Screens */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .lo {
        width: 200px;
    }

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

    .section-header h2 {
        font-size: 1.3rem;
    }

    .section-header h3 {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .service-content h3 {
        font-size: 1.2rem;
    }

    .service-content p {
        font-size: 0.9rem;
    }

    .about-text h2 {
        font-size: 1.6rem;
    }

    .about-text h3 {
        font-size: 1rem;
    }

    .dark-cta h2 {
        font-size: 1.8rem;
    }

    .dark-cta h3 {
        font-size: 1.2rem;
    }

    .partners-container {
        padding: 0 40px;
    }

    .partners-nav {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
}


/* أضف هذا الكود في نهاية ملف styles.css الخاص بك */

/* تنسيق زر تسجيل الدخول */
.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #6699cc, #3b82f6);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    margin-left: 20px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.login-btn svg {
    width: 18px;
    height: 18px;
}

/* تحديث تنسيقات الموبايل */
@media (max-width: 768px) {
    .login-btn {
        margin-left: 0;
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .login-btn svg {
        width: 16px;
        height: 16px;
    }

    .login-btn span {
        display: none;
    }

    /* عرض أيقونة فقط على الموبايل */
    .login-btn {
        width: 40px;
        height: 40px;
        justify-content: center;
        padding: 0;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .login-btn {
        width: 38px;
        height: 38px;
    }

    .login-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* إضافة تنسيق للروابط التي تبدو كأزرار */
a.btn-secondary {
    display: inline-block;
    text-decoration: none;
}

a.btn-secondary:hover {
    text-decoration: none;
}

/* تحسين تنسيق الأزرار في قسم الإحصائيات */
.stats-buttons a,
.stats-buttons button {
    min-width: 200px;
}

@media (max-width: 768px) {
    .stats-buttons a,
    .stats-buttons button {
        width: 100%;
        min-width: auto;
    }
}


/* أزرار الاتصال السريع */
.quick-contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.quick-contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    justify-content: center;
}

.quick-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.quick-contact-btn svg {
    width: 24px;
    height: 24px;
}

.call-btn {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.call-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.whatsapp-btn-large {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.whatsapp-btn-large:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
}

.phone-number {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    letter-spacing: 1px;
}

/* رسالة النموذج */
#formMessage {
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

#formMessage.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

#formMessage.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* تنسيقات الموبايل */
@media (max-width: 768px) {
    .quick-contact-buttons {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .quick-contact-btn {
        min-width: 100%;
        padding: 16px 25px;
        font-size: 1rem;
    }
    
    .phone-number {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .quick-contact-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .quick-contact-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .phone-number {
        font-size: 0.9rem;
    }
}