/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #f7f9fa;
  color: #222;
  padding-top: 108px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 110px;
  width: 100%;
  z-index: 1000;
  background: #0e302f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  box-shadow: 0 2px 8px rgba(20, 108, 67, 0.04);
  transition: background 0.2s, box-shadow 0.2s;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0px;
}

.logo img {
  height: 70px;
}

.logo span {
  font-size: 1.3rem;
  font-weight: bold;
  color: #146c43;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08rem;
  transition: color 0.1s;
}

.nav-links li a:hover {
  color: #198754;
}

.burger {
  display: none;
  font-size: 28px;
  color: #198754;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(90deg, #176d4b 0%, #2a8c6d 100%);
  color: #fff;
  padding: 180px 0 80px 0;
  text-align: left;
}

.hero-content {
  max-width: 700px;
  margin: 0 0 0px 100px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #e6f4ee;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}

.btn.primary {
  background: #27ce80;
  color: #fff;
}

.btn.primary:hover {
  background: #146c43;
}

.btn.secondary {
  background: #198754;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn.secondary:hover {
  background: #ffffff;
  color: #198754;
}

/* Stats Section */
.stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  background: #e6f4ee;
  padding: 40px 0;
  margin-bottom: 0;
  border-bottom: 1px solid #d0f0e0;
}

.stat {
  text-align: center;
}

.stat span {
  font-size: 2.2rem;
  color: #146c43;
  font-weight: bold;
  display: block;
}

.stat p {
  font-size: 1.1rem;
  color: #333;
}

/* About Section */
.section.about {
  background: #c1d4ca;
  padding: 40px 30px 40px 30px;
  text-align: center;
}

.about h2 {
  color: #146c43;
  font-size: 2.2rem;
  margin-bottom: 18px;
  font-weight: bold;
}

.about p {
  color: #444;
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto 28px auto;
}

.about ul {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  list-style: none;
  margin: 24px 0 32px 0;
  padding: 0;
  justify-content: center;
}

.about ul li {
  background: #e6f4ee;
  color: #146c43;
  padding: 10px 22px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 1rem;
  box-shadow: 0 1px 4px rgba(20, 108, 67, 0.06);
}

.about .btn.primary {
  margin-top: 10px;
}

/* Section base */
.section {
  padding: 60px 30px;
  text-align: center;
  background: #f7f9fa;
}

/* Services Section */
#services.section {
  padding: 70px 30px 50px 30px;
  background: #f7f9fa;
  text-align: center;
}

#services h2 {
  color: #146c43;
  font-size: 2.4rem;
  font-family: 'Segoe UI Semibold', 'Segoe UI', Arial, sans-serif;
  margin-bottom: 36px;
  letter-spacing: 1px;
  font-weight: 700;
  text-shadow: 0 2px 12px #e6f4ee;
}

/* Project Section */
#projects.section {
  padding: 70px 30px 50px 30px;
  background: #f7f9fa;
  text-align: center;
}

#projects h2 {
  color: #146c43;
  font-size: 2.4rem;
  font-family: 'Segoe UI Semibold', 'Segoe UI', Arial, sans-serif;
  margin-bottom: 15px;
  letter-spacing: 1px;
  font-weight: 700;
  text-shadow: 0 2px 12px #e6f4ee;
}

#projects h1 {
  font-size: 1rem;
  color: #000000;
  margin-top: 10px;
  /* margin-left: 300px;
  margin-right: 300px; */
  margin-bottom: 20px;
  text-align: center;
  font-weight: 400;
}

/* Enhanced Cards */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
}

.card {
  background: linear-gradient(135deg, #e6f4ee 60%, #f7f9fa 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(20, 108, 67, 0.10), 0 1.5px 6px rgba(20, 108, 67, 0.04);
  padding: 36px 28px;
  width: 320px;
  max-width: 100%;
  text-align: left;
  margin-bottom: 24px;
  transition:
    transform 0.25s cubic-bezier(.4, 2, .6, 1),
    box-shadow 0.25s cubic-bezier(.4, 2, .6, 1),
    background 0.25s;
  position: relative;
  border: 2px solid #e6f4ee;
}

.card:hover {
  transform: translateY(-10px) scale(1.03) rotate(-1deg);
  box-shadow: 0 8px 32px 0 rgba(20, 108, 67, 0.18), 0 2px 8px rgba(20, 108, 67, 0.10);
  background: linear-gradient(135deg, #d0f0e0 70%, #b2f0df 100%);
  border-color: #198754;
}

.card h3 {
  margin-bottom: 14px;
  color: #146c43;
  font-family: 'Segoe UI Semibold', 'Segoe UI', Arial, sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.card:hover h3 {
  color: #198754;
  text-shadow: 0 2px 8px #b2f0df80;
}

.card p {
  color: #333;
  font-size: 1.08rem;
  line-height: 1.6;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin-bottom: 0;
  transition: color 0.2s;
}

.card:hover p {
  color: #146c43;
}

.project-status {
  display: block;
  margin-top: 18px;
  font-size: 1rem;
  color: #198754;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Testimonials Section */
.section.testimonials {
  padding: 70px 30px 50px 30px;
  background: #f7f9fa;
  text-align: center;
}

.section.testimonials h2 {
  color: #146c43;
  font-size: 2.4rem;
  font-family: 'Segoe UI Semibold', 'Segoe UI', Arial, sans-serif;
  margin-bottom: 36px;
  letter-spacing: 1px;
  font-weight: 700;
  text-shadow: 0 2px 12px #e6f4ee;
}

/* Testimonial Card Styles */
.testimonials .card {
  min-height: 210px;
  font-weight: 20;
  background: linear-gradient(120deg, #e6f4ee 70%, #f7f9fa 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(20, 108, 67, 0.10), 0 1.5px 6px rgba(20, 108, 67, 0.04);
  padding: 32px 26px 24px 26px;
  width: 350px;
  max-width: 100%;
  text-align: left;
  margin-bottom: 24px;
  border: 2px solid #e6f4ee;
  position: relative;
  transition:
    transform 0.25s cubic-bezier(.4, 2, .6, 1),
    box-shadow 0.25s cubic-bezier(.4, 2, .6, 1),
    background 0.25s,
    border-color 0.2s;
}

.testimonials .card:hover {
  transform: translateY(-10px) scale(1.03) rotate(-1deg);
  box-shadow: 0 8px 32px 0 rgba(20, 108, 67, 0.18), 0 2px 8px rgba(20, 108, 67, 0.10);
  background: linear-gradient(120deg, #d0f0e0 80%, #b2f0df 100%);
  border-color: #198754;
}

.testimonials .card p {
  color: #333;
  font-size: 1rem;
  line-height: 1.2;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin-bottom: 0;
  font-style: italic;
  transition: color 0.2s;
}

.testimonials .card:hover p {
  color: #146c43;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.avatar {
  background: linear-gradient(135deg, #b2f0df 60%, #e6f4ee 100%);
  color: #146c43;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-weight: bold;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px #b2f0df60;
  border: 2px solid #d0f0e0;
}

.testimonial-author div {
  display: flex;
  flex-direction: column;
  font-size: 0.6rem;
  line-height: 0.6;
  color: #146c43;
  font-family: 'Segoe UI Semibold', 'Segoe UI', Arial, sans-serif;
}

.testimonial-author strong {
  font-size: 1.08rem;
  color: #198754;
  font-weight: 700;
  margin-bottom: 2px;
}

/* Contact Section Layout */
.contact-form {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 64px;
  flex-wrap: wrap;
  background: #f7f9fa;
  padding: 80px 0;
}

.contact-info {
  flex: 1 1 420px;
  max-width: 500px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(20, 108, 67, 0.07);
  padding: 48px 36px 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 320px;
  align-items: flex-start;
}

.contact-info h2 {
  color: #12232e;
  font-size: 2rem;
  align-self: flex-start;
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-left: 0;
  text-align: left;
}

.contact-info p {
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin-bottom: 18px;
  font-style: normal;
  margin-left: 0;
  text-align: left;
}

.contact-info h3 {
  color: #146c43;
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 600;
  margin-left: 0;
  text-align: left;
}

.contact-info .office-row {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-bottom: 18px;
}

.contact-info .office-block {
  flex: 1 1 0;
  min-width: 0;
  line-height: 1.5;
  font-size: 0.97rem;
}

.contact-info strong {
  font-size: 0.9rem;
  color: #12232e;
  font-weight: 600;
  margin-left: 0;
  font-weight: bolder;
}

.contact-info div,
.contact-info p {
  color: #333;
  font-size: small;
  margin-bottom: 10px;
  text-align: left;
}

.contact-info a {
  color: #198754;
  text-decoration: none;
  word-break: break-all;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Right: Contact Form */
.contact-form form {
  flex: 1 1 520px;
  max-width: 600px;
  background: #fafcfc;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(20, 108, 67, 0.10);
  padding: 40px 32px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
  min-width: 320px;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.contact-form .form-row {
  display: flex;
  gap: 24px;
}

.contact-form .form-row > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 1rem;
  color: #222;
  margin-bottom: 6px;
  font-weight: 500;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 14px;
  border: 1px solid #d0f0e0;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
  color: #222;
  margin-bottom: 0;
  transition: border-color 0.2s;
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #198754;
  outline: none;
}

.contact-form button {
  background: #198754;
  color: #fff;
  border: none;
  padding: 16px 0;
  border-radius: 8px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(20, 108, 67, 0.08);
  margin-top: 8px;
}

.contact-form button:hover {
  background: #146c43;
  box-shadow: 0 4px 16px rgba(20, 108, 67, 0.13);
}
#msg{
  color: #61b752;
  margin-top: -20px;
  display: block;
}

/* Footer */
footer {
  background: #131b26;
  color: #b2f0df;
  padding: 48px 10px 24px 48px;
  text-align: left;
  border-top: 4px solid #f7f9fa;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto 16px auto;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
  margin-right: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo img {
  height: 38px;
}

.footer-logo span {
  font-size: 1.35rem;
  font-weight: lighter;
  color: #27ce80;
}

.footer-col h3 {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #a2b9c8;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-col p {
  color: #a2b9c8;
  font-size: 1rem;
  margin-bottom: 18px;
  margin-top: 0;
}

.footer-social {
  display: flex;
  gap: 18px;
  margin: 18px 0 0 0;
}

.footer-social a {
  color: #b2f0df;
  font-size: 1rem;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
}

.footer-social a:hover {
  color: #27ce80;
}

.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 14px;
}

.newsletter-form input {
  padding: 12px 14px;
  border-radius: 8px 0 0 8px;
  border: none;
  width: 160px;
  font-size: 1rem;
  background: #fff;
  color: #222;
  outline: none;
  height: 35px;
}

.newsletter-form input::placeholder {
  color: #a2b9c8;
}

.newsletter-form button {
  background: #198754;
  color: #fff;
  border: none;
  padding: 0 18px;
  border-radius: 0 8px 8px 0;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  height: 35px;
  min-width: 40px;
}

.newsletter-form button:hover {
  background: #146c43;
}

footer p.copyright {
  text-align: center;
  color: #66ffcc;
  margin-top: 32px;
  font-size: 1rem;
}

/* Responsive Styles - Unified and Improved */
@media (max-width: 1200px) {
  .footer-content {
    max-width: 98vw;
    padding: 0 24px;
  }
  .hero-content {
    margin: 0 0 0 40px;
  }
}

@media (max-width: 1100px) {
  .footer-content {
    flex-wrap: wrap;
    gap: 24px;
    padding: 0 16px;
  }
  .footer-col {
    min-width: 180px;
    margin-right: 0;
  }
  .hero-content {
    margin: 0;
    padding: 0 10px;
  }
}

@media (max-width: 1000px) {
  .contact-form {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
  }
  .contact-info,
  .contact-form form {
    max-width: 98vw;
    width: 100%;
    min-width: 0;
    padding: 32px 12px 28px 12px;
  }
  .contact-info .office-row {
    flex-direction: column;
    gap: 8px;
  }
  .footer-content {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    padding: 0 16px;
  }
  .footer-col {
    width: 100%;
    min-width: 0;
    margin-bottom: 18px;
  }
  .hero-content {
    margin: 0;
    padding: 0 10px;
  }
}

@media (max-width: 900px) {
  .cards,
  .testimonials .cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .card,
  .testimonials .card {
    width: 95%;
    min-width: 0;
  }
  .stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .about ul {
    flex-direction: column;
    gap: 14px;
  }
  .section,
  .about,
  #services.section,
  #projects.section {
    padding: 40px 10px;
  }
}

@media (max-width: 800px) {
  .navbar {
    padding: 12px 16px;
  }
  .footer-content {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    padding: 0 8px;
  }
  .footer-col {
    width: 100%;
    min-width: 0;
    margin-bottom: 18px;
  }
  .hero-content {
    margin: 0;
    padding: 0 6px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #34c3be;
    position: absolute;
    top: 80px;
    right: 0;
    width: 150px;
    box-shadow: 0 2px 8px rgba(20, 108, 67, 0.10);
    z-index: 1001;
    gap: 10px;
    border-radius: 10px;
    
  }
  .nav-links li a {
  color: #ffffff;
  
  padding-left: 40px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08rem;
  transition: color 0.1s;
}

  .nav-links li a:hover {
    color: #198754;
  }

  .nav-links.show {
    display: flex;
    
  }
  .burger {
    display: block;
  }
  .hero-content {
    text-align: left;
    padding: 0 6px;
  }
  .stats {
    flex-direction: column;
    gap: 20px;
    
  }
  .about ul {
    flex-direction: column;
    gap: 10px;
    
  }
}

@media (max-width: 600px) {
  .contact-form .form-row {
    flex-direction: column;
    gap: 0;
  }
  .contact-form,
  .contact-info,
  .contact-form form {
    padding: 16px 4px;
  }
  .footer-content {
    padding: 0 2px;
  }
  .footer-logo img {
    height: 28px;
  }
  .newsletter-form input {
    width: 100px;
    font-size: 0.95rem;
    padding: 10px 8px;
  }
  .newsletter-form button {
    font-size: 0.95rem;
    padding: 0 10px;
    height: 32px;
    min-width: 32px;
  }
  .section,
  .about,
  #services.section,
  #projects.section {
    padding: 24px 2px;
  }
  .hero {
    background: linear-gradient(90deg, #176d4b 0%, #2a8c6d 100%);
    color: #fff;
    padding: 160px 0 80px 0;
    text-align: left;
    padding: 40px 0 49px 0;
  }
  
  .hero h1 {
    margin-top: 0px;
    font-size: 2rem;
  }
  .hero-content {
  max-width: 700px;
  margin: 0 0 0px 10px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #e6f4ee;
}


  .about h2,
  #services h2,
  #projects h2 {
    font-size: 1.3rem;
  }
}

/* Color Theme Consistency for Responsive */
@media (max-width: 900px) {
  body,
  .about,
  .section,
  #services.section,
  #projects.section,
  .contact-form,
  .contact-info,
  .card,
  .testimonials .card {
    background: #f7f9fa !important;
    color: #222 !important;
  }
  .testimonials .card:hover p {
  color: #146c43;
}
  .footer-content,
  footer {
    background: #131b26 !important;
    color: #b2f0df !important;
  }
  .footer-col h3,
  .footer-logo span {
    color: #27ce80 !important;
  }
  .footer-col ul li a {
    color: #b2f0df !important;
  }
}


/* animation */

