/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background-color: #0f172a; /* Dark Blue */
    color: #e0e0e0;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #1e293b;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo {
    font-size: 2rem;
    font-weight: bold;
    color: #38bdf8; /* Neon Blue */
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 1.1rem;
    transition: color 0.3s;
  }
  
  .nav-links li a:hover,
  .nav-links li a.active {
    color: #38bdf8; /* Neon Blue on hover */
  }
  
  /* Header */
  .header {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  }
  
  .header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #38bdf8;
  }
  
  .header p {
    font-size: 1.5rem;
    color: #94a3b8;
  }
  
  /* Services Section */
  .services-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 60px 80px;
  }
  
  .service-card {
    background-color: #1e293b;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, background-color 0.3s;
    border: 2px solid #38bdf8;
  }
  
  .service-card h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #38bdf8;
  }
  
  .service-card p {
    font-size: 1.1rem;
    color: #cbd5e1;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    background-color: #0f172a;
  }
  
  /* Footer */
  .footer {
    text-align: center;
    padding: 30px 20px;
    background-color: #1e293b;
    color: #94a3b8;
    font-size: 1rem;
    margin-top: 50px;
  }
  .footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 40px 20px;
    text-align: center;
  }
  
  .footer h3 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #38bdf8;
  }
  
  .footer p {
    margin-bottom: 20px;
    font-size: 16px;
  }
  
  .footer .socials {
    margin-bottom: 20px;
  }
  
  .footer .socials a {
    color: #94a3b8;
    margin: 0 10px;
    font-size: 22px;
    transition: color 0.3s;
  }
  
  .footer .socials a:hover {
    color: #38bdf8;
  }
  
  .footer-bottom-text {
    font-size: 14px;
    color: #94a3b8;
  }
  
  .footer-bottom-text a {
    color: #38bdf8;
    text-decoration: none;
  }
  
  .footer-bottom-text a:hover {
    text-decoration: underline;
  }
  
