 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background-color: #f8f9fb;
      color: #333;
      line-height: 1.7;
    }

    main {
      max-width: 900px;
      margin: 60px auto;
      background: #fff;
      padding: 40px 50px;
      border-radius: 16px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    h1 {
      font-size: 28px;
      font-weight: 600;
      color: #0077b6;
      text-align: center;
      margin-bottom: 30px;
    }

    p {
      font-size: 16px;
      color: #444;
    }

    b {
      color: #0077b6;
    }

    h1 {
      color: #0077b6;
    }
    h2 {
      color: #0077b6;
    }
    rag{
      font-size: 24px;
      color: #444;
    }
    
    
    a {
      color: #0077b6;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    hr {
      margin: 50px auto;
      border: 0;
      border-top: 1px solid #ddd;
      width: 80%;
    }

    footer {
      text-align: center;
      font-size: 14px;
      color: #777;
      margin-bottom: 40px;
    }

    @media (max-width: 768px) {
      main {
        margin: 30px 15px;
        padding: 25px 20px;
      }

      h1 {
        font-size: 22px;
      }

      p {
        font-size: 15px;
      }
    }

    /* ===== FOOTER ===== */
.footer-section {
  background: #212529;
  color: #f5f5f5;
  padding: 60px 0 20px;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
}

.footer-section h5 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.footer-section p, .footer-section li, .footer-section a {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
}

.footer-section a:hover {
  color: #ff7a00;
}

.desc {
  margin-top: 10px;
}

.social-icons a {
  font-size: 1.4rem;
  margin-right: 12px;
  color: #ccc;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ff7a00;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subscribe-form input {
  padding: 10px 12px;
  border-radius: 6px;
  border: none;
  outline: none;
}

.subscribe-form button {
  background: #006aff;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.subscribe-form button:hover {
  background: #0052cc;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #aaa;
}

/* ===== HEADER ===== */
.main-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-logo {
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(255,255,255,0.4);
      box-shadow: 0 0 10px rgba(255,165,0,0.4);
    }
.brand {
  font-size: 1.5rem;
  font-weight: 500;
  color: #4c8b2b;
  letter-spacing: 0.5px;
 background: linear-gradient(90deg,green,orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* For modern browsers */
}

.brand .highlight {
  color: #ff7a00;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #333;
  position: relative;
  transition: 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: linear-gradient(to right, #4caf50, #ff7a00);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

/* ===== FOOTER ===== */
.footer-section {
  background: #212529;
  color: #f5f5f5;
  padding: 60px 0 20px;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
}

.footer-section h5 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.footer-section p, .footer-section li, .footer-section a {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
}

.footer-section a:hover {
  color: #ff7a00;
}

.desc {
  margin-top: 10px;
}

.social-icons a {
  font-size: 1.4rem;
  margin-right: 12px;
  color: #ccc;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ff7a00;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subscribe-form input {
  padding: 10px 12px;
  border-radius: 6px;
  border: none;
  outline: none;
}

.subscribe-form button {
  background: #006aff;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.subscribe-form button:hover {
  background: #0052cc;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #aaa;
}
