/* Grid Section */
  .grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    width: 90%;
    max-width: 1200px;
  }

  .grid-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    color: #000;
    transition: transform 0.6s ease, box-shadow 0.6s ease, background 0.6s ease;
    z-index: 1;
  }

  .grid-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #000;
  }

  .grid-item:hover {
    transform: translateY(-15px) scale(1.1) rotate(0deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 1.1));
  }

  .grid-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    border-radius: 50%;
    z-index: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .grid-item:hover::before {
    opacity: 1;
    transform: scale(1.4);
  }

  .grid-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
  }

  /* Hover Glow Effect */
  .grid-item:hover h3 {
    text-shadow: 0 0 10px #def700, 0 0 20px #ffaf7b;
  }

  /* Call to Action */
  .cta-button {
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 1.2rem;
    color: #fff;
    border: none;
    border-radius: 30px;
    background: linear-gradient(90deg, #ff6f61, #6a11cb);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  }

  /* Responsive Design for Mobile */
@media (max-width: 768px) {
  .grid-container {
    display: grid;
    grid-template-columns: 1fr; /* Single-column layout for better alignment */
    gap: 20px;
    padding: 15px;
  }

  .grid-item {
    font-size: 1rem;
    padding: 15px;
    transform: none; /* Disable hover scaling */
  }

  .grid-item:hover {
    transform: none; /* No scale on hover for mobile */
    box-shadow: none; /* Simplify shadow effects */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  }

  .section h1, .section h2 {
    font-size: 1.8rem; /* Adjust heading sizes */
    padding: 10px;
  }

  body {
    padding: 0 10px; /* Add small padding around body */
  }

  .parallax-layer {
    display: none; /* Disable parallax on mobile */
  }

  .cta-button {
    padding: 10px 20px; /* Smaller button padding */
    font-size: 1rem; /* Adjust button text size */
  }
}


  @media (max-width: 480px) {
    .grid-container {
      grid-template-columns: 1fr; /* Single column layout for small screens */
      gap: 10px;
    }

    .grid-item {
      font-size: 0.9rem;
      padding: 10px;
    }
  }

  /* Keyframe Animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }