/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Global ===== */
body {
  font-family: 'Cairo', sans-serif;
  background-color: #052f55;
  color: #ffffff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
a{  color: #ff8a00;
text-decoration: none;}

/* ===== Header ===== */
.header {
  padding: 20px 0;
  background-color:#00305c;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 28px;
  font-weight: 800;
}
.img-logo{
max-height: 70px  ;
}
.logo span {
  font-size: 16px;
  display: block;
}

.menu {
  display: flex;
  gap: 22px;
  
}

.menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.menu a:hover,
.menu a.active {
  color: #ff8a00;
}
.menu-toggle {
  display: none;
  font-size: 38px;
  cursor: pointer;
  color: #ff8a00;
    position: relative;
  top: -10px;
}
@media (max-width: 900px) {

  .menu-toggle {
    display: block;
  }

  .menu {
    display: none;
    position: absolute;
    top: 80px;
    right: 5%;
    background: #00305c;
    flex-direction: column;
    width: 90%;
    padding: 20px;
    border-radius: 12px;
    gap: 15px;
    z-index: 1000;
  }

  .menu a {
    text-align: center;
    font-size: 18px;
  }

  .menu.show {
    display: flex;
  }
}

/* ===== Hero Section ===== */
.hero {
  padding: 60px 0;
  background-color: #00305c;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-image img {
  max-width: 550px;
  width: 100%;
}

.hero-text {
  max-width: 520px;
  color: #ffffff;
}
.hero-text h1 {
  color: #ff8a00;
  font-size: 28px;
  margin-bottom: 15px;
}
.hero-phone button,
.footer-phone button {
  border-radius: 30px;
  font-weight: 600;
  font-size: 18px;
  background-color: #ff8a00;
  border: none;
  color: #fff;
  padding: 10px 20px;
  cursor: pointer;
}

.hero-text p {
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 25px;
}

.hero-phone {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  /* .menu {
    display: none;
  } */
}
/* ===== About Section ===== */
.about {
  background-color: #ffffff;
  padding: 80px 0;
  color: #333333;
}

.about-content {
  display:flex ;
  align-items: center;
  justify-content: space-between;
  /* gap: 50px; */
    flex-direction: column;

}

.about-text {
  max-width: 620px;
  text-align: center;
}

.about-text h2 {
  color: #ff8a00;
  font-size: 32px;
  margin-bottom: 20px;
}

.about-text p {
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 15.5px;
}

.about-slogan {
  display: inline-block;
  margin-top: 15px;
  font-size: 20px;
  font-weight: 700;
  color: #0a3d62;
}

/* .about-image img {
  max-width: 500px;
  width: 100%;
} */

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== Devices Section ===== */
.devices {
  background-color: #f3f6f9;
  padding: 80px 0;
  text-align: center;
}

.section-title {
  font-size: 34px;
  color: #ff8a00;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #0a3d62;
  margin-bottom: 60px;
  font-size: 16px;
}

.device-item img {
  width: 80px;
  margin-bottom: 12px;
}

.device-item span {
  display: block;
  color: #ff8a00;
  font-weight: 700;
  font-size: 16px;
}





@media (max-width: 768px) {
  .devices-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .device-item img {
    width: 70px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }
}
.devices-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}






/* ===== Services Section ===== */
.services {
  background-color: #ffffff;
  padding: 80px 0;
}
.services  {
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.service-box {
  background-color: #f3f6f9;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.service-text {
  max-width: 75%;
}

.service-text h3 {
  color: #ff8a00;
  font-size: 20px;
  margin-bottom: 12px;
}

.service-text p {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
}

.service-box img {
  width: 85px;
  flex-shrink: 0;
}

/* ===== Warranty Bar ===== */
.service-warranty {
  margin-top: 50px;
  background-color: #f3f6f9;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  font-weight: 700;
  color: #ff8a00;
  font-size: 18px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-box {
    flex-direction: column;
    text-align: center;
  }

  .service-text {
    max-width: 100%;
  }
} 


/* ===============================
   Testimonials Section
================================ */

.testimonials {
  background-color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.testimonials-title {
  font-size: 32px;
  color: #ff8a00;
  margin-bottom: 15px;
}

.testimonials-subtitle {
  color: #999;
  margin-bottom: 40px;
  font-size: 15px;
}

.testimonials-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.testimonial-box {
  max-width: 600px;
  width: 100%;
  background-color: #f3f6f9;
  border-radius: 16px;
  padding: 35px 30px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 20px;
}

.testimonial-name {
  font-weight: 700;
  color: #0a3d62;
}

/* الأسهم */
.testimonial-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #aaa;
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  color: #555;
}

/* موبايل */
@media (max-width: 768px) {
  .testimonial-box {
    padding: 25px 20px;
  }

  .testimonial-text {
    font-size: 15px;
  }
}





/* ===============================
   footer Section
================================ */

.footer {
  /* background: url("../img/almoatamed.webp") center/cover no-repeat; */
  position: relative;
  /* padding: 80px 0; */
}

.footer-overlay {
  background-color: #062d55;
  padding: 80px 0;
}

.footer-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

/* الفورم */
.footer-form {
  background: #e6e6e6;
  border-radius: 16px;
  padding: 35px;
  width: 420px;
}

.footer-form h2 {
  color: #ff8a00;
  margin-bottom: 20px;
  text-align: center;
}

.footer-form label {
  font-size: 14px;
  color: #ff8a00;
  display: block;
  margin: 12px 0 6px;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  outline: none;
  font-size: 14px;
}

.footer-form textarea {
  height: 80px;
  resize: none;
}

.footer-form button {
  width: 100%;
  margin-top: 20px;
  background-color: #002f5f;
  color: #ff8a00;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
}

/* المحتوى الجانبي */
.footer-info {
  color: #fff;
  max-width: 420px;
}

.footer-info .logo {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
}

.footer-info .logo span {
  font-size: 16px;
  display: block;
}

.footer-info p {
  line-height: 1.9;
  margin-bottom: 20px;
   font-size: 14px;
}

.footer-phone {
  font-size: 20px;
  font-weight: 700;
  color: #ff8a00;
  margin-bottom: 20px;
}



/* موبايل */
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
  }

  .footer-form,
  .footer-info {
    width: 100%;
    max-width: 100%;
  }

  .footer-info {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* =======================================
terms page
========================================== */
/* ===============================
   Terms & Conditions Page
================================ */

.terms-page {
  background-color: #ffffff;
  padding: 80px 0;
}

.terms-box {
  max-width: 900px;
  margin: auto;
  background: #f3f6f9;
  border-radius: 16px;
  padding: 40px;
  color: #333;
}

.terms-box h2 {
  color: #ff8a00;
  margin-bottom: 25px;
  text-align: center;
}

.terms-box h3 {
  color: #0a3d62;
  margin: 30px 0 10px;
  font-size: 20px;
}

.terms-box p {
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 12px;
}

.terms-box strong {
  color: #00305c;
}

/* موبايل */
@media (max-width: 768px) {
  .terms-box {
    padding: 25px 20px;
  }

  .terms-box h2 {
    font-size: 24px;
  }

  .terms-box h3 {
    font-size: 18px;
  }
}
/* =============================
privacy page
================================= */




















/* ===============================
   Copyright Bar
================================ */

.site-copyright {
  background-color: #062d55;
  padding: 20px 0;
  text-align: center;
}

.site-copyright p {
  color: #ffffff;
  font-size: 13.5px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .site-copyright p {
    font-size: 12.5px;
  }
}
