
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa; /* Light background for contrast */
  }
  
  /* HEADER */
  header {
    background: #121212; /* Dark header */
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FF3D54; /* Highlighted logo */
  }
  
  header ul {
    list-style: none;
    display: flex;
  }
  
  header ul li {
    margin-left: 1.5rem;
  }
  
  header ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  header ul li a:hover {
    color: #FF3D54;
  }
  
  /* HERO SECTION */
  #hero {
    background: linear-gradient(135deg, #3e3e3e, #121212); /* Dark gradient */
    color: #fff;
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
  }
  
  #hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/dark-mesh.png'); /* Subtle mesh pattern */
    opacity: 0.1;
    z-index: 0;
  }
  
  #hero .hero-content {
    position: relative;
    z-index: 1;
  }
  
  #hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #FF7A18, #FF3D54);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  #hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  /* ABOUT SECTION */
  #about {
    background: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
    color: #333;
  }
  
  #about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FF3D54;
  }
  
  #about p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* SERVICES SECTION */
  #services {
    background: linear-gradient(90deg, #FF7A18, #FF3D54);
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  
  #services h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  
  .service {
    background: #ffffff;
    color: #333;
    padding: 2rem;
    border-radius: 10px;
    width: 280px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .service:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  }
  
  .service h3 {
    color: #FF3D54;
    margin-bottom: 1rem;
  }
  
  /* CONTACT SECTION */
  #contact {
    background: #3e3e3e;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  #contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FF3D54;
  }
  
  #contact p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* FOOTER */
  footer {
    background: #121212;
    color: #fff;
    text-align: center;
    padding: 1rem;
  }