body {
    background-color: #ffffff;
    color: #111111;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  
  /* Hero Section */
  .hero {
    text-align: center;
    padding: 4rem 1rem;
    background-color: #f9f9f9;
  }
  
  .hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    text-transform: lowercase;
    color: #111;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #444;
  }
  
  .cta-button {
    padding: 0.75rem 1.5rem;
    background-color: #4fc3f7;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #29b6f6;
  }
  
  /* About Section */
  .about {
    padding: 3rem 1rem;
    max-width: 900px;
    margin: auto;
    text-align: center;
  }
  
  .about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: lowercase;
    color: #111;
  }
  
  .about p {
    font-size: 1.1rem;
    color: #444;
  }
  
  /* Services Section */
  .services {
    background-color: #f8f8f8;
    padding: 4rem 1rem;
    text-align: center;
  }
  
  .services h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #111;
    text-transform: lowercase;
  }
  
  .service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .service-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #4fc3f7;
  }
  
  .service-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
  
  .service-item h3 {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .service-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
  }
  
  /* Community Section */
  .community {
    padding: 4rem 1rem;
    text-align: center;
    background-color: #f9f9f9;
  }
  
  .community h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: lowercase;
    color: #111;
  }
  
  .community p {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
    color: #555;
  }
  


  /* ===== Animations ===== */

@keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes popIn {
    0% {
      opacity: 0;
      transform: scale(0.95);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  .animated {
    opacity: 0;
    animation-fill-mode: forwards;
  }
  
  .delay-1 {
    animation-delay: 0.2s;
  }
  
  .delay-2 {
    animation-delay: 0.4s;
  }
  
  .delay-3 {
    animation-delay: 0.6s;
  }
  
  .delay-4 {
    animation-delay: 0.8s;
  }
  
  /* Add to sections */
  .hero h1,
  .hero p,
  .hero .cta-button,
  .about h2,
  .about p,
  .services h2,
  .community h2,
  .community p,
  .community .cta-button {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
  }
  
  .service-item {
    animation: popIn 0.5s ease forwards;
  }
  
  /* Sequential animation for services */
  .service-item:nth-child(1) { animation-delay: 0.1s; }
  .service-item:nth-child(2) { animation-delay: 0.2s; }
  .service-item:nth-child(3) { animation-delay: 0.3s; }
  .service-item:nth-child(4) { animation-delay: 0.4s; }

  /* ========== 🔥 Cool Animations 🔥 ========== */

@keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-60px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(60px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes zoomIn {
    from {
      opacity: 0;
      transform: scale(0.8);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  @keyframes fadeInBg {
    from {
      background-color: #ffffff;
    }
    to {
      background-color: #f9f9f9;
    }
  }
  
  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.03);
    }
  }
  
  /* 🔥 Classes to apply */
  
  .animate-slide-left {
    animation: slideInLeft 0.8s ease-out forwards;
  }
  
  .animate-slide-right {
    animation: slideInRight 0.8s ease-out forwards;
  }
  
  .animate-zoom {
    animation: zoomIn 0.6s ease-out forwards;
  }
  
  .animate-fade-bg {
    animation: fadeInBg 1s ease-in-out forwards;
  }
  
  .animate-pulse-hover:hover {
    animation: pulse 0.6s ease-in-out infinite;
    cursor: pointer;
  }
  
  .delay-1  { animation-delay: 0.2s; }
  .delay-2  { animation-delay: 0.4s; }
  .delay-3  { animation-delay: 0.6s; }
  .delay-4  { animation-delay: 0.8s; }
  
  
