* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
  }
  


  header {
    width: 100%;
    height: 80px;
    background-color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .cursor {
    width: 20px;
    height: 20px;
    position: fixed;
    background-color: gray;
    border-radius: 50%;
    z-index: 2;
  }
  
  .logo img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
    margin-left: 15px;
  }
  
  nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
  }
  ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  ul li {
    list-style-type: none;
  }
  ul a {
    text-decoration: none;
    margin-right: 30px;
    color: white;
    text-transform: uppercase;
    position: relative;
  }
  ul a::after {
    position: absolute;
    content: " ";
    bottom: -5px;
    height: 2px;
    left: 0;
    width: 0;
    background-color: white;
    transition: 0.3s;
  }
  ul a:hover::after {
    width: 100%;
  }
  
  .btn {
    background-color: rgb(8, 8, 31);
    padding: 10px;
    border-radius: 100px;
    color: white;
    text-wrap: nowrap;
    border-color: transparent;
    cursor: pointer;
    margin-right: 40px;
  }
  
  .btn a {
    text-decoration: none;
    color: white;
  }
  
  .bar {
    display: none;
  }
  
  .close-icon {
    display: none;
  }
  
  .sign-up a {
    color: white;
    border-radius: 50%;
    border: 1px solid white;
    padding: 12px;
    margin: 15px;
  }
  
  @media screen and (max-width: 1024px) {
    .cursor {
      display: none;
    }
    .navlinks {
      display: block;
      position: absolute;
      top: 80px;
      right: 0;
      width: 100%;
      height: 90vh;
      background-color: rgba(0, 0, 0);
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      z-index: 999;
    }
    ul li {
      padding: 20px 0;
    }
    .bar {
      display: block;
      color: white;
      font-size: 30px;
      cursor: pointer;
      position: absolute;
      right: 20px;
      top: 20px;
    }
    .close-icon {
      font-size: 30px;
      position: absolute;
      right: 20px;
      top: 20px;
      cursor: pointer;
      color: white;
    }
    .navlinks.active {
      display: flex;
    }
    ul li {
      margin-bottom: 20px;
    }
    .sign-up {
      margin-right: 30px;
    }
  }


.services-header {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    padding: 50px 20px;
  }
  
  .services-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .services-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .service-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px;
    background-color: #fff;
    margin: 20px 0;
  }
  
  .service-icon img {
    width: 50px;
    height: 50px;
  }
  
  .service-content {
    flex: 1;
    padding: 20px;
  }
  
  .service-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .service-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .cta-button {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #c0392b;
  }
  
  .service-image img {
    max-width: 300px;
    border-radius: 10px;
  }



  /* Footer Styling */
footer {
    background-color: #393a3a; 
    padding: 40px 20px;
    position: relative;
    margin-top: 50px;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allow wrapping for responsiveness */
    gap: 20px; /* Adds space between sections */
  }
  
  .footer-section {
    flex-basis: 30%; 
  }
  
  .about {
    max-width: 100%; 
  }
  .contact p{
    text-align: center;
    margin: 5px;
    }
  .footer-section h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
    text-align: center;}
  
  .footer-section p, .footer-section ul {
    font-size: 14px;
    color: #ffffff;
  }
  
  .footer-section ul {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    padding: 0;
  }
  
  .footer-section ul li {
    padding: 5px 0;
    margin-bottom: 5px; /* Adds spacing between links */
  }
  
  .footer-section ul li a {
    text-decoration: none;
    color: #ffffff;
    margin: 0;
    padding: 0;
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    padding-top: 30px; /* Margin from the top */
    border-top: 1px solid #000000; /* 1px border */
    position: relative;
  }
  
  
  
  /* Media Queries for smaller screens */
  @media screen and (max-width: 768px) {
    .about p{
  max-width: 70%;
  margin: auto;
  text-align: center;
    }
    .footer-section ul {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .footer-section ul li {
      margin: 0;
      padding: 0px;
      text-align: center; 
      padding-right: 0;
    }
  
    .footer-section ul li a {
      display: block; 
      text-align: center;
      margin: 2px;
    }
  
  
    .footer-content {
      display: block;
      justify-content: none;
      flex-wrap: nowrap;
      gap: 20px;
    }
  
    .contact,
    .links {
      margin-top: 15px;
    }
  
    .contact p {
      text-align: center;
      margin: 5px;
    }
  } 