/* Fonts and base setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fff9f5;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.max-width {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  position: fixed;
  width: 100%;
  background: #ffe6d5;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 999;
  transition: 0.3s ease;
}

.navbar.sticky {
  background: #ffd6b3;
}

.navbar .max-width {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .logo a {
  display: flex;
  align-items: center;
  font-size: 1.6em;
  font-weight: 600;
  color: #ff6600;
}

.navbar .menu {
  display: flex;
  list-style: none;
  gap: 25px;
}

.navbar .menu li a {
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.navbar .menu li a:hover {
  color: #ff6600;
}

.menu-button {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* CTA Button */
.cta-button {
  background: #ff6600;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
  transition: 0.3s ease;
}

.cta-button:hover {
  background: #e65c00;
}

/* Section */
.section {
  padding: 80px 0;
}

/* Home Section */
.home {
  background: linear-gradient(to bottom right, #ffe6d5, #fff0e6);
  text-align: center;
  padding: 120px 20px 100px;
}

.home-content h1 {
  font-size: 2.8em;
  color: #ff6600;
  margin-bottom: 10px;
}

.home-content h2 {
  font-size: 1.5em;
  color: #cc4400;
  margin-bottom: 15px;
}

.home-content p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1em;
  color: #555;
}

/* Mission & Vision Section */
#mission-vision {
  padding: 60px 20px;
  background: #FACBAA;
}

#mission-vision .title {
  text-align: center;
  color: #3B0A2B;
  font-size: 28px;
}

#mission-vision .mission-vision-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

#mission-vision .mission-vision-content > div {
  background: #fff3ea;
  border: 1px solid #ffd0aa;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#mission-vision .mission-vision-content > div:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(62, 226, 72, 0.719);
}

#mission-vision .mission-vision-content h3 {
  font-size: 22px;
  color: #3B0A2B;
  text-align: center;
  margin-bottom: 12px;
}

#mission-vision .mission-vision-content p {
  font-size: 16px;
  color: #5e4254;
  line-height: 1.6;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  text-align: justify;
}

/* About Section */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  margin-top: 30px;
}

.about-content .coloumn-left,
.about-content .coloumn-right {
  flex: 1 1 300px;
}

.about-content .coloumn-right p {
  margin-bottom: 15px;
  color: #444;
}

/* Contact Section */
.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}

.contact-content .coloumn-left,
.contact-content .coloumn-right {
  flex: 1 1 300px;
}

.contact-content .text {
  font-size: 1.4em;
  color: #ff6600;
  margin-bottom: 10px;
}

.contact-content .row {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #444;
}

.contact-content .row i {
  font-size: 1.2em;
  margin-right: 15px;
  color: #ff6600;
}

.contact-content .info .head {
  font-weight: 600;
  color: #222;
}

.contact-content .info .sub-title {
  font-size: 0.95em;
  color: #555;
}

/* Form Styling */
form {
  background: #fff3ea;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid #ffd0aa;
}

form .fields {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

form .field {
  flex: 1 1 100%;
  margin-bottom: 15px;
}

form input,
form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ffccaa;
  border-radius: 8px;
  background: white;
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  color: #333;
}

form textarea {
  resize: vertical;
}

form button {
  background: #ff6600;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1em;
  transition: 0.3s ease;
}

form button:hover {
  background: #e65c00;
}

/* Section Titles */
.title {
  text-align: center;
  font-size: 2em;
  font-weight: 600;
  color: #cc4400;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background: #ffe6d5;
  text-align: center;
  padding: 20px;
  font-size: 0.95em;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar .menu {
    position: absolute;
    top: 65px;
    right: 0;
    background: #ffe6d5;
    flex-direction: column;
    width: 200px;
    display: none;
    padding: 10px 0;
  }

  .navbar .menu.active {
    display: flex;
  }

  .menu-button {
    display: block;
  }

  .home-content h1 {
    font-size: 2.2em;
  }

  .home-content h2 {
    font-size: 1.2em;
  }
}

/* Medium tablets and below */
@media (max-width: 992px) {
  .about-content,
  .contact-content,
  #mission-vision .mission-vision-content {
    flex-direction: column;
    align-items: center;
  }

  .navbar .max-width {
    padding: 0 15px;
  }

  .navbar .menu li {
    margin: 10px 0;
  }

  form .fields {
    flex-direction: column;
  }

  .home-content h1 {
    font-size: 2em;
  }

  .home-content h2 {
    font-size: 1.1em;
  }

  .home-content p {
    font-size: 0.95em;
  }
}

/* Mobile-specific refinements */
@media (max-width: 576px) {
  body {
    font-size: 14px;
  }

  .navbar .logo a {
    font-size: 1.2em;
  }

  .home-content h1 {
    font-size: 1.6em;
  }

  .home-content h2 {
    font-size: 1em;
  }

  .title {
    font-size: 1.5em;
  }

  .cta-button,
  form button {
    padding: 10px 14px;
    font-size: 0.95em;
  }

  form input,
  form textarea {
    padding: 10px 12px;
    font-size: 0.95em;
  }

  footer {
    font-size: 0.85em;
    padding: 15px;
  }

  .navbar .menu {
    width: 100%;
    top: 55px;
  }
}