/* ==================================================
   RESET & GLOBAL
================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cairo', sans-serif;
}

body {
  background: #f6f6f6;
  padding-top: 80px; /* عشان الهيدر ثابت */
}
html, body {
  width: 100%;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
body {
  padding-top: 80px;
}

@media (max-width: 768px) {
  body {
    padding-top: 100px;
  }
}
@media (max-width: 768px) {
  .hero-img img {
    /* max-height: 240px; */
    object-fit: contain;
    margin-top: -60px;
  }
}

/* ==================================================
   HEADER
================================================== */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  z-index: 999;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 150px;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.menu-btn {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ==================================================
   HERO SECTION
================================================== */
.hero {
  max-width: 1200px;
  margin: auto;
  padding: 60px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  width: 50%;
}

.hero-text h1 {
  font-size: 30px;
  color: #007acc;
  margin-bottom: 20px;
}

.hero-text p {
  line-height: 1.9;
  color: #444;
  margin-bottom: 30px;
}

.call-btn {
  background: #007acc;
  color: #fff;
  padding: 12px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

.hero-img {
  width: 45%;
  font-size: x-large;
}




/* ==================================================
   ABOUT
================================================== */
.about-center {
  background: #fff;
  padding: 70px 15px;
  text-align: center;
}

.about-container {
  max-width: 900px;
  margin: auto;
}

.about-container h2 {
  font-size: 28px;
  color: #007acc;
  margin-bottom: 25px;
  font-weight: 700;
}

.about-container p {
  font-size: 16px;
  line-height: 2;
  color: #333;
  margin-bottom: 35px;
}

.about-btn {
  display: inline-block;
  background: #007acc;
  color: #fff;
  padding: 14px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.about-btn:hover {
  background: #005f99;
}

/* ==================================================
   SERVICES
================================================== */
.services {
  background: #f6f6f6;
  padding: 70px 15px;
}

.services-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,.08);
  text-align: center;
  padding-bottom: 25px;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 20px;
  color: #007acc;
  margin: 20px 10px 8px;
}

.service-num {
  display: block;
  color: #007acc;
  font-weight: bold;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  padding: 0 15px;
}
.service-card a {
  text-decoration: none;
}

/* ==================================================
   SERVICE CENTER (WHY US)
================================================== */
.service-center {
  background: #f6f6f6;
  padding: 80px 15px;
  text-align: center;
}

.center-container {
  max-width: 1200px;
  margin: auto;
}

.service-center h2 {
  color: #007acc;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
}

.center-desc {
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 2;
  color: #333;
  font-size: 16px;
}

.center-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.center-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  font-size: 43px;
}

.center-card .icon {
  font-size: 32px;
  color: #007acc;
  display: block;
  margin-bottom: 15px;
}

.center-card h3 {
  font-size: 18px;
  color: #007acc;
  margin-bottom: 15px;
}

.center-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
}

/* ==================================================
   CUSTOMER SERVICE
================================================== */
.customer-service {
  background: #fff;
  padding: 70px 15px;
  text-align: center;
}

.customer-container {
  max-width: 950px;
  margin: auto;
}

.customer-container h2 {
  font-size: 26px;
  color: #007acc;
  margin-bottom: 25px;
  font-weight: 700;
}

.customer-container p {
  font-size: 14px;
  line-height: 2;
  color: #333;
  margin-bottom: 35px;
}

.customer-btn {
  display: inline-block;
  background: #007acc;
  color: #fff;
  padding: 14px 45px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.customer-btn:hover {
  background: #005f99;
}
/* ===============================================
quality
=========================================== */

.quality-section {
  padding: 60px 15px;
  background: #ffffff;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
}

.quality-box {
  max-width: 900px;
  margin: auto;
  background: #f9fafc;
  padding: 35px 25px 45px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  text-align: center;
}

.quality-title {
  font-size: 30px;
  color: #0d3163;
  margin-bottom: 25px;
  position: relative;
}

.quality-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #0d3163;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.quality-subtitle {
  font-size: 20px;
  color: #0d3163;
  margin-bottom: 15px;
}

.quality-text {
  font-size: 16px;
  color: #444;
  line-height: 1.9;
  margin-bottom: 20px;
}

.quality-list {
  text-align: right;
  margin: 20px auto;
  max-width: 720px;
  padding-right: 20px;
}

.quality-list li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
  line-height: 1.8;
}

.quality-note {
  font-size: 14px;
  color: #666;
  margin: 25px 0 35px;
}

.quality-btn {
  display: inline-block;
  background: #0d3163;
  color: #fff;
  padding: 14px 30px;
  border-radius: 40px;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s ease;
}

.quality-btn:hover {
  background: #09254a;
  transform: translateY(-2px);
}

/* ==================================================
   WW EGYPT
================================================== */
.ww-egypt {
  background: #fff;
  padding: 70px 15px;
  text-align: center;
}

.ww-container {
  max-width: 1100px;
  margin: auto;
}

.ww-container h2 {
  font-size: 26px;
  color: #007acc;
  margin-bottom: 25px;
  font-weight: 700;
}

.ww-container p {
  font-size: 14px;
  line-height: 2;
  color: #333;
}


/* ==================================================
   RESPONSIVE
================================================== */
@media (max-width: 992px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .center-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 15px;
    border-bottom: 1px solid #eee;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text,
  .hero-img {
    width: 100%;
  }

  .about-container h2,
  .customer-container h2,
  .ww-container h2 {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .services-container,
  .center-grid {
    grid-template-columns: 1fr;
  }
}

.hotline-img{
  align-items: center;
}
/* Animation */
.service-card,
.center-card,
.about-container,
.customer-container,
.ww-container {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* Call button click */
.call-fixed.clicked {
  transform: scale(0.9);
}


/* ==================================================
   FOOTER
================================================== */
.site-footer {
  background: #08264d;
  color: #fff;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffd966;
}

.footer-col p,
.footer-col li {
  font-size: 14px;
  line-height: 1.9;
}

.footer-col ul {
  list-style: none;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-col a:hover {
  opacity: 0.8;
}

.footer-bottom {
  background: #08264d;
  text-align: center;
  padding: 15px;
  font-size: 13px;
  opacity: 0.9;
}


.cont::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #0d3163;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}
.mobile-call-btn {
  display: none;
}

@media (max-width: 768px) {
  .mobile-call-btn {
    display: block;
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #025d8f; /* أخضر */
    color: #fefefe;      /* أبيض */
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  }
}
  .call-icon {
    color: rgb(254, 54, 54);            /* الأيقونة حمرا */
    font-size: 20px;
  }
  a{text-decoration: none;}