/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #222;
    color: #333;
  }
  
  .container {
    width: 70vw;
    margin: auto;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #222;
    color: #fff;
    padding: 15px 20px;
  }
  
  .navbar .logo {
    font-size: 1.5em;
    font-weight: bold;
  }
  
  .navbar .logo-text {
    text-decoration: none;
    color: #fff;
  }

  .nav-links {
    display: flex;
    list-style: none;
  }
  
  .nav-links li {
    margin-left: 20px;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .nav-links a:hover {
    color: #4CAF50;
  }
  
  .menu-toggle {
    display: none;
    font-size: 1.8em;
    cursor: pointer;
  }
  
  /* Hero Section */
  .hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background: #fff;
  }
  
  .hero-text {
    max-width: 50%;
  }
  
  .hero-text h1 {
    font-size: 2.5em;
  }
  
  .green {
    color: #28a745; /* Bootstrap green, you can change */
    font-weight: bold;
  }

  /* Typing cursor */
#typing-text::after {
    content: "|";
    animation: blink 0.7s infinite;
    margin-left: 2px;
  }
  
  @keyframes blink {
    50% {
      opacity: 0;
    }
  }
  
  .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #4CAF50;
    color: #fff;
    text-decoration: none;
    margin-top: 15px;
    border-radius: 5px;
    transition: 0.3s;
  }
  
  .btn:hover {
    background: #45a049;
  }
  
  .hero-image img {
    max-width: 400px;
  }

 /* Quote / Subscription */
.quote {
    padding: 60px 20px;
    text-align: center;
    background: #45a049;
  }
  
  .quote h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .quote-box {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .quote-box input {
    flex: 1;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 25px 0 0 25px;
    outline: none;
  }
  
  .quote-box button {
    padding: 12px 25px;
    font-size: 1rem;
    border: none;
    background: #333;
    color: #fff;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .quote-box button:hover {
    background: #555;
  }
  
  
  /* Services Section */
.services {
    padding: 60px 20px;
    text-align: center;
    background: #f9f9f9;
  }
  
  .services h2 {
    font-size: 2em;
    margin-bottom: 30px;
  }
  
  .services-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .service-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 280px;
    transition: transform 0.3s;
  }
  
  .service-card:hover {
    transform: translateY(-8px);
  }
  
  .service-card img {
    max-width: 100px;
    margin-bottom: 15px;
  }
  
  .service-card h3 {
    margin-bottom: 10px;
    color: #4CAF50;
  }

  /* Pricing Section */
.pricing {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
  }
  
  .pricing h2 {
    font-size: 2em;
    margin-bottom: 30px;
  }
  
  .pricing-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .pricing-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 280px;
    transition: transform 0.3s;
  }
  
  .pricing-card:hover {
    transform: translateY(-8px);
  }
  
  .pricing-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
  }
  
  .price {
    font-size: 2em;
    color: #4CAF50;
    margin: 15px 0;
  }
  
  .pricing-card ul {
    list-style: none;
    margin: 20px 0;
    text-align: left;
  }
  
  .pricing-card ul li {
    margin: 10px 0;
  }
  
  .pricing-card .btn {
    display: inline-block;
    margin-top: 10px;
    width: 100%;
  }
  
  /* Highlighted middle card */
  .pricing-card.highlight {
    background: #4CAF50;
    color: #fff;
  }
  
  .pricing-card.highlight .price {
    color: #fff;
  }
  
  .pricing-card.highlight .btn {
    background: #fff;
    color: #4CAF50;
  }
  
  .pricing-card.highlight .btn:hover {
    background: #eaeaea;
  }
  
  /* Testimonials */
  .testimonials {
    padding: 50px 20px;
    text-align: center;
    background: #f9f9f9;
  }
  
  .testimonial-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  
  .testimonial {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  }
  
  .testimonial img {
    max-width: 80px;
    margin-bottom: 10px;
    border-radius: 40px;
  }
  
  .testimonial h4 {
    margin-top: 10px;
    font-weight: bold;
  }
  
  /* Contact */
  .contact {
    padding: 50px 20px;
    text-align: center;
    background-color: #fff;
  }
  
  .contact form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
  }
  
  .contact input, .contact textarea {
    margin: 10px 0;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
  }
  
  .contact button {
    border: none;
    cursor: pointer;
  }
  
  /* Footer */
  footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 15px;
  }
  
  /* Enable smooth scrolling */
html {
    scroll-behavior: smooth;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .hero {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-text {
      max-width: 100%;
      margin-bottom: 20px;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      background: #222;
      position: absolute;
      top: 60px;
      right: 0;
      width: 200px;
      padding: 15px;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }

    .pricing-container {
        flex-direction: column;
        align-items: center;
      }
  
    .testimonial-container {
      flex-direction: column;
      align-items: center;
    }
  }
  
