/* Reset and Base Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  /* Container */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 2rem 0;
  }
  
  /* Header */
  header {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(8px);
  }
  
  header h1 {
    font-size: 2.5rem;
    text-align: center;
    color: #fff;
  }
  
  .highlight {
    background: linear-gradient(45deg, #00f260, #0575e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    margin-top: 1rem;
  }
  
  nav a {
    text-decoration: none;
    color: white;
    margin: 0.5rem 1rem;
    font-weight: 500;
    padding: 0.6rem 1rem;
    transition: 0.3s;
    border-radius: 30px;
  }
  
  nav a:hover {
    background: #00f260;
    color: #000;
    transform: scale(1.1);
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(135deg, #1f1c2c, #928dab);
    padding: 6rem 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  .hero::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(circle, #00f26022 0%, transparent 70%);
    z-index: -1;
  }
  
  .hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
  }
  
  .hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }
  
  .btn {
    background: #00f260;
    color: #000;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 242, 96, 0.3);
  }
  
  .btn:hover {
    background: #0575e6;
    color: #fff;
    transform: translateY(-4px) scale(1.05);
  }
  
  /* Services Section */
  .services {
    background: #121212;
    padding: 5rem 1rem;
    text-align: center;
  }
  
  .services h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
  
  .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .service-card {
    background: #1e1e2f;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 25px rgba(0,0,0,0.5);
    transition: 0.3s ease-in-out;
    transform-style: preserve-3d;
    perspective: 1000px;
  }
  
  .service-card:hover {
    transform: rotateY(5deg) scale(1.03);
    box-shadow: 0 20px 35px rgba(0,0,0,0.6);
  }
  
  .service-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00f260;
  }
  
  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .service-card p {
    font-size: 1rem;
    color: #ccc;
  }
  
  /* Why Choose Section */
  .why-choose {
    background: linear-gradient(to right, #434343, #000000);
    padding: 5rem 1rem;
    text-align: center;
  }
  
  .why-choose h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .why-choose ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
  }
  
  .why-choose li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
  }
  
  .btn-glow {
    background: linear-gradient(to right, #00f260, #0575e6);
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 0 20px #00f26066;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .btn-glow:hover {
    box-shadow: 0 0 30px #00f260aa;
    transform: scale(1.05);
  }
  
  /* Call to Action */
  .cta {
    background: #141e30;
    background: linear-gradient(to right, #243b55, #141e30);
    padding: 5rem 1rem;
    text-align: center;
  }
  
  .cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  /* Footer */
  footer {
    background: #111;
    color: #ccc;
    padding: 3rem 1rem;
    text-align: center;
  }
  
  footer form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin-inline: auto;
  }
  
  footer input,
  footer textarea {
    padding: 1rem;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    width: 100%;
    background: #1e1e1e;
    color: white;
  }
  
  footer button {
    background: #00f260;
    color: black;
    padding: 1rem;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  footer button:hover {
    background: #0575e6;
    color: #fff;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero h2 {
      font-size: 2rem;
    }
  
    .service-grid {
      grid-template-columns: 1fr;
    }
  
    nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
  }
  