:root {
  --primary-red: #E53E3E;
  --primary-blue: #2D4A73;
  --accent-orange: #be2929;
  --dark-navy: #1A202C;
  --light-gray: #F7FAFC;
  --text-dark: #2D3748;
  --text-light: #718096;
  --white: #FFFFFF;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f6f8;
  color: #222;
}

/* ===== Header ===== */
/* .site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
} */
.nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3rem;
            padding: 0 2rem;
        }

        .logo {
            display: flex;
            align-items: center; /* يخلي النص واللوجو في نفس السطر */
            gap: 0.8rem; /* مسافة صغيرة بينهم */
            font-size:  2rem;
            font-weight: bold;
            margin-bottom: 18px;
            cursor: pointer;
        }

        .logo-icon {
            width:65px;
            height: 65px;
            /* background: linear-gradient(135deg, var(--primary-red), var(--accent-orange)); */
            border-radius: 50% 50% 50% 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
             font-size: 1.2rem;
            transform: rotate(-45deg);
        }

        .logo-icon span {
            transform: rotate(45deg);
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain; /* عشان اللوجو يبان مظبوط */
            transform: rotate(45deg);
        }

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

        .nav-menu a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
            /* font-size: large; */
            transition: all 0.3s ease;
            position: relative;
             margin-right: 20px;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

.auth-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn.primary {
  background: #0f4c81;
  color: white;
}

.btn.primary:hover {
  background: #1877d2;
}

.btn.outline {
  border: 1px solid #0f4c81;
  color: #0f4c81;
  background: transparent;
}

.btn.outline:hover {
  background: #0f4c81;
  color: white;
}

/* ===== About Section ===== */
.container {
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 16px;
}

.about-container {
  display: flex;
  justify-content: center;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  width: 100%;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.about-card h1 {
  color: #be2929;
  font-size: 28px;
  margin-bottom: 20px;
}

.about-columns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.column {
  flex: 1;
  min-width: 300px;
}

.about-card h2 {
  color: #0f4c81;
  font-size: 20px;
  margin-top: 18px;
}

.about-card ul {
  list-style: disc;
  margin: 10px 0 15px 20px;
}

.about-card li {
  margin-bottom: 8px;
  line-height: 1.5;
  font-size: 15px;
}

/* ===== Snack Notification ===== */
.snack {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #0f4c81;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  opacity: 0;
  transition: 0.3s;
}

/* ===== Footer ===== */
 /* Footer */
        .footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 1.5rem 0 1rem; /* أصغر */
    font-family: "Poppins", sans-serif;
  }

  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 1rem;
    text-align: center; /* كل الكلام في النص */
  }

  .footer-section h3 {
    color: var(--primary-red);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    text-transform: uppercase;
  }

  .footer-text p {
    margin: 0.4rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }

  .footer-text i {
    color: var(--primary-red);
  }

  .footer-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 3 شمال و 3 يمين */
    gap: 0.8rem;
    justify-items: center; /* النصوص في النص */
  }

  .footer-services a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
  }

  .footer-services a:hover {
    color: var(--white);
  }

  .footer-bottom {
    text-align: center;
    padding-top: 0.5rem;
    border-top: 1px solid #4A5568;
    color: var(--text-light);
    font-size: 0.8rem;
}

/* ===== Animations ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}


