* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background: url('https://www.firstbankeg.com/UserFiles/NewsSizes/1920/2023/09/24/17792.jpg?230924102238') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* ===== Card ===== */
.card {
  width: 100%;
  max-width: 1200px;
  margin: auto;

  background: transparent;   /* 👈 شيل الخلفية */
  backdrop-filter: none;     /* 👈 شيل البلور */
  border: none;              /* 👈 شيل البوردر */
  box-shadow: none;          /* 👈 شيل الشادو */
}

@keyframes fadeIn {
  from {opacity:0; transform:translateY(30px);}
  to {opacity:1; transform:translateY(0);}
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);

  width: 90%;
  z-index: 1000;

  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
  border-radius: 12px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 10px 40px;
}

@keyframes slideDown {
  from {opacity:0; transform:translateY(-20px);}
  to {opacity:1; transform:translateY(0);}
}

.header img {
  height: 50px;
  transition: transform .3s;
}
.header img:hover { transform: scale(1.1); }

.nav {
  display: flex;
  gap: 50px;
}

.nav a {
  text-decoration: none;
  color: #064a31;
  font-weight: 600;
  position: relative;

  padding: 6px 12px;
  border-radius: 10px;

  transition: all 0.3s ease;
}

.nav a::after {
  content:'';
  position:absolute;
  bottom:-4px;
  left:0;
  width:0;
  height:2px;
  background:#0b6b4a;
  transition:.3s;
}
.nav a:hover::after { width:100%; }

/* ===== Layout ===== */
.body { display: flex; }

/* ===== Sidebar ===== */
.sidebar {
  width: 200px;
  background: rgba(247,251,249,0.6);
  border-right: 2px solid rgba(213,233,219,0.7);
  padding: 20px;
}

.sidebar .item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-weight: 600;
  color: #0b6b4a;
  cursor: pointer;
  transition: .3s;
}

.sidebar .item img {
  width: 20px;
  height: 20px;
}

.sidebar .item:hover {
  background: rgba(223,242,230,0.7);
  transform: translateX(5px);
}
.sidebar a {
  text-decoration: none;
  color: #0b6b4a;
}

/* ===== Main ===== */
.main {
  flex: 1;
  padding: 30px;
  animation: fadeUp 1.2s ease;
}

@keyframes fadeUp {
  from {opacity:0; transform:translateY(20px);}
  to {opacity:1; transform:translateY(0);}
}

/* ===== Contact Box ===== */
.contact-box {
  background: rgba(255,255,255,0.85);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid #cfe7d6;
  max-width: 1000px;
}

.contact-box h2 {
  text-align: center;
  color: #064a31;
  margin-bottom: 20px;
}

/* ===== Form ===== */
form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  color: #064a31;
}

input, textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.15); /* 👈 شفافية */
  border: 1px solid rgba(255,255,255,0.3);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  font-size: 15px;
 color: #083c24; /* 👈 أوضح وأشيك */
font-weight: 500;

  transition: all 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;

  border: 1px solid #0b5134;
  box-shadow: 0 0 12px rgba(11, 81, 52, 0.3);

  background: rgba(255, 255, 255, 0.25);

  transform: translateY(-4px); /* 👈 تطلع لفوق */
}

textarea {
  resize: none;
  height: 110px;
}

button {
  width: 120px;
  padding: 10px;
  background: #0b6b4a;
  color: #fff;
  border: none;
border-radius: 25px;
  cursor: pointer;
  font-weight: 700;
  align-self: center;
  transition: .3s;
}

button:hover {
  background: #097043;
  transform: scale(1.05);
}
.success-message {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 12px;
  border-radius: 8px;
  margin-top: 15px;
  text-align: center;
  font-weight: 600;
}

/* ===== Responsive ===== */
@media(max-width:720px){

  .header {
    flex-direction: row;      /* 👈 خليها صف */
    flex-wrap: wrap;          /* 👈 تنزل بس بشكل منظم */
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
  }

  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .nav a {
    font-size: 14px;
  }

}
@media(max-width:720px){

  .contact-box {
    max-width: 95%;
    padding: 20px;
  }

}
@media(max-width:720px){

  .header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .nav a {
    margin-left: 10px;
    font-size: 14px;
  }

}
@media(max-width:720px){

  .main {
    padding: 15px;
    margin-top: 120px; /* 👈 ضيف السطر ده هنا */
  }

}
@media(max-width:720px){

  button {
    width: 100%;
  }

}
.contact-box {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(15px);
}
.nav a:hover {
  background-color: #0b5134;
  color: white;
}