 * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: "Poppins", sans-serif;
  }

  /* Top Bar */
  .top-bar {
    background-color: #f5c552;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 3%;
    flex-wrap: wrap;
  }

  /* Social Icons */
  .social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .social-icons a {
    background: #fff;
    color: #1b3a27;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
  }

  .social-icons a:hover {
    background: #1b3a27;
    color: #fff;
  }

  /* News Section */
  .news-container {
    display: flex;
    align-items: center;
    background: #fff;
    flex: 1;
    margin: 10px;
    min-width: 250px;
  }

  .news-label {
    background: #1b3a27;
    color: #fff;
    padding: 10px 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
  }

  .news-ticker {
    flex: 1;
    padding: 10px;
    overflow: hidden;
    position: relative;
  }

  .news-ticker p {
    white-space: nowrap;
    display: inline-block;
    animation: scrollText 20s linear infinite;
    font-size: 15px;
  }

  @keyframes scrollText {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  /* Phone Section */
  .contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    color: #000;
    white-space: nowrap;
  }

  .contact i {
    color: #000;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .top-bar {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }

    .news-container {
      width: 100%;
      margin: 5px 0;
    }

    .contact {
     justify-content: space-between; /* Left & Right mein items jayenge */
  align-items: center;
  width: 100% !important;
    }
  }

  /* header  */
  header {
    width: 100%;
    background-color: #fff;
    border-top: 4px solid #f5c552;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    flex-wrap: wrap;
  }

  /* Logo Section */
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .logo img {
    height: 80px;
    width: 80px;
    object-fit: contain;
  }

  /* Title Section */
  .title {
    flex: 1;
    text-align: center;
    font-size: 32px;
    color: #1b3a27;
    font-weight: 700;
    font-family: "Noto Sans Devanagari", sans-serif;
  }

  /* Button Section */
  .login-btn {
    background-color: #1b3a27;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  }

  .login-btn:hover {
    background-color: #154a30;
  }

  /* Responsive Design */
  @media (max-width: 992px) {
    .title {
      font-size: 26px;
    }
  }

  @media (max-width: 768px) {
    header {
      flex-direction: column;
      align-items: center;
      gap: 15px;
      text-align: center;
    }

    .title {
      order: 2;
    }

    .login-btn {
      order: 3;
      padding: 12px 30px;
    }

    .logo img {
      height: 70px;
      width: 70px;
    }
  }

    /* Navbar Container */
  nav {
    background-color: #173b23;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 5%;
    flex-wrap: wrap;
  }

  /* Menu Links */
  .nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    margin-left: 30px;
  }

  .nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .nav-links li a:hover {
    color: #f5c552;
  }

  /* Donate Button */
  .donate-btn {
    background-color: #060606;
    color: #080808;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
  }

  .donate-btn:hover {
    background-color: #ffffff;
    color: #000;
  }

  /* Hamburger Icon */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }

  .menu-toggle span {
    background-color: #fff;
    height: 3px;
    width: 25px;
    margin: 4px 0;
    border-radius: 2px;
  }

  /* Responsive Styles */
  @media (max-width: 992px) {
    .nav-links {
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      background-color: #173b23;
      flex-direction: column;
      align-items: center;
      display: none;
      padding: 15px 0;
      z-index: 1000;
    }

    .nav-links.active {
      display: flex;
    }

    .menu-toggle {
      display: flex;
    }

    .donate-btn {
      margin-top: 10px;
    }
  }

   /* Slider Container */
  .slider {
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: 100%;
  }

  .slides {
    display: flex;
    transition: transform 1s ease-in-out;
    height: 100%;
  }

  .slide {
    min-width: 100%;
    position: relative;
  }

  .slide img {
    width: 100%;
    height: 100vh;
    /* object-fit: cover; */
  }

  /* Overlay Content */
  .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.45);
    padding: 40px 30px;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
  }

  .overlay img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 15px;
  }

  .overlay h5 {
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 16px;
  }

  .overlay h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 10px 0;
  }

  .overlay p {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Arrows */
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px;
    border-radius: 50%;
    z-index: 10;
  }

  .arrow:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .prev {
    left: 20px;
  }

  .next {
    right: 20px;
  }

  /* Dots */
  .dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
  }

  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
  }

  .dot.active {
    background: #fff;
  }

  /* Responsive */
  @media (max-width: 768px) {
     .slider {
      height: 50vh;
     }
    .overlay {
      width: 90%;
      padding: 25px 20px;
    }

    .overlay h2 {
      font-size: 24px;
    }

    .overlay p {
      font-size: 14px;
    }

    .overlay img {
      width: 70px;
      height: 70px;
    }
    
  }

  /* about section */
    .about-section {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      padding: 80px 5%;
      gap: 60px;
    }

    .about-img {
      flex: 1 1 320px;
      text-align: center;
    }

    .about-img img {
      width: 100%;
      max-width: 420px;
      height: auto;
    }

    .about-content {
      flex: 1 1 500px;
      max-width: 750px;
    }

    .about-content h2 {
      font-size: 2.4rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: #111;
    }

    .about-content p {
      font-size: 1.05rem;
      color: #333;
      margin-bottom: 18px;
    }

    .about-content p span {
      font-weight: 600;
      color: #000;
    }

    .about-btn {
      display: inline-flex;
      align-items: center;
      background-color: #f7a400;
      color: #000;
      padding: 14px 28px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      font-size: 1.05rem;
      transition: all 0.3s ease;
    }

    .about-btn:hover {
      background-color: #e28d00;
      transform: scale(1.05);
    }

    .about-btn i {
      margin-left: 10px;
      font-size: 1.2rem;
      transition: transform 0.3s ease;
    }

    .about-btn:hover i {
      transform: translateX(4px);
    }

    @media (max-width: 992px) {
      .about-section {
        flex-direction: column;
        text-align: center;
      }

      .about-content {
        text-align: center;
      }

      .about-content h2 {
        font-size: 2rem;
      }

      .about-btn {
        margin-top: 10px;
      }
    }

    @media (max-width: 600px) {
      .about-content h2 {
        font-size: 1.7rem;
      }

      .about-content p {
        font-size: 0.95rem;
      }

      .about-btn {
        font-size: 0.95rem;
        padding: 12px 24px;
      }
    }

     /* team-section  */
      .team-section {
      text-align: center;
      padding: 60px 5%;
      background: #fff;
    }

    .team-header {
      background-color: #103a21;
      color: #fff;
      font-size: 2.2rem;
      font-weight: 700;
      padding: 18px 0;
      border-radius: 5px;
      margin-bottom: 50px;
      font-family: "Merriweather", serif;
    }

    /* Team Container */
    .team-container {
      display: flex;
      justify-content: center;
      align-items: stretch;
      flex-wrap: wrap;
      gap: 25px;
    }

    /* Team Card */
    .team-card {
      background: #fff;
      border: 2px solid #e2e2e2;
      border-radius: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
      width: 260px;
      padding: 30px 20px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .team-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    }

    /* Profile Image */
    .team-card img {
      width: 130px;
      height: 130px;
      border-radius: 50%;
      border: 6px solid #b88a00;
      outline: 4px solid #0d3b24;
      object-fit: cover;
      margin-bottom: 18px;
      transition: transform 0.3s ease;
    }

    .team-card:hover img {
      transform: scale(1.05);
    }

    .team-card h3 {
      font-size: 1.4rem;
      font-weight: 700;
      color: #000;
    }

    .team-card p {
      font-size: 1rem;
      color: #333;
      margin-top: 5px;
    }

    /* Button */
    .team-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 50px;
      background: #f7a400;
      color: #000;
      padding: 14px 30px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .team-btn:hover {
      background: #e48d00;
      transform: scale(1.05);
    }

    .team-btn i {
      margin-left: 10px;
      font-size: 1.2rem;
      transition: transform 0.3s ease;
    }

    .team-btn:hover i {
      transform: translateX(5px);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .team-card {
        width: 220px;
      }
    }

    @media (max-width: 768px) {
      .team-container {
        gap: 20px;
      }
      .team-card {
        width: 45%;
      }
    }

    @media (max-width: 550px) {
      .team-card {
        width: 90%;
      }
      .team-card h3 {
        font-size: 1.2rem;
      }
      .team-card img {
        width: 110px;
        height: 110px;
      }
    }

    /* apply-section */
    .apply-section {
  width: 100%;
  padding: 40px 20px;
  text-align: center;
}

.heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.apply-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}

.apply-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.apply-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.apply-form {
  flex: 1 1 45%;
  text-align: left;
}

.apply-form h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

input {
  flex: 1;
  padding: 14px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  transition: 0.3s ease;
}

input:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0,123,255,0.3);
}

button {
  background: #0091ff;
  color: white;
  font-size: 1rem;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: fit-content;
  transition: 0.3s ease;
}

button:hover {
  background: #0072d8;
}

/* ✅ Responsive Design */
@media (max-width: 992px) {
  .apply-container {
    flex-direction: column;
    align-items: center;
  }

  .apply-image, .apply-form {
    flex: 1 1 100%;
    max-width: 700px;
  }

  .form-row {
    flex-direction: column;
  }

  .apply-form h2 {
    text-align: center;
  }

  button {
    margin: 0 auto;
  }
}

/* gallery-section */

.gallery-section {
  width: 100%;
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #222;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #ff6b00;
  margin: 10px auto 0;
  border-radius: 3px;
}

/* ===== Gallery Container ===== */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* ===== Individual Image Box ===== */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  background: #fff;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* ===== Responsive Breakpoints ===== */
@media (max-width: 992px) {
  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }
  .gallery-container {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.4rem;
  }
  .gallery-container {
    gap: 10px;
  }
}



/* ===== See More Photos Button ===== */
.mgv-photo-button {
  text-align: center;
  margin-top: 40px;
}

#mgv-see-more-btn {
  background: #f5a623;
  color: #fff;
  font-size: 1.1rem;
  border: none;
  padding: 12px 40px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

#mgv-see-more-btn:hover {
  background: #d99018;
}

/* ===== Social Media Section ===== */
.mgv-social-wrapper {
  text-align: center;
  margin: 30px 0;
}

.mgv-social-title {
  font-weight: 500;
  margin-bottom: 15px;
}

.mgv-social-icons a {
  display: inline-block;
  background: #143d16;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  margin: 0 8px;
  font-size: 1.1rem;
  transition: 0.3s;
}

.mgv-social-icons a:hover {
  background: #f5a623;
  color: #fff;
}

/* ===== Divider ===== */
.mgv-divider {
  height: 5px;
  background: #143d16;
  border: none;
  margin: 20px 0;
}

/* ===== Footer Content ===== */
.mgv-footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 50px;
  max-width: 1200px;
  margin: auto;
}

.mgv-footer-logo img {
  width: 150px;
}

.mgv-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.mgv-footer-column h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 600;
}

.mgv-footer-column ul {
  list-style: none;
  padding: 0;
}

.mgv-footer-column ul li {
  margin: 8px 0;
  font-size: 0.95rem;
}

.mgv-footer-column ul li a {
  color: #111;
  text-decoration: none;
  transition: 0.3s;
}

.mgv-footer-column ul li a:hover {
  color: #f5a623;
}

/* ===== Contact Info ===== */
.mgv-contact-info i {
  color: #143d16;
  margin-right: 10px;
}

/* ===== Footer Bottom ===== */
.mgv-footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  padding: 15px;
  border-top: 1px solid #ddd;
}

.mgv-footer-bottom span {
  color: #d64161;
}

/* ===== Floating Chat Button ===== */
#mgv-chat-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #9c27b0;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 20px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: 0.3s;
  z-index: 999;
}

#mgv-chat-btn:hover {
  background: #7b1fa2;
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
  .mgv-footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .mgv-footer-links {
    flex-direction: column;
    align-items: center;
  }

  .mgv-footer-column {
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  #mgv-see-more-btn {
    padding: 10px 25px;
    font-size: 1rem;
  }

  #mgv-chat-btn {
    bottom: 20px;
    right: 15px;
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .mgv-footer-column h4 {
    font-size: 1rem;
  }
}
