* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
 body {
    background: url('../Image/back.jpg') no-repeat center center fixed;
    background-size: cover;
 }

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  height: 70px;
  background: linear-gradient(to right, green, white);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 0 40px;
  position: relative;
}

/* Logo */
.logo {
  display: flex;          /* inline flex = logo + title جنب بعضهم */
  align-items: center;    /* يحاذيهم وسطياً رأسياً */
  gap: 5px;              /* المسافة بين logo و title */
}

.logo-title {
  color: white;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin: 0;
}

.logo img {
  height: 65px;
}

/* Menu */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 90px;

  /* centre */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-menu li a {
  text-decoration: none;
  color: #004d00; /* WHITE */
  font-size: 1rem;
  font-weight: bold;
  transition: 0.3s;
}

/* Hover effect */
.nav-menu li a:hover {
  color: #d4ffd9; /* white/green light */
}


/* Section styling */
.contact-section {
    border: 3px solid green;
    background-color: rgba(255, 255, 255, 0.8); /* khfif bach icons ybanou */
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Title */
.contact-section h2 {
    text-align: center;
    color: green;
    margin-bottom: 30px;
}

/* Info items */
.contact-info .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-info .info-item i {
    color: green;
    margin-right: 20px;
}

.contact-info .info-item h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.contact-info .info-item p {
    margin: 5px 0 0 0;
    font-size: 16px;
    color: #555;
}

/* 📱 Tablet + Mobile (max 1024px) */
@media screen and (max-width: 1024px) {

  /* ===== NAVBAR ===== */
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 15px 20px;
    text-align: center;
  }

  .logo {
    justify-content: center;
    gap: 5px;
  }

  .logo-title {
    display: none; /* تخفي النص باش يولي صغير */
  }

  .nav-menu {
    position: static;      /* باش ما يبقاش absolute */
    transform: none;
    margin-top: 15px;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .nav-menu li a {
    font-size: 1rem;
    font-weight: bold;
    color: #004d00;
  }

  /* ===== FOOTER ===== */
  .footer {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    width: 100%;
    margin-bottom: 10px;
  }

  .footer-center img {
    width: 60px;
    height: 60px;
  }
}
