/* General Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif; /* Modern font */
    color: #333;
    background-color: #f5f5f5;
  }
  
  .navbar {
    background-color: #1267d5; /* Updated navbar color */
    padding: 10px 20px;
  }
  
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .navbar img {
    height: 28px; /* Adjust the height of the logo if needed */
    margin-left: 10%;
  }
  
  .hero {
    background: linear-gradient(to right, #004578, #007bff);
    color: white;
    text-align: center;
    padding: 80px 20px;
  }
  
  .hero h1 {
    font-size: 3rem; /* Larger, modern font size */
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .btn {
    background-color: #1267d5;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px; /* Modern, rounded buttons */
    font-size: 1rem;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
    transition: background-color 0.3s ease; /* Smooth transition for hover */
  }
  
  .btn:hover {
    background-color: #005bb5; /* Slightly darker on hover */
  }
  
  .tools {
    display: flex;
    justify-content: space-around;
    padding: 60px 0;
    background-color: #fff;
  }
  
  .tool-card {
    background: white;
    border-radius: 15px; /* Rounded corners */
    padding: 30px;
    width: 30%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Soft shadow for modern look */
    text-align: center;
    transition: transform 0.3s ease; /* Smooth hover effect */
  }
  
  .tool-card:hover {
    transform: translateY(-10px); /* Hover effect to lift the card */
  }
  
  .tool-card img {
    width: 96px; /* Larger, colored icons */
    margin-bottom: 15px;
  }
  
  .tool-card h3 {
    font-size: 1.5rem;
    color: #004578;
    margin-bottom: 10px;
  }
  
  .tool-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
  }
  
  /* Fullscreen layout */
  body {
    display: flex;
    flex-direction: column;
    height: 100vh;
  }

  
  .hero, .tools {
    flex-grow: 1;
  }


  @media (max-width: 768px) {
    .tools {
      flex-direction: column; /* Stack cards vertically on mobile */
      padding: 20px;
    }
  
    .tool-card {
      width: 80%;
      margin-bottom: 20px;
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    .btn {
      padding: 10px 20px;
      font-size: 0.9rem;
    }
  }
  
  
