
        /* General Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        a{
          text-decoration: none;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #ff4081, #4caf50);
            color: #fff;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    font-family: 'Arial', sans-serif;
    font-size: 24px;
    color: #ff4081;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navbar Links */
.navbar a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    margin-left: 15px;
}

.navbar a:hover {
    color: #ff4081;
}

/* Menu Button */
.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    margin-left: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .navbar a {
        display: none; /* Hide links initially */
        width: 100%;
        text-align: center;
        padding: 10px;
        background: rgba(0, 0, 0, 0.9);
    }

    .navbar a.active {
        display: block;
    }
}


        /* Hero Section */
        .hero {
            height: 100vh;
            background: url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            animation: fadeIn 2s ease-out;
        }

        .hero h1 {
            font-size: 60px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .hero .btn-primary {
            background-color: #ff4081;
            border: none;
            padding: 15px 30px;
            font-size: 18px;
            font-weight: bold;
            border-radius: 5px;
            transition: all 0.3s ease;
            color: white;
        }

        .hero .btn-primary:hover {
            background-color: #ff1c5a;
            transform: translateY(-5px);
        }

        /* Tools Section */

        .tools {
          padding: 50px 20px;
          text-align: center;
          background: linear-gradient(135deg, #ff4081, #7b1fa2);
          color: white;
          border-radius: 10px;
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
      }
      
      .tools h2 {
          font-size: 36px;
          margin-bottom: 30px;
      }
      
      /* Grid Layout */
      .tools-card-container {
          display: flex;
          justify-content: center;
          align-items: center;
      }
      
      .tools-cards {
          display: grid;
          grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
          gap: 20px;
          max-width: 800px;
      }
      
      /* Individual Tool Cards */
      .tools-card {
          text-decoration: none;
          width: 100%;
          padding: 20px;
          background: white;
          color: #333;
          border-radius: 15px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          text-align: center;
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          display: flex;
          flex-direction: column;
          align-items: center;
          position: relative;
          overflow: hidden;
      }
      
      /* Hover Effects */
      .tools-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      }
      
      .tools-card:hover .icon-wrapper {
          transform: scale(1.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      }
      
      /* Icon Wrapper */
      .icon-wrapper {
          width: 70px;
          height: 70px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 50%;
          background: rgba(0, 0, 0, 0.1);
          margin-bottom: 12px;
          transition: all 0.3s ease;
      }
      
      .icon-wrapper i {
          font-size: 35px;
          color: white;
      }
      
      /* Unique Tool Colors */
      .yt-tool .icon-wrapper { background: #ff0000; }
      .chat-tool .icon-wrapper { background: #007bff; }
      .form-tool .icon-wrapper { background: #28a745; }
      .ai-tool .icon-wrapper { background: #8e44ad; }
      .health-tool .icon-wrapper { background: #e74c3c; }
      .seo-tool .icon-wrapper { background: #f39c12; }
      .advice-tool .icon-wrapper { background: #ff9800; }
      
      /* Responsive Design */
      @media (max-width: 768px) {
          .tools-cards {
              grid-template-columns: 1fr; /* 1 card per row on smaller screens */
          }
      }



        /* Call to Action */
        .cta {
            background-color: #ff4081;
            padding: 80px 20px;
            text-align: center;
        }

        .cta h2 {
            font-size: 35px;
            color: white;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 18px;
            font-weight: 300;
            color: white;
            margin-bottom: 40px;
        }

        .cta .btn-primary {
            background-color: #fff;
            color: #ff4081;
            padding: 15px 30px;
            font-size: 18px;
            font-weight: bold;
            border-radius: 5px;
        }

        .cta .btn-primary:hover {
            background-color: #ff1c5a;
            color: #fff;
        }

        /* Footer */
        footer {
            background-color: #111;
            color: #fff;
            padding: 30px 0;
            text-align: center;
        }

        footer p {
            font-size: 14px;
            color: #777;
        }

        footer a {
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            margin: 0 10px;
        }

        footer a:hover {
            color: #ff4081;
        }

        /* Scroll Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Styles */
        @media screen and (max-width: 768px) {
            .tools-card {
                width: 90%;
                margin-bottom: 30px;
            }

            .navbar a {
                font-size: 14px;
            }

            .hero h1 {
                font-size: 45px;
            }

            .hero p {
                font-size: 16px;
            }
        }
   