* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

.swasthsip-font {
  font-family: 'Poppins', sans-serif;
  font-weight: 600; /* semi-bold */
  letter-spacing: 0.05em;
  font-style: normal;
  color: #f2f7f4;
}
a {
  color: inherit;
  text-decoration: none;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 60px; /* keep your existing top padding */
  background: linear-gradient(to bottom right, #fef7ee, #f1e8db);
  color: #3e2f1c;
  margin: 0;
}
/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #8b5e3c; /* woody brown */
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e5f3c3; /* light herbal green */
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

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

.navbar {
  display: flex;
  gap: 30px;
}

.navbar a {
  color: #fffbe6;
  text-decoration: none;
  position: relative;
  padding-bottom: 5px;
  font-weight: 500;
}

.navbar a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #e0d6c3;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}

.navbar a:hover::after,
.navbar a.active::after {
  width: 100%;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* PAGE TITLE */
.page-title {
  font-size: 40px;
  text-align: center;
  margin-top: 40px;
  color: #435334;
}

.page-title span {
  position: relative;
  display: inline-block;
}

.page-title span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  background-color: #3e2f1c;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-in-out;
}

.page-title span:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* CONTAINER LAYOUT */
.container {
  flex: 1;  /* This makes container grow and push footer down */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 90px;
  margin-bottom: 50px;
  padding: 0 30px;
}


.left, .right {
  flex: 1;
  min-width: 380px;
}

.left h1, .right h1 {
  color: #435334; /* olive green */
  margin-top: 70px;
  margin-bottom: 30px;
  font-size: 28px;
  position: relative;
}

.left h1::after, .right h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background-color: #a19888;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-in-out;
}

.left h1:hover::after, .right h1:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.description {
  font-size: 22px;
  color: #7b4e2c;
  margin-top: 35px;
  text-align: center;
}

.info {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

.info img {
  width: 30px;
  height: 30px;
  margin-right: 12px;
}

.info a, .info span {
  color: #4a3c27;
  text-decoration: none;
  font-weight: 500;
}

/* YOUTUBE BUTTON */
.youtube-button {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: none;
  background-color: #6f4f2a;
  color: #fff;
  font-weight: 500;
}

.youtube-button img {
  width: 36px;
  height: 36px;
  margin-right: 10px;
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
}

.input-group {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #bcae9d;
  padding: 8px 0;
  margin-bottom: 20px;
}

.input-group img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

input, textarea {
  width: 100%;
  border: none;
  font-size: 16px;
  background-color: #fffaf0;
  color: #3e2f1c;
  outline: none;
  padding: 8px 0;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

button {
  margin-top: 30px;
  padding: 14px;
  font-size: 16px;
  background-color: #8b5e3c;
  color: #fff;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #3e2f1c;
}

/* FORM STATUS */
#formLoader {
  color: #5b7d3c;
}

#formSuccess {
  color: #3a7e35;
}

#formError {
  color: #c0382b;
}

#formLoader,
#formSuccess,
#formError {
  display: none; /* Hide by default */
  font-size: 14px;
  margin-top: 20px;
}


@media screen and (max-width: 768px) {
  .logo img {
    height: 45px;
  }

  .navbar {
    display: none;
    flex-direction: column;
    background-color: rgba(62, 47, 28, 0.95);
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 20px;
    border-radius: 10px;
    z-index: 999;
  }

  .navbar.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  body {
    padding-top: 20px;
  }

  .page-title {
    font-size: 35px;
    margin-top: 60px;
  }

  .description {
    font-size: 20px;
    margin-top: 25px;
    text-align: center;
  }

  .container {
    padding: 0px 20px;

  }

  input, textarea {
    background-color: #fffaf0;
    color: #3e2f1c;
  }

  button {
    background-color: #8b5e3c;
    color: white;
  }


.youtube-button {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: none;
  background-color: #6f4f2a;
  color: #fff;
  font-weight: 500;
}

.youtube-button img {
  width: 36px;
  height: 36px;
  margin-right: 10px;
}

.left, .right {
  flex: 1;
  min-width: 280px;
}

.left h1, .right h1 {
  color: #435334; /* olive green */
  margin-top: 32px;
  margin-bottom: 30px;
  font-size: 28px;
  position: relative;
}

}

@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .left, .right {
    width: 100%;
    min-width: unset;
  }
}

.input-group img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  filter: brightness(0) saturate(100%) contrast(100%);
}

.info img {
  width: 30px;
  height: 30px;
  margin-right: 12px;
  filter: brightness(0) saturate(100%) contrast(100%);
}

/* FOOTER */
.footer {
  background-color: #034d3b;
  color: #fffcfc;
  text-align: center;
  padding: 8px 10px;
  position: relative;
  width: 100%;
}

/* For small screen heights (optional), make footer fixed */
@media (max-height: 600px) {
  .footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
  }
}

/* Footer icons and styles unchanged */
.footer-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.footer-icons a:hover img {
  transform: scale(1.2);
}

.footer p {
  font-size: 0.9rem;
  margin: 0;
}


@media (max-height: 600px) {
  .footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
  }
}

