/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    padding-top: 150px;
  }
  
  header {
    background-color: #ffffff;
    color: white;
    padding: 20px 0;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index:1000;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
  }
  
  nav a {
    color: #ec2f86;
    text-decoration: none;
    font-weight: bold;
  }
  
  .hero {
    padding: 60px 20px;
    text-align: center;
    background: #e5efff;
  }
  
  .hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #004aad;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
  }
  
  .cta-button:hover {
    background-color: #003080;
  }
  
  footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
  }
  .about {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  .about h2 {
    font-size: 2rem;
    color: #3c3c3b;
    margin-bottom: 20px;
  }
  
  .about p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #555;
    font-weight: bold;
  }
  .services {
    padding: 60px 20px;
    background-color: #f0f4ff;
    text-align: center;
  }
  
  .services h2 {
    color: #3c3c3b;
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .service-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .service {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  .service h3 {
    margin-bottom: 10px;
    color: #222;
  }
  
  .service p {
    color: #555;
  }
  
  /* Responsive tweak */
  @media (min-width: 768px) {
    .service-list {
      flex-direction: row;
      justify-content: center;
    }
    .service {
      flex: 1;
      max-width: 300px;
    }
  }
  .contact {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  .contact h2 {
    color: #3c3c3b;
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    resize: vertical;
  }
  
  .contact-form button {
    background-color: #ec2f86;
    color: white;
    border: none;
    padding: 15px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .contact-form button:hover {
    background-color: #3c3c3b;
  }
  .logo {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 10px 0;
  }
  .service-logo {
    max-width: 200px;
    height: 70px;
    margin-bottom: 15px;
  }
  html {
    scroll-behavior: smooth;
  }
  .service {
    position: relative;
    width: 300px;
    padding: 20px;
    margin: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .service a.service-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* behind the text */
    text-indent: -9999px; /* hides the link text if any */
  }
  
  /* Make sure the content appears above the link */
  .service .service-content {
    position: relative;
    z-index: 2;
  }
  
  /* Optional hover effect */
  .service:hover {
    background-color: #f0f8ff;
    cursor: pointer;
  }
  
  
  
