body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7e8, #e8f5e9);
    color: #2e2e2e;
  }

  h1, h2, h3 {
    font-family: 'Amiri', serif;
    color: #1b5e20;
  }

  /* Header Section */
  .header-section {
    position: relative;
    background: url('https://via.placeholder.com/1920x600?text=Eid+Mubarak+Crescent+Moon') no-repeat center center/cover;
    padding: 120px 0;
    border-bottom: 5px solid #ffd700;
  }

  .header-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 94, 32, 0.4);
  }

  .header-section h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .header-section p {
    font-size: 1.8rem;
    color: #ffffff;
  }

  /* Card Styles */
  .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #ffd700;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(27, 94, 32, 0.3);
  }

  .card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1b5e20;
  }

  .card-text {
    font-size: 1rem;
    color: #4a4a4a;
  }

  /* Footer Section */
  .footer-section {
    background: linear-gradient(135deg, #1b5e20, #0d3b1e);
    padding: 30px 0;
    color: #ffd700;
  }

  .footer-section p {
    margin: 0;
    font-size: 1.1rem;
  }

  /* Button Styles */
  .eid-btn {
    background-color: #ffd700;
    color: #1b5e20;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 25px;
    transition: background-color 0.3s ease;
  }

  .eid-btn:hover {
    background-color: #e6c200;
  }

  /* Animations */
  .animate__animated {
    animation-duration: 1.2s;
  }

  @keyframes sparkle {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
  }

  .sparkle {
    animation: sparkle 2s infinite;
  }