* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  cursor: none;
}

:root {
  --primary-color: rgb(255, 255, 255);
  --shadow: #00000024;
  --text-color: #0c0c0c;
  --blue-color: #307CBF;
;
  --icon-shadow: #00000011;
  --p-color: rgb(0 0 0 / 64%);
}
.dark-theme {
  --primary-color: #121212;
  --shadow: #b7b7b710;
  --icon-shadow: #b7b7b710;
  --text-color: rgb(250 250 250 / 87%);
  --p-color: rgb(250 250 250 / 38%);
}


body {
  background-color: var(--primary-color);
  /* overflow: hidden; */
  height: 100%;
  
}
html {
  scroll-behavior: smooth;
}
@font-face {
  font-family: F_Bold;
  src: url(../font/Alexandria-Bold.ttf);
}
@font-face {
  font-family: F_Medium;
  src: url(../font/Alexandria-Medium.ttf);
}
@font-face {
  font-family: F_Regular;
  src: url(../font/Alexandria-Regular.ttf);
}
@font-face {
  font-family: F_Light;
  src: url(../font/Alexandria-Light.ttf);
}
.icons {
  position: relative;
  background-color: transparent;
  width: 34px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  height: 34px;
  padding: 3px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: 0.8s;
}
.icons:hover {
  background-color: var(--text-color);
}
.icon-theme {
  display: flex;
  align-items: center;
}

.icons .moon {
  font-size: 25px;
  transition: 0.4s;
}
.icons:hover .moon {
  cursor: pointer;
  font-size: 24px;
  color: var(--primary-color);
}
.icons .sun {
  display: none;
  color: yellow;
  font-size: 25px;
  transition: 0.4s;
}
.icons:hover .sun {
  cursor: pointer;
  font-size: 24px;
  /* color: var(--primary-color); */
}
.icons .sun.iconactiv {
  display: inline-block;
}
.logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}
.container {
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: white;
  transition: transform 0.3s ease;
  transform-origin: center center;
  pointer-events: none;
  cursor: none;
  mix-blend-mode: difference;
  z-index: 1000;
}
.grow {
  transform: scale(7);
}
.grow-small {
  transform: scale(3);
}
.remove {
  display: none;
}
@media (max-width: 992px) {
  .cursor {
    display: none;
  }
  * {
    cursor: auto;
  }
}
a{
  text-decoration: none;
}

/* ------------------------------- start nav -------------------------------------------- */

.header {
  display: flex;
  flex-direction: column;

  /* height: 80px; */
  width: 100%;
  top: 0;
  position: fixed;
  background-color: var(--primary-color);
  z-index: 1000;
  box-shadow: rgba(0, 0, 0, 0.71) 0px -12px 16px 0px;
}

.header .logo {
  padding: 10px 16px 10px 0px;
  font-family: F_Bold;
  color: var(--text-color);
}
.header .container {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-around;
}
.header .container .main-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
  z-index: 10;
}
.header .container .main-nav li {
  list-style-type: none;
  position: relative;
}
.header .container .main-nav a {
  display: flex;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  font-family: F_Medium;
  text-decoration: none;
  height: 80px;
  color: var(--text-color);
  transition: 0.6s;
}
.header .container .main-nav a::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--text-color);
  transition: 0.6s;
  text-align: center;
  transform: scale(0, 1);
  transition: ease 0.9s;
}
.header .container .main-nav a:hover::after {
  transform: scale(0.5, 1);
}
.header .container .main-nav a.active::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--blue-color);
  text-align: center;
  transform: scale(1.5, 1);
  transition: ease 0.8s;
}
.header .container .main-nav a.active {
  color: var(--blue-color);
}
.toggler {
  display: none;
  cursor: pointer;
  z-index: 1000;
}
.bar {
  display: block;
  text-align: right;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: var(--text-color);
 }

.toggler .bar:nth-child(1) {
  width: 25px;
margin-right: 4px;
}
.toggler .bar:nth-child(2) {
  width: 20px;
  height: 3px;
}
.toggler .bar:nth-child(3) {
  width: 16px;
  margin-right: 4px;


  
}

@media (max-width: 768px) {
  .header .container {
    justify-content: space-between;
  }
  .header .container .main-nav {
    flex-direction: column;
    justify-content: start;
    top: 3.4rem;
    gap: 3rem;
    left: -100%;
    background-color: var(--primary-color);
    position: fixed;
    width: 100%;
    height: 100vh;
    align-items: center;
    transition: 0.8s;
  }
  .header .container .main-nav.active {
    left: 0;
    position: absolute;
  }
  .toggler {
    display: block;
  }
  .toggler.active .bar:nth-child(2) {
    opacity: 0;
  }
  .toggler.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: red;
    width: 25px;
    
  }
  .toggler.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
   background-color: red;
   width: 25px;
  }
  .header .container .main-nav a.active::after {
    display: none;
  }
  .header .container .main-nav a {
    height: 40px;
  }
  .icons {
    margin-right: 16px;
    transform: rotateZ(-12deg);
  }
}

.img_1{
  width: 100%;
  
}

/* ------------------------------- end nav -------------------------------------------- */
/* notafatins */


/* الشريط الإعلاني */
.marquee-container {

  width: 100%;
  /* overflow: hidden; */
  background-color: #ffcc00;
  color: #333;
  padding: 8px 0;
  text-align: center;
  font-size: 0.8rem;
  font-weight: bold;
}

.marquee-container .marquee {
  display: inline-block;
  white-space: nowrap;
  position: relative;
  animation: scrollText 10s linear infinite;
}

@keyframes scrollText {
  from {
      transform: translateX(100%);
  }
  to {
      transform: translateX(-100%);
  }
}

/* إضافة مسافة للمحتوى */
.content {
  margin-top: 50px;
}










/* .................................................. */




.language-button {
  background-color: transparent;
  border: none;
  border-radius: 50%;
  padding: 3px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
}

.language-button:hover {
  background-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.language-icon {
  cursor: pointer;
  width: 25px;
  height: 25px;
}








/* ------------------------- start landing ---------------------*/

.landing {
  /* height: 35rem; */
  margin-top: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;  
  /* border-bottom: 2px solid #627fd891; */
  margin: 1rem;
}
.landing .container {
  display: flex;
  flex-direction: column;
  flex-direction: column-reverse;
  justify-content: space-around;
  align-items: center;
  width: 100%;

 
}
.dynamic-text {
  height: 24px;
  overflow: hidden;
  font-family: F_Medium;
  margin: 10px 0 20px 5px;
}
.dynamic-text li {
  list-style: none;
  position: relative;
  top: 0;
  animation: slide 3s steps(2) infinite;
}
.dynamic-text li span {
  position: relative;
  font-size: 20px;
  color: var(--text-color);
}
@media (max-width: 620px) {
  .dynamic-text li span {
    font-size: 16px;
  }
}
.landing .container .info {
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 40px;
  /* background-color: red; */
  /*transition: 2s;*/
}
.info .p-tx {
  font-family: F_Bold;
  font-size: 23px;
  color: red;
}

.driver{

  width: 100%;
  height: auto;
  display: flex;
align-items: center;
justify-content: center;
}
 .p-inf{
position: relative;
  width: 100%;
  height: 30px;
  margin: 0 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("/images//lin.png");

}

.landing .container .info.active {
  opacity: 1;
}

.landing .container .info a {
  background-color: var(--blue-color);
  border: 1px solid var(--blue-color);
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-family: F_Medium;
  transition: 1s;

  cursor: pointer;
  margin-left: 7px;
}

.landing .container .info h1 {
  margin-left: 3px;
  font-family: F_Light;
  font-size: 26px;
  color: var(--text-color);
  position: relative;
  letter-spacing: 1px;

  animation: anim_1 1.4s;
}
.landing .container .info h1 span {
  color: var(--blue-color);
}

@keyframes anim_1 {
  0% {
    right: -50px;
  }
  100% {
    right: 0px;
  }
}
.landing .container .info h2 {
  text-transform: uppercase;
  font-size: 40px;
  color: transparent;
  /* -webkit-text-stroke: 1px var(--primary-color); */
  background: var(--blue-color);
  -webkit-background-clip: text;
  background-position: 0 0;
  font-family: F_Bold;
  padding-left: 200px;
  animation: anim_2 20s linear ;
  transition: 1.4s;
}
.landing .container .info h2.active {
  padding-left: 0px;
}
@keyframes anim_2 {
  0% {
    left: -60px;
  }
  100% {
    left: 0px;
  }
}

.landing .container .info p {
  margin-left: 5px;
  color: var(--p-color);
  font-family: F_Regular;
  font-size: 12px;
  max-width: 380px;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  /* letter-spacing: 1px; */
}

.landing .container img {
  /* height: 140px; */
  height: 100%;
  /* background-color: red; */
  /* width: 240px; */
width: 100%;
  position: relative;
  top: 100px;
  /*margin-bottom: 60px;*/
  /* animation: anim_3 3s; */
  transition: 1.4s;
}

@keyframes anim_3 {
  0% {
    transform: scale(0.0);
  
  }

  100% {
    transform: scale(1);
  }
}
@media (max-width: 992px) {
  .landing .container img {
    /* height: 340px; */
    width: 100%;
    /* width: 440px; */
    object-fit: cover;
    position: relative;
    top: 0;
  }
  .landing .container .info h2 {
    font-family:  F_Bold;
    font-size: 18px;
    color: var(--primary-color);
  }
  .landing .container .info h1 {
    font-size: 16px;
    color: var(--blue-color);
  }
  .landing .container .info p {
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  .landing .container img {
    /* height: 340px; */

    /* width: 440px; */
    width: 100%;
    position: relative;
    top: 100px;
  }
  .landing .container .img_2{
    width: 440px;
  }

}
@media (max-width: 768px) {
  .header {
    height: auto;
  }
  .landing .container {
    width: 100%;
    margin-top: 6rem;
    flex-direction: column-reverse;
    gap: 2px;
    
  }
  .landing .container img {
    /* object-fit: cover; */
    /* height: 190px; */
    top: 40px;
    /* width: 250px; */
  }
  .landing .container .info {
    text-align: center;
    padding-bottom: 100px;
    
  }
  .landing .container .info h2 {
    font-family: B_Bold;
    font-size: 26px;
    color: var(--blue-color);
  }
  .landing .container .info h1 {
    padding: 10px 0px;
    color: var(--blue-color);
    font-size: 13px;
  }
  .landing .container .info p {
    font-size: 12px;
  }
}


/* ...................... slider and imge */




.swiper-container {
  position: relative;
  
  display: flex;
  align-items: center;
  flex-direction: column;
     justify-content: center;
  margin-top: 4rem;
  margin: 1rem;
  margin-bottom: 5rem;
  overflow: hidden;
direction: rtl; /* لضبط الحاوية من اليمين إلى اليسار */

}
.swiper-container .swiper-wrapper
{
  position: relative;
 
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;

}   
.swiper-wrapper .swiper-slide img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit:cover; /* لضبط الصورة داخل الشريحة */
}
/* تصميم النقاط */
.swiper-pagination-bullet {

margin-top: 2rem;
width: 12px;
height: 12px;


background-color: rgb(43, 99, 203);       /* اللون الأساسي */
margin: 0 4px;
border-radius: 2px;          /* زوايا خفيفة لمظهر أكثر نعومة */
transform: rotate(45deg);    /* تدوير النقطة بمقدار 45 درجة */
}

/* تخصيص النقطة النشطة */
.swiper-pagination-bullet-active {
background-color: rgb(59, 100, 203);   /* تغيير اللون عند التفعيل */
transform: rotate(45deg) scale(1.2); /* تكبير النقطة النشطة قليلاً وتدويرها */
}

.video-container {
position: relative;
width: 100%;
max-width: 800px;         
margin: 20px auto;        
border-radius: 15px;      
overflow: hidden;         
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); 
}

.video-thumbnail {
width: 100%;              
height: auto;             
border-radius: 15px;      
position: absolute;        
top: 0;                   
left: 0;                  
z-index: 1;               
transition: opacity 0.3s ease; /* تأثير انسيابي */
}

.video-container:hover .video-thumbnail {
opacity: 0.5; 
}

video {
width: 100%;              
height: auto;             
display: block;
border-radius: 15px;      
}


.swiper-container2 {

margin: 1rem;
overflow: hidden;
position: relative;
  
display: flex;
align-items: center;
flex-direction: column;
   justify-content: center;
height: 250px;
}

.swiper-container2 .swiper-slide {
background: #f7f7f7;
position: relative;
  
display: flex;
align-items: center;
flex-direction: column;
   justify-content: center;
padding: 10px;
height: 200px;
border-radius: 8px;
border:1px solid #0011ff;
outline: none;

text-align: center;
}

.customer-review {
font-size: 1rem;
margin-bottom: 10px;
color: #333;
font-size: 13px;
line-height: 1.4;
font-family: F_Medium;
}

.customer-name {
font-weight: bold;
color: var(--blue-color);
}

.star-rating {
color: #FFD700;
margin-bottom: 10px;
}

.op-1{
  text-align: center;
  color: var(--blue-color);
  margin: 2rem auto;
   font-family: F_Medium;
  
  font-size: 18px;
}





/* ------------------------- start about ---------------------*/

.about {
  padding: 4px 0;
  display: flex;
  margin-top: 2rem;
  justify-content: center;
  align-items: center;
  /* border-bottom: 2px solid #627fd891; */
 margin: 1rem;
  
 
}
.about .container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}
.about .container .about-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.about .container .about-info h1 {
  font-family: F_Bold;
  
  font-size: 30px;
  color: var(--blue-color);
}
.about .container .about-info p {
  font-family: F_Medium;
  font-size: 16px;
  color: var(--p-color);
  text-align: center;
}
.about .container .about-info a {
  background-color: var(--blue-color);
  border: 1px solid var(--blue-color);
  padding: 8px 22px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-family: F_Medium;
  transition: 1s;
  cursor: pointer;
  margin-bottom: 2rem;

}


@media (max-width: 620px) {
  .about .container .about-info h1 {
    font-size: 18px;
    color: var(--blue-color);
  }
  .about .container .about-info p {
    font-size: 12px;
    text-align: center;
  }
  .about .container .about-info a {
    padding: 6px 18px;
    font-size: 11px;
  }
  .about .container .about-img {
    width: 200px;
    height: 200px;
  }
}

/* ------------------------- start skills ---------------------*/

.skills {

 margin-top: 4rem;
  /* border-bottom: 2px solid #627fd891; */
  text-align: center;
 padding: 5px;
}
.skills .container {
 position: relative;
  display: flex;  
  align-items: center;
  flex-wrap: wrap;

  gap: 4px;
 justify-content: center;
}

.skills .container .skill{
  position: relative;
  /* border:2px solid #307CBF; */
  border-radius: 12px;
   padding: 8px 22px;
   box-shadow: 1px 9px 14px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-bottom: 2rem;
  width: 380px;
  height: auto;
}


.skills .container .skill i {
  font-size: 28px;
  color: var(--blue-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  background-color: rgba(48, 124, 191, 0.24);
  align-items: center;
  border:  2px solid var(--blue-color);
  
}

.skills .container .skill h1 {
  font-family: F_Medium;
  font-size: 15px;
  margin:1rem;
  color: var(--blue-color);
}
.skills .container .skill .p-text{
  font-family: F_Regular;
  font-size: 13px;
  color: var(--p-color);
  text-align: center;
  white-space: pre-line;
  line-height: 1.6;
  
}

.skills  h2 {
  font-family: F_Bold;
  font-size: 20px;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--blue-color);
}

.skills .container .skill:hover{
  background: #307CBF;
    ;
    transition: 0.6s;
  }

  .skills .container .skill:hover i{
    background: #fff;
      ;
      transition: 0.6s;
    }
    .skills .container .skill:hover h1{ 
     color: #fff;
        transition: 0.6s;
      }
      .skills .container .skill:hover .p-text{ 
        color: #fff;
           transition: 0.6s;
         }


/* ------------------------- start services ---------------------*/
/* .form{
  position: relative;
}

 .form form {
  max-width: 500px;
  margin: auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #555;
}

.form input[type="number"],
input[type="text"],
input[type="tel"] {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

.form button {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #28a745;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #218838;
}

#result {
  margin-top: 20px;
  padding: 15px;
  background-color: #e9f7ef;
  border: 1px solid #d4edda;
  border-radius: 5px;
  color: #155724;
  font-weight: bold;
}

#whatsappLink {
  display: none;
  margin-top: 10px;
  color: #25d366;
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
}

@media (max-width: 600px) {
  form {
      padding: 15px;
  }

  button {
      width: 100%;
  }
} */

/* ........ */

.calu{
  display: flex;
flex-direction: column;
  justify-self:center;
  
  align-items: center;
  gap: 4px;
width: 100%;
overflow: hidden;
  margin: 2rem 0;
}
.form-da{
  padding: 1rem;   
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
  margin: 1rem;
  border: 1px solid #5a86d2;
}
.container-cal {
  
  max-width: 400px;
  width: 100%;
  margin: 1rem 2rem;

  margin-bottom: 20px;
  
}

.container-cal h2, h4 {
  color: var(--blue-color);
  margin-top: 0;
  font-size: 17px;
  text-align: center;
  font-family: F_Medium;
}

.container-cal h4{
  font-size: 12px;
  color: rgb(244, 108, 108);
}
.container-cal h3 {
  color: var(--blue-color);
  text-align: center;
  width: 100%;
  font-family: F_Medium;
  font-size: 13px;
}
.container-cal P{
  color: red;
  text-align: center;
  font-family: F_Medium;
  font-size: 9px;
  margin-top: 0.3rem;
}

label {
  display: block;
  font-weight: bold;
  margin: 10px 0 5px;
  text-align: right;
}

input[type="number"],
input[type="text"],
input[type="tel"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
}

#finalPrice {
  font-size: 1em;
  font-weight: bold;
  color: #e74c3c;
}

.free-shipping {
  font-size: 14px;
  color: #27ae60;
}

.container-cal button {
  background-color: #3498db;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #2980b9;
}












/* ------------------------- start services ---------------------*/


.faq-container {
  width: 100%;
  max-width: 800px;
  background-color: #fff;

  overflow: hidden;
  margin: 10px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 14px;

}

.faq-container .faq-item {
  width:100%;
  position: relative;
  /* border: 2px solid #87add2; */
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  /* background-color: #69c5b9; */
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
  color: #307CBF;
}

.faq-question:hover {
  background-color: #f0f0f0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  color: #555;
  line-height: 1.6;
  text-align: right;
  font-family: F_Reguler;

  background-color: #f9f9f9;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-answer.open {
  max-height: 500px; /* ارتفاع كبير يكفي لإظهار الإجابة */
  padding-top: 15px;
  padding-bottom: 15px;
}

.faq-toggle {
  font-size: 18px;
  color: #007bff;
  font-weight: bold;
  margin-left: 10px;
}

/* foter */

 


/* ================================= contact me ======================================= */



.contact-me {
  width: 100%;
  /* overflow: hidden;
  overflow-y: auto; */
  /* margin: 10px auto; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
background-color: #f3f3f3;
  padding: 14px;
  margin-top: 5rem;
}
.cir-col{
  width: 100%;
  height: 450px;
  position: absolute;
  display: flex;
  align-items: center;
margin-top: -4.3rem;
  justify-content: center;
  text-align: center;
  border-top-left-radius: 50%;
  border-top-right-radius:50% ;
  z-index: -1;
  background-color: #f3f3f3;
}

.contact-me .container {
  /* border-top: 1px solid #22222291; */
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
 
}

.contact-me .container .contact-info{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;

  gap: 12px;
}

.lg-ft{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgb(74, 127, 226);
}
.contact-me .container .contact-info h2 {
  font-family: F_Medium;
  font-size: 15px;
  margin: 1rem 0;
  color: var(--blue-color);
}

.contact-me .container .contact-info  a {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-top: 12px;
  font-size: 20px;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-color);
}

.contact-me .container .contact-form h1 {
  font-family: L;
  color: var(--text-color);
}
.contact-me .container .contact-form p {
  padding-top: 10px;
  padding-bottom: 20px;
  font-family: M;
  font-size: 14px;
  color: var(--p-color);
}
.contact-me .container .contact-form form {
  font-family: M;
  display: flex;
  flex-wrap: wrap;
  width: 600px;
}
.contact-me .container form div {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding-right: 28px;
}
.contact-me .container form div:nth-child(3) {
  width: 100%;
}
.contact-me .container form div input,
textarea {
  outline: none;
  border: 1px solid var(--text-color);
  background-color: transparent;
  border-radius: 10px;
  padding: 14px;
  font-family: M;
  color: var(--text-color);
  font-size: 15px;
  resize: none;
}
.contact-me .container form div input:focus,
textarea:focus {
  color: var(--text-color);
  font-family: M;
  font-size: 15px;
}
.contact-me .container form input[type="submit"] {
  font-family: M;
  background: linear-gradient(-45deg, var(--left-color), var(--right-color));
  padding: 12px 34px;
  border: none;
  font-size: 16px;
  background-color: var(--blue-color);
  border: 1px solid var(--blue-color);
  color: white;
  margin-top: 20px;
  border-radius: 14px;
  transition: 0.6s;
}

.contact-me .container form div label {
  padding-top: 20px;
  padding-bottom: 10px;
  color: var(--text-color);
}

.con-social {
 
margin-top: 1.2rem;

}
.con-social p{
  text-align: center;
  color: var(--blue-color);
  font-family: F_Medium;
  margin: 12px 0;
  font-size: 14px;
}
.con-social .social {
  display: flex;
  align-items: center;
  gap: 16px;

}
.social a {
  
  color: var(--text-color);
  transition: 0.8s;
}
.social a .icon {
  cursor: pointer;
}
.contact-me .container .contact-info .con-social h1 {
  font-size: 20px;
  font-family: R;
}
.social a:nth-child(1):hover {
  color: #0073ffad;
}
.social a:nth-child(2):hover {
  color: #000000ad;
}
.social a:nth-child(3):hover {
  color: #0011ff;
}
.social a:nth-child(4):hover {
  color: #000000;
}
i.fa-brands.fa-whatsapp {
  font-size: 17px;
}
@media (max-width: 992px) {
  .con-social {
    padding-top: 0;
  }
 
}
@media (max-width: 620px) {
 
  .contact-me .container form div:nth-child(3) {
    width: 100%;
  }
  .contact-me .container form div {
    width: 100%;
  }
  .contact-me .container .contact-form form {
    width: 250px;
    /* flex-direction: column; */
  }
  .contact-form {
    /* display: flex;
    flex-direction: column;
    align-items: flex-start; */
  }
  .contact-me .container form div {
    padding-right: 0px;
  }
  .contact-me .container .contact-info {
    width: 250px;
   
  }

  .contact-me .container .contact-info  p{
    text-align: center;
    color: var(--blue-color);
    font-family: F_Medium;
    margin: 12px 0;
    font-size: 14px;
   
  }
  .contact-me .container form div label {
    padding-top: 20px;
    font-size: 14px;
    padding-bottom: 6px;
  }
  .contact-me .container .contact-form h1 {
    font-size: 28px;
  }
  .contact-me .container .all-contant {
    padding: 30px 0px;
  }
}
/*  */



.up {
  position: fixed;
  background-color: var(--blue-color);
  padding: 0.5rem 1rem;
  bottom: 3.5rem; /* bottom-14 */
  right: 1rem; /* -right-20 */
  z-index: 10;
  cursor: pointer;
  font-size: 1rem; /* text-base */
  font-weight: bold;
  border-radius: 0.375rem; /* rounded-md */
}

.up i {
  color: white;
}

@media (min-width: 768px) {
  .landing{
    margin: 5rem 3rem;
   
  }
  .skills .container {
width: 100%;
margin: auto;
    flex-wrap: wrap;
    gap: 9px;
    align-items: start;
    justify-content: center;
   outline: none;
  }
  .up {
      padding: 0.5rem 1rem; /* md:py-2 */
      font-size: 1.875rem; /* md:text-3xl */
  }
  .calu{
    display: flex;
    justify-content: center;
    width: 100%;
        align-items: start;
        flex-direction: row;
    gap: 4px;
  
  }
 
  .swiper-container2 .swiper-wrapper{
  
    display: flex;
    justify-content: center;
    gap: 4px;
  

}
}

/* تميسبلنش */

.whatsapp-float {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 130px;
  right: 0.6em;
  background-color: #25D366; /* لون واتساب */
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;

}

.whatsapp-float:hover {
  background-color: #1ebea5; /* لون أغمق عند التمرير */
}
/* ................................... */



.img-bn{
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 1rem;
  overflow: hidden;
  border-radius: 12px;
}
.con-info{
margin: 1rem;
text-align: center;

}

.con-info p{
  color: var(--blue-color);
  font-family: F_Medium;
  margin: 12px 0;
  font-size: 14px;
}




/* ======================================footer========================================= */
.ft {
  /* margin-top: 1rem; */
background-color: #5a86d2;
display: flex;
align-items: center;
justify-content: center;
  background-image: url("/images/baner.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 12px;
  text-align: center;
}
.ft  p {
  font-size: 16px;
  font-family: L;
  color: var(--text-color);
}
@media (max-width: 620px) {
.ft p {
    font-size: 14px;
  }
}
