  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f6f8;
    color: #2c3e50;
  }

  header {
    background: #2c3e50;
    color: white;
    padding: 12px 0;
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
    left: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .header-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }

  .logo {
    display: flex;
    align-items: center;
  }

  .logo img {
    width: 40px;
    margin-right: 10px;
  }

  header h1 {
    font-size: 24px;
  }

  header nav ul {
    list-style: none;
    display: flex;
  }

  header nav ul li {
    margin-left: 15px;
  }

  header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
  }

  header nav ul li a:hover {
    color: #f39c12;
  }

  .container {
    display: flex;
    margin-top: 60px; /* height of header */
  }

.navigation {
    width: 250px;
    background: #34495e;
    height: calc(100vh - 60px); /* Adjusted height */
    padding: 20px;
    position: fixed;
    top: 60px; /* Matches header height */
    left: 0;
    color: white;
    overflow-y: auto; /* Enable scrolling */
    box-sizing: border-box;
}


  .navigation ul {
    list-style: none;
  }

  .navigation ul li {
    margin: 15px 0;
  }

 .navigation ul li {
    margin-bottom: 10px;         /* Consistent vertical spacing */
    border-radius: 6px;
    transition: background 0.3s ease;
}

.navigation ul li a {
    display: flex;
    align-items: center;
    padding: 10px 14px;          /* More comfortable spacing inside */
    font-size: 16px;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.navigation ul li a ion-icon {
    margin-right: 10px;
    font-size: 20px;
}

.navigation ul li a:hover {
    background-color: #3c5d75;
    color: #f39c12;
    transform: scale(1.03);
}


  .main {
    margin-left: 250px;
    padding: 30px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .service-content {
    background-color: white;
    width: 280px;
    height: flex;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  }

  .service-content ion-icon {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 10px;
  }

  .service-description h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
  }

  .service-description p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #666;
  }

  .btn {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    margin:10px;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .btn:hover {
    background-color: #0056b3;
  }

  footer {
    text-align: center;
    background-color: #34495e;
    color: white;
    padding: 12px;
    position: fixed;
    width: 100%;
    bottom: 0;
  }

  #home {
    width: 100%;
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
  }

  #home h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  #home p {
    font-size: 16px;
    color: #555;
  }

  @media screen and (max-width: 768px) {
    .container {
      flex-direction: column;
    }

    .navigation {
      width: 100%;
      position: relative;
      top: 0;
    }

    .main {
      margin-left: 0;
      padding: 20px;
    }

    .header-content {
      flex-direction: column;
      text-align: center;
    }

    header nav ul {
      flex-direction: column;
      margin-top: 10px;
    }

    header nav ul li {
      margin: 5px 0;
    }
  }
