body {
  font-family: 'Tajawal', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
  text-align: center;
}

/* Header & Navigation */
header {
  background-color: #333;
  color: #fff;
  padding: 1rem;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

header .logo {
  font-size: 1.2rem;
  font-weight: bold;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  transition: background 0.3s ease;
}

header nav ul li a:hover,
header nav ul li a.active {
  background-color: #ff6600;
}

/* Hero Section */
.hero {
  background: url('../images/collage-bg.png') center/cover no-repeat;
  color: #fff;
  padding: 4rem 1rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
}

.cta-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #ff6600;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #e65c00;
}

/* Features Cards */
.features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem auto;
  flex-wrap: wrap;
}

.feature {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  width: 250px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature img {
  width: 80px;
  margin-bottom: 1rem;
}

.feature h3 {
  color: #de8400;
}

/* Footer */
footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #777;
  padding: 1rem;
}

/* Hamburger Menu */
.menu-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.menu-icon:hover {
  color: #de8400;
}

#menu-toggle {
  display: none;
}

.menu {
  list-style: none;
  display: flex;
  gap: 1rem;
}

@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    gap: 0;
    background: #ff0000;
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .menu li {
    border-bottom: 1px solid #444;
  }

  .menu li a {
    display: block;
    padding: 1rem;
    color: #ff0000;
  }

  #menu-toggle:checked + .menu-icon + .menu {
    max-height: 500px;
  }

  .menu-icon {
    display: block;
  }
}

/* Responsive Cards */
@media (max-width: 768px) {
  .feature {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .feature {
    width: 90%;
  }
}
.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ==========================
   Features section styling
========================== */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.feature {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  width: 250px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature img, .feature i {
  width: 80px;
  margin-bottom: 1rem;
  color: #ff6600;
}

.feature h3 {
  color: #ff6600;
  margin: 0.5rem 0;
}

.feature p {
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 768px) {
  .feature {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .feature {
    width: 90%;
  }
}
