* {
  color: #fff;
  text-decoration: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-family: "Open Sans", sans-serif;
  box-sizing: border-box;
  font-family: sans-serif;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

body {
  padding: 20px;
  background: #191919;
}
.nav {
  width: 100%;
  height: 60px;
  background-color: #191919;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #262626;
}

.nav .log {
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
.nav .log img {
  font-size: 15px;
  width: 50px;
  margin-right: 10px;
}
.nav .sections ul {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav .sections ul li a {
  padding: 10px 15px;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;

  letter-spacing: 1px;
  transition: 0.5s;
  position: relative;
  text-decoration: none;
}
.nav .sections .active a {
  background-color: #262626;
}

.nav .sections ul li a:hover {
  background-color: #262626;
}
.nav .contact {
  display: flex;
  align-items: center;
}
.nav .contact a {
  padding: 10px 15px;
  border-radius: 5px;
  color: #000000;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.5s;
  position: relative;
  text-decoration: none;
  background-color: #9eff00;
}
.hero {
    position: relative;
    text-align: center;
    margin-bottom: 90px;
}
.hero .container {
  padding-top: 100px;
}

.hero  img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20%;
    right: 0;
    border-bottom: 1px solid #363735a9;
    z-index: -1;
}
.hero h1 {
  margin-top: 40px;
  text-transform: uppercase;
  width: 82%;
  font-size: 60px;
  margin-bottom: 20px;
  margin-right: auto;
  margin-left: auto;
}
.hero .sup {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  font-size: 20px;
  margin: 20px auto;
  background-color: transparent;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #363735a9;
  box-shadow: inset 0 0 20px 20px lab(35 0 0 / 0.15);
}
.hero .sup span {
  display: inline;
  color: #98989a;
}
.hero .sup p {
  display: inline;
  padding: 10px 15px;
  border-radius: 5px;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 1px;
  transition: 0.5s;
  position: relative;
  text-decoration: none;
  background-color: #262626;
}
.hero .buttons {
  margin: 50px auto;
  width: fit-content;
  display: flex;
  gap: 25px;
}
.hero .buttons a {
  background-color: transparent;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 16px;
  border: 1px solid #363735a9;
  box-shadow: inset 0 0 1px 0 rgba(255, 254, 254, 0.011);
}
.hero .buttons .contact {
  padding: 10px 15px;
  border-radius: 5px;
  color: #000000;
  letter-spacing: 1px;
  transition: 0.5s;
  position: relative;
  text-decoration: none;
  background-color: #9eff00;
}
.companies{
    position: relative;
    padding: 15px 20px;
    border-bottom: 1px solid #363735a9;
}
.companies .cards{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    place-items: center;
    margin: 25px auto;
}



.companies .hash{
position: absolute;
top: -17%;
left: 50%;
transform: translateX(-50%);
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
z-index: 1;
background-color: #191919;
padding: 10px ;
border-radius: 20px;
border: 1px solid #363735a9;
box-shadow: inset 0 0 1px 0 rgba(255, 254, 254, 0.011);
}
.companies .hash span{
  color: #9eff00;
}
.companies .hash h5{
  font-size: 20px;
}
.services{
  width: 100%;
  height: fit-content;
}
.fasel{
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 25px;
}
.fasel img{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.fasel::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.fasel h1{
  font-size: 40px;
}
.fasel p{
  font-size: 16px;
  color: #98989a;
  line-height: 25px;
  text-align: center;
}
.services .col{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
}
.col .card{
border: 1px solid #363735a9;
padding: 25px;
display: flex;
justify-content: space-between;
flex-direction: column;
box-shadow: inset 0 0 1px 0 rgba(255, 254, 254, 0.011);

}
.col .card .icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;;
  background-color: #262626;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 25px;
  box-shadow: inset -1px 0px 14px 0 rgb(255 255 255 / 8%);
}
.col .card .icon i{
  color: #9eff00;
}
.card .text h2{
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 500;
}
.card .text p{
  font-size: 12px;
  color: #98989a;
  line-height: 25px;
  margin-bottom: 25px;
}
.card button{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border-radius: 5px;
  color: #ffffff;
  letter-spacing: 1px;
  background-color: #262626;
  border: 1px solid #363735a9;
  transition: 0.5s;
  box-shadow: inset 0 0 1px 0 rgba(255, 254, 254, 0.011);
}
.card button:hover{
  background-color: #9eff00;
  color:black;
}
.why{
  width: 100%;
  height: fit-content;
}
.why .compo{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(500px,1fr));

}
.why .compo .comp{
  border: 1px solid #363735a9;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  box-shadow: inset 0 0 1px 0 rgba(255, 254, 254, 0.011);

}
.why .compo .comp .head{
    align-items: center;
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}
.why .compo .comp .head i{
  color: #9eff00;
    display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;;
  background-color: #262626;
  border-radius: 8px;
  padding: 10px;

  box-shadow: inset -1px 0px 14px 0 rgb(255 255 255 / 8%);

}
.why .compo .comp .head h3{
  font-size: 20px;

  font-weight: 500;
}
.why .compo .comp p{
  font-size: 12px;
  color: #98989a;
  line-height: 25px;
  margin-bottom: 25px;
}
.revs{
  width: 100%;
  height: fit-content;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(500px,1fr));

}
.revs .rev{
  border: 1px solid #363735a9;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  box-shadow: inset 0 0 1px 0 rgba(255, 254, 254, 0.011);
}
.rev .head h3{
  color:#D8FF99;
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: 500;
}
.rev .head p{
  font-size:18px;
  color: #98989a;
  line-height: 25px;
  margin-bottom: 25px;
}
.rev .info{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #363735a9;
  box-shadow: inset 0 0 1px 0 rgba(255, 254, 254, 0.011);
}

.rev .info .text h4{
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 500;
}
.rev .info .text p{
  font-size: 12px;
  color: #98989a;
  line-height: 25px;
}
  .rev .info a{
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 10px 15px;
  border-radius: 5px;
  color: #ffffff;
  letter-spacing: 1px;
  background-color: #262626;
  border: 1px solid #363735a9;
  transition: 0.5s;
  box-shadow: inset 0 0 1px 0 rgba(255, 254, 254, 0.011);
}
  .rev .info .text{
  display: flex;
  align-items: center;
  gap: 15px;
}

.rev .info a:hover{
  background-color: #9eff00;
  color:black;
}
.question .container{
  display: grid;
  grid-template-columns:repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 900px){
  .question .container{
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.question .container .colom{
  display:flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 20px;
}
.question .container .colom .faq .content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 25px;
    border-bottom: 1px solid #222222;
}
.question .container .colom .faq .content h4{
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #262626;
    border-radius: 8px;
    padding: 10px;
    box-shadow: inset -1px 0px 14px 0 rgb(255 255 255 / 8%);
}
.question .container .colom .faq .content h3{
    font-size: 15px;
    font-weight: 100;
}


.question .container .colom .faq p{
  display: none;
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.6;
  color: #808080;
}
.question .container .colom .faq.focus p{
  display: block;
}
.thank .fasel{
  height: 300px;

  text-align: center;

}
.thank .fasel .log{
  margin-bottom: 20px;
}
.thank .fasel .log img{
  z-index: 10;
  width: 50px;
  height: 50px;
margin:30px auto;
}
.thank .fasel .th h1{
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 500;
}
.thank .fasel .th p{
  font-size: 12px;
  color: #98989a;
  line-height: 25px;
  margin-bottom: 20px;
}
.thank .fasel .th button{
  width: fit-content;
  padding: 10px 15px;
  border-radius: 5px;
  letter-spacing: 1px;
  background-color: #9eff00;
  color:black;
  border: 1px solid #363735a9;
  transition: 0.5s;
  box-shadow: inset 0 0 1px 0 rgba(255, 254, 254, 0.011);
}
.thank .fasel .th button a{
  color: black;
}

.contact-form-container {
    border: 1px solid #363735a9;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: inset 0 0 1px 0 rgba(255, 254, 254, 0.011);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 85%;
    margin: auto;
}

/* الصف الأول المقسوم عمودين */
.form-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* تصميم الكروت الداكنة */
.form-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.form-card label,
.section-title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 12px;
}

.subtitle {
  color: #888888;
  font-size: 13px;
  margin-bottom: 25px;
}

/* حقول الإدخال والنصوص */
.form-card input[type="text"],
.form-card input[type="email"],
.form-card textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #2e2e2e;
  color: #ffffff;
  font-size: 14px;
  padding: 8px 0;
  outline: none;
  width: 100%;
  resize: none;
}

.form-card input::placeholder,
.form-card textarea::placeholder {
  color: #555555;
}

/* شبكة الـ Checkboxes */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  margin-top: 5px;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #cccccc;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}

.custom-checkbox input {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  background-color: #262626;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* علامة الصح الخضراء عند التحديد */
.custom-checkbox input:checked + .checkmark::after {
  content: "✓";
  color: #c4f135;
  font-size: 13px;
  font-weight: bold;
}

/* تنسيق شريط الميزانية (Budget Range) */
.range-wrapper {
  padding: 20px 10px 40px 10px;
}

.range-slider {
  position: relative;
  height: 4px;
  width: 100%;
}

.range-track {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #2e2e2e;
  border-radius: 2px;
}

.range-highlight {
  position: absolute;
  height: 100%;
  background-color: #c4f135;
  border-radius: 2px;
}

.range-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background-color: #c4f135;
  border-radius: 50%;
  cursor: pointer;
}

.thumb-label {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 13px;
  white-space: nowrap;
}

/* زر الـ Submit */
.submit-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.submit-btn {
  background-color: #c4f135;
  color: #000000;
  border: none;
  padding: 12px 36px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.submit-btn:hover {
  opacity: 0.9;
}

/* التجاوب مع شاشات الموبايل */
@media (max-width: 600px) {
  .form-row-two,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}
.footer{
    width: 100%;
    margin: 25px auto 0 auto;
    padding: 25px 0 0 0;
    height: auto;
    background-color: #191919;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20PX;
    border-top: 1px solid #262626;
}

.footer .up{
    width: 100%;
    height: 150px;
    background-color: #191919;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #262626;
}
.footer .up .log{
    display: flex;
  align-items: center;
  text-transform: uppercase;
}
.footer .up .log img {
  font-size: 15px;
  width: 50px;
  margin-right: 10px;
}
.footer .up .sections ul {
  display: flex;

}

.footer .up .sections ul li a {
    padding: 10px 15px;
    font-size: 14px;
    letter-spacing: 1px;
}
.footer .up .social{
  display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #363735a9;
}
.footer .up .social .socialicon{
  display: flex;
  gap: 20px;

}
.footer .up .social .socialicon a{
  padding: 10px 10px;
  border-radius: 5px;
  background-color: #262626;
  box-shadow: inset 0 0 1px 0 rgba(255, 254, 254, 0.011);
}
.footer .up .social .socialicon i{
  color:#9eff00;
}
.footer .dowen{
  height: 125px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
}
.footer .dowen .contact{
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer .dowen .contact .ic{
  display: flex;
  align-items: center;
  padding-bottom: 15px ;
  border-bottom: 1px solid #363735a9;
}
.footer .dowen .contact i{
  color: #9eff00;
}
.footer .dowen .contact p{
  margin-left: 8px;
  font-size: 14px;
  letter-spacing: 1px;
}
.footer .dowen .copy p{
  font-size: 14px;
  letter-spacing: 1px;
  color: #808080;
}

/* تجاوب مع شاشات الموبايل */
/* ===================================================
   Responsive Media Queries
   =================================================== */

/* 1. الشاشات المتوسطة والتابلت (أقل من 992px) */
@media (max-width: 992px) {
  body {
    padding: 15px;
  }

  /* الهيرو */
  .hero h1 {
    font-size: 42px;
    width: 95%;
  }

  .hero .sup {
    font-size: 16px;
    padding: 15px;
  }

  /* أقسام البطاقات والآراء */
  .why .compo,
  .revs {
    grid-template-columns: 1fr;
  }

  /* الفوتر العلوي */
  .footer .up {
    height: auto;
    padding: 25px 0;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer .up .sections ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}

/* 2. شاشات الموبايل الكبيرة والعمودية (أقل من 768px) */
@media (max-width: 768px) {
  /* شريط التنقل */
  .nav {
    height: auto;
    padding: 15px 0;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
  }

  .nav .sections {
    order: 3;
    width: 100%;
  }

  .nav .sections ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
  }

  .nav .sections ul li a {
    padding: 6px 10px;
    font-size: 12px;
  }

  /* قسم الهيرو */
  .hero .container {
    padding-top: 40px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.3;
  }

  .hero .sup p {
    display: inline-block;
    margin: 4px 0;
    font-size: 13px;
    padding: 6px 10px;
  }

  .hero .buttons {
    flex-direction: column;
    width: 100%;
    gap: 15px;
    margin: 30px auto;
  }

  .hero .buttons a {
    width: 100%;
  }

  /* الفواصل والعناوين */
  .fasel {
    height: auto;
    padding: 30px 15px;
  }

  .fasel h1 {
    font-size: 26px;
  }

  .fasel p {
    font-size: 14px;
  }

  /* قسم الآراء */
  .rev .info {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .rev .info a {
    width: 100%;
    justify-content: center;
  }

  /* قسم الأسئلة الشائعة */
  .question .container {
    grid-template-columns: 1fr;
  }

  /* قسم التواصل والفورم */
  .contact-form {
    width: 100%;
  }

  .form-row-two,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  /* الفوتر السفلي */
  .footer .dowen {
    height: auto;
    padding: 20px 0;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }

  .footer .dowen .contact {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .footer .dowen .contact .ic {
    justify-content: center;
    width: 100%;
  }
}

/* 3. شاشات الموبايل الصغيرة (أقل من 480px) */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }

  .companies .hash h5 {
    font-size: 14px;
  }

  .rev .head h3 {
    font-size: 20px;
  }

  .rev .head p {
    font-size: 14px;
  }

  .question .container .colom .faq .content h4 {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .question .container .colom .faq .content h3 {
    font-size: 13px;
  }
}
