@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
 
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
 
  
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.hero {
    background: linear-gradient(45deg, #b3b3a1, #987f57);
    text-align: center;
    padding: 50px 10px;
    color: white;
    margin-top: 100px;
}
.navbar {
  position: fixed; /* Navbar ko fix kar diya */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* Ensure it's always on top */
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(45deg, #b3b3a1, #987f57);
  padding: 15px 5%;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 5px auto;
  background: white;
  transition: 0.3s;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition: 0.3s ease;
}

/* Default hover effect */
.nav-links a:hover {
  color: #ffe600;
}

/* Active page ke liye alag color */
.nav-links a.active {
  color: #ffcc00;

}

/* Ensure content does not hide under navbar */

.logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #ffe600;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: linear-gradient(45deg, #b3b3a1, #987f57);
    position: absolute;
    top: 60px;
    right: 0;
    width: 50%;
    text-align: center;
    padding: 10px 0;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.3);
  }

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

/* ========== GENERAL STYLES ========== */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap");

body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}
.hero {
  background: linear-gradient(45deg, #b3b3a1, #987f57);
  text-align: center;
  padding: 60px 20px;
  color: white;
  margin-top: 80px;
}
.hero h1 {
  font-size: 36px;
}

/* Sections */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  flex: 1;
  min-width: 280px;
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.card i {
  font-size: 40px;
  color: #ffcc00;
  margin-bottom: 10px;
}
.card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.card p {
  font-size: 16px;
}

/* About Section */
.about {
  background-color: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.about .container {
  max-width: 900px;
  margin: auto;
}

.about h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
}

.about p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Vision & Mission Section */
/* Vision Section */
.vision {
  background: linear-gradient(45deg, #b3b3a1, #987f57);
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.vision .container {
  max-width: 900px;
  margin: auto;
}

.vision h2 {
  font-size: 2rem;
  color: #ffcc00;
  margin-bottom: 15px;
  font-weight: 700;
}

.vision p {
  font-size: 1.1rem;
  color: white;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Mission Section */
.mission {
  background-color: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.mission .container2 {
  max-width: 900px;
  margin: auto;
}

.mission h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
}

.mission p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Icons Styling */
.vision h2 i, .mission h2 i {
  margin-right: 10px;
  color: #ffe600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .vision, .mission {
      padding: 40px 15px;
  }

  .vision h2, .mission h2 {
      font-size: 1.8rem;
  }

  .vision p, .mission p {
      font-size: 1rem;
  }
}


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

.footer {
  background: linear-gradient(45deg, #b3b3a1, #987f57);
  color: white;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  position: relative;
  bottom: 0;
  width: 100%;
}