.project-card {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-card.reveal {
  opacity: 1;
  transform: none;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0 3rem 0;
}
.project-card {
  background: #fff;
  border-radius: 18px;
  box-shadow:
    0 4px 24px 0 rgba(30, 41, 59, 0.1),
    0 1.5px 6px 0 rgba(30, 41, 59, 0.06);
  overflow: hidden;
  transition:
    transform 0.18s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  min-height: 420px;
  position: relative;
}
.project-card:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow:
    0 8px 32px 0 rgba(30, 41, 59, 0.16),
    0 2px 8px 0 rgba(30, 41, 59, 0.1);
}
.project-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  background: #f3f4f6;
}
.project-info {
  padding: 1.3em 1.2em 1.2em 1.2em;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.project-info h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5em;
}
.project-info .location {
  font-size: 0.98rem;
  color: #64748b;
  margin-bottom: 0.7em;
  font-style: italic;
}
.view-project-btn {
  margin-top: auto;
  background: linear-gradient(90deg, #1e293b 0, #0ea5e9 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7em 1.5em;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px 0 rgba(14, 165, 233, 0.08);
  cursor: pointer;
  transition:
    background 0.18s,
    box-shadow 0.18s,
    transform 0.18s;
  outline: 0;
}
.view-project-btn:focus,
.view-project-btn:hover {
  background: linear-gradient(90deg, #0ea5e9 0, #1e293b 100%);
  box-shadow: 0 4px 16px 0 rgba(14, 165, 233, 0.13);
  transform: translateY(-2px) scale(1.04);
}
#projectDetailModal.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 41, 59, 0.18);
  z-index: 1000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 2.5vh 1.5em 1.5em 1.5em;
  min-height: 100vh;
  overflow-y: auto;
}
#projectDetailModal.modal[style*="display: flex"] {
  display: flex !important;
}
#projectDetailModal .modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(30, 41, 59, 0.18);
  padding: 2.2em 2em 1.5em 2em;
  max-width: 600px;
  width: 100%;
  position: relative;
  animation: modalIn 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 96vh;
  overflow-y: auto;
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
#projectDetailModal .close-modal {
  position: absolute;
  top: 0.5em;
  right: 0.7em;
  font-size: 3.2rem;
  color: #0ea5e9;
  font-weight: 900;
  background: #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 rgba(14, 165, 233, 0.1);
  border: 2px solid #e0e7ef;
  cursor: pointer;
  z-index: 10;
  transition:
    color 0.15s,
    background 0.15s,
    box-shadow 0.15s;
}
#projectDetailModal .close-modal:hover {
  color: #fff;
  background: #0ea5e9;
  box-shadow: 0 4px 16px 0 rgba(14, 165, 233, 0.18);
  border-color: #0ea5e9;
}
#projectDetailContent h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5em;
}
#projectDetailContent .location {
  font-size: 1.02rem;
  color: #64748b;
  margin-bottom: 0.7em;
  font-style: italic;
}
#projectDetailContent p {
  color: #334155;
  margin-bottom: 1em;
}
#projectDetailContent img {
  border-radius: 10px;
  margin-bottom: 1em;
}
#projectDetailContent > div {
  margin-top: 1em;
}
#projectDetailContent img[style*="width:90px"] {
  width: 200px !important;
  height: 200px !important;
  margin-bottom: 0;
  border-radius: 12px;
  border: 1.5px solid #e0e7ef;
  box-shadow: 0 2px 8px 0 rgba(30, 41, 59, 0.1);
  object-fit: cover;
}
@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  #projectDetailModal .modal-content {
    padding: 1.2em 0.7em 1em 0.7em;
    max-width: 98vw;
  }
}
.main-swiper {
  width: 100vw !important;
  max-width: 100vw !important;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  border-radius: 0;
}
.main-swiper .swiper-slide img {
  width: 100vw;
  max-width: 100vw;
  height: 80vh;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 0;
}
@media (max-width: 900px) {
  .main-swiper,
  .main-swiper .swiper-slide img {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 500px !important;
    border-radius: 0;
  }
}
@media (max-width: 768px) {
  .swiper .swiper-slide img {
    height: 360px;
    max-width: 100vw;
    border-radius: 6px;
  }
}
nav .logo-link {
  margin: 10px 0;
}
.main-logo {
  height: 80px;
  width: auto;
  border-radius: 50%;
}

@media (max-width: 900px) {
  .mobile-nav ul li a {
    position: relative;
  }
}
@media (min-width: 901px) {
  .desktop-nav li a {
    position: relative;
  }
  .desktop-nav li a:hover::after {
    width: 100%;
  }
}
nav ul li a {
  position: relative;
}
nav ul li a:hover::after {
  width: 100%;
}
.desktop-nav li a,
.mobile-nav ul li a {
  display: inline-block;
  position: relative;
}
nav ul li a:hover::after {
  width: 100%;
}
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.32);
  z-index: 1200;
  transition: opacity 0.3s;
}
.nav-overlay.active {
  display: block;
  opacity: 1;
}
.mobile-nav {
  display: none;
  background: #fff;
  flex-direction: column;
  padding: 0;
  box-shadow: 2px 0 24px rgba(0, 0, 0, 0.18);
}
.mobile-nav.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 85vw;
  max-width: 340px;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  animation: slideInNav 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 2px 0 24px rgba(0, 0, 0, 0.18);
  padding: 0;
}
@keyframes slideInNav {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px 12px 24px;
  min-height: 60px;
}
.mobile-nav-logo {
  height: 38px;
  width: auto;
  border-radius: 50%;
}
.close-nav {
  background: 0 0;
  border: none;
  font-size: 2.2rem;
  color: #111713;
  cursor: pointer;
  margin-left: 8px;
  line-height: 1;
}
.mobile-nav ul {
  list-style: none;
  padding: 1px 0 32px 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1 1 auto;
  background: #fff;
  width: 100%;
  max-height: 100%;
}
.mobile-nav ul li {
  margin: 0 0 8px 0;
  min-height: 40px;
}
.mobile-nav ul li:last-child {
  margin-bottom: 0;
}
.mobile-nav ul li a {
  display: block;
  color: #111713;
  text-decoration: none;
  font-size: 1.18rem;
  font-weight: 500;
  padding: 5px 32px;
  border-radius: 8px;
  transition:
    background 0.2s,
    color 0.2s;
}
.mobile-nav ul li a:hover {
  background: #eaf7ed;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}
.about-hero-img {
  width: 100vw;
  max-width: 100vw;
  height: 320px; /* or a value that fits your design */
  object-fit: contain; /* ensures the whole image is visible */
  object-position: top; /* always shows the top of the image */
  display: block;
  margin: 0 auto;
  /* border-radius: 12px; */
}

@media (max-width: 900px) {
  .about-hero-img {
    height: 220px;
    /* border-radius: 8px; */
  }
}

@media (max-width: 600px) {
  .about-hero-img {
    width: 100vw;
    max-width: 100vw;
    height: auto;
    min-height: 140px;
    object-fit: contain;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
  }
  .right-cont {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 10px;
  }
}
@media (max-width: 900px) {
  .desktop-nav {
    display: none !important;
  }
  .hamburger {
    display: flex !important;
    z-index: 1400;
  }
  .mobile-nav {
    display: none;
  }
  .mobile-nav.active {
    display: flex;
  }
  .nav-overlay {
    display: none;
  }
  .nav-overlay.active {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-nav,
  .nav-overlay {
    display: none !important;
  }
  .desktop-nav {
    display: flex !important;
  }
}
.swiper-slide {
  box-shadow: none !important;
  border: none !important;
}
.contact-section {
  background: #fff;
  padding: 60px 0 40px 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  animation: fadeInSection 1.2s ease 0.8s forwards;
}
.contact-container {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.contact-info-box {
  background: #17843b;
  color: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  min-width: 300px;
  max-width: 350px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}
.contact-info-box h2 {
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info-list li {
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-icon {
  font-size: 1.2rem;
  background: #fff;
  color: #17843b;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatUp 2.2s ease-in-out infinite alternate;
}
.contact-social {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}
.contact-social a {
  display: inline-block;
  font-size: 1.4rem;
  color: #fff;
  background: #17843b;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
  border: 2px solid #fff;
}
.contact-social a:hover {
  background: #fff;
  color: #17843b;
}
.contact-form {
  background: #fff;
  border-radius: 16px;
  padding: 0 32px;
  min-width: 320px;
  max-width: 500px;
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 40px;
  color: #222;
}
.contact-form input,
.contact-form textarea {
  resize: none;
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  background: #fafbfc;
  color: #222;
  outline: 0;
  transition: border 0.2s;
  margin-bottom: 16px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #17843b;
}
.contact-form button {
  background: #17843b;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition:
    background 0.3s,
    box-shadow 0.3s,
    transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(23, 132, 59, 0.15);
  display: block;
}
.contact-form button:hover {
  background: #126c2e;
  box-shadow: 0 4px 16px rgba(23, 132, 59, 0.25);
  transform: scale(0.97);
}
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
    padding: 20px;
  }
  .contact-form,
  .contact-info-box {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}
.testimonial-section {
  background: #fff;
  padding: 60px 0 40px 0;
  opacity: 0;
  animation: fadeInSection 1.2s ease 0.6s forwards;
}
.testimonial-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}
.testimonial-swiper {
  max-width: 1100px;
}
.about-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 32px;
  border-radius: 12px;
  opacity: 0;
  animation: fadeInSection 1.2s ease 0.2s forwards;
}
.about-section h1 {
  font-size: 2.5rem;
  color: #17843b;
  margin-bottom: 16px;
}
.about-section h2 {
  font-size: 1.5rem;
  color: #333;
  margin-top: 24px;
  margin-bottom: 8px;
}
.about-section p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 12px;
}
.about-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.about-hero-img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 600px) {
  .about-hero-img {
    position: static;
    width: 100vw;
    max-width: 100vw;
    height: auto;
    min-height: 180px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    margin: 0 auto;
  }
  .about-hero {
    position: relative;
    width: 100vw;
    min-height: unset;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: #f7f7f7;
  }
  .about-hero-text {
    position: static;
    color: #fff;
    text-align: center;
    font-size: 1.2rem;
    margin: 0.5rem 0 0.5rem 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  }
}
.about-hero-text {
  position: absolute;
  bottom: 16vh;
  left: 5vw;
  z-index: 2;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  margin: 0;
}
.about-hero-text h1 {
  font-size: 2.2rem;
  margin: 0;
}
@media (max-width: 900px) {
  .img-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .two-piece {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.vision-mission-section {
  background: #fff;
  padding: 60px 0 40px 0;
}
.vision-mission-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.mission-block,
.vision-block {
  flex: 1 1 480px;
  background: #fff;
  border-radius: 20px;
  padding: 32px 32px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 320px;
  max-width: 520px;
}
.mission-block h2,
.vision-block h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  font-family: Montserrat, Arial, sans-serif;
}
.mission-block p,
.vision-block p {
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.6;
}
.mission-img,
.vision-img {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  margin-top: 18px;
  margin-bottom: 0;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  align-self: center;
}
.mission-block img {
  margin-bottom: 18px;
  margin-top: 0;
}
@media (max-width: 1000px) {
  .vision-mission-container {
    flex-direction: column;
    gap: 32px;
    padding: 0 2vw;
  }
  .mission-block,
  .vision-block {
    max-width: 100%;
    min-width: 0;
    align-items: center;
    text-align: center;
  }
  .mission-block h2,
  .mission-block p,
  .vision-block h2,
  .vision-block p {
    text-align: left;
    width: 100%;
  }
}
.testimonial-card {
  border-radius: 12px;
  padding: 32px 28px 18px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 180px;
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
  height: 100%;
}
.testimonial-quote {
  font-size: 2.2rem;
  color: #d2f2e3;
  margin-bottom: 10px;
  line-height: 1;
}
.testimonial-text {
  font-size: 1.08rem;
  color: #333;
  margin: 0 0 22px 0;
  text-align: left;
  min-height: 60px;
}
.testimonial-user-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 0;
}
.testimonial-avatar {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  min-height: 38px !important;
  max-width: 38px !important;
  max-height: 38px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid #d2f2e3;
  flex-shrink: 0;
  background: #fff;
  display: block;
}
.testimonial-user-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.testimonial-name {
  font-weight: 700;
  color: #222;
  font-size: 1.08rem;
  margin-bottom: 1px;
  line-height: 1.2;
}
.testimonial-location {
  color: #8a8a8a;
  font-size: 0.97rem;
  font-weight: 400;
  line-height: 1.2;
}
.testimonial-swiper .swiper-pagination {
  margin-top: 24px;
  color: #17843b;
  font-weight: 600;
}
.testimonial-swiper .swiper-button-next,
.testimonial-swiper .swiper-button-prev {
  color: #17843b;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  width: 28px;
  height: 28px;
  font-size: 1.2rem;
}
body,
html {
  width: 100vw;
  overflow-x: hidden;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  background: #f5f5f5;
  color: #222;
  font-size: 1rem;
  font-weight: 400;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-radius: 0;
  padding: 2.5rem 4vw 2.5rem 4vw;
  width: 100vw;
  max-width: 100vw;
  margin: 0 auto;
  gap: 32px;
}
.footer-about {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-weight: 400;
  color: #222;
  letter-spacing: normal;
}
.footer-logo {
  width: 140px;
  margin-bottom: 12px;
}
.footer-links {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #17843b;
  font-weight: 700;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links ul li a {
  color: #222;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-links ul li a:hover {
  color: #17843b;
}
.footer-contact {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #17843b;
  font-weight: 700;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact ul li {
  font-size: 1rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-social {
  margin-top: 16px;
  display: flex;
  gap: 12px;
}
.footer-social a {
  display: inline-block;
  font-size: 1.3rem;
  color: #17843b;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #246021;
}
.footer-bottom {
  text-align: center;
  padding: 18px 0 10px 0;
  color: #888;
  font-size: 1rem;
  background: #fff;
  width: 100vw;
  margin: 0 auto;
  border-top: 1px solid #eee;
}
@media (max-width: 900px) {
  .about-hero-text {
    font-size: 2rem;
    padding: 1rem 1.5rem;
    max-width: 70vw;
    margin-left: 3vw;
  }
  .about-hero-text h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 600px) {
  .about-hero-text {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    max-width: 90vw;
    margin-left: 2vw;
  }
  .about-hero-text h1 {
    font-size: 1.5rem;
  }
}
.footer-logo {
  width: 120px;
  margin-bottom: 12px;
}
.footer-links {
  flex: 1 1 180px;
}
.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #17843b;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li {
  margin-bottom: 8px;
}
.footer-links ul li a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links ul li a:hover {
  color: #17843b;
}
.footer-contact {
  flex: 1 1 220px;
}
.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #17843b;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #444;
}
.footer-contact ul li span {
  margin-right: 8px;
}
.footer-social {
  margin-top: 16px;
}
.footer-social a {
  display: inline-block;
  margin-right: 12px;
  font-size: 1.3rem;
  color: #17843b;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #246021;
}
.footer-bottom {
  text-align: center;
  padding: 24px 0 12px 0;
  color: #888;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 24px;
    padding: 24px 16px;
  }
  .footer-about {
    flex: 0;
  }
}
body,
html {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.testimonial-section {
  margin: 60px auto 0 auto;
  max-width: 1100px;
  padding: 0 32px 40px 32px;
}
.testimonial-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
}
.testimonial-swiper {
  width: 100%;
  height: 340px;
  margin-bottom: 24px;
}
.testimonial-swiper .swiper-wrapper {
  display: flex;
}
.testimonial-swiper .swiper-slide {
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: auto;
}
@media (min-width: 900px) {
  .testimonial-swiper .swiper-slide {
    max-width: 50%;
  }
  .testimonial-card {
    max-width: 95%;
    min-width: 320px;
    margin: 0 12px;
  }
}
@media (max-width: 899px) {
  .testimonial-swiper .swiper-slide {
    width: 100% !important;
    max-width: 100%;
  }
  .testimonial-card {
    max-width: 98vw;
    min-width: 0;
    margin: 0 auto;
  }
}
.testimonial-slide img {
  width: 340px;
  height: 340px;
  object-fit: cover;
  border-radius: 18px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.2s;
  margin: 0 auto;
  display: block;
}
.testimonial-slide img:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.testimonial-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: #fff;
  padding: 32px 24px;
  border-radius: 12px;
  max-width: 420px;
  margin: auto;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  position: relative;
}
.close-modal {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 2rem;
  color: #222;
  cursor: pointer;
}
.modal-content p {
  font-size: 1.1rem;
  color: #222;
  margin: 0;
}
.focus-section {
  margin: 60px auto 0 auto;
  max-width: 1100px;
  padding: 0 32px 40px 32px;
}
.focus-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
}
.focus-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.focus-card {
  background: #17843b;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  padding: 32px 36px;
  gap: 24px;
  color: #fff;
  box-sizing: border-box;
}
.focus-number {
  background: #eaf7ed;
  color: #17843b;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  flex-shrink: 0;
}
.focus-content h3 {
  margin: 0 0 10px 0;
  font-size: 1.3rem;
  font-weight: 600;
}
.focus-content p {
  margin: 0;
  font-size: 1.05rem;
  color: #eaf7ed;
}
@media (max-width: 800px) {
  .focus-cards {
    gap: 20px;
  }
  .focus-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 30px;
  }
  .focus-number {
    margin-bottom: 12px;
    margin-right: 0;
  }
}
.stats-section {
  margin: 40px auto 0 auto;
  padding: 0 32px;
  max-width: 1100px;
}
.stats-container {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-card {
  background: #f6fcf7;
  border-radius: 10px;
  padding: 32px 24px;
  min-width: 220px;
  text-align: center;
  flex: 1 1 220px;
  box-sizing: border-box;
}
.stat-icon {
  font-size: 2.2rem;
  color: #2d7a2c;
  margin-bottom: 12px;
}
.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 1.1rem;
  color: #444;
}
.about-section {
  background: #fff;
  border-radius: 12px;
  margin: 40px auto;
  padding: 40px 32px;
  max-width: 1100px;
}
.flex-container {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.left-cont {
  flex: 2 1 350px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.left-cont h3 {
  color: #2d7a2c;
  font-size: 2rem;
  margin-bottom: 0;
  font-weight: 600;
}
.left-cont h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 16px 0;
}
.left-cont img {
  max-width: 481px;
  height: 392px;
  border-radius: 10px;
  margin-top: 12px;
}
.right-cont {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.two-piece {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.two-piece img {
  width: 100%;
  max-width: 360px;
  height: 300px;
  border-radius: 10px;
}
.right-cont p {
  font-size: 1.1rem;
  color: #444;
  margin: 0 0 12px 0;
}
.right-cont button {
  background: #2d7a2c;
  width: 200px;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.18s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(23, 132, 59, 0.18);
}
.right-cont button:hover {
  background: #246021;
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(23, 132, 59, 0.18);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.main-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
nav {
  background: #171a18;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
nav header {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  transition: max-height 0.3s;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: 0 0;
  border: none;
  position: absolute;
  right: 16px;
  top: 15px;
  z-index: 100;
}
.hamburger span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger span:first-child {
  width: 28px;
}
.hamburger span:nth-child(2) {
  width: 16px;
}
.hamburger span:nth-child(3) {
  width: 22px;
}
@media (max-width: 900px) {
  nav {
    padding: 0 16px;
  }
  nav ul {
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100vw;
    max-height: 0;
    overflow: hidden;
    gap: 0;
    border-radius: 0 0 16px 16px;
    z-index: 1000;
    transition:
      max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      box-shadow 0.3s;
  }
  nav ul.open {
    max-height: 400px;
    padding: 16px 0;
    gap: 0;
    overflow: visible;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
  }
  nav ul li {
    width: 100%;
    text-align: start;
    margin: 0;
  }
  nav ul li:last-child {
    border-bottom: none;
  }
  nav ul li a {
    display: block;
    color: #fff;
    text-align: left;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 18px 0;
    border-radius: 0;
    transition:
      background 0.2s,
      color 0.2s;
    letter-spacing: 0.5px;
  }
  nav ul li a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #eaf7ed;
  }
  .hamburger {
    display: flex;
    z-index: 1100;
  }
  nav ul.open {
    max-height: 300px;
    padding: 16px 0;
    gap: 12px;
    overflow: visible;
  }
  nav ul li {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .hamburger {
    display: flex;
  }
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background 0.2s;
}
nav ul li a:hover {
  text-decoration: underline;
  text-decoration-color: #e6ece8;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}
.hero-section {
  width: 100%;
  margin: 0 auto;
  background: #f7f7f7;
}
@media (max-width: 600px) {
  .main-container {
    width: 100%;
    padding: 0;
  }
  .hero-section {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    background: #f7f7f7;
  }
  .hero-section img {
    width: 100vw;
    max-width: 100vw;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
  }
  .focus-section {
    padding: 0 10px;
  }
}
.swiper {
  width: 100%;
  max-width: 1200px;
  height: 70vh;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: #eee;
}
.swiper-slide img {
  width: 100%;
  height: 70vh;
  object-fit: contain;
  border-radius: 0;
  display: block;
  background: #f7f7f7;
}
.swiper-button-next,
.swiper-button-prev {
  color: #17843b;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.2s;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 10px !important;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #eaf7ed;
}
.flex-container {
  display: flex;
  gap: 125px;
  margin-top: 40px;
}
.left-cont img {
  width: 100%;
  border-radius: 8px;
}
@media (max-width: 600px) {
  .img-container img,
  .left-cont img {
    width: 100vw;
    max-width: 80vw;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
  }
}
.right-cont img {
  width: 50%;
  height: auto;
  border-radius: 8px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 40px 0;
  opacity: 0;
  animation: fadeInSection 1.2s ease 0.4s forwards;
}
@keyframes fadeInSection {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 24px 0 140px;
    padding: 20px;
  }
  .project-card img {
    height: 180px;
    object-fit: cover;
    width: 100%;
    display: block;
  }
  .project-info {
    padding: 16px;
  }
}
@media (max-width: 600px) {
  .projects-grid {
    gap: 12px;
    margin: 12px 0;
  }
  .project-card img {
    height: 120px;
    object-fit: cover;
    width: 100%;
    display: block;
    max-width: 100vw;
    border-radius: 8px;
    margin: 0 auto;
  }
  .project-info h3 {
    font-size: 1rem;
  }
  .project-info {
    padding: 10px;
  }
}
.project-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  cursor: pointer;
  transition:
    box-shadow 0.2s,
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  transform: translateY(-10px) scale(1.03);
}
.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.project-info {
  padding: 20px;
}
.project-info h3 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
}
.project-info .location {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
@media (max-width: 600px) {
  .about-section {
    padding: 0 4px;
  }
  .about-section h1 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .about-section h2 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .about-section h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  .about-section p {
    font-size: 0.98rem;
    margin-bottom: 8px;
  }
}
@media (max-width: 600px) {
  .focus-card {
    padding: 24px 8px;
  }
  .testimonial-section {
    margin: 24px auto 0 auto;
    max-width: 100vw;
    padding: 0 4vw 24px 4vw;
  }
  .testimonial-title {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }
  .testimonial-swiper {
    width: 100%;
    height: auto;
    min-height: 220px;
    margin-bottom: 12px;
  }
  .testimonial-slide img {
    width: 90vw;
    max-width: 220px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
  }
  .testimonial-card {
    padding: 18px 8px 10px 8px;
    min-width: 0;
    max-width: 98vw;
    border-radius: 8px;
    font-size: 0.95rem;
  }
  .testimonial-user-row {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  .testimonial-avatar {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    border-radius: 50% !important;
  }
}
