/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior:smooth;
    font-size: 16px;
}

body {
    font-family: 'Cairo', system-ui, -apple-system, sans-serif;
    direction: rtl;
    text-align: right;
    line-height: 1.6;
    color: #333;
    cursor:pointer;
    overflow-x: hidden;
}

.container {
    
    /* Reset and Base Styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        font-size: 16px;
    }

    body {
        font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
        direction: rtl;
        text-align: right;
        line-height: 1.6;
        color: #333;
        overflow-x: hidden;
    }

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

    /* Typography */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    p {
        margin-bottom: 1rem;
        line-height: 1.8;
    }

    /* Buttons */
    .btn-primary {
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        color: white;
        padding: 12px 24px;
        border: none;
        border-radius: 30px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    }

    .btn-secondary {
        background: transparent; 
        color: white;
        padding: 12px 24px;
        border: 2px solid white;
        border-radius: 30px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
    }

    .btn-secondary:hover {
        background: white;
        color: #333;
        transform: translateY(-2px);
    }

    /* Section Styles */
    .section-badge {
        background: #dbeafe;
        color: #2563eb;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.875rem;
        font-weight: 600;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 800;
        color: #1f2937;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .section-description {
        font-size: 1.125rem;
        color: #6b7280;
        max-width: 600px;
        margin: 0 auto 2rem;
        line-height: 1.8;
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

       

    /* Header */
    .header {
        background: #ebeff0;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
          padding-top: env(safe-area-inset-top);
        z-index: 1000;
        transition: all 0.3s ease;
    }

    .nav-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 0;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .logo-icon img {
        width: 100px;
        height: 70px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
    }

    .logo-text h1 {
        font-size: 1.5rem;
        color: #1f2937;
        margin: 0;
    }

    .logo-text p {
        font-size: 0.875rem;
        color: #6b7280;
        margin: 0;
    }

    .nav-desktop {
        display: flex;
        gap: 2rem;
        color : #ffffff;
        background-color: #2b5e9e;
        border-radius: 40px;
        padding: 10px;
    }

    .nav-desktop a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
        padding: 1px;
    }

    .nav-desktop a:hover {
        color: #3b82f6;
        background-color: #ffffff;
        border-radius: 40px;
    }
    .nav-desktop a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #3b82f6;
        transition: width 0.3s ease;
    }

    .nav-desktop a:hover::after {
        width: 100%;
    }

    .header-contact {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .phone-info {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #6b7280;
        font-size: 0.875rem;
    }

    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #374151;
    }

    .mobile-menu {
        display: none;
        background: white;
        border-top: 1px solid #e5e7eb;
        padding: 1rem 0;
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .mobile-nav a {
        color: #374151;
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0;
    }

    .mobile-contact {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #6b7280;
        font-size: 0.875rem;
        padding: 0.5rem 0;
        border-top: 1px solid #e5e7eb;
        margin-top: 1rem;
    }

    /* Hero Section */
    .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -2;
    }

    .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    .hero-content {
        text-align: center;
        color: white;
        max-width: 800px;
        margin: 0 auto;
        padding: 2rem;
        animation: fadeInUp 1s ease-out;
    }

    .hero-badge {
        background: rgba(59, 130, 246, 0.9);
        color: white;
        padding: 12px 20px;
        border-radius: 25px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 2rem;
        font-weight: 500;
    }

    .hero-title {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        color: #ffffff;
        line-height: 1.8;
    }

    .hero-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-bottom: 3rem;
        flex-wrap: wrap;
    }

    .hero-trust {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.875rem;
        color: #ffffff;
    }

    .trust-item i {
        color: #fbbf24;
    }

    .scroll-indicator {
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        animation: bounce 2s infinite;
    }

    .scroll-indicator:hover {
        background: rgba(0, 0, 0, 0.3);
    }

    /* Stats Section */
    .stats {
        background:#ffffff;
        color: rgb(0, 0, 0);
        padding: 5rem 0;
    }

    .stats-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .stats-header h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
    }

    .stats-header p {
        font-size: 1.125rem;
        color: #000000;
        max-width: 600px;
        margin: 0 auto;
    }

    .stats-grid {
        /* display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
        display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
        gap: 18rem;
        margin-bottom: 0rem;
    }

.statsp{
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
}
    .stat-card {
        
        /* backdrop-filter: blur(0px); */
        border-radius: 16px;
        padding: 2rem;
        color: #000000b7;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .stat-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.2);
    }

    .stat-card i {
        font-size: 2rem;
        color: #000000;
        margin-bottom: 1rem;
        transition: color 0.3s ease;
    }

    .stat-card:hover i {
        color: rgb(0, 0, 0);
    }

    .stat-number {
        font-size: 3rem;
        font-weight: 800;
        color: rgb(0, 0, 0);
        display: inline;
    }

    .stat-suffix {
        font-size: 3rem;
        font-weight: 800;
        color: rgb(0, 0, 0);
        display: inline;
    }

    .stat-label {
        font-size: 1.125rem;
        color: #000000;
        font-weight: 500;
        margin-top: 0.5rem;
    }

    .stats-info {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 2rem;
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }

    .stats-info p {
        font-size: 1.125rem;
        color: #000000;
        line-height: 1.8;
        margin: 0;
    }

    /* About Section */
    .about {
        background: #f9fafb;
        padding: 5rem 0;
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .about-content {
        padding-right: 2rem;
    }

    .about-text {
        font-size: 1.125rem;
        color: #6b7280;
        line-height: 1.8;
        margin-bottom: 2rem;
    }

    .features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .feature-item {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
    }

    .feature-item i {
        background: #dbeafe;
        color: #2563eb;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .feature-item h4 {
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 0.5rem;
    }

    .feature-item p {
        color: #6b7280;
        font-size: 0.875rem;
        margin: 0;
    }

    .about-image {
        position: relative;
    }

    .image-container {
        border-radius: 16px;
        overflow: hidden;
        position: relative;
    }

    .image-container img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    .image-container::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(59, 130, 246, 0.2), transparent);
    }

    .floating-card {
        position: absolute;
        background: white;
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        text-align: center;
        border: 1px solid #e5e7eb;
    }

    .projects-card {
        bottom: -20px;
        right: -20px;
    }

    .experience-card {
        top: -20px;
        left: -10px;
    }

    .card-number {
        font-size: 2rem;
        font-weight: 800;
        color: #3b82f6;
        margin-bottom: 0.25rem;
    }

    .projects-card .card-number {
        color: #10b981;
    }

    .card-label {
        color: #6b7280;
        font-size: 0.875rem;
        font-weight: 500;
    }

    /* Services Section */
    .services {
        background: white;
        padding: 5rem 0;
    }

    .services-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .services-menu {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .service-item {
        background: #f9fafb;
        border: 2px solid transparent;
        border-radius: 12px;
        padding: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .service-item.active {
        background: #eff6ff;
        border-color: #bfdbfe;
    }

    .service-item:hover {
        background: #f3f4f6;
    }

    .service-item.active:hover {
        background: #eff6ff;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        background: #e5e7eb;
        color: #6b7280;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .service-item.active .service-icon {
        background: #3b82f6;
        color: white;
    }

    .service-content {
        flex: 1;
    }

    .service-content h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 0.5rem;
        transition: color 0.3s ease;
    }

    .service-item.active .service-content h3 {
        color: #2563eb;
    }

    .service-content p {
        color: #6b7280;
        font-size: 0.875rem;
        margin: 0;
        line-height: 1.6;
    }

    .service-arrow {
        color: #9ca3af;
        transition: all 0.3s ease;
        transform: rotate(180deg);
    }

    .service-item.active .service-arrow {
        color: #2563eb;
        transform: rotate(0deg);
    }

    .service-display {
        position: relative;
    }

    .service-image {
        border-radius: 16px;
        overflow: hidden;
        position: relative;
    }

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

    .service-image::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50%;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    }

    .service-badge {
        position: absolute;
        bottom: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 1.5rem;
        max-width: 300px;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .badge-icon {
        background: #3b82f6;
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .badge-content h4 {
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .badge-content p {
        color: #6b7280;
        font-size: 0.875rem;
        margin: 0;
        line-height: 1.5;
    }

    .services-cta {
        background: linear-gradient(135deg, #3b82f6, #1e40af);
        border-radius: 16px;
        padding: 3rem;
        text-align: center;
        color: white;
        margin-top: 4rem;
    }

    .services-cta h3 {
        font-size: 1.75rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .services-cta p {
        font-size: 1.125rem;
        color: #bfdbfe;
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .services-cta .btn-primary {
        background: white;
        color: #3b82f6;
    }

    .services-cta .btn-primary:hover {
        background: #f3f4f6;
        transform: translateY(-2px);
    }

    /* Projects Section */
    .projects {
        background: #f9fafb;
        padding: 5rem 0;
    }

    .projects-filter {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
    }

    .filter-btn {
        background: white;
        color: #6b7280;
        border: 2px solid #e5e7eb;
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .filter-btn.active,
    .filter-btn:hover {
        background: #3b82f6;
        color: white;
        border-color: #3b82f6;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }

    .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .project-card {
        background: white;
        border-radius: 12px;
        /* overflow: hidden; */
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        cursor: pointer;
    }

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

    .project-image {
        position: relative;
        overflow: hidden;
    }

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

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

    .project-category {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #3b82f6;
        color: white;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.875rem;
        font-weight: 500;
    }

    .project-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.3s ease;
    }

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

    .project-overlay i {
        color: white;
        font-size: 2rem;
    }

    .project-content {
        padding: 1.5rem;
    }

    .project-content h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 0.75rem;
    }

    .project-content p {
        color: #6b7280;
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .project-info {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .info-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #9ca3af;
        font-size: 0.875rem;
    }

    .info-item i {
        width: 16px;
        flex-shrink: 0;
    }

    .projects-cta {
        text-align: center;
    }

    /* Contact Section */
    .contact {
        background: white;
        padding: 5rem 0;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 4rem;
    }

    .contact-info {
        background: #f9fafb;
        border-radius: 16px;
        padding: 2rem;
    }

    .contact-info h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 2rem;
    }

    .contact-items {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .contact-item {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        flex-shrink: 0;
    }

    .contact-icon.phone {
        background: #dcfce7;
        color: #16a34a;
    }

    .contact-icon.email {
        background: #dbeafe;
        color: #2563eb;
    }

    .contact-icon.location {
        background: #fef2f2;
        color: #dc2626;
    }

    .contact-icon.time {
        background: #f3e8ff;
        color: #9333ea;
    }

    .contact-details h4 {
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 0.5rem;
    }

    .contact-details p {
        color: #6b7280;
        font-size: 0.875rem;
        margin: 0;
        line-height: 1.5;
    }

    .small{/* .map-placeholder { */
        background: #e5e7eb;
        border-radius: 12px;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .map-content {
        text-align: center;
        color: #9ca3af;
    }

    .map-content i {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .map-content p {
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

    .map-content small {
        font-size: 0.75rem;
    }

    .contact-form-container {
        background: white;
        border: 1px solid #e5e7eb;
        border-radius: 16px;
        padding: 2rem;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .form-group {
        display: flex;
        flex-direction: column;
    }

    .form-group label {
        font-weight: 500;
        color: #374151;
        margin-bottom: 0.5rem;
        font-size: 0.875rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        border: 1px solid #d1d5db;
        border-radius: 8px;
        font-size: 1rem;
        transition: all 0.3s ease;
        font-family: inherit;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

    .form-submit {
        width: 100%;
        padding: 16px;
        font-size: 1.125rem;
        margin-top: 1rem;
    }

    .form-success {
        text-align: center;
        padding: 3rem;
    }

    .success-icon {
        background: #dcfce7;
        color: #16a34a;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        margin: 0 auto 1.5rem;
    }

    .form-success h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 1rem;
    }

    .form-success p {
        color: #6b7280;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .emergency-contact {
        background: linear-gradient(135deg, #dc2626, #b91c1c);
        border-radius: 16px;
        padding: 3rem;
        text-align: center;
        color: white;
        margin-top: 4rem;
    }

    .emergency-contact h3 {
        font-size: 1.75rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .emergency-contact p {
        font-size: 1.125rem;
        color: #fecaca;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .emergency-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .emergency-buttons .btn-primary {
        background: white;
        color: #dc2626;
    }

    .emergency-buttons .btn-primary:hover {
        background: #f3f4f6;
    }

    .emergency-buttons .btn-secondary {
        border-color: white;
        color: white;
    }

    .emergency-buttons .btn-secondary:hover {
        background: white;
        color: #dc2626;
    }

    /* Footer */
    .footer {
        background: #EDEDED;
        color: rgb(34, 34, 34);
    }

    .newsletter {

        padding: 3rem 0;
    }

    .newsletter-content {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .newsletter-content h3 {
        font-size: 1.9rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .newsletter-content p {
        color: #aed4ff;
        margin-bottom: 2rem;
        font-size: 1.3rem;
    }

    .newsletter-form {
        display: flex;
        gap: 1rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .newsletter-form input {
        flex: 1;
        padding: 12px 16px;
        border: none;
        border-radius: 8px;
        font-size: 1rem;
    }

    .newsletter-form input:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    }

    .newsletter-form button {
        background: white;
        color: #3b82f6;
        border: none;
        padding: 12px 20px;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .newsletter-form button:hover {
        background: #f3f4f6;
    }

    .newsletter-success {
        background: rgba(16, 185, 129, 0.2);
        border: 1px solid #10b981;
        border-radius: 8px;
        padding: 1rem;
        color: #d1fae5;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-main {
        padding: 4rem 0;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 3rem;
    }

    .footer-company {
        padding-right: 2rem;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 1.5rem;
    }

    .footer-logo .logo-icon {
        width: 70px;
        height: 70px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
    }

    .footer-logo h3 {
        font-size: 1.5rem;
        margin: 0;
    }

    .footer-logo p {
        color: #000000;
        font-size: 0.875rem;
        margin: 0;
    }

    .company-description {
        color: #000000;
        line-height: 1.8;
        margin-bottom: 2rem;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-contact .contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #000000;
        font-size: 0.875rem;
    }

    .footer-contact .contact-item i {
        color: #000000;
        width: 20px;
    }

    .footer-links h4 {
        font-size: 1.725rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: rgb(0, 0, 0);
    }

    .footer-links ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-links a {
        color: #000000;
        text-decoration: none;
        font-size: 0.875rem;
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: rgb(0, 140, 255);
        text-decoration: underline;
    }

    .footer-bottom {
        border-top: 1px solid #374151;
        padding: 2rem 0;
    }

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

    .copyright {
        color: #2c2c2c;
        font-size: 0.875rem;
    }

    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        background: #374151;
        color: #ffffff;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-links a:hover {
        background: #3b82f6;
        color: white;
        transform: translateY(-2px);
    }

    .legal-links {
        display: flex;
        gap: 1.5rem;
    }

    .legal-links a {
        color: #000000;
        text-decoration: none;
        font-size: 0.875rem;
        transition: color 0.3s ease;
    }

    .legal-links a:hover {
        color: #3b82f6;
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-10px);
        }

        60% {
            transform: translateY(-5px);
        }
    }

    /* Responsive Design */
    @media (max-width: 1024px) {

        .nav-desktop,
        .header-contact {
            display: none;
        }
        
        .stats-grid{
            gap: 0px;
        }
        .mobile-menu-btn {
            display: block;
        }

        .about-grid,
        .services-grid {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .about-content {
            padding-right: 0;
            order: 2;
        }

        .about-image {
            order: 1;
        }

        .features-grid {
            grid-template-columns: 1fr;
        }

        .contact-grid {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .footer-company {
            grid-column: 1 / -1;
            padding-right: 0;
        }
    }

    @media (max-width: 768px) {
        .hero-title {
            font-size: 2rem;
        }
        
        .hero-description {
            font-size: 1rem;
        }

        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }

        .hero-trust {
            flex-direction: column;
            gap: 1rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }

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

        .form-row {
            grid-template-columns: 1fr;
        }

        .newsletter-form {
            flex-direction: column;
        }

        .footer-grid {
            grid-template-columns: 1fr;
        }

        .footer-bottom-content {
            flex-direction: column;
            text-align: center;
        }

        .emergency-buttons {
            flex-direction: column;
            align-items: center;
        }
    }

    @media (max-width: 480px) {
        .container {
            padding: 0 15px;
        }
        .statsp{
                gap:90px;
        }

/* .logo-icon img{
            display: none;
        } */
        .hero-content {
            padding: 1rem;
        }

        .hero-title {
            font-size: 1.75rem;
        }

        .section-title {
            font-size: 1.75rem;
        }

        .stats-grid {
            grid-template-columns: 1fr;
        }

        .projects-filter {
            flex-direction: column;
            align-items: center;
        }

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

        .project-card {
            margin: 0 10px;
        }
    }

    /* Utility Classes */
    /* .hidden {
        display: none !important;
    } */

    .visible {
        display: block !important;
    }

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

    .mb-0 {
        margin-bottom: 0;
    }

    .mb-1 {
        margin-bottom: 0.25rem;
    }

    .mb-2 {
        margin-bottom: 0.5rem;
    }

    .mb-3 {
        margin-bottom: 0.75rem;
    }

    .mb-4 {
        margin-bottom: 1rem;
    }

    .mt-0 {
        margin-top: 0;
    }

    .mt-1 {
        margin-top: 0.25rem;
    }

    .mt-2 {
        margin-top: 0.5rem;
    }

    .mt-3 {
        margin-top: 0.75rem;
    }

    .mt-4 {
        margin-top: 1rem;
    }

    /* Print Styles */
    @media print {

        .header,
        .mobile-menu,
        .scroll-indicator,
        .btn-primary,
        .btn-secondary,
        .contact-form,
        .newsletter,
        .social-links {
            display: none !important;
        }

        body {
            color: black !important;
            background: white !important;
        }

        .hero,
        .stats,
        .services-cta,
        .emergency-contact {
            background: white !important;
            color: black !important;
        }
    }

    /* High Contrast Mode */
    @media (prefers-contrast: high) {
        .btn-primary {
            border: 2px solid #000;
        }

        .service-item {
            border: 2px solid #000;
        }

        .project-card {
            border: 2px solid #000;
        }
    }

    /* Reduced Motion */
    @media (prefers-reduced-motion: reduce) {

        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }

        .scroll-indicator {
            animation: none;
        }
    }

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


.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 12px 24px;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

/* Section Styles */
.section-badge {
    background: #dbeafe;
    color: #2563eb;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.text-accent {
    color: #3b82f6;
}

/* Header */
.header {
    background: #ededed;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {

    width: 100px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: #1f2937;
    margin: 0;
}

.logo-text p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.nav-desktop {
    display: flex;
    gap: 2rem;
}

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

.nav-desktop a:hover {
    color: #3b82f6;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after {
    width: 100%;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 0.875rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #374151;
}

.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid #e5e7eb;
    padding: 1rem 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
}

.mobile-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 0.875rem;
    padding: 0.5rem 0;
    border-top: 1px solid #e5e7eb;
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(110, 110, 110, 0.5);
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    background: rgba(59, 130, 246, 0.9);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #e5e7eb;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #d1d5db;
}

.trust-item i {
    color: #fbbf24;
}

.scroll-indicator {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-indicator:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #ffffff, #ffffff);
    color: rgb(0, 0, 0);
    padding: 5rem 0;
    display: flex;
}

.undercounter {
    background: #f3f4f6;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stats-header {
    text-align: center;
    margin-bottom: 4rem;
    justify-content: center;
    align-items: center;
}


.statsp{
    display: flex;
    justify-content: space-between;
    gap: 200px;
    font-size: 25px;
    flex-wrap: wrap;
    padding: 30px;
}

.stats-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.stats-header p {
    font-size: 1.125rem;
    color: #bfdbfe;
    max-width: 600px;
    margin: 0 auto;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-card i {
    font-size: 2rem;
    color: #bfdbfe;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.stat-card:hover i {
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgb(0, 0, 0);
    display: inline;
}

.stat-suffix {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    display: inline;
}

.stat-label {
    font-size: 1.125rem;
    color: #bfdbfe;
    font-weight: 500;
    margin-top: 0.5rem;
}

.stats-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.stats-info p {
    font-size: 1.4rem;
    color: rgb(0, 0, 0);
    line-height: 1.8;
    margin: 0;
    
}


/* About Section */
.about {
    background: #f9fafb;
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    padding-right: 2rem;
}

.about-text {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-item i {
    background: #dbeafe;
    color: #2563eb;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.about-image {
    position: relative;
}

.image-container {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.2), transparent);
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
    border: 1px solid #e5e7eb;
}

.projects-card {
    bottom: -20px;
    right: -20px;
}

.experience-card {
    top: -20px;
    left: -10px;
}

.card-number {
    font-size: 2rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 0.25rem;
}

.projects-card .card-number {
    color: #10b981;
}

.card-label {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Services Section */
.services {
    background: white;
    padding: 5rem 0; 
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services-menu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    background: #f9fafb;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.taawan{
     display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* علشان النص يعرف يتموضع جوة الكونتينر */
    width: 100%; /* زي ما انت عامل */
}

.taawan img{
    border-radius: 30px;
    object-fit: cover;
    width: 75%;
}



.taawan-text{
    position: absolute;
    bottom: 700px;
    left: 50%;
    transform: translateX(-50%);
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    border-radius: 10px;
    max-width: 90%;
    text-align: center;
    line-height: 1.5;
    font-weight:900;
    font-size: 30px;
}
.service-item.active {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.service-item:hover {
    background: #f3f4f6;
}

.service-item.active:hover {
    background: #eff6ff;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: #e5e7eb;
    color: #6b7280;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-item.active .service-icon {
    background: #3b82f6;
    color: white;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.service-item.active .service-content h3 {
    color: #2563eb;
}

.service-content p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.6;
}

.service-arrow {
    color: #9ca3af;
    transition: all 0.3s ease;
    transform: rotate(180deg);
}

.service-item.active .service-arrow {
    color: #2563eb;
    transform: rotate(0deg);
}

.service-display {
    position: relative;
}

.service-image {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

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

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.service-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 300px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.badge-icon {
    background: #3b82f6;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-content h4 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.badge-content p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

.services-cta {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    color: white;
    margin-top: 4rem;
}

.services-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.125rem;
    color: #bfdbfe;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-cta .btn-primary {
    background: white;
    color: #3b82f6;
}

.services-cta .btn-primary:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

/* Projects Section */
.projects {
    background: #f9fafb;
    padding: 5rem 0;
}

.projects-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    color: #6b7280;
    border: 2px solid #e5e7eb;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.project-image {
    position: relative;
    overflow: hidden;
}

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

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

.project-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #3b82f6;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.project-overlay i {
    color: white;
    font-size: 2rem;
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.project-content p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    font-size: 0.875rem;
}

.info-item i {
    width: 16px;
    flex-shrink: 0;
}

.projects-cta {
    text-align: center;
}

/* Contact Section */
.contact {
    background: white;
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info {
    background: #f9fafb;
    border-radius: 16px;
    padding: 2rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-icon.phone {
    background: #dcfce7;
    color: #16a34a;
}

.contact-icon.email {
    background: #dbeafe;
    color: #2563eb;
}

.contact-icon.location {
    background: #fef2f2;
    color: #dc2626;
}

.contact-icon.time {
    background: #f3e8ff;
    color: #9333ea;
}

.contact-details h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

.map-placeholder, .iframe {
    background: #e5e7eb;
    border-radius: 12px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.map-content {
    text-align: center;
    color: #9ca3af;
}

.map-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.map-content p {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.map-content small {
    font-size: 0.75rem;
}

.contact-form-container {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.125rem;
    margin-top: 1rem;
}

.form-success {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    background: #dcfce7;
    color: #16a34a;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.form-success p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.emergency-contact {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    color: white;
    margin-top: 4rem;
}

.emergency-contact h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.emergency-contact p {
    font-size: 1.125rem;
    color: #fecaca;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.emergency-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.emergency-buttons .btn-primary {
    background: white;
    color: #dc2626;
}

.emergency-buttons .btn-primary:hover {
    background: #f3f4f6;
}

.emergency-buttons .btn-secondary {
    border-color: white;
    color: white;
}

.emergency-buttons .btn-secondary:hover {
    background: white;
    color: #dc2626;
}

/* Footer */
.footer {
    background: #EDEDED;
    color: rgb(0, 0, 0);
    
}

.newsletter {
    padding: 3rem 0;
    background-image: url('./Images/10973253.jpg');
    background-size: cover;
}
.newsletter-content .overlay-newsletter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(107, 0, 0, 0.5); /* درجة الغمقان */
}

.newsletter-content {
    text-align: center;
    border-radius: 50px;
    
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h3 {
    font-size: 1.9rem;
    color: rgb(255, 255, 255);
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: #aed4ff;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    background: white;
    color: #3b82f6;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-form button:hover {
    background: #f3f4f6;
}

.newsletter-success {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid #10b981;
    border-radius: 8px;
    padding: 1rem;
    color: #d1fae5;
    max-width: 400px;
    margin: 0 auto;
}

.footer-main {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-company {
    padding-right: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}


.footer-logo p {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0;
}

.company-description {
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000000;
    font-size: 0.875rem;
}

.footer-contact .contact-item i {
    color: #000000;
    width: 20px;
}

.footer-links h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: rgb(0, 0, 0);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 2rem 0;
}

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

.copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    background: #374151;
    color: #9ca3af;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: white;
}

.locationimg{
    width: 50px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {

    .nav-desktop,
    .header-contact {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .about-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content {
        padding-right: 0;
        order: 2;
    }

    .about-image {
        order: 1;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-company {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-trust {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .emergency-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .projects-filter {
        flex-direction: column;
        align-items: center;
    }

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

    .project-card {
        margin: 0 10px;
    }
}
@media (max-width: 1950px) {
    .taawan-text {
    bottom: 510px;
}
}

@media (max-width: 1900px) {
    .taawan-text {
    bottom: 560px;
}
}

@media (max-width: 1700px) {
    .taawan-text {
    bottom: 450px;
    
}
}

@media (max-width: 1550px) {
    .taawan-text {
    bottom: 320px;
}
}

@media (max-width: 1390px) {
    .taawan-text {
    bottom: 300px;
}
}

@media (max-width: 1300px) {
    .taawan-text {
    bottom: 250px;
}
}

@media (max-width: 1180px) {
    .taawan-text {
    bottom: 200px;
}
}

@media (max-width: 1110px) {
    .taawan-text {
    bottom: 60px;
}
}

@media (max-width: 970px) {
    .taawan-text {
    bottom: 170px;
    font-size: 20px;
}
}

@media (max-width: 870px) {
    .taawan-text {
    bottom: 140px;
    font-size: 21px;
}
}

@media (max-width: 800px) {
    .taawan-text {
    bottom: 110px;
    font-size:19px ;

}
}

@media (max-width: 700px) {
    .taawan-text {
    bottom: 80px;
    font-size:19px;
}
}

@media (max-width: 600px) {
    .taawan-text {
    bottom: 50px;
    font-size:15px;
}
}


@media (max-width: 650px) {
    .taawan-text {
    bottom: 60px;
    font-size:15px;
}
}



@media (max-width: 500px) {
    .taawan-text {
    bottom: 0px;
    font-size:15px;
}
}

@media (max-width: 400px) {
    .taawan-text {
    bottom: 50px;
    font-size:10px;
}
.header{
    height: 80px;
}
}

@media (max-width: 300px) {
    .taawan-text {
    bottom: 4px;
    font-size:10px;
}
}


/* Utility Classes */
/* .hidden {
    display: none !important;
} */

.visible {
    display: block !important;
}

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

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

/* Print Styles */
@media print {

    .header,
    .mobile-menu,
    .scroll-indicator,
    .btn-primary,
    .btn-secondary,
    .contact-form,
    .newsletter,
    .social-links {
        display: none !important;
    }

    body {
        color: black !important;
        background: white !important;
    }

    .hero,
    .stats,
    .services-cta,
    .emergency-contact {
        background: white !important;
        color: black !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #000;
    }

    .service-item {
        border: 2px solid #000;
    }

    .project-card {
        border: 2px solid #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scroll-indicator {
        animation: none;
    }
}

/* نسخة أوضح للشاشات اللي دقتها 2x أو أعلى */
/* @media (min-resolution: 2dppx),
       (-webkit-min-device-pixel-ratio: 2) {
  .logo .logo-icon img{
    background-image: url("./Images/logo.png");
  }
} */

/* لو عندك نسخة 3x كمان */
/* @media (min-resolution: 3dppx),    
       (-webkit-min-device-pixel-ratio: 3) {
  .logo .logo-icon img{
    background-image: url("./Images/");
  }
} */

