/* General Styles */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f6f6;
  height: 120vh;
}

/* Navbar */

/* Hero Section with Background Image */
.contact-hero {
  background: url("contact-bg.jpg") no-repeat center center/cover;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgb(211, 140, 34);
  margin-top: 80px; /* Navbar ke niche content chipe na */
}

.contact-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 18px;
  max-width: 600px;
}

/* Contact Section */
.contact-section {
  text-align: center;
  padding: 50px;
}

.contact-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.contact-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 280px;
  text-align: center;
}

.contact-box i {
  font-size: 30px;
  color: #082e83;
}

.contact-box h3 {
  color: rgb(211, 140, 34);
}

.contact-box p {
  font-size: 16px;
  color: #333;
}

.contact-box a {
  color: #007bff;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .contact-section{
    padding: 0px;
  }
}

.navbar {
  position: fixed; /* Navbar ko fix kar diya */
  top: 0;
  left: 0;
  width: 90%;
  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;
  }
}
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.contact-section {
  flex: 1;
}


.footer {
  background: linear-gradient(45deg, #b3b3a1, #987f57);
  color: white;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  position:relative;
  bottom: 0;
  width: 100%;
  margin-top: 10px;
}

