 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: Arial, sans-serif;
      background-color: #f4f4f4;
      color: #333;
    }

    /* Header */
    header {
      background-color: #ffffff;
      padding: 15px 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      flex-wrap: wrap;
    }
    .logo {
      flex: 1;
    }
    .logo img {
      height: 50px;
    }
    nav {
      flex: 2;
      display: flex;
      justify-content: center;
    }
    nav ul {
      display: flex;
      gap: 30px;
      list-style: none;
    }
    nav ul li a {
      text-decoration: none;
      font-size: 16px;
      color: #333;
      font-weight: 600;
      transition: 0.3s;
    }
    nav ul li a:hover {
      color: #007bff;
    }

    /* Body Content */
    .main-content {
      max-width: 900px;
      margin: 60px auto;
      background-color: #fff;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 0 10px rgba(0,0,0,0.08);
      text-align: center;
    }
		
.tit-dis{ font-size:14px;
padding:5px 0px;}	
	
    /* Footer */
    footer {
       background: linear-gradient(135deg, #4285f4, #34a853);
      color: #fff;
      padding: 25px 25px;
	  margin-bottom:0px;
}

    .footer-container {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
    }
    .footer-column h4 {
      margin-bottom: 15px;
      font-size: 18px;
      color: #f1f1f1;
    }
    .footer-column ul {
      list-style: none;
    }
    .footer-column ul li {
      margin-bottom: 10px;
    }
    .footer-column ul li a {
      color: #ccc;
      text-decoration: none;
      font-size: 18px;
    }
    .footer-column ul li a:hover {
      color: #fff;
    }
    .footer-bottom {
      text-align: center;
      margin-top: 40px;
      font-size: 14px;
      color: #aaa;
    }
	
	
  .tool-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
    text-decoration: none;
    color: #000;
  }
  .tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }
  .tool-card img {
    height: 60px;
    margin-bottom: 10px;
  }
	
	

    @media (max-width: 768px) {
      nav ul {
        flex-direction: column;
        gap: 10px;
      }
      header {
        justify-content: center;
        text-align: center;
      }
      .logo {
        margin-bottom: 10px;
      }
    }