* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', Arial, sans-serif;
    }

    body {
      background: linear-gradient(135deg, #000 50%, #ffae00 50%);
      background-attachment: fixed;
      background-size: cover;
      color: #111;
      scroll-behavior: smooth;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* Navbar */
    nav {
      position: sticky;
      top: 0;
      background: rgba(0,0,0,0.9);
      color: white;
      display: flex;
      justify-content:space-evenly;
      align-items: center;
      padding: 0.5rem 2rem;
      z-index: 1000;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 1.5rem;
    }

    nav ul li a {
      color: white;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    nav ul li a:hover {
      color: #ffae00;
    }

    .logo {
      position: absolute;
      height: auto;
      width: auto;
      max-height: 40px;
      left: 50%;
      transform: translateX(-50%);
    }

    /* Hero Section */
    .hero {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100vh;
      padding: 2rem 6rem;
      gap: 8rem;
      color: white;
    }

    .hero img {
      animation: floatIn 0.8s ease-out forwards;
      max-width: 500px;
      border-radius: 50%;
      box-shadow: 0 0 40px rgba(0,0,0,0.4);
      background: rgba(0,0,0,0.1);
      
    }

    .hero-text {
      max-width: 600px;
      
    }

    .hero-text h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 1rem;
      animation: fadeUp 0.8s ease-out forwards;
    }

    .hero-text p {
      margin-bottom: 1.5rem;
      line-height: 1.6;
      font-size: 1.1rem;
      animation: fadeUp 1s ease-out forwards;
    }

    .shine-button {
      padding: 0.8rem 1.5rem;
      border: none;
      background: white;
      color: black;
      font-weight: bold;
      font-size: 1rem;
      border-radius: 8px;
      cursor: pointer;
      position: relative;
      overflow: hidden;

      /* /*animation: fadeUp 1.2s ease-out forwards;  */
    }

    .shine-button:hover {
      background: #25D366;
      color: white;
      box-shadow: 0 0 15px rgba(37,211,102,0.8);
    }

    .shine-button:hover::after {
      animation: shine 0.75s forwards;
    }

    @keyframes shine {
      100% { left: 125%; }
    }

    /* Reviews Section */
    #reviews {
      margin-top: 5vh;
      padding: 6rem 2rem;
      background: rgba(248, 248, 248, 0.9);
      text-align: center;
      border-radius: 12px;
      margin-left: 2rem;
      margin-right: 2rem;
    }

    #reviews h2 {
      font-size: 2rem;
      margin-bottom: 2rem;
      color: #000;
    }

    .review-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
    }

    .card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      padding: 2rem;
      transition: transform 0.3s ease;
      border-top: 6px solid #ffae00;
    }

    .card:hover {
      transform: translateY(-8px);
    }

    .card p {
      font-style: italic;
      margin-bottom: 1rem;
    }

    .card h4 {
      font-weight: bold;
      color: #111;
    }

    /* Contact Section */
    #contact {
      margin-top: 25vh;
      padding: 6rem 2rem;
      background: rgba(0,0,0,0.85);
      color: white;
      text-align: center;
      border-radius: 12px;
      margin-left: 2rem;
      margin-right: 2rem;
    }

    #contact h2 {
      font-size: 2rem;
      margin-bottom: 2rem;
      color: #ffae00;
    }

    .contact-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }

    .contact-card {
      background: linear-gradient(135deg, #ffae00, #000);
      color: white;
      border-radius: 16px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.3);
      padding: 2.5rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;

      cursor: pointer;
      text-decoration: none;
    }

    .contact-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.1);
      transform: skewX(-25deg);
      transition: left 0.5s;
    }

    .contact-card:hover::before {
      left: 100%;
    }

    .contact-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    }

    .contact-card:active {
      transform: scale(0.97);
    }

    .contact-card h3 {
      margin-bottom: 1rem;
      font-size: 1.5rem;
      color: #fff;
    }

    .contact-card p {
      font-size: 1.0rem;
    }

    .contact-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: #fff;
    }

    /* Footer */
    footer {
      background: rgba(0,0,0,0.9);
      color: white;
      text-align: center;
      padding: 1rem;
      margin-top: 2rem;
    }

    /* ---------------- MOBILE RESPONSIVE ---------------- */
@media (max-width: 768px) {

  /* Navbar */
  nav {
    padding: 0.8rem 1rem;
  }

  nav ul {
    display: none;
  }

  .logo {
    max-height: 32px;
    position: static;
    transform: none;
    margin: auto;
  }

  /* Hero Section */
  .hero {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding: 3rem 1.5rem;
    gap: 2.5rem;
  }

  .hero img {
    max-width: 220px;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .shine-button {
    display: block;
    width: 100%;
    max-width: 360px;
    margin: 1.8rem auto 0;
    padding: 1.1rem 1.5rem;
    font-size: 1.15rem;
    border-radius: 14px;
    letter-spacing: 0.5px;
    text-align: center;
  }

  /* Reviews */
  #reviews {
    margin: 3rem 1rem;
    padding: 3rem 1rem;
  }

  #reviews h2 {
    font-size: 1.6rem;
  }

  .review-cards {
    grid-template-columns: 1fr;
  }

  /* Contact */
  #contact {
    margin: 4rem 1rem;
    padding: 3rem 1rem;
  }

  #contact h2 {
    font-size: 1.6rem;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 2rem 1.5rem;
  }

  /* Footer */
  footer {
    font-size: 0.9rem;
    padding: 1rem 0.5rem;
  }

}

/* Extra small phones */
@media (max-width: 420px) {

  .hero-text h1 {
    font-size: 1.9rem;
  }

  nav ul li a {
    font-size: 0.9rem;
  }

}





/*                     ANIMATIONS               */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

#reviews,
#contact {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

#reviews.show,
#contact.show {
  opacity: 1;
  transform: translateY(0);
}

.card,
.contact-card {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.card.show,
.contact-card.show {
  opacity: 1;
  transform: translateY(0);
}

