* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f4f6f9;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  background: #002f6c;
  color: white;
  padding: 15px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
}

.hero {
  background: linear-gradient(to right, #003973, #e5e5be);
  padding: 50px 0;
  color: white;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero img {
  width: 250px;
}

.cards {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  min-width: 250px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  display: inline-block;
  text-decoration: none;
  color: white;
}

.primary { background: #ff5722; }
.secondary { background: #1976d2; }
.success { background: #2e7d32; }

footer {
  background: #002f6c;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

.form-container {
  margin-top: 50px;
}

form input, form select, form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
}

@media(max-width:768px){
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ABOUT SECTION */
.about-section {
  padding: 70px 0;
  background: #ffffff;
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  margin-bottom: 20px;
  font-size: 32px;
}

.about-content p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-points {
  margin-bottom: 20px;
}

.point {
  margin-bottom: 15px;
}

/* Responsive */
@media(max-width: 992px){
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    margin: auto;
  }
}




/* Complaint Page Layout */
.complaint-wrapper {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  align-items: flex-start;
}

.complaint-left {
  flex: 2;
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.callback-box {
  flex: 1;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.callback-header {
  background: #0d47a1;
  color: white;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 15px;
}

.full-width {
  width: 100%;
}

/* Responsive */
@media(max-width: 992px){
  .complaint-wrapper {
    flex-direction: column;
  }
}

/* JOIN & DONATION SECTION */
.support-section {
  background: #f4f6f9;
  padding: 60px 0;
}

.support-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.join-box, .donation-box {
  flex: 1;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.join-box p {
  margin: 15px 0;
}

.donation-options {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.donate-btn {
  padding: 8px 18px;
  border: none;
  border-radius: 6px;
  background: #1976d2;
  color: white;
  cursor: pointer;
}

.donate-btn:hover {
  background: #0d47a1;
}

.full-width {
  width: 100%;
}

.donation-box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
}

/* Responsive */
@media(max-width: 992px){
  .support-wrapper {
    flex-direction: column;
  }
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
}

/* ACTIVITIES SECTION */
.activities-section {
  padding: 70px 0;
  background: #f4f6f9;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.video-card {
  background: #ffffff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.video-card video {
  width: 100%;
  border-radius: 8px;
}

/* CAMPAIGN SECTION */
.campaigns-section {
  padding: 70px 0;
  background: #f4f6f9;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 30px;
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.campaign-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.campaign-card:hover {
  transform: translateY(-5px);
}

.campaign-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.campaign-content {
  padding: 20px;
}

.campaign-content h3 {
  margin-bottom: 10px;
}

.campaign-content p {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.campaign-buttons {
  display: flex;
  justify-content: space-between;
}

/* Responsive */
@media(max-width: 992px){
  .campaign-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px){
  .campaign-grid {
    grid-template-columns: 1fr;
  }
}

/* CONTACT SECTION */
.contact-section {
  padding: 70px 0;
  background: #f4f6f9;
}

.contact-wrapper {
  display: flex;
  gap: 40px;
}

.contact-form, .contact-info {
  flex: 1;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h2,
.contact-info h2 {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.map {
  margin-top: 20px;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  margin-right: 15px;
  text-decoration: none;
  color: #1976d2;
}

/* Responsive */
@media(max-width: 992px){
  .contact-wrapper {
    flex-direction: column;
  }
}

/* FOOTER */
.footer {
  background: #002f6c;
  color: white;
  padding: 50px 0 20px;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

.footer-about {
  flex: 1;
}

.footer-newsletter {
  flex: 1;
}

.footer-newsletter form {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-newsletter input {
  flex: 1;
  padding: 10px;
  border-radius: 5px;
  border: none;
}

.footer-newsletter button {
  padding: 10px 20px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 14px;
}

/* Responsive */
@media(max-width: 768px){
  .footer-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .footer-newsletter form {
    flex-direction: column;
  }
}

/* JOIN SECTION */
.join-section {
  padding: 70px 0;
  background: #f4f6f9;
}

.join-wrapper {
  max-width: 800px;
  margin: auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.section-title {
  text-align: center;
  margin-bottom: 10px;
}

.join-subtitle {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
}

.join-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.join-form input,
.join-form select,
.join-form textarea {
  width: 100%;
  padding: 10px;
}

.join-form textarea {
  height: 120px;
  margin-bottom: 15px;
}

.upload-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.full-width {
  width: 100%;
  margin-top: 15px;
}

/* Responsive */
@media(max-width: 768px){
  .join-form .form-row {
    flex-direction: column;
  }
}


.scheme-eligibility {
    padding: 80px 20px;
    background: linear-gradient(135deg, #003366, #00509e);
    display: flex;
    justify-content: center;
}

.eligibility-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.eligibility-container h2 {
    margin-bottom: 10px;
    color: #003366;
}

.eligibility-container p {
    margin-bottom: 25px;
    color: #555;
}

#eligibilityForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#eligibilityForm input,
#eligibilityForm select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

#eligibilityForm button {
    padding: 12px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

#eligibilityForm button:hover {
    background: #004c99;
}

#resultBox {
    margin-top: 20px;
    font-weight: bold;
}