*{
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #d4af37;
}

.nav-logo i {
  margin-right: 0.5rem;
  font-size: 2rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #d4af37;
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #d4af37;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-box {
  position: relative;
}

.search-box input {
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 25px;
  outline: none;
  width: 200px;
}

.search-box i {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
}

.cart-icon {
  position: relative;
  cursor: pointer;
  font-size: 1.2rem;
  color: #333;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.auth-buttons {
  display: flex;
  gap: 0.5rem;
}

.btn-login,
.btn-register {
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s;
}

.btn-login {
  color: #333;
  border: 1px solid #ddd;
}

.btn-register {
  background: #d4af37;
  color: white;
}

.btn-login:hover {
  background: #f8f9fa;
}

.btn-register:hover {
  background: #b8941f;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Button Styles */
.btn-primary {
  background: #d4af37;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #b8941f;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: #d4af37;
  color: white;
}



.team-section {
  display: block;
  text-align: center;
  padding: 60px 20px;
}

.team-section h1 {
  font-size: 42px;
  margin-bottom: 50px;
}

.team-section h1 span {
  font-weight: bold;
}

.team-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.team-card {
  width: 250px;
  padding: 30px 20px;
  border-radius: 15px;
  transition: 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
}

.image-box {
  width: 160px;
  height: 160px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid  #d4af37;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  margin-top: 20px;
  font-size: 20px;
}

.job {
  color:white;
  font-size: 14px;
  margin: 10px 0 20px;
  letter-spacing: 1px;
}

.social a {
  display: inline-block;
  margin: 0 8px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  background: #0f172a;
  color: #fff;
  transition: 0.3s;
}

.social a:hover {
  background: #f59e0b;
}
/* Footer */
.footer{
background:#0d2b36;
color:#fff;
padding:60px 20px 20px;
}

.footer-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
}

.footer-col h3{
margin-bottom:15px;
font-size:18px;
}

.footer-col p{
font-size:14px;
line-height:1.6;
color:#ccc;
}

.footer-col ul{
list-style:none;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col ul li a{
text-decoration:none;
color:#ccc;
transition:0.3s;
}

.footer-col ul li a:hover{
color:#f4b400;
}

.social-links a{
display:inline-block;
width:35px;
height:35px;
line-height:35px;
text-align:center;
margin-right:8px;
background:#1e4d5c;
color:#fff;
border-radius:50%;
transition:0.3s;
}

.social-links a:hover{
background:#f4b400;
}

.footer-bottom{
text-align:center;
margin-top:40px;
border-top:1px solid rgba(255,255,255,0.1);
padding-top:15px;
font-size:14px;
color:#aaa;
}

/*Responsive*/

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    margin-left: 5px;
    position: relative;
    z-index: 155;
   
  }
  .hamburger span{
     background-color: #f59e0b;
  }

  /* تحسين تصميم القائمة المنسدلة */
  .nav-menu {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, 
        rgba(31, 41, 55, 0.95) 0%, 
        rgba(17, 24, 39, 0.97) 100%);
    backdrop-filter: blur(20px);
    width: 100%;
    height: 100vh;
    z-index: 110;
    clip-path: polygon(0 0, 100% 0%, 0 0, 0 100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
  }

  .nav-menu.active {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
    opacity: 1;
    pointer-events: all;
  }

  .nav-menu .nav-link {
    color: #f9fafb;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 2rem;
    margin: 0.5rem 0;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: translateY(30px);
    opacity: 0;
    display: block;
    text-align: center;
    min-width: 200px;
  }

  .nav-menu.active .nav-link {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-menu .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.2), transparent);
    transition: left 0.5s ease;
  }

  .nav-menu .nav-link:hover::before {
    left: 100%;
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    color: #f59e0b;
    background-color: rgba(245, 158, 11, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
  }

  .nav-menu .nav-link.active::after {
    display: none;
  }

  /* تأثير متدرج للعناصر */
  .nav-menu.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
  .nav-menu.active .nav-link:nth-child(2) { transition-delay: 0.2s; }
  .nav-menu.active .nav-link:nth-child(3) { transition-delay: 0.3s; }
  .nav-menu.active .nav-link:nth-child(4) { transition-delay: 0.4s; }
  .nav-menu.active .nav-link:nth-child(5) { transition-delay: 0.5s; }

  /* تأثير الإغلاق */
  .nav-menu:not(.active) .nav-link {
    transition-delay: 0s;
  }
}