
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Merriweather Sans", sans-serif;
}
@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root{
    --green-color: #154734;
    --green-rgba: rgba(21, 71, 52, 0.5);
    --home-rgba: rgba(21, 71, 52, 0.3);
    --green-dark-rgba: rgba(21, 71, 52, 0.7);
    --light-green: #1cb51c;
    --yellow-color: #FFE900;
    --black-rgba: rgba(0,0,0,0.5);
    --white-color: #FFFFFF;
    --light-black: #1D1D1D;
}

html{
    scroll-behavior: smooth;
}
html::-webkit-scrollbar{
    display: none;
    
}
#home{
    width: 100%;
    height: 100vh;
    position: relative;
    background: url(Atachments/background_final.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
#home::after{
    content: '';
    position: absolute;
    background: var(--green-dark-rgba);
    width: 100%;
    height: 100%;

}
nav{
    width: 100vw;
    height: 10vh;
    position: fixed;
    background-color: var(--green-rgba);
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 30;
    transition: var(--green-color) 0.5s ease;
}
nav ul{
    width: 40%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    list-style: none;
    margin-left: 2rem;
    color: var(--white-color);
    transition: 1s;
    z-index: 30;
    gap: 1rem;
}
nav::after{
    content: '';
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    background-color: var(--yellow-color);
}
nav ul li{
    cursor: pointer;
    font-size:1.2rem;
    position: relative;
    transition: 0.5s;
}
nav ul li a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: var(--white-color);
}
nav ul li a:hover{
    color: var(--yellow-color);
}
nav ul li::after{
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    top: 100%;
    background-color: var(--yellow-color);
    margin-top: 5px;
    transform: scale(0);
    transition: 0.5s;
}
nav ul li:hover::after{
   transform: scale(1);
}
nav ul li:hover{
    color: var(--yellow-color);
}
nav h2{
    margin-right: 2rem;
    font-size: 2rem;
    color: var(--white-color);
    z-index: 10;
    letter-spacing: 0.15em;
    font-weight: 600;
}
nav h2 span{
    color: var(--yellow-color);
}
/* ----------------- Home Body ------------------- */
.homeBody{
    width: 100%;
    height: 100vh;            
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}
.content{
    position: relative;
    left: 5%;
    top: 15%;          
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 1rem;
    z-index: 9;            
}
.content h1{
    font-size: 3.5rem;
    color: var(--white-color);
    margin-bottom: 1rem;
    letter-spacing: 0.12em;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.content h1 span{
    color: var(--yellow-color);
}
.content p{
    font-size: 1.3rem;
    color: var(--white-color);
    max-width: 500px;
    letter-spacing: 0.03em;
    line-height: 1.6;
    font-weight: 400;
}
.content a{
    padding: 15px 30px;
    border: none;
    background-color: var(--yellow-color);
    color: var(--green-color);
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.content a:hover{
    background-color: var(--green-color);
    color: var(--yellow-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}
.nav_menu{
    display: none;
    margin-left: 2rem;

}
.nav_menu i{
    font-size: 1.5rem;
    color: var(--white-color);
}

.hide{
    left: -90%;
}
.show{
    left: -10%;
}
.close_button{
    height: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    margin-top: 2rem;
    margin-bottom: 2rem;            
}

.close_button i{
    margin-right: 2rem;
    font-size: 1.5rem;
}   
/* ------------------- Aboud ------------------------ */
.About{
    width: 100%;
    min-height: 100vh;
    background: url(Atachments/clover-1225988_1280.jpg) fixed;            
    display: flex;
    flex-direction: row;
    position: relative;
    padding: 100px 0;
}
.About::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 71, 52, 0.85) 0%, rgba(21, 71, 52, 0.65) 100%);
    top: 0;
    left: 0;
}
.About .Title_con,.About .discription_con{
    width: 50%;
    height: 100%;
    z-index: 9;
}
.About .Title_con{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    padding: 60px 60px 60px 120px;
}
.About .Title_con h2{
    font-size: 3rem;
    color: var(--yellow-color);
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    padding-bottom: 25px;
    font-family: 'Merriweather Sans', serif;
}
.About .Title_con h2::before{
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow-color) 0%, transparent 100%);
}
.About .Title_con h2::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--yellow-color);
    box-shadow: 0 2px 8px rgba(255, 233, 0, 0.4);
}
.About .Title_con p{
    max-width: 90%;
    font-size: 1.35rem;
    line-height: 2;
    color: var(--white-color);
    letter-spacing: 0.025em;
    font-weight: 400;
    text-align: left;
    background: rgba(0, 0, 0, 0.3);
    padding: 40px 35px;
    border-radius: 8px;
    border-left: 5px solid var(--yellow-color);
    border-top: 1px solid rgba(255, 233, 0, 0.2);
    border-bottom: 1px solid rgba(255, 233, 0, 0.2);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
}
.About .Title_con p::before{
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    color: var(--yellow-color);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}
.About .Title_con h2,.About .Title_con p{            
    margin-left: 0;
    animation: fadeInLeft 1.2s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.About .discription_con{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 60px 120px 60px 60px;
    position: relative;
}
.About .discription_con::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}
.About .discription_con img{
    width: 100%;
    max-width: 520px;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
    border: 4px solid rgba(255, 233, 0, 0.25);
    position: relative;
    z-index: 2;
    outline: 1px solid rgba(255, 255, 255, 0.1);
    outline-offset: -8px;
}
.About .discription_con img:hover{
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 10px 20px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 233, 0, 0.6);
}
/* ------------------------- services ---------------------- */
.services{
    width: 100%;
    height: auto;
    background-color: var(--green-color);
    
}
.services .services_grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    justify-items: center;
}
.services .services_item{
    width: 80%;
    height: 300px;            
    margin-top: 1rem;
    margin-bottom: 1rem;
    position: relative;            
    background: url(Atachments/irrigation-pipes-28990482.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: 0.5s;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.services .services_item p{
    position: relative;
    width: 80%;
    z-index: 10;
    color: var(--white-color);
    font-size: 1.1rem;
}
.services .services_item h3{
    position: relative;
    z-index: 10;
    color: var(--yellow-color);
    font-size: 1.5rem;
}
.services .services_item .icon_div{
    width: 40px;
    height: 40px;
    background-color: var(--green-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}
.services .services_item i{
    position: relative;
    z-index: 10;
    color: var(--yellow-color);
}
.services .services_item:nth-child(2){
    background: url(Atachments/Hatat3.jpg);
    background-position: center;
    background-size: cover;
}
.services .services_item:nth-child(3){
    background: url(Atachments/3797ca70e8f497c535ac7ff1b14f1b31.jpg);
    background-position: center;
    background-size: cover;
}
.services .services_item:nth-child(4){
    background: url(Atachments/seeder-989473_1280.jpg);
    background-position: center;
    background-size: cover;
}
.services .services_item:nth-child(5){
    background: url(Atachments/pexels-yunustug-26152610.jpg);
    background-position: center;
    background-size: cover;
}
.services .services_item:nth-child(6){
    background: url(Atachments/sprayer.jpg);
    background-position: center;
    background-size: cover;
}
/* ---------------------- product items ---------------------------------- */
.services .services_item2{
    background: url(Atachments/Tractor_product.jpg);
    background-position: center;
    background-size: cover;
}
.services .services_item2{
    justify-content: end;    
}

.services .services_item2 h3{
    margin-bottom: 0.5rem;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 5px;
    border-radius: 10px;
}
.services .services_item2:nth-child(2){
    background: url(Atachments/tractor_product2.jpg);
    background-position: center;
    background-size: cover;
}
.services .services_item2:nth-child(3){
    background: url(Atachments/medicineAgriculture.jpg);
    background-position: center;
    background-size: cover;
}
.services .services_item2:nth-child(4){
    background: url(Atachments/medicineAgriculture2.jpg);
    background-position: center;
    background-size: cover;
}
.services .services_item2:nth-child(5){
    background: url(Atachments/medicineAgriculture3.jpg);
    background-position: center;
    background-size: cover;
}
.services .services_item2:nth-child(5){
    background: url(Atachments/sprayer.jpg);
    background-position: center;
    background-size: cover;
}
.services .services_item2:nth-child(6){
    background: url(Atachments/popes_product.jpg);
    background-position: center;
    background-size: cover;
}
.services .services_item2:nth-child(7){
    background: url(Atachments/agricultural-hdpe-pipe.jpg);
    background-position: center;
    background-size: cover;
}
.services .services_item2:nth-child(8){
    background: url(Atachments/madison-pe-irrigation-pipes.jpg);
    background-position: center;
    background-size: cover;
}
.services .services_item2:nth-child(9){
    background: url(Atachments/astm-a333-gr-6-seamless-carbon-steel-tube-low-temperature-pipe-with-black-painted-12inch-xxs_nEJXVO.jpg);
    background-position: center;
    background-size: cover;
}

.services .services_item::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    transition: 1s;
    z-index: 9;
    border-radius: 5px;

}
.services .services_item2::after{
    background-color: rgba(0,0,0,0.0);
}

.services .services_item:hover::after ,.services .services_item:focus::after{
    background: rgba(0,0,0,0.5);                       
    
    
}
.services .services_item:hover, .services .services_item:focus{
    
    transform: scale(1.15);
}
.services .services_item p{
    
    font-size: 1rem;
}
.services .services_item h3{
   
    font-size: 1.2rem;
}
.servicesH1{
    height: 4rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.servicesH1 h1{
    font-size: 2.5rem;
    color: var(--yellow-color);
    letter-spacing: 0.08em;
    font-weight: 700;
}
/* ----------------------- employes ------------------------ */
.Employes{
    height: auto;
    width: 100vw;
    background-color: var(--green-color);
    display: flex;
    flex-direction: column;            
    align-items: center;          
    background-color: var(--green-color);
    
}
.Employes .Employe_title{
    width: 98%;
    height: 4rem;            
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    border-radius: 10px;
    margin-top: 2rem;
}
.Employe_title h2{
    color: var(--yellow-color);
    font-size: 2.5rem;
    letter-spacing: 0.08em;
    font-weight: 700;
}
.employe_grid{
    width: 98%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin-top: 2rem;
   margin-bottom: 2rem;
}
.employe_grid .employeCon{
    background-color: var(--light-black);
    height: 500px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.employeCon img{
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
}
.employeCon .employe_content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 12rem;
}
.employeCon .employe_content h3{
    color: var(--yellow-color);
    font-size: 1.4rem;
    text-align: center;
}
.employeCon .employe_content p{
    width: 85%;
    color: white;
    font-size: 1.1rem;
}
.employeCon .employe_content span{
    font-size: 1.5rem;
    color: var(--yellow-color);
    background-color: var(--green-color);
    padding: 10px;
    border-radius: 5px;
}
/* ------------------------ video section ------------------------------ */
.videoSection{
    width: 100vw;
    min-height: 120vh;
    background: linear-gradient(135deg, rgba(21, 71, 52, 0.9) 0%, rgba(21, 71, 52, 0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 80px 0;
    gap: 60px;
}

.videoSection .video_title{
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.videoSection .video_title h2{
    font-size: 3rem;
    color: var(--white-color);
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.videoSection .video_title h2::after{
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--yellow-color);
    box-shadow: 0 2px 8px rgba(255, 233, 0, 0.5);
}

.videoSection .video_title h2 span{
    color: var(--yellow-color);
}

.videoSection .video_title p{
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.03em;
    margin-top: 25px;
    font-weight: 400;
}

.videoSection .video_container{
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 0 60px;
}

.videoSection .youtubeVideo, 
.videoSection .anotherVideo{
    width: 48%;
    min-width: 300px;
}

.videoSection .video_wrapper{
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid rgba(255, 233, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.videoSection .video_wrapper:hover{
    transform: translateY(-5px);
    border-color: rgba(255, 233, 0, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 233, 0, 0.2);
}

.videoSection .video_wrapper h3{
    color: var(--yellow-color);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}

.videoSection .video_wrapper h3::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--yellow-color);
}

.videoSection .youtubeVideo iframe,
.videoSection .anotherVideo video{
    width: 100%;
    height: 450px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    outline: 1px solid rgba(255, 255, 255, 0.05);
    outline-offset: -4px;
}

/* ------------------- branches section ------------------------- */

.branch{
    height: auto;
    width: 100vw;
    background: url(Atachments/repeat_backtround.png) fixed;
    background-repeat: repeat;
    background-size: 25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 80px 0;
}
.branch::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 71, 52, 0.75) 0%, rgba(21, 71, 52, 0.85) 100%);
    top: 0;
    left: 0;
}
.branch .branch_Title{
    height: auto;
    background-color: rgba(0, 0, 0, 0.5);
    width: 98%;
    max-width: 1400px;
    margin-top: 0;
    margin-bottom: 60px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    z-index: 9;
    border: 2px solid rgba(255, 233, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}
.branch .branch_Title h2{
    color: var(--yellow-color);
    font-size: 3rem;
    letter-spacing: 0.12em;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    padding-bottom: 20px;
}
.branch .branch_Title h2::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--yellow-color);
    box-shadow: 0 2px 8px rgba(255, 233, 0, 0.5);
}
.branches_grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    justify-items: center;
    gap: 40px;
    max-width: 1400px;
    width: 100%;
    padding: 0 40px;
    z-index: 9;
}
.branches_grid .branch_item{
    width: 100%;
    max-width: 420px;
    height: auto;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(15px);
    padding: 35px 30px;
    margin-bottom: 0;
    border-radius: 12px;
    z-index: 9;
    border: 2px solid rgba(255, 233, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}
.branches_grid .branch_item:hover{
    transform: translateY(-8px);
    border-color: rgba(255, 233, 0, 0.5);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 233, 0, 0.15);
}

.branches_grid .branch_item img{
    width: 100%;
    max-width: 280px;
    height: 280px;
    border-radius: 8px;
    object-fit: cover;
    border: 3px solid rgba(255, 233, 0, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}
.branches_grid .branch_item:hover img{
    border-color: rgba(255, 233, 0, 0.6);
    transform: scale(1.03);
}
.branches_grid .branch_item .branch_content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    width: 100%;
}
.branch_item .branch_content h3{
    color: var(--yellow-color);
    font-size: 1.65rem;
    letter-spacing: 0.06em;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}
.branch_item .branch_content h3::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--yellow-color);
}
.branch_item .branch_content p{
    width: 100%;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.7;
    text-align: center;
    letter-spacing: 0.02em;
    padding: 0 10px;
}
.branch_item .branch_content span{
    font-size: 1.4rem;
    color: var(--yellow-color);
    background-color: rgba(0, 0, 0, 0.4);
    padding: 12px 20px;
    border-radius: 8px;
    letter-spacing: 0.05em;
    font-weight: 600;
    border: 1px solid rgba(255, 233, 0, 0.3);
    transition: all 0.3s ease;
}
.branch_item .branch_content span:hover{
    background-color: var(--yellow-color);
    color: var(--green-color);
    transform: scale(1.05);
}
/* --------------------- contact section *------------------------ */
.contact{
    height: auto;
    width: 100%;
    background-color: var(--light-black);
}
.contact .contact_Title{
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}
.contact .contact_Title h1{
    color: var(--white-color);
    font-size: 3rem;
    letter-spacing: 0.15em;
    font-weight: 600;
}
.contact .contact_Title h1 span{
    color: var(--yellow-color);
}
.contact .contact_body{
    height: 100%;
    width: 100vw;
    display: grid;
    grid-template-columns: repeat(2,1fr);    
    gap: 1rem;
    padding: 2rem;
    justify-items: center;
}
.contact .contact_body .phone_number,.contact .contact_body .email{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    justify-items: center;
    gap: 1rem;
    width: 100%;
    
    
}
.contact .contact_body .phone_number h3,.contact .contact_body .email h3{
    color: var(--yellow-color);
    width: 98%;
    text-align: center;
    background-color: var(--green-rgba);
    padding: 10px;
    border-radius: 10px;
}
.contact .contact_body .phone_number{
    margin: auto;
}
.contact .contact_body .phone_number h3 i{
    color: var(--light-green);
}
.contact .contact_body .email h3 i{
    color: #1591EA;
}
/* ---------------------- MY NAME ABDULLAH ------------------------------------------------------------------------- */
.My_Name{
    width: 100vw;
    height: 3rem;
    background-color: var(--light-black);    
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.My_Name p{
    color: var(--white-color);
    font-size: 0.9rem;
    
}
.My_Name p a{
    text-decoration: none;
    color: var(--yellow-color);
}
/* --------------------------- social -------------------------- */
.social{
    height: 3rem;
    width: 100vw;
    background-color: var(--light-black);
    display: grid;
    grid-template-columns: repeat(2,1fr);
    position: relative;
    
}
.social::after{
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--yellow-color);
   
}
.social .social_item{
    display:flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.social .social_item i{
    width: 2rem;
    height: 2rem;
    
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--yellow-color);
    border: solid 2px var(--yellow-color);
    padding: 4px;
    border-radius: 50%;

}
.social .social_item h3{
    font-size: 1.2rem;
    color: var(--white-color);
}
.social .social_item a{
    text-decoration: none;
    color: var(--yellow-color);
}


/* --------------------- responsive ------------------------ */
@media only screen and (max-width: 767px){
#home {
background: url(Atachments/background_final.jpg);
background-size: cover; 
background-position: top right;
background-position: 60% top;
}
#home::after{
    background-color: rgba(21, 71, 52, 0.6);
}
nav{
    background-color: transparent;
}

.nav_links {        
flex-direction: column; 
background-color: var(--green-color);
position: absolute;
top: 0; 
width: 80%;
height: 100dvh;        
z-index: 20;
justify-content: start;
gap: 2rem;

}
.nav_links li{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.nav_menu {
display: block; /* Show the burger icon */
cursor: pointer;

}
nav h2{
    font-size: 1.5rem;
    letter-spacing: 0.1em;
}
.content{
    left: 5%;
    top: 15%;
}
.content h1{
    max-width: 300px;
    font-size: 2rem;
    letter-spacing: 0.1em;
}
.content p{
    max-width: 300px;
    letter-spacing: 0.02em;
}
/* --------------------- second section -------------------*/
.About{
    flex-direction: column;
    height: auto;
    padding: 40px 0;
}
.About::after{
    height: 100%;
}
.About .Title_con, .About .discription_con {
    width: 100%;
    padding: 30px 20px;
}
.About .Title_con{            
    margin-top: 0;
    gap: 2rem;
    align-items: center;
}
.About .Title_con h2{
    font-size: 2rem;
    color: var(--yellow-color);
    letter-spacing: 0.05em;
    text-align: center;
}
.About .Title_con h2::after{
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
}
.About .Title_con p{
    font-size: 1.05rem;
    max-width: 100%;
    margin: 0;
    letter-spacing: 0.01em;
    line-height: 1.7;
    padding: 25px 20px;
}
.About .discription_con{
    width: 100%;
    height: auto;
    padding: 20px;
    justify-content: center;
}
.About .discription_con img{
    width: 90%;
    max-width: 400px;
    height: auto;
}
.services .services_grid{
    grid-template-columns: repeat(1,1fr);
}
.services .services_item{
    width: 70%;
    height: 250px;
}
.services .services_item p{
    font-size: 0.8rem;
    text-align: center;
}
/* videos ------------------------------ */
.videoSection{
    min-height: auto;
    padding: 50px 0;
    gap: 40px;
}
.videoSection .video_title h2{
    font-size: 2rem;
}
.videoSection .video_title p{
    font-size: 1rem;
}
.videoSection .video_container{
    flex-direction: column;
    padding: 0 20px;
    gap: 30px;
}
.videoSection .youtubeVideo, 
.videoSection .anotherVideo{
    width: 100%;
}
.videoSection .video_wrapper{
    padding: 20px;
}
.videoSection .video_wrapper h3{
    font-size: 1.2rem;
}
.videoSection .youtubeVideo iframe,
.videoSection .anotherVideo video{
    height: 250px;
}

/* employe ------------------------------ */
.Employes{
    height: auto;
}
.Employes .Employe_title{
    width: 85%;
}
.Employe_title h2{
    font-size: 1.5rem;
}
.employe_grid{
    grid-template-columns: repeat(1,1fr);
    margin-top: 1rem;
    justify-items: center;
}
.employe_grid .employeCon{
    width: 80%;
}

.emploey_grid .employeCon:nth-child(4){
    margin-bottom: 2rem;
}
.employe_grid .employeCon img{
    width: 175px;
    height: 175px;
}
.employeCon .employe_content h3{
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 1rem;
}
.employeCon .employe_content span{
    font-size: 1.4rem;
    margin-top: 1rem;
}
.employeCon .employe_content p{
    font-size: 1rem;
}
/* ---------------------- branch section ------------------------ */
.branch{
    height: auto;
    background-size: 20rem;
    padding: 50px 0;
}
.branch .branch_Title{
    width: 90%;
    padding: 20px;
    margin-bottom: 40px;
}
.branch .branch_Title h2{
    font-size: 2rem;
    letter-spacing: 0.08em;
}
.branch_item {
    display: flex;
    -webkit-backdrop-filter: blur(30px); 
    backdrop-filter: blur(30px);
}
.branches_grid{
    grid-template-columns: repeat(1,1fr);
    padding: 0 20px;
    gap: 30px;
}
.branches_grid .branch_item{
    margin-top: 0;
    min-height: 500px;
    padding: 30px 25px;
}
.branches_grid .branch_item img{
    width: 200px;
    height: 200px;
    max-width: 200px;
}
.branch_item .branch_content p{
    font-size: 1.05rem;
}
.branch_item .branch_content h3{
    font-size: 1.4rem;
    letter-spacing: 0.04em;
}
.branch_item .branch_content span{
    font-size: 1.3rem;
}

/* ---------------- contact -------------------------- */
.contact .contact_body{
    grid-template-columns: 1fr;
    padding: 1rem;
    width: 100%;
    overflow-x: hidden;
    gap: 1.5rem;
}

.contact .contact_body .phone_number,
.contact .contact_body .email{
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
    gap: 0.8rem;
}

.contact .contact_body .phone_number h3,
.contact .contact_body .email h3{
    font-size: 1rem;
    width: 100%;
    padding: 12px 8px;
    word-break: break-word;
}

.contact .contact_Title{
    height: 4rem;
    margin-bottom: 1rem;
}

.contact .contact_Title h1{
    font-size: 1.8rem;
}

/* ---------------------------------------------------- MY NAME ABDULLAH -------------------------------------------- */
.My_Name p{
    
    font-size: 0.5rem;
}
/* ------------------------- social ----------------- */
.social{
    grid-template-columns: repeat(1fr);
    
}
.social .social_item{
    gap: 0.3rem;
}
.social .social_item i{
    font-size: 0.9rem;
}
.social .social_item h3{
 font-size: 1rem;
}
}

@media only screen and (min-width: 768px){
    .close_button{
        display: none;
    }
}
@media only screen and (min-width: 1025px) and (max-width: 1256px){
    .About{
        
        align-items: center;
    }
    .branches_grid{
        grid-template-columns: repeat(3,1fr);
        gap: 35px;
        padding: 0 40px;
    }
    .branches_grid .branch_item{
        width: 100%;
    }
    
    .employe_grid{
    grid-template-columns: repeat(3,1fr);    
    
    }
    
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
    .nav_links {        
        flex-direction: column; 
        background-color: var(--green-color);
        position: absolute;
        top: 0; 
        width: 80%;
        height: 100dvh;        
        z-index: 20;
        justify-content: start;
        gap: 2rem;
        
        }
        .nav_links li{
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        
        .nav_menu {
        display: block; /* Show the burger icon */
        cursor: pointer;
        
        }
        nav h2{
            font-size: 1.5rem;
            
        }
    .content{
        margin-top: 10vh;
    }
    nav ul{
        gap: 1rem;
    }
    .About{
        flex-direction: column;
        align-items: center;
        
    }
    
    .About .Title_con,.About .discription_con{
        width: 100%;
        padding: 40px 30px;
    }
    .About .Title_con{
        align-items: center;
    }
    .About .Title_con p{
        max-width: 95%;
        margin-left: 0;
        font-size: 1.2rem;
    }
    .About .Title_con h2{
        margin-left: 0;
        text-align: center;
    }
    .About .Title_con h2::after{
        left: 50%;
        transform: translateX(-50%);
    }
    .About .discription_con{
        justify-content: center;
        padding: 30px;
    }
    .About .discription_con img{
        max-width: 450px;
    }
    /* ------------ services -------------------------- */
    .services .services_grid{
    grid-template-columns: repeat(2,1fr);
}
    .Employes{
    height: auto;
    }
    .employe_grid{
    grid-template-columns: repeat(2,1fr);    
    
    }
    .employe_grid .employeCon:nth-child(3){
        margin-bottom: 2rem;
    }
    .emploey_grid .employeCon:nth-child(4){
        margin-bottom: 2rem;
    }
    /* ---------------------- video ------------------------- */
    .videoSection{
        min-height: auto;
        padding: 60px 0;
    }
    .videoSection .video_title h2{
        font-size: 2.5rem;
    }
    .videoSection .video_container{
        flex-direction: column;
        padding: 0 40px;
        gap: 35px;
    }
    .videoSection .youtubeVideo, 
    .videoSection .anotherVideo{
        width: 100%;
        max-width: 700px;
    }
    .videoSection .youtubeVideo iframe,
    .videoSection .anotherVideo video{
        height: 400px;
    }
    
    /* --------------------- branch ---------------------------- */
    .branch{
        height: auto;
        padding: 60px 0;
    }
    .branch .branch_Title{
        padding: 25px;
        margin-bottom: 50px;
    }
    .branch .branch_Title h2{
        font-size: 2.5rem;
    }
    .branches_grid{
        grid-template-columns: repeat(2,1fr);
        gap: 35px;
        padding: 0 30px;
    }
    .branches_grid .branch_item{
        width: 100%;
        min-height: 520px;
    }
    .contact .contact_body{
        grid-template-columns: 1fr;
        padding: 1rem;
        width: 100%;
        overflow-x: hidden;
        gap: 1.5rem;
    }
    
    .contact .contact_body .phone_number,
    .contact .contact_body .email{
        flex-direction: column;
        width: 90%;
        margin: 0 auto;
        gap: 0.8rem;
    }
    
    .contact .contact_body .phone_number h3,
    .contact .contact_body .email h3{
        font-size: 1rem;
        width: 100%;
        padding: 12px 8px;
        word-break: break-word;
    }
    
    .contact .contact_Title{
        height: 4rem;
        margin-bottom: 1rem;
    }
    
    .contact .contact_Title h1{
        font-size: 1.8rem;
    }
}