*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

header{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 11vh;
    /* From https://css.glass */
background: #373e51;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(4.8px);
-webkit-backdrop-filter: blur(4.8px);
}
.nav-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 100%;
    margin-right: 20px;
}
.nav-container ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-container li a{
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 1.3rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}
.nav-container li a:hover{
    background-color: rgba(0, 0, 0, 0.1);
    color: #000;
    transform: translateY(-2px);
}

/* تنسيق الرابط النشط */
.nav-container li a.active,
.nav-container li a[data-menuanchor].active {
    background-color: #B59A57;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(181, 154, 87, 0.3);
}
    
/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}
    
.logo{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 85px;
    width: auto;
    position: absolute;
    left: 0;
    padding: 10px;

}
.logo img{
    margin-bottom: 1.5vh;
    height: 85px;
    width: auto;
}
.logo h2{
    font-size: 2rem;
    font-weight: bold;
    color: #000;
}
section{
    width: 100%;
    height: 100vh;
    background-color: #000;
}
.hero-section{
    background:  url('../asstets/bg1.PNG.png');
    background-size: cover;
    background-position: center 0px;
    background-repeat: no-repeat;
}
.hero-right-content{
    position: absolute;
    right: 5vh;
    bottom: 5vh;
}
.hero-left-content{
    position: absolute;
    left: 15vh;
    top: 38vh;
}
.hero-left-content h1{
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}
.hero-left-content h1 .highlight{
    color: #FD5D14;
}
.button-warper{
    display: flex;
    gap: 10px;
    justify-content: center;
    padding-right: 100px;
    margin-top: 2px;
}

.hero-swiper{
    width: 550px;
    height: 400px;
}
.hero-swiper-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .about-section{
    background: url('../asstets/bg2.PNG.png');
    background-size: cover;
    background-position: center ;
    background-repeat: no-repeat;
} */
 .about-content{
    margin-top: 13vh;
    top: 0;
    height: fit-content;
 }
.about-top{
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    gap: 10px;
    height: fit-content;
}
.about-top img{
    height: 434px;
    width: 600px;
    object-fit: contain;
    padding-left: 40px;
}
.about-top-content{
    margin-top: 60px;
    padding: 10px;
    height: 100%;
    width: fit-content;
  
}
.about-top-content h1{
    font-size: 1.9rem;
    font-weight: bold;
    color: #000000;
    line-height: 1.3;
    letter-spacing: 1px;
    text-align: center;

}
.about-top-content p{
    font-size: 1.2rem;
    color: #000000;
    line-height: 40px;
    text-align: justify;
    padding: 10px;
    margin-top: 20px;
}

/* ensure SplitText lines stack properly */
.about-top-content p .line {
    display: block;
    overflow: hidden;
}
.about-bottom{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    padding: 20px;
    height: fit-content;
}

/* تصميم كارد سفلتة الطرق */
.card-warper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    padding: 20px;
    gap: 20px;
}
.card-for-project{
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    height: 300px;
    width: 480px;
    border-radius: 10px;
    padding: 10px;
    background-image: radial-gradient(#ccc 1px, transparent 1px);
    background-size: 20px 20px;
    border: 1px solid #B59A57;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.card-for-project:hover{
    box-shadow: 0 20px 50px rgba(181, 154, 87, 0.3);
    border: 2px solid #B59A57;
}
.card-for-project img{
    height: 270px;
    width: 270px;
    object-fit: contain;
    padding-left: 5px;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.card-for-project:hover img{
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.card-for-project-content h1{
    font-size: 1rem;
    padding-top: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.card-for-project-content p{
    font-size: 14px;
    padding-top: 10px;
    font-weight: 600;
    line-height: 28px;
    transition: all 0.3s ease;
}

.card-for-project:hover .card-for-project-content h1{
    font-size: 1.2rem;
    transform: translateY(-5px);
    font-weight: bold;
}

.card-for-project:hover .card-for-project-content p{
    color: #333;
    transform: translateY(-3px);
}
.recycle p{
    font-size: 12px;
    line-height: 28px;
}
/* تصميم قسم المشاريع الجديد */
.projects-section {
    
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.projects-header {
    text-align: center;
    padding: 90px 20px 40px;
    background: linear-gradient(135deg, rgba(181, 154, 87, 0.1) 0%, rgba(181, 154, 87, 0.05) 100%);
}

.projects-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #B59A57;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.3;
}

.projects-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

.slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    padding: 20px;
}

.project-card {
    background: white;
    margin-bottom: 30vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    width: 100%;
    display: flex;
    transition: all 0.3s ease;
    border: 1px solid rgba(181, 154, 87, 0.1);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(181, 154, 87, 0.2);
}

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

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

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

.project-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.project-status {
    display: flex;
    gap: 10px;
}

.status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.completed {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.status-badge.in-progress {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    color: white;
}

.status-badge.planning {
    background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%);
    color: white;
}

.project-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-header {
    margin-bottom: 20px;
}

.project-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.project-category {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(181, 154, 87, 0.1) 0%, rgba(181, 154, 87, 0.05) 100%);
    border-radius: 25px;
    width: fit-content;
    font-size: 0.9rem;
    font-weight: 500;
    color: #B59A57;
}

.project-category i {
    font-size: 1rem;
}

.project-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    text-align: justify;
}

.project-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(181, 154, 87, 0.1);
    border-color: #B59A57;
}

.stat-item i {
    font-size: 1.2rem;
    color: #B59A57;
    background: white;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(181, 154, 87, 0.2);
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-label {
    font-size: 0.8rem;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

/* تنسيق عنوان قسم التواصل */
.contact-section{
    z-index: 100;
}
.contact-header {
    text-align: center;
    padding: 95px 20px 30px;
    background: linear-gradient(135deg, rgba(181, 154, 87, 0.1) 0%, rgba(181, 154, 87, 0.05) 100%);
}

.contact-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #B59A57;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.3;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}
.contact-content{
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 65px;
}
.contact-left-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: #B59A57;
    width: 30vw;
    position: relative;
    height: 75VH;
    margin-top: 3vh;
}
.left-content-cont-top{
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;

}
.left-content-cont h1{
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    order: 1;
    top: 3vh;
    white-space: nowrap;
    right: 20px;
}
.left-content-cont h2{
    white-space: nowrap;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    top: 10vh;
    right: 20px;
}

.fp-watermark{
    display: none !important;
}

/* تنسيق نموذج الاتصال المحسن */
.contact-right-content {

    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.contact-form {
    width: 100%;
    max-width: 600px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(181, 154, 87, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    text-align: right;
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    direction: rtl;
    text-align: right;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #B59A57;
    background: white;
    box-shadow: 0 0 0 3px rgba(181, 154, 87, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6c757d;
    font-style: italic;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Cairo', sans-serif;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #B59A57 0%, #8B7342 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    text-transform: none;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #8B7342 0%, #6B5632 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(181, 154, 87, 0.3);
}

.submit-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(-3px);
}

/* تحسين تنسيق الجانب الأيسر */
.contact-left-content .left-content-cont {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 40px;
}

.icons-for-contact {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.contact-icon {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* تحسين العناوين */
.left-content-cont-top h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.left-content-cont-top h2 {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.9;
}
/* تنسيق قسم التوظيف */
.jobs-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.jobs-content {
    padding: 100px 40px 40px;
    max-width: 1400px;
    margin: 0 auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.jobs-header {
    text-align: center;
    margin-bottom: 50px;
}

.jobs-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #B59A57;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.3;
}

.jobs-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 0;
}

.jobs-main-content {
    display: flex;
    gap: 60px;
    flex: 1;
    align-items: stretch;
}

.jobs-left-content {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(181, 154, 87, 0.2);
}

.jobs-right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hr-contact-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.hr-contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.hr-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.hr-contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(181, 154, 87, 0.15);
    border-color: #B59A57;
}

.hr-contact-item i {
    font-size: 1.5rem;
    color: #B59A57;
    background: white;
    padding: 15px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(181, 154, 87, 0.2);
}

.contact-text h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0 0 5px 0;
    font-weight: 600;
}

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

.apply-section {
    border-top: 2px solid #e9ecef;
    padding-top: 30px;
}

.apply-section h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.apply-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.apply-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #B59A57 0%, #8B7342 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: right;
    justify-content: center;
}

.apply-btn:hover {
    background: linear-gradient(135deg, #8B7342 0%, #6B5632 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(181, 154, 87, 0.3);
}

.apply-btn i {
    font-size: 1.1rem;
}

.map-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(181, 154, 87, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-container h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.map-wrapper {
    position: relative;
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    min-height: 400px;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: pointer;
    background: rgba(181, 154, 87, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.map-overlay:hover {
    background: rgba(181, 154, 87, 0.05);
}

.map-overlay p {
    background: rgba(181, 154, 87, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0;
}

.jobs-map {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 15px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.location-info i {
    color: #B59A57;
    font-size: 1.1rem;
}

/* تنسيق متجاوب لقسم التوظيف */
@media (max-width: 768px) {
    .jobs-main-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .jobs-content {
        padding: 60px 20px 20px;
    }
    
    .jobs-main-title {
        padding-top: 15px;
        font-size: 2rem;
    }
    
    .jobs-subtitle {
        font-size: 1.1rem;
    }
    
    .jobs-left-content,
    .map-container {
        padding: 25px;
    }
    
    .hr-contact-item {
        padding: 15px;
    }
    
    .apply-methods {
        gap: 12px;
    }
    
    .apply-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .map-wrapper {
        min-height: 300px;
    }
}

/* تنسيق الفوتر */
.footer-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    min-height: auto !important;
}

.main-footer {
    width: 100%;
    padding: 60px 0 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #B59A57;
    border-bottom: 2px solid #B59A57;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-logo {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

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

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: bold;
    white-space: nowrap;
    color: #B59A57;
    margin: 0;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #bdc3c7;
    margin-bottom: 25px;
    text-align: justify;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(181, 154, 87, 0.1);
    border: 2px solid #B59A57;
    border-radius: 50%;
    color: #B59A57;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #B59A57;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(181, 154, 87, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #B59A57;
    transform: translateX(-5px);
    padding-right: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.contact-item i {
    color: #B59A57;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 2px solid rgba(181, 154, 87, 0.3);
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex
    ;
        font-size: 0.9rem;
        color: #bdc3c7;
        justify-content: space-around;
        flex-wrap: nowrap;
        align-items: baseline;
}

.copyright p,
.footer-credits p {
    margin: 0;
}

.credits-link {
    color: #B59A57;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.credits-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* تنسيق متجاوب للفوتر */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-content {
        padding: 5vh 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-content {
        padding: 0 20px;
    }
    
    .main-footer {
        padding: 40px 0 0;
    }
    
    .footer-logo {
        padding-top: 3vh;
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        display: flex
;
        gap: 10px;
        text-align: center;
        justify-content: flex-start;
        flex-direction: column;
        align-items: stretch;
    }
    
    .footer-description {
        text-align: center;
    }
}

/* ===============================
   RESPONSIVE DESIGN 
   =============================== */

/* Header Responsive */
@media (max-width: 1024px) {
    .nav-container ul {
        gap: 20px;
    }
    
    .nav-container li a {
        font-size: 1.1rem;
        padding: 6px 12px;
    }
    
    .logo {
        height: 70px;
    }
    
    .logo img {
        height: 70px;
    }
}

@media (max-width: 768px) {
    header {
        height: 70px;
        padding: 0 15px;
    }
    
    .logo {
        height: 60px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(4, 15, 40, 0.95);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        z-index: 99;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        height: 100%;
        padding-top: 50px;
    }
    
    .main-nav li {
        width: 100%;
        text-align: center;
    }
    
    .main-nav li a {
        display: block;
        width: 100%;
        padding: 20px;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .main-nav li a:hover {
        background: rgba(181, 154, 87, 0.2);
        color: #B59A57;
        transform: none;
    }
    
    /* تنسيق الرابط النشط في القائمة المحمولة */
    .main-nav li a.active {
        background: #B59A57 !important;
        color: white !important;
        border-left: 4px solid #fff;
    }
}

/* Hero Section Responsive */
@media (max-width: 1024px) {
    .hero-left-content {
        left: 8vh;
        top: 35vh;
    }
    
    .hero-left-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-swiper {
        width: 450px;
        height: 320px;
    }
    
    .hero-right-content {
        right: 3vh;
        bottom: 3vh;
    }
    
    .button-warper {
        padding-right: 50px;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        background-position: center center;
    }
    
    .hero-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
        padding-top: 20vh;
        height: 100vh;
        text-align: center;
        display: flex;
        overflow: hidden;
        height: fit-content;
    }
    
    .hero-left-content {
        position: relative;
        left: -4vw;
        top: auto;
        order: 2;
        /* margin-top: 30px; */
    }
    
    .hero-left-content h1 {
        font-size: 2rem;
        line-height: 1.4;
    }
    
    .hero-right-content {
        position: relative;
        right: -15vw;
        bottom: auto;
        order: 2;
        margin-top: 5vh;
    }
    
    .hero-swiper {
    width: 300px;
        height: 200px;
    }
    
    .button-warper {
        padding-right: 0;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .hero-left-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-swiper {
        width: 250px;
        height: 150px;
    }
    
    .button-warper button {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}

/* About Section Responsive */
@media (max-width: 1024px) {
    .about-content {
        margin-top: 10vh;
        padding: 0 20px;
    }
    
    .about-top img {
        height: 350px;
        width: 450px;
        padding-left: 20px;
    }
    
    .about-top-content {
        margin-top: 40px;
    }
    
    .about-top-content h1 {
        font-size: 1.6rem;
    }
    
    .about-top-content p {
        font-size: 1.1rem;
        line-height: 35px;
    }
    
    .card-warper {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 15px;
    }
    
    .card-for-project {
        width: 100%;
        height: 250px;
    }
    
    .card-for-project img {
        height: 220px;
        width: 220px;
    }
}

@media (max-width: 768px) {
    .about-top {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }
    
    .about-top img {
        height: 250px;
        width: 300px;
        padding-left: 0;
        order: 1;
    }
    
    .about-top-content {
        margin-top: 20px;
        order: 2;
        width: 100%;
    }
    
    .about-top-content h1 {
        font-size: 1.4rem;
    }
    
    .about-top-content p {
        font-size: 1rem;
        line-height: 30px;
        text-align: center;
    }
    
    .card-warper {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .card-for-project {
        flex-direction: column;
        height: auto;
        padding: 20px;
        text-align: center;
    }
    
    .card-for-project img {
        height: 150px;
        width: 150px;
        padding-left: 0;
        margin: 0 auto 15px;
    }
    
    .card-for-project-content h1 {
        padding-top: 0;
        font-size: 1.1rem;
    }
    
    .card-for-project-content p {
        font-size: 0.9rem;
        line-height: 25px;
    }
}

@media (max-width: 480px) {
    .about-content {
        margin-top: 8vh;
        padding: 0 15px;
    }
    
    .about-top img {
        height: 200px;
        width: 250px;
    }
    
    .about-top-content h1 {
        font-size: 1.2rem;
    }
    
    .about-top-content p {
        font-size: 0.9rem;
        line-height: 28px;
    }
    
    .card-for-project {
        padding: 15px;
    }
    
    .card-for-project img {
        height: 120px;
        width: 120px;
    }
}

/* Projects Section Responsive */
@media (max-width: 1024px) {
    .projects-header {
        padding: 60px 15px 30px;
    }
    
    .projects-main-title {
        font-size: 2rem;
    }
    
    .projects-subtitle {
        font-size: 1.1rem;
    }
    
    .project-card {
        max-width: 900px;
    }
    
    .project-content {
        padding: 30px;
    }
    
    .project-title {
        font-size: 1.6rem;
    }
    
    .project-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .projects-header {
        padding: 15vh 15px 20px;
    }
    
    .projects-main-title {
        font-size: 1.8rem;
    }
    
    .projects-subtitle {
        font-size: 1rem;
    }
    
    .slide {
        height: auto;
        min-height: 100vh;
        padding: 10px;
    }
    
    .project-card {
        flex-direction: column;
        max-width: 100%;
    }
    
    .project-image-container {
        height: 250px;
    }
    
    .project-content {
        padding: 25px;
    }
    
    .project-title {
        font-size: 1.4rem;
    }
    
    .project-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .project-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    .stat-item i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .project-overlay {
        top: 15px;
        right: 15px;
    }
    
    .status-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .projects-header {
        padding: 75px 10px 15px;
    }
    
    .projects-main-title {
        font-size: 1.5rem;
    }
    
    .projects-subtitle {
        font-size: 0.9rem;
    }
    
    .project-content {
        padding: 20px;
    }
    
    .project-title {
        font-size: 1.2rem;
    }
    
    .project-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .project-category {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .stat-value {
        font-size: 0.9rem;
    }
    
    .project-image-container {
        height: 200px;
    }
}

/* تنسيق متجاوب للعنوان */
@media (max-width: 768px) {
    .contact-header {
        padding: 60px 15px 20px;
    }
    
    .contact-main-title {
        padding-top: 3vh;
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-header {
        padding: 50px 10px 15px;
    }
    
    .contact-main-title {
        font-size: 1.6rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
}

/* تنسيق متجاوب */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }
    
    .contact-left-content {
        width: 100%;
        height: auto;
        order: 2;
    }
    
    .contact-right-content {
        width: 100%;
        order: 1;
        padding: 20px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ===============================
   IPAD RESPONSIVE DESIGN 
   =============================== */

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    /* Header adjustments for iPad */
    header {
        height: 9vh;
    }
    
    .logo {
        height: 75px;
    }
    
    .logo img {
        height: 75px;
    }
    
    .nav-container ul {
        gap: 25px;
    }
    
    .nav-container li a {
        font-size: 1.2rem;
        padding: 10px 18px;
    }

    /* Hero Section for iPad */
    .hero-left-content {
        left: 10vh;
        top: 30vh;
    }
    
    .hero-left-content h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-right-content {
        right: 4vh;
        bottom: 4vh;
    }
    
    .hero-swiper {
        width: 500px;
        height: 350px;
    }
    
    .button-warper {
        padding-right: 80px;
        margin-top: 15px;
    }

    /* About Section for iPad */
    .about-content {
        margin-top: 11vh;
        padding: 0 30px;
    }
    
    .about-top img {
        height: 400px;
        width: 550px;
        padding-left: 30px;
    }
    
    .about-top-content {
        margin-top: 50px;
        padding: 15px;
    }
    
    .about-top-content h1 {
        font-size: 1.8rem;
    }
    
    .about-top-content p {
        font-size: 1.15rem;
        line-height: 38px;
    }
    
    .card-warper {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 25px;
        margin-top: 40px;
    }
    
    .card-for-project {
        width: 100%;
        height: 280px;
    }
    
    .card-for-project img {
        height: 250px;
        width: 250px;
    }

    /* Projects Section for iPad */
    .projects-header {
        padding: 70px 25px 35px;
    }
    
    .projects-main-title {
        font-size: 2.3rem;
    }
    
    .projects-subtitle {
        font-size: 1.25rem;
    }
    
    .project-card {
        max-width: 950px;
        margin-bottom: 25vh;
    }
    
    .project-content {
        padding: 35px;
    }
    
    .project-title {
        font-size: 1.7rem;
    }
    
    .project-description {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    /* Contact Section for iPad */
    .contact-header {
        padding: 80px 25px 25px;
    }
    
    .contact-main-title {
        font-size: 2.3rem;
    }
    
    .contact-subtitle {
        font-size: 1.25rem;
    }
    
    .contact-content {
        gap: 50px;
        padding: 0 25px;
    }
    
    .contact-left-content {
        width: 35vw;
        height: 70vh;
        margin-top: 2vh;
    }
    
    .left-content-cont h1 {
        font-size: 1.9rem;
    }
    
    .left-content-cont h2 {
        font-size: 1.4rem;
    }
    
    .contact-form {
        padding: 35px;
        max-width: 550px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 18px 22px;
        font-size: 1.05rem;
    }
    
    .submit-btn {
        padding: 20px 35px;
        font-size: 1.15rem;
    }

    /* Jobs Section for iPad */
    .jobs-content {
        padding: 90px 35px 35px;
    }
    
    .jobs-main-title {
        font-size: 2.3rem;
    }
    
    .jobs-subtitle {
        font-size: 1.25rem;
    }
    
    .jobs-main-content {
        gap: 50px;
    }
    
    .jobs-left-content,
    .map-container {
        padding: 35px;
    }
    
    .hr-contact-section h2 {
        font-size: 1.7rem;
    }
    
    .hr-contact-item {
        padding: 18px;
    }
    
    .apply-btn {
        padding: 16px 22px;
        font-size: 1.05rem;
    }

    /* Footer for iPad */
    .footer-content {
        padding: 0 35px;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 35px;
    }
    
    .footer-column h4 {
        font-size: 1.25rem;
    }
    
    .footer-description {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .footer-links a {
        font-size: 1.05rem;
    }
    
    .contact-item {
        font-size: 1rem;
    }
    
    .footer-bottom-content {
        font-size: 1rem;
        padding: 0 20px;
    }
}