/* Reset and Base Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ff00cc, #3333ff);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 2rem;
  }
  
  /* Header */
  header {
    background: linear-gradient(90deg, #ff4e50, #f9d423);
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
  }
  
  header h1 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px #000;
  }
  
  .highlight {
    color: #1effbc;
  }
  
  nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 0.5rem;
    flex-wrap: wrap;
  }
  
  nav ul li {
    margin: 0.5rem;
  }
  
  nav a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(to right, #36d1dc, #5b86e5);
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }
  
  nav a:hover {
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    transform: scale(1.05);
  }
  
  /* Hero Section */
  .hero {
    text-align: center;
    padding: 5rem 1rem;
    background: linear-gradient(to right, #00c9ff, #92fe9d);
    position: relative;
    overflow: hidden;
  }
  
  .hero h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px #000;
  }
  
  .hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
  }
  
  .btn-primary {
    padding: 0.8rem 2rem;
    background: linear-gradient(to right, #f7971e, #ffd200);
    color: #000;
    border: none;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  }
  
  .btn-primary:hover {
    transform: translateY(-5px);
    background: linear-gradient(to right, #fc466b, #3f5efb);
    color: white;
  }
  
  /* Image Cards */
  .card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    width: 300px;
    margin: 2rem auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-10px);
  }
  
  .card img {
    width: 100%;
    display: block;
  }
  
  .card-content {
    padding: 1rem;
    text-align: center;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
  }
  
  .card-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
  }
  
  /* Service Cards */
  .services {
    background: linear-gradient(145deg, #3a1c71, #d76d77, #ffaf7b);
    padding: 4rem 0;
    text-align: center;
  }
  
  .services h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 2px 2px #000;
  }
  
  .service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .service-card {
    background: white;
    color: #333;
    padding: 2rem;
    border-radius: 20px;
    width: 280px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
  }
  
  .service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  }
  
  .service-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ff4e50;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  /* CTA */
  .cta {
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
  }
  
  .cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px #000;
  }
  
  .cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .btn-glow {
    background: linear-gradient(to right, #00c6ff, #0072ff);
    color: white;
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 0 20px #00c6ff;
  }
  
  .btn-glow:hover {
    transform: scale(1.05);
    background: linear-gradient(to right, #fc466b, #3f5efb);
    box-shadow: 0 0 30px #fc466b;
  }
  
  /* Footer */
  footer {
    background: #111;
    color: #bbb;
    padding: 3rem 0;
    text-align: center;
  }
  
  footer p {
    margin-bottom: 1rem;
  }
  
  footer input,
  footer textarea {
    width: 80%;
    margin-bottom: 1rem;
    padding: 0.8rem;
    border: none;
    border-radius: 10px;
  }
  
  footer button {
    background: #00f260;
    background: linear-gradient(to right, #0575e6, #00f260);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s ease;
  }
  
  footer button:hover {
    background: linear-gradient(to right, #fc466b, #3f5efb);
    transform: scale(1.05);
  }
  