/* ================= HEADER ================= */
.main-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  z-index: 1000;
  transition: background 0.3s ease, padding 0.3s ease;
}

 .main-header.scrolled {
  backdrop-filter: blur(6px);
} 
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.navbar .logo img {
  height: 45px;
  transition: transform 0.3s ease;
}

.navbar .logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: white;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.main-header.scrolled .nav-links li a {
  color: var(--dark-color);
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--accent-color);
}

.header-btns .btn-primary {
  background: var(--accent-color);
  padding: 10px 20px;
  border-radius: 25px;
  color: white;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.header-btns .btn-primary:hover {
  background: var(--accent-color-dark);
  transform: translateY(-2px);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    background: var(--primary-color);
    flex-direction: column;
    width: 200px;
    padding: 20px;
    border-radius: 0 0 10px 10px;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
/* ================= CSS Variables ================= */
:root {
/* Colors from guideline */
--primary-green: #4d8c50;
--light-beige: #faf1e6;
--dark-purple: #211951;
--light-purple: #836fff;

/* Additional colors */
--white: #ffffff;
--black: #000000;
--gray-100: #f8f9fa;
--gray-200: #e9ecef;
--gray-300: #dee2e6;
--gray-400: #ced4da;
--gray-500: #adb5bd;
--gray-600: #6c757d;
--gray-700: #495057;
--gray-800: #343a40;
--gray-900: #212529;

/* Gradients */
--gradient-primary: linear-gradient(135deg, var(--primary-green), var(--light-purple));
--gradient-secondary: linear-gradient(135deg, var(--dark-purple), var(--light-purple));
--gradient-hero: linear-gradient(135deg, var(--light-beige) 0%, rgba(250, 241, 230, 0.8) 50%, rgba(131, 111, 255, 0.1) 100%);

/* Shadows */
--shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
--shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
--shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
--shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

/* Typography */
--font-family: 'Almarai', sans-serif;
--font-size-xs: 0.75rem;
--font-size-sm: 0.875rem;
--font-size-base: 1rem;
--font-size-lg: 1.125rem;
--font-size-xl: 1.25rem;
--font-size-2xl: 1.5rem;
--font-size-3xl: 1.875rem;
--font-size-4xl: 2.25rem;
--font-size-5xl: 3rem;

/* Spacing */
--spacing-xs: 0.25rem;
--spacing-sm: 0.5rem;
--spacing-md: 1rem;
--spacing-lg: 1.5rem;
--spacing-xl: 2rem;
--spacing-2xl: 3rem;
--spacing-3xl: 4rem;

/* Border radius */
--radius-sm: 0.25rem;
--radius-md: 0.5rem;
--radius-lg: 0.75rem;
--radius-xl: 1rem;
--radius-2xl: 1.5rem;
--radius-full: 9999px;

/* Transitions */
--transition-fast: 0.15s ease-in-out;
--transition-normal: 0.3s ease-in-out;
--transition-slow: 0.5s ease-in-out;
}

/* ================= Hero Section ================= */
.hero-description {
font-size: var(--font-size-lg);
color: var(--gray-600);
margin-bottom: var(--spacing-2xl);
max-width: 500px;
}


html, body {
  overflow-x: hidden;
  width: 100%;
}
