/* Start global variable */
:root {
    --color-black:#292929;
    --color-gray:#9D9D9D;
    --color-white:#DEDEDE;
    --color-light:#959595;
    --color-main-white:#fff;
}
/* End global variable */
/* Start Global Rules */
/* * {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-border-sizing:border-box;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    color: var(--color-white);
} */
/* body {
    font-family: sans-serif;
    background-color: var(--color-black);
     scroll-behavior: smooth;
} */
/* .container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
} */

/* Small */
/* @media (min-width: 768px) {
    .container{
        width: 750px;
    }
} */
/* Medium */
/* @media (min-width: 992px) {
    .container{
        width: 970px;
    }
} */
/* Large */
/* @media (min-width: 1200px) {
    .container{
        width: 1300px;
    }
} */

/* End Global Rules */
/* Start Global Rules */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-border-sizing:border-box;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    color: var(--color-white);
    
}


body {
    font-family: sans-serif;
    background-color: var(--color-black);
    scroll-behavior: smooth;
}
body {
    font-family: sans-serif;
    background-color: var(--color-black);
    scroll-behavior: smooth;
    position: static; /* تغيير من relative إلى static */
    overflow-x: hidden;
    width: 100%;
}
.container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100% ;
}

/* Small */
@media (min-width: 768px) {
    .container {
        width: 750px;
        max-width: 750px;
    }
}

/* Medium */
@media (min-width: 992px) {
    .container {
        width: 970px;
        max-width: 970px;
    }
}

/* Large */
@media (min-width: 1200px) {
    .container {
        width: 1170px;
        max-width: 1170px;
    }
}
/* End Global Rules */

/* Start Style Header */
.header {
    background-color: rgba(50, 50, 50, 0.651);
    z-index: 4;
    position: fixed;
    width: 100%;
    left: 0;
    padding: 10px 0;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    
}
.header .container .logo img {
    height: 40px;
}
.header .container nav ul {
    display: flex;
}
.header .container nav ul li a {
    display: block;
    color: var(--color-white);
    padding: 30px 10px;
    font-size: 18px;
    font-weight: 300;
    z-index: 3;
    margin-left: 15px;
    margin-right: 15px;
    transition: 0.3s;
}
.header .container nav ul li:hover a ,
.header .container nav ul li a.active {
    color: var(--color-main-white);
    border-bottom: 3px solid var(--color-main-white);
}

.menu {
    font-size: 22px;
    color: white;
    padding-top: 15px;
    padding-bottom: 15px;
    cursor: pointer;
}
@media (min-width:667px){
    .menu {
        display: none;
    }
}
@media (max-width:666px){
    .header .container nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;

    }
    .header .container nav .menu.links + ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        left: 0;
        width: 100%;
        background-color: rgba(50, 50, 50, 0.8);
      }
    .header .container nav .menu.links + ul {
        background-color: rgba(50, 50, 50, 0.8);
    
    }
    .header .container .bar {
        display: none;
      }
      
      .header .container .bar.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        left: 0;
        width: 100%;
        background-color: rgba(50, 50, 50, 0.8);
      }
      
}
/* End Style Header */
/* Start Landing */
.landing {
    padding-top: 150px;
}
.landing {
    padding-top: 150px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    margin: 0 auto;
}
.landing .container {
    display: grid;
    grid-template-columns: 50% 40%;
    gap: 5%;
    position: relative;
}

.landing .container .image-landing {
    display: flex;
    justify-content: center;
    align-items:flex-start;
    right: 0;
}
.landing .container .image-landing img {
    height: 400px;
    border-radius: 50%;
    /* position: absolute;
    top: 50%;
    transform: translateY(-50%); */
}
.landing .container .text {
    padding: 10px;
    left: 0;
}
.landing .container .text h1{
    margin: 0;
    padding: 0;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
}
.landing .container .text p{
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-gray);
    margin-bottom: 60px;
}
.landing .container .text a{
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: white;
    background-color: var(--color-gray);
    padding: 15px 20px;
    border-radius: 5px;
    word-spacing: 2px;
    position: relative;
    width: 500px;
    display: flex;
    
}
.landing .container .text a::before{
    font-family: 'Font Awesome 6 Free';
    content:'\f0e0';
    font-weight: 900;
    margin-right: 10px;

}@media (max-width: 767px) {
    .landing .container {
        display: flex;
        flex-direction: column-reverse;
    }

    .landing .container .text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .landing .container .text a.btn {
        width: 90%;
        max-width: 300px;
        font-size: 16px;
        text-align: center;
        word-break: break-word;
        padding: 10px 15px;
    }

    .landing .container img {
        max-width: 100%;
         border-radius: 50%;
        object-fit: cover;
    }
}


/* End Landing */

/* Start Features */
.features {
    padding: 100px 0;
}
.features .container .feat-title {
    display: flex;
    width: 160px;
    justify-content: space-between;
    align-items: center;
}
.features .container .feat-title img {
    height: 50px;
}
.features .container small {
    font-size: 90%;
    font-weight: 600;
}
.features .container .feature {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(40%,1fr));
    gap: 5%;
}
.featured-box {
    position: relative;
    overflow: hidden;
    height: max-content;
    border-radius: 13px; 
    width: max-content;
    max-width: 100%;
}

.featured-shadow{   
    background: rgba(0, 0, 0, 0.846);
    position: absolute;
    height: 100%;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    line-height: 55px;
    font-weight: 700;
    color: var(--color-white);
    bottom: -100%;
    transition: 0.3s;
    text-align: center;
}
.featured-shadow h3 {
    min-width:100%;
    max-width: 100%;
}
.featured-box:hover .featured-shadow{ 
    bottom: 0;
}
.features .container .feature .featured-img {
    width: 600px;
    height: 700px;
    border-radius: 20px;
    /* position: relative; */
    max-width: 100%;
}
.features .container .feature img {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 13px;
    text-align: center;
    max-width: 100%;
}
.f-bottom{
    margin-top: 140px;
}
.fb-2{
    margin-top: -100px; 
}
.fb-4{
    margin-top: 40px;
}
/* End Features */
/* Start Services */
.services {
    padding-top: 100px;
    padding-bottom: 100px;
}
.services .container .main-heading {
    text-align: center;
    margin-left: auto ;
    margin-right: auto ;
}

 .services .container .main-heading h2 {
    font-size: 35px;
    font-weight: normal;
    text-transform: uppercase;
    color: white;
    letter-spacing: -1px;
    margin-bottom: 30px;
    width: fit-content;
    position: relative;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    line-height: 2;
}
.services .container .main-heading h2::after {
    content: "";
    position: absolute;
    height: 3px;
    width: 100%;
    left: 0;
    background-color: white;
    bottom: 0;
}
.services .container .main-heading h2::before {
    content: "";
    position: absolute;
    border: 4px solid;
    border-color: white ;
    border-radius: 50%;
    height: 15px;
    width: 15px;
    background-color:var(--color-black);
    bottom: -9px;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.services .container .main-heading p {
    width: 400px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 100%;
    
}
.services .container .services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
    gap: 15px;
    margin-top: 60px;
    color:black;
    margin-left: auto;
    margin-right:auto ;
    max-width: 100%;
}
.services-container .srv-box {
    text-align: center;
    border-radius: 10px;
    padding: 30px;
    background-color: #383737 ;
    max-width: 100%;

}


.services-container .srv-box i {
    margin-bottom: 20px;
    color:white;
}
.services-container .srv-box h3 {
    margin-bottom: 15px;
    
}
.services-container .srv-box p {
    line-height: 1.8;
    font-size: 16px;
    
} 
/* .services-container .srv-box:hover {
    background-color: red ;
    color: white;
    padding: 25px;
}
.services-container .srv-box:hover i {
    color: white;
} */
.services-container .srv-box:hover {
    background-color: white ;
    transition: 0.4ms;
}
.services-container .srv-box:hover i {
    color: #383737;
}
.services-container .srv-box:hover p {
    color: #383737;
}
.services-container .srv-box:hover h3 {
    color: #383737;
}

/* End Services */
/* Start Portfolio */
.portfolio {
    padding-top: 80px;
    padding-top: 80px;
  padding-bottom: 100px;
 
}
.portfolio .container .main-heading {
    /* text-align: center;
    margin-left: auto ;
    margin-right: auto ; */
    text-align: center;
  margin: 0 auto;
}

 .portfolio .container .main-heading h2 {
    font-size: 35px;
    font-weight: normal;
    text-transform: uppercase;
    color: white;
    letter-spacing: -1px;
    margin-bottom: 30px;
    width: fit-content;
    position: relative;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    line-height: 2;

    /* font-size: 35px;
  font-weight: normal;
  text-transform: uppercase;
  
  position: relative;
  margin-bottom: 30px; */
}
.portfolio .container .main-heading h2::after {
    content: "";
    position: absolute;
    height: 3px;
    width: 100%;
    left: 0;
    background-color: white;
    bottom: 0;

    
}
.portfolio .container .main-heading h2::before {
    /* content: "";
    position: absolute;
    border: 4px solid;
    border-color: white ;
    border-radius: 50%;
    height: 15px;
    width: 15px;
    background-color:var(--color-black);
    bottom: -9px;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3; */

    content: "";
  position: absolute;
  border: 4px solid var(--main-color);
  border-radius: 50%;
  height: 15px;
  width: 15px;
  background-color: white;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.portfolio .container .main-heading p {
    width: 400px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 100%;
}
/* .portfolio {
    padding-top: 100px;
    padding-bottom: 100px;
} *//* تنسيقات أساسية للقائمة */
.shuffle {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 30px 0;
    list-style: none;
}

.shuffle li {
    margin: 0;
    padding: 0;
}

.shuffle button {
    background: #383737;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.shuffle button:hover {
    background: #555;
}

.shuffle li.active button {
    background: white; /* اللون الأخضر الخاص بك */
    color: #383737;
}

/* للشاشات الصغيرة */
@media (max-width: 768px) {
    .shuffle {
        gap: 5px;
    }
    
    .shuffle button {
        padding: 8px 12px;
        font-size: 12px;
    }
}
.portfolio .images-container {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;

    
    justify-content: center;
    
}

.portfolio .images-container .box {
    position: relative;
    overflow: hidden;

    
  border-radius: 10px;
  flex: 1 1 300px;
  max-width: 300px;
  margin: 10px auto;
  /* background-color: white; */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  
}
.portfolio .images-container .box:hover {
  transform: scale(1.03);
}
@media (min-width: 768px) {
    .portfolio .images-container .box {
        flex-basis: 50%;
    }
}
@media (min-width: 1199px)  {
    .portfolio .images-container .box {
        flex-basis: 30%;
    }
}
.portfolio .images-container .box img {
    
    transition: 0.3s;
    

  width: 100%;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 3;
 /* object-fit: cover;*/
  display: block;
  border-radius: 10px 10px 0 0;
    
}
.portfolio .images-container .box .caption {
    
    padding: 15px;
    
    left: 0;
    width: 100%;
    transition: 0.3s;
  position: absolute;
  bottom: -100%;
  padding: 15px;
  background-color: #fff;
  text-align: center;
  border-top: 1px solid #eee;
}
.portfolio .images-container .box:hover .caption{
    bottom: 0;
} 
.portfolio .images-container .box:hover img {
    transform: scale(1.1);
    
}
.portfolio .images-container .box:hover .img::after {
    content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:#9d9d9d38 ; /* اللون مع الشفافية */
  z-index: 1;
}
.portfolio .images-container .box:hover img {
    display: block;
}
.portfolio .images-container .box .caption  {
    background-color: white;
}
.portfolio .images-container .box .caption h4 {
    font-weight:bold;
    margin-bottom: 5px;
    text-align: center;
    color: #000000;
    
}
.portfolio .images-container .box .caption p {
    color: var(--main-color);
    text-align: center;
    background-color: #000000;
}
.portfolio .more {
    background-color: var(--main-color);
    color:#292929;
    background-color: #fff;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    width: fit-content;
    margin: 3px auto;
    margin-top: 8px;
    text-transform:uppercase ;
    border-radius: 13px;
    border: none;

}



/* End Portfolio */

/* Start Information */
.info {
    padding-top: 100px;
    padding-bottom: 100px;
    margin-top: 80px;
}
.info .container {
    display: flex;
    justify-content: space-between;
}

.info .container .start-text {
    margin-bottom: 60px;
}
.info .container .testmonalise ,
.info .container .html-css {
    text-align: center;
    margin: 10px 30px;
    
}
.info .container .testmonalise h4 ,
.info .container .html-css h4 {
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.info .container .testmonalise .start-text p ,
.info .container .html-css .start-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 50px;
    color: var(--color-gray);
}
.info .container .testmonalise .content {
    display: flex;
    margin-bottom: 30px;
    align-items:flex-start;
    max-width: 100%;
}

.info .container .testmonalise .content .image  {
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.info .container .testmonalise .content .image img {
    height: 120px;
    border-radius: 50%;
    margin-top: 70px;
   

}
.info .container .testmonalise .content .image span {
    color: var(--color-light);
    font-weight: bold;
    margin-top: 5px;
    text-align: center;
}

.info .container .testmonalise .content .text  {
    text-align: left;
    margin-left: 30px;
    border-bottom: 2px solid #777;
}
.info .container .testmonalise .content .text p {
    top: 0;
    line-height: 1.8;
    color:#fff;
    width: 300px;
    max-width: 100%;
    margin-bottom:20px ;
    
}
.info .container .testmonalise .content .text span {
    color: var(--color-light);
    display: flex;
    justify-content: end;
    font-weight: bold;
    margin-bottom: 10px;
}
.info .container .html-css .content .prog-holder {
    text-align: left;
    left: 0;
}
.prog-holder {
    margin-bottom: 30px;
}
.prog-holder h4 {
    margin-bottom: 15px;
    font-weight: normal;
    text-transform: uppercase;
}
.prog-holder .prog {
    background-color: #dedadc;
    height: 30px;
}
.prog-holder .prog span {
    display: block;
    background-color: #9D9D9D;
    height: 100%;
    position: relative;
}
.prog-holder .prog span::before {
    position: absolute;
    content: attr(data-progress);
    background-color: black;
    color: white;
    padding: 4px 1px;
    /* font-size: 12px; */
    margin-top: -35px;
    /* left: 94%; */
    right: -13px;
    border-radius: 4px;
}
.html-css .prog-holder .prog span::after {
    content: '';
    border: 8px solid;
    border-color: black transparent transparent transparent;
    /* right: 0; */
    position: absolute;
    right: -6px;
    top: -8px;
}
@media (max-width:995px) {
    .info .container {
        flex-direction: column;
    }
    .info .container .testmonalise .content .text  {
        max-width: 100%;
    }
    .info .container .testmonalise .content .text p {
        max-width: 100%;
    }
    
}
@media (max-width:767px){
    .info .container .testmonalise .content {
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .info .container .testmonalise .content .image img {
        text-align: center;
        margin: 10px 0;
        margin-right: 0;
    }
    .info .container .testmonalise .content .text  {
        text-align: center;
        margin-left: 0;
        border-bottom: 2px solid #777;
    }
}

/* End Information */

/* Start Resum  */
/* .resum {
    padding-top: 100px;
    padding-bottom: 100px;
    
}
.resum .container .resum-container {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fill ,minmax(450px,1fr));
   
    grid-column-gap:40px;
    grid-row-gap:60px;
}
.resum .container .main-heading h2 {
    font-size: 35px;
    font-weight: normal;
    text-transform: uppercase;
    color: white;
    letter-spacing: -1px;
    margin-bottom: 30px;
    width: fit-content;
    position: relative;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    line-height: 2;
}
.resum .container .main-heading h2::after {
    content: "";
    position: absolute;
    height: 3px;
    width: 100%;
    left: 0;
    background-color: white;
    bottom: 0;
}
.resum .container .main-heading h2::before {
    content: "";
    position: absolute;
    border: 4px solid;
    border-color: white ;
    border-radius: 50%;
    height: 15px;
    width: 15px;
    background-color:var(--color-black);
    bottom: -9px;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.resum .container .main-heading p {
    width: 400px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 100%;
}
.resum .container .resum-container .srv-box {
    display: flex;
    
}
@media (max-width:767px){ 
    .resum-container .srv-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        
    } 
    .resum-container .srv-box .text {
        align-items: center;
        text-align: center;
        margin-top: 60px;
        
    } 
}
.resum .container .resum-container .srv-box i {
    
    font-size: 50px;
    margin-right: 30px;
}
.resum .container .resum-container .srv-box .text {
    padding-left: 0px;
    
}
.resum .container .resum-container .srv-box .text h3{
    margin-bottom: 30px;
    
    color: var(--main-color);
}
.resum .container .resum-container .srv-box .text p{
    font-size: 18px;
    color: #777;
    line-height: 1.8;} */
/* End Resum  */
/* Start Resum  */
.resum {
    padding-top: 100px;
    padding-bottom: 100px;
}
.resume {
    display: flex;
    gap: 2rem;
    max-width: 1000px;
    margin: auto;
    flex-wrap: wrap;
  }
.resum .container .main-heading {
    text-align: center;
    margin-left: auto ;
    margin-right: auto ;
    margin-bottom: 60px;
    
    
}
.resum .container .main-heading h2 {
    font-size: 35px;
    font-weight: normal;
    text-transform: uppercase;
    color: white;
    letter-spacing: -1px;
    margin-bottom: 30px;
    width: fit-content;
    position: relative;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    line-height: 2;
}
.resum .container .main-heading h2::before {
    content: "";
    position: absolute;
    border: 4px solid;
    border-color: white;
    border-radius: 50%;
    height: 15px;
    width: 15px;
    background-color: var(--color-black);
    bottom: -9px;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.resum .container .main-heading h2::after {
    content: "";
    position: absolute;
    height: 3px;
    width: 100%;
    left: 0;
    background-color: white;
    bottom: 0;
}
.resum .container .resum-container {
    gap: 2rem;
    max-width: 1000px;
    margin: auto;
    flex-wrap: wrap;
}


.resum .resum-container {
    display: flex;
    justify-content: space-between;
}


.resum .container .start-text {
    margin-bottom: 60px;
}

.resum section {
    flex: 1;
    background: #eee;
    padding: 1rem;
    border-left: 4px solid #383737;
    border-radius: 5px;
    min-width: 300px;
  }
.resum section p {
    color: #383737;
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}
  .resum h2 {
    color:#383737;
    border-bottom: 1px solid #383737;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
  }
  .resum ,.edu {
    margin-bottom: 1.5rem;
  }
  .resum .edu {
    color: #383737;
    font-size: 0.9rem;
  }
  .resum h3 {
    display: block;
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
    color: #383737;;
  }

  .resum  .date {
    color: #383737;
    font-size: 0.9rem;
  }

  .resum  .company {
    color: #454955;
    float: right;
  }
  /**********************************/
  .skills {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
  }

  .language-skill, .knowledge {
    flex: 1;
  }

  .lang-bar {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
  }

  .lang-bar span {
    width: 80px;
    display: inline-block;
  }

  .dots {
    display: flex;
    gap: 4px;
  }

  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #444;
  }

  .dot.active {
    background: white;
  }

  .knowledge ul {
    list-style: none;
    padding: 0;
    
  }

  .knowledge li::before {
    content: "\2713";
    color: white;
    margin-right: 8px;
  }

  .testimonial {
    margin-top: 2rem;
    border-top: 1px solid #444;
    padding-top: 1rem;
    font-style: italic;
  }

  .testimonial strong {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    color: #ddd;
  }
/* End Resum  */

/* Start contact */
.contact {
    padding-top: 100px;
    padding-bottom: 100px;
}
.contact .container .main-heading {
    text-align: center;
    margin-left: auto ;
    margin-right: auto ;
}

 .contact  .main-heading h2 {
    font-size: 35px;
    font-weight: normal;
    text-transform: uppercase;
    color: white;
    letter-spacing: -1px;
    margin-bottom: 30px;
    width: fit-content;
    position: relative;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    line-height: 2;
}
.contact .main-heading h2::after {
    content: "";
    position: absolute;
    height: 3px;
    width: 100%;
    left: 0;
    background-color: white;
    bottom: 0;
}
.contact .main-heading h2::before {
    content: "";
    position: absolute;
    border: 4px solid;
    border-color: white ;
    border-radius: 50%;
    height: 15px;
    width: 15px;
    background-color:var(--color-black);
    bottom: -9px;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.contact  .main-heading p {
    width: 400px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 100%;
    
}
.contact {
    padding-top: 40px;
    padding-bottom: 40px;
}
.contact .container {
    display: flex;
    
}

.contact .container .box-left {
    display: flex;
    flex-direction: column;
    background-color: #383737;
    padding: 20px;
    width: 50%;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.contact .container .box-left h4 {
    color: #9D9D9D;
    font-size: 22px;
    margin-bottom: 20px;
    margin-top: 10px;
}
.contact .container .box-left p {
    color: #9D9D9D;
    line-height: 2.0;
    margin-bottom: 20px;
    width: 60%;
    font-size: 18;
}
.contact .container .box-left span {
    color: white;
    line-height: 1.8;
    margin-bottom: 5px;
    width: 60%;
    font-size: 18;
}
.contact .container .box-left span:nth-of-type(1)::before {
    font-family: 'Font Awesome 6 Free';
    content: '\f0e0';
    font-weight: 900;
    margin-right: 15px;
    color: var(--main-color);
}
.contact .container .box-left span:nth-of-type(2)::before {
    font-family: 'Font Awesome 6 Free';
    content: '\f095';
    font-weight: 900;
    margin-right: 15px;
    color: var(--main-color);
}
.contact .container .box-left .icons {
    margin-top: 20px;
    margin-bottom: 50px;
} 
.contact .container .box-left .icons i{
    font-size: 20px;
    margin-right: 10px;
} 
.contact .container .box-right{
    display: flex;
    flex-direction: column;
    width: 50%;
    background-color: #eee;
    padding: 20px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    position: relative;
} 
.contact .container .box-right::before{
    content: "";
    position: absolute;
    border: 20px solid;
    border-color: transparent #eee transparent transparent;
    left: -40px;
    top: 40px;
} 
.contact .container .box-right h4 {
    color: #383737;
    font-size: 22px;
    margin-bottom: 20px;
    margin-top: 10px;
}
.contact .container .box-right input {
    width: 100%;
    border-radius: 15px;
    height: 40px;
    background: none;
    margin-bottom: 10px;
    border: 2px solid #383737;
    padding-left: 10px;
    color: #383737;
    font-size: 15px;
    outline: none;
}
.contact .container .box-right textarea {
    width: 100%;
    border-radius: 15px;
    padding-top: 5px;
    background: none;
    margin-bottom: 10px;
    border: 2px solid var(--color-black);
    padding-left: 10px;
    color: var(--color-black);
    font-size: 15px;
    outline: none;
}
.contact .container .box-right input::placeholder ,
.contact .container .box-right textarea::placeholder {
    color: #383737;
}
.contact .container .box-right button {
    background-color: #383737;
    border-radius: 10px;
    width: fit-content;
    padding: 5px 10px;
    border: none;
    color: #eee;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
    .contact .container .box-left,
    .contact .container .box-right {
        width: 100%; /* كيخلي كل وحدة تاخذ عرض كامل في الشاشات الصغيرة */
    }

    .contact .container {
        flex-direction: column;
    }

    .contact .container .box-right::before {
        left: -20px;
        top: 20px;
    }
}

/* End contact */
/* Start footer */
footer {
    border-top: 3px solid var(--color-white);
    padding: 20px 0;
}
footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .container .icons {
    display: flex;
    justify-content: space-around;
    width: 120px;
}
footer .container .icons a{
    font-size: 22px;
}
/* End footer */
/* ====== GLOBAL RESET ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  position: relative;
}

/* ====== STICKY ICON BAR ====== */
.stikicone .icons {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #555;
  text-align: center;
  background-color: rgba(50, 50, 50, 0.9);
  padding: 5px 30px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  z-index: 3;
}

.stikicone .icons a {
  padding: 0 15px;
}

.stikicone .icons i {
  font-size: 30px;
  margin-right: 5px;
}

@media (max-width: 768px) {
  .stikicone .icons {
    bottom: 10px;
    padding: 5px 20px;
  }

  .stikicone .icons i {
    font-size: 25px;
  }

  .stikicone .icons a {
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .stikicone .icons {
    padding: 5px 15px;
  }

  .stikicone .icons i {
    font-size: 20px;
  }

  .stikicone .icons a {
    padding: 0 8px;
  }
}

/* ====== PROFILE CARD (POPUP) ====== */
.profile-card {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 700px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  overflow: hidden;
  z-index: 1000;
}

.left-section {
  width: 40%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.right-section {
  width: 60%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.right-section h1 {
  color: #25D366;
  font-size: 1.3em;
  margin-bottom: 15px;
}

.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  margin-bottom: 20px;
}

.profile-name {
  font-size: 1.6em;
  margin: 0 0 5px 0;
  text-align: center;
}

.profile-title {
  font-size: 1em;
  opacity: 0.9;
  text-align: center;
  margin-bottom: 30px;
}

.qr-container {
  text-align: center;
  margin-top: 20px;
}

.qr-code {
  width: 120px;
  height: 120px;
  background-color: white;
  padding: 8px;
  border-radius: 8px;
}

.qr-text {
  font-size: 0.9em;
  margin-top: 10px;
  font-weight: bold;
}

.about-text {
  line-height: 1.6;
  color: #555;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  color: #25D366;
}

@media (max-width: 780px) {
  .profile-card {
    flex-direction: column;
    max-height: 90vh; /* تبقى في حدود الشاشة */
  }

  .left-section,
  .right-section {
    width: 100%;
  }

  .left-section {
    padding: 20px;
  }

  .right-section {
    padding: 20px;
  }

  .profile-img {
    width: 80px;
    height: 80px;
  }
}

/* ====== PORTFOLIO IMAGES + BUTTON ====== */
.extra-images {
  display: none;
}

button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background-color: #45a049;
}

/* ====== POPUP OVERLAY (NOT YET USED) ====== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  display: none;
}
