
    /* RESET */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; background: #fdfdfd; }

    /* NAVIGATION */
    header { background: #222; color: #fff; padding: 15px 30px; position: sticky; top: 0; z-index: 1000; }
    nav { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
    .logo span { font-size: 1.5rem; font-weight: bold; color: #ff9800; }
    .top { display: flex; gap: 20px; }
    .top a { text-decoration: none; color: #fff; font-weight: 500; transition: color 0.3s ease; }
    .top a:hover { color: #ff9800; }
    .menu-toggle { display: none; font-size: 1.8rem; cursor: pointer; color: #fff; }

    /* HERO SECTION */
    .hero {
      background: url('https://images.pexels.com/photos/3759652/pexels-photo-3759652.jpeg') no-repeat center/cover;
      color: #fff; text-align: center; padding: 100px 20px; position: relative;
    }
    .hero h1 { font-size: 2.8rem; margin-bottom: 15px; }
    .hero p { font-size: 1.2rem; margin-bottom: 20px; }
    .btn { padding: 12px 28px; background: #ff9800; color: #fff; border: none; border-radius: 30px; font-size: 1.1rem; cursor: pointer; }
    .btn:hover { background: #e68900; }

    /* INTRO SECTION */
    .intro { padding: 60px 20px; text-align: center; background: #fafafa; }
    .intro h2 { font-size: 2rem; margin-bottom: 20px; }
    .intro p { max-width: 700px; margin: auto; font-size: 1.1rem; color: #555; }

    /* MISSION & VISION */
    .mission-vision { padding: 60px 20px; display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
    .mv-box {
      flex: 1 1 300px; max-width: 400px; padding: 20px; border-radius: 12px; background: #fff; 
      box-shadow: 0 2px 8px rgba(0,0,0,0.08); text-align: center;
    }
    .mv-box h3 { color: #ff9800; margin-bottom: 12px; }

    /* FEATURES SECTION */
    .features { padding: 60px 20px; background: #f7f9fc; }
    .features h2 { text-align: center; margin-bottom: 40px; font-size: 2rem; color: #222; }
    .feature-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
    .feature-box {
      flex: 1 1 300px; max-width: 320px; background: #fff; padding: 20px; border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08); text-align: center;
    }
    .feature-box img { width: 100%; height: 160px; object-fit: cover; border-radius: 8px; margin-bottom: 15px; }
    .feature-box h3 { margin-bottom: 10px; font-size: 1.3rem; color: #ff9800; }

    /* TESTIMONIALS */
    .testimonials { padding: 60px 20px; background: #fff; text-align: center; }
    .testimonials h2 { font-size: 2rem; margin-bottom: 30px; }
    .slider { max-width: 700px; margin: auto; position: relative; overflow: hidden; }
    .slides { display: flex; transition: transform 0.5s ease-in-out; }
    .testimonial {
      min-width: 100%; padding: 20px; box-sizing: border-box;
    }
    .testimonial p { font-size: 1.1rem; color: #555; margin-bottom: 12px; }
    .testimonial h4 { color: #ff9800; }
    .slider-btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: #ff9800; color: #fff; border: none; padding: 10px 14px; cursor: pointer; border-radius: 50%;
    }
    .prev { left: 10px; }
    .next { right: 10px; }

    /* ARTICLES */
    .articles { padding: 60px 20px; }
    .articles h2 { text-align: center; margin-bottom: 40px; font-size: 2rem; }
    .article-grid { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
    .article-card {
      flex: 1 1 300px; max-width: 320px; background: #fff; border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1); overflow: hidden;
      display: flex; flex-direction: column;
    }
    .article-card img { width: 100%; height: 160px; object-fit: cover; }
    .article-card h3 { padding: 16px; font-size: 1.2rem; color: #222; }
    .article-card p { padding: 0 16px 16px 16px; color: #555; font-size: 0.95rem; }
    .read-btn { align-self: center; margin: 12px 0 20px 0; padding: 10px 22px; background: #ff9800; color: #fff; border: none; border-radius: 20px; cursor: pointer; }
    .read-btn:hover { background: #e68900; }

     
  .newsletter {
    text-align: center;
    padding: 40px 20px;
    background: #f5f7fa;
    border-radius: 10px;
    margin: 30px auto;
   /* max-width: 500px;*/
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
.newsletter h2 { margin-bottom: 12px; font-size: 2rem; }
.newsletter p { margin-bottom: 18px; color: #555; }

  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    max-width: 400px;
    justify-content: center;
    margin: 20px auto 0 auto;
  }

  .newsletter-form input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;

  }

  .newsletter-form button {
    padding: 12px;
    background: #ff9800;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
  }

  .newsletter-form button:hover {
    background: #005fa3;
  }


    /* FOOTER */
    footer { background: #222; color: #fff; padding: 20px; text-align: center; margin-top: 20px; }
    .social-icons { display: flex; justify-content: center; gap: 18px; margin-top: 12px; }
    .social-icons img { width: 28px; height: 28px; filter: brightness(0.9); transition: 0.2s; }
    .social-icons img:hover { filter: none; }

    /* RESPONSIVE */
    @media (max-width: 992px) {
      .top { display: none; flex-direction: column; width: 100%; margin-top: 10px; background: #222; padding: 10px; border-radius: 6px; }
      .top.show { display: flex; }
      .menu-toggle { display: block; }
      .mission-vision { flex-direction: column; align-items: center; }
    }
    @media (max-width: 600px) {
      .hero h1 { font-size: 2rem; }
      .hero p { font-size: 1rem; }
      .feature-box, .article-card { max-width: 100%; }
    }
