/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #121212;
    color: #d1d1d1;
  }
  
  a {
    text-decoration: none;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  /* Hero Section */
  .hero-section {
    background: linear-gradient(135deg, #1a1a1a, #000);
    padding: 100px 0;
  }
  
  .hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
  }
  
  .hero-section p {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #aaa;
  }
  
  .hero-section .btn-primary {
    background: #007bff;
    border: none;
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
  }
  
  .hero-section .btn-primary:hover {
    background: #0056b3;
    transform: scale(1.05);
  }
  
  /* Features Section */
  .features-section {
    background: #1e1e1e;
  }
  
  .features-section h3 {
    color: #fff;
    margin-top: 10px;
    font-size: 1.5rem;
  }
  
  .features-section p {
    color: #aaa;
  }
  
  .features-section i {
    color: #007bff;
  }
  
  /* Footer */
  .footer {
    background: #1a1a1a;
  }
  
  .footer p {
    margin: 0;
    color: #aaa;
  }
  
  .social-links i {
    color: #007bff;
    transition: color 0.3s ease-in-out;
  }
  
  .social-links i:hover {
    color: #0056b3;
  }
  


  