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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
    direction: rtl;
    width: 100%;
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: min(1200px, 92vw);
    margin-inline: auto;
    padding: 0 1.5rem;
}

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

p {
    margin-bottom: 1rem;
    color: #4a5568;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(10px, 2.2vw, 14px) clamp(16px, 3.2vw, 22px);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(14px, 2.4vw, 16px);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #00AEEF 0%, #0099cc 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 174, 239, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #00AEEF;
    border: 2px solid #00AEEF;
}

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

.btn-full {
    width: 100%;
}

.btn-lang-switch {
    margin-right: 8px;
    margin-left: 8px;
    padding: 8px 18px;
    font-size: 1rem;
    border-radius: 999px;
    background: #00AEEF;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 174, 239, 0.08);
    font-family: inherit;
    font-weight: 600;
    letter-spacing: 1px;
    outline: none;
    z-index: 10;
}
.btn-lang-switch:hover, .btn-lang-switch:focus {
    background: #007fa3;
    color: #fff;
}
@media (max-width: 600px) {
    .btn-lang-switch {
        padding: 7px 12px;
        font-size: 0.95rem;
        margin-right: 4px;
        margin-left: 4px;
    }
}



/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 174, 239, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #00AEEF;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    text-align: center;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00AEEF;
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: #00AEEF;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle::after {
    content: '▼';
    margin-right: 5px;
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #2d3748;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f7fafc;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #ffffff;
    color: #00AEEF;
    padding-right: 25px;
}

.contact-btn {
    background: #00AEEF !important;
    color: #fff !important;
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 600;
    font-family: inherit;
    font-size: 1rem;
    letter-spacing: 1px;
    border: none;
    transition: background 0.2s, color 0.2s;
}
.contact-btn:hover, .contact-btn:focus {
    background: #007fa3 !important;
    color: #fff !important;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #00AEEF;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(520px, 80vh, 760px);
    padding: clamp(16px, 4vw, 40px);
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.9) 0%, rgba(0, 153, 204, 0.8) 100%);
    background-size: cover;
    background-position: center;
    direction: rtl;
    overflow: hidden
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 15;
    pointer-events: auto;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: #ffffff;
    border-color: #00AEEF;
    transform: scale(1.3);
}

/* Slide Overlay Styles */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 5;
}

.slide-overlay.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(30px);
    transition: transform 1s ease-in-out;
}

.slide-overlay.active .slide-content {
    transform: translateY(0);
}

.slide-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ffffff, #00AEEF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.slide-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.slide-feature {
    background: rgba(0, 174, 239, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 174, 239, 0.3);
    backdrop-filter: blur(5px);
}

/* Hero Services Grid */
.hero-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.hero-service-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-service-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-service-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

.hero-service-info h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.2rem 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-service-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}







/* Responsive hero slider */
@media (max-width: 768px) {
    .hero-slider-dots {
        bottom: 20px;
        gap: 8px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        transform: scale(1.2);
    }
}

@media (max-width: 480px) {
    .hero-slider-dots {
        bottom: 15px;
        gap: 6px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .slide-content {
        padding: 1.5rem;
        max-width: 90%;
    }
    
    .slide-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .slide-description {
        font-size: clamp(0.9rem, 3vw, 1rem);
    }
    
    .slide-features {
        gap: 0.5rem;
    }
    
    .slide-feature {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
    

    

    
    /* Hero services responsive */
    .hero-services-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .hero-service-item {
        padding: 0.8rem;
    }
    
    .hero-service-image {
        width: 50px;
        height: 50px;
    }
    
    .hero-service-info h4 {
        font-size: 0.85rem;
    }
    
    .hero-service-info p {
        font-size: 0.7rem;
    }
    

}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    width: min(1200px, 92vw);
    margin-inline: auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 2;
    min-height: clamp(520px, 80vh, 760px);
}







/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #1a202c;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00AEEF, #0099cc);
    border-radius: 2px;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #718096;
    max-width: min(600px, 90vw);
    margin: 0 auto;
}

/* Job Advertisements Section */
.job-ads {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.job-ads::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,174,239,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.job-ads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.job-ad-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: white;
    height: 400px;
}

.job-ad-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 174, 239, 0.2);
}

.job-ad-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.job-ad-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    display: block;
    max-width: 100%;
    height: auto;
}

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

.job-ad-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.95) 0%, rgba(0, 153, 204, 0.9) 100%);
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: all 0.4s ease;
    z-index: 10;
}

.job-ad-card:hover .job-ad-overlay {
    transform: translateY(0);
}

.job-ad-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.job-ad-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.job-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.job-feature {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.job-ads-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.job-ads-note {
    margin-top: 1rem;
    color: #4a5568;
    font-size: 1rem;
    font-weight: 500;
}

/* Image Zoom Icon */
.image-zoom-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 174, 239, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 15;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 174, 239, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.image-zoom-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.image-zoom-icon:hover {
    background: rgba(0, 174, 239, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 174, 239, 0.4);
}

.job-ad-img {
    cursor: pointer;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    margin: 2% auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    text-align: center;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.close-modal {
    position: sticky;
    top: 15px;
    right: 25px;
    color: #aaa;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
    float: right;
    margin-bottom: 10px;
}

.close-modal:hover {
    color: #00AEEF;
}

.modal-title {
    color: #1a202c;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    position: sticky;
    top: 60px;
    background: white;
    padding: 10px 0;
    z-index: 10000;
    border-bottom: 2px solid #f0f0f0;
}

.modal-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: block;
    margin: 0 auto;
}

/* Custom Scrollbar for Modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #00AEEF;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #0099cc;
}

/* Firefox Scrollbar */
.modal-content {
    scrollbar-width: thin;
    scrollbar-color: #00AEEF #f1f1f1;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 174, 239, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00AEEF, #0099cc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e6f7ff 0%, #b3e0ff 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #00AEEF;
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-image {
    margin: 1rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-img {
    width: 100%;
    height: clamp(150px, 25vw, 200px);
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-title {
    color: #1a202c;
    font-weight: bold;
}


.service-description {
    color: #718096;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #4a5568;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.feature-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #00AEEF, #0099cc);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.feature-text h4 {
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-text p {
    color: #718096;
    margin: 0;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: clamp(250px, 40vw, 400px);
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-img {
    width: 100%;
    height: clamp(60px, 12vw, 80px);
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-img {
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease; /* حركة سلسة عند الهوفر */
}

.gallery-img:hover {
    transform: scale(1.1);
}


/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,174,239,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.why-choose-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 174, 239, 0.1);
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 174, 239, 0.15);
    border-color: rgba(0, 174, 239, 0.3);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00AEEF 0%, #0099cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 174, 239, 0.3);
}

.advantage-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.advantage-text h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.advantage-text p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.why-choose-image {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.why-choose-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    background: white;
    padding: 1.5rem;
    object-fit: contain;
}

.why-choose-img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 174, 239, 0.2);
}

/* Careers Section */
.careers {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

.careers-info h3 {
    font-size: 1.75rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.75rem 0;
    color: #4a5568;
    position: relative;
    padding-right: 2rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    top: 0.75rem;
    color: #00AEEF;
    font-weight: bold;
}

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

.careers-note {
    margin-top: 1rem;
    color: #718096;
    font-size: 0.9rem;
}

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

.team-slider {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    min-height: 300px;
}

.team-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.team-slide.active {
    opacity: 1;
}

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

.team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #00AEEF;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(0, 174, 239, 0.2);
    display: block;
    max-width: 100%;
    height: auto;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.team-position {
    font-size: 0.9rem;
    color: #00AEEF;
    font-weight: 600;
    margin: 0;
}

/* Companies Section */
.companies {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.company-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 174, 239, 0.15);
    border-color: #00AEEF;
}

.company-logo {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.company-card:hover .company-logo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #f8f9fa;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.contact-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.contact-link:hover {
    text-decoration: none;
    color: inherit;
}

.contact-link:hover .contact-icon {
    background: #007fa3;
    transform: scale(1.1);
}

.contact-link:hover .contact-details h4 {
    color: #00AEEF;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #00AEEF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-details p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

/* Contact Map Styles */
.contact-map {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.map-container {
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    transition: transform 0.3s ease;
}

.map-container:hover iframe {
    transform: scale(1.02);
}

.map-info {
    text-align: center;
    padding: 1rem;
}

.map-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.map-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #00AEEF;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 174, 239, 0.2);
}

.map-link:hover {
    background: #007fa3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 174, 239, 0.3);
    color: white;
    text-decoration: none;
}

.map-link svg {
    transition: transform 0.3s ease;
}

.map-link:hover svg {
    transform: translateX(3px) translateY(-3px);
}

/* Form Styles */
.form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00AEEF;
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #718096;
}

.contact-form .btn-full {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
}

#form-status {
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
    text-align: center;
}

#form-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#form-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

#form-status.loading {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00AEEF;
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 1;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 200px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    opacity: 1 !important;
    visibility: visible !important;
    display: grid !important;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 35px;
    width: auto;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: #00AEEF;
}

.footer-description {
    color: #a0aec0;
    line-height: 1.6;
    text-align: center;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
    text-align: center;
}

.footer-links a:hover {
    color: #00AEEF;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #00AEEF;
    color: white;
    transform: translateY(-2px);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #a0aec0;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #00AEEF;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        text-align: center;
        margin: 0 auto 2rem;
        max-width: min(700px, 85vw);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-stats {
        position: relative;
        width: clamp(260px, 50vw, 320px);
        margin: 1.5rem auto 0;
        padding: clamp(18px, 3vw, 24px);
    }
    
    .about-content,
    .why-choose-content,
    .job-ads-grid,
    .careers-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    /* Footer responsive for tablet */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 72vh;
    }
    

    
    .hero-stats {
        position: relative;
        width: clamp(220px, 70vw, 280px);
        margin: 1rem auto 0;
        padding: clamp(16px, 3vw, 20px);
        gap: clamp(10px, 2vw, 16px);
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        margin-top: 1rem;
        margin-left: 1rem;
    }
    
    .dropdown-item {
        padding: 8px 0;
        border-bottom: none;
        color: #2d3748;
    }
    
    .dropdown-item:hover {
        background: transparent;
        color: #00AEEF;
        padding-left: 10px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-map {
        order: 1;
        padding: 1.5rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-info h4 {
        font-size: 1.1rem;
    }
    
    .map-info p {
        font-size: 0.9rem;
    }
    
    .map-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    

    
    .nav-toggle {
        display: flex;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-gallery,
    .careers-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantage-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .advantage-icon {
        width: 50px;
        height: 50px;
    }
    
    .advantage-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .advantage-text h4 {
        font-size: 1.1rem;
    }
    
    .advantage-text p {
        font-size: 0.9rem;
    }
    
    .why-choose-image {
        gap: 1rem;
    }
    
    .why-choose-img {
        max-width: 280px;
        padding: 1rem;
    }
    
    .job-ad-card {
        height: 300px;
    }
    
    .job-ad-overlay {
        padding: 1.5rem;
    }
    
    .job-ad-content h3 {
        font-size: 1.3rem;
    }
    
    .job-ad-content p {
        font-size: 0.9rem;
    }
    
    .job-feature {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 15px;
        max-height: 85vh;
    }
    
    .modal-title {
        font-size: 1.2rem;
    }
    
    .image-zoom-icon {
        width: 35px;
        height: 35px;
    }
    
    .image-zoom-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .companies-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }
    
    .company-card {
        padding: 1rem;
        min-height: 80px;
    }
    
    .company-logo {
        max-height: 50px;
    }
    
    .contact {
        padding: 4rem 0;
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-details h4 {
        font-size: 0.9rem;
    }
    
    .contact-details p {
        font-size: 0.85rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .about-gallery,
    .careers-gallery {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .gallery-img {
        height: 60px;
    }
    
    .team-slider {
        max-width: 350px;
    }
    
    .team-img {
        width: 100px;
        height: 100px;
    }
    
    .team-name {
        font-size: 1.1rem;
    }
    
    .team-position {
        font-size: 0.85rem;
    }
    
    .why-choose-image {
        gap: 0.8rem;
    }
    
    .why-choose-img {
        max-width: 250px;
        padding: 0.8rem;
    }
    
    .form {
        padding: 2rem;
    }
    

    
    .companies-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 0.8rem;
    }
    
    .company-card {
        padding: 0.8rem;
        min-height: 70px;
    }
    
    .company-logo {
        max-height: 40px;
    }
    
    /* Footer responsive */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* Animation Classes - Disabled for stability */
.fade-in {
    opacity: 1;
    transform: none;
    transition: none;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

.slide-in-left {
    opacity: 1;
    transform: none;
    transition: none;
}

.slide-in-left.visible {
    opacity: 1;
    transform: none;
}

.slide-in-right {
    opacity: 1;
    transform: none;
    transition: none;
}

.slide-in-right.visible {
    opacity: 1;
    transform: none;
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Hide hero buttons on desktop only */
@media (min-width: 1025px) {
    .hero-buttons {
        display: none !important;
    }
}

#backToTop {
  display: none;
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  background: #00AEEF;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  box-shadow: 0 4px 16px rgba(0,174,239,0.15);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
#backToTop svg {
  display: block;
  margin: auto;
  color: #fff;
  stroke: #fff;
}
#backToTop:hover, #backToTop:focus {
  background: #007fa3;
  box-shadow: 0 8px 24px rgba(0,174,239,0.25);
  transform: translateY(-4px) scale(1.08);
}
