/* Global Styles */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background: radial-gradient(circle at 15% 20%, #ff006e 0%, transparent 35%),
                radial-gradient(circle at 85% 25%, #3a86ff 0%, transparent 35%),
                radial-gradient(circle at 25% 85%, #ffbe0b 0%, transparent 35%),
                radial-gradient(circle at 75% 75%, #8338ec 0%, transparent 35%),
                radial-gradient(circle at 50% 50%, #fb5607 0%, transparent 45%),
                #f9f9fb;
    background-attachment: fixed;
    color: #222;
  }
  
  /* Header with tie-dye gradient */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(90deg,
                #ff006e,
                #fb5607,
                #ffbe0b,
                #3a86ff,
                #8338ec);
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
  }
  
  @keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  header .logo {
    font-weight: 700;
    font-size: 1.2rem;
  }
  
  header a {
    color: #fff;
    margin-left: 1.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
  }
  
  header a:hover {
    color: #ffbe0b;
  }
  
  /* Hero Section */
  .hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.5); /* overlay ensures readability */
    color: #fff;
    text-align: center;
    padding: 2rem;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.2rem;
    max-width: 700px;
  }
  
  .hero .btn {
    margin-top: 2rem;
    padding: 0.8rem 1.5rem;
    background: #ff006e;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .hero .btn:hover {
    background: #fb5607;
  }
  
  /* Sections */
  section {
    padding: 3rem 2rem;
    max-width: 1100px;
    margin: auto;
  }
  
  section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #1c2541;
  }
  
  /* Services */
  #services .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
  }
  
  .card {
    flex: 1;
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    min-width: 280px;
    max-width: 340px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
  }
  
  .card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
  }
  
  .card h3 {
    margin-bottom: 0.8rem;
    color: #0b132b;
  }
  
  /* About & Contact */
  #about, #contact {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  #contact a {
    color: #3a86ff;
    text-decoration: none;
    font-weight: bold;
  }
  
  #contact a:hover {
    text-decoration: underline;
    color: #ff006e;
  }
  
  /* Footer */
  footer {
    background: #0b132b;
    color: #fff;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
  }
  