/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: #fff;
    margin-bottom: 0.2rem;
}

.logo-subtitle {
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    transition: opacity 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-image: url('../images/hero-sec.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 5rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
    max-width: 900px;
}

.hero-title strong {
    font-weight: 700;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 850px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-description strong {
    font-weight: 600;
}

.hero-btn {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 1.1rem 3rem;
    background-color: #2d5f2e;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(45, 95, 46, 0.4);
}

.hero-btn:hover {
    background-color: #1f4020;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(45, 95, 46, 0.5);
}

.hero-btn:active {
    transform: translateY(-1px);
}

/* Services Section */
.services {
    background-color: #f5f5f5;
    padding: 6rem 0;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.services-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.services-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #999;
    max-width: 1100px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 2rem;
}

.service-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.service-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d5f2e;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.service-description {
    font-size: 1rem;
    color: #999;
    line-height: 1.7;
    font-weight: 300;
}

/* Challenges Section */
.challenges {
    background-color: #fff;
    padding: 6rem 0;
}

.challenges-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.challenges-content {
    color: #1a1a1a;
}

.challenges-title {
    font-size: 3rem;
    font-weight: 600;
    color: #2d5f2e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.challenges-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.challenges-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2rem 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d5f2e;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #999;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.challenges-list {
    list-style: none;
    padding: 0;
}

.challenges-list li {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    font-weight: 300;
}

.challenges-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5f2e;
    font-weight: 700;
    font-size: 1.2rem;
}

.challenges-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.challenges-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* About Us Section */
.about {
    background-color: #f5f5f5;
    padding: 6rem 0;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-content {
    color: #1a1a1a;
}

.about-title {
    font-size: 3rem;
    font-weight: 600;
    color: #2d5f2e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-description {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-description strong {
    color: #2d5f2e;
    font-weight: 600;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.value-item {
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    border-left: 4px solid #2d5f2e;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.value-item h4 {
    font-size: 1.3rem;
    color: #2d5f2e;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.value-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    font-weight: 300;
}

/* Testimonials Section */
.testimonials {
  background-color: #fff;
  padding: 6rem 0;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.testimonials-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  color: #2d5f2e;
  margin-bottom: 1.5rem;
}

.testimonials-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #999;
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.8;
  font-weight: 300;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.testimonial-card {
  background: #f5f5f5;
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
  flex: 1;
}

.testimonial-quote p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  font-weight: 300;
  font-style: italic;
  position: relative;
}

.testimonial-quote p::before {
  content: '"';
  font-size: 4rem;
  color: #2d5f2e;
  opacity: 0.2;
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 2px solid #e0e0e0;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #2d5f2e;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.3rem;
}

.author-position {
  font-size: 0.9rem;
  color: #999;
  font-weight: 300;
}

/* FAQ Section */
.faq {
  background-color: #f5f5f5;
  padding: 6rem 0;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 3rem;
}

.faq-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  color: #2d5f2e;
  margin-bottom: 1.5rem;
}

.faq-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #999;
  max-width: 700px;
  margin: 0 auto 4rem;
  line-height: 1.8;
  font-weight: 300;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f8f8f8;
}

.faq-question h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  font-size: 1.5rem;
  color: #2d5f2e;
  font-weight: 300;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  font-weight: 300;
  margin: 0;
}

/* Work With Us Section */
.work-with-us {
  background-image: url('../images/want-to-work-with-us.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 6rem 0;
}

.work-with-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(70, 110, 140, 0.75);
  z-index: 1;
}

.work-with-us-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: center;
}

.work-with-us-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
}

.work-with-us-title {
  font-size: 3.5rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.work-with-us-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.work-with-us-btn:hover {
  background-color: #fff;
  color: #466e8c;
}

.work-with-us-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.work-requirement {
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.8;
  font-weight: 300;
  margin: 0;
  padding-left: 2rem;
  position: relative;
}

.work-requirement::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
}

.work-requirement strong em {
  font-weight: 700;
  font-style: italic;
  color: #fff;
}

/* Contact Form Section */
.contact-form {
  background-color: #fff;
  padding: 6rem 0;
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 3rem;
}

.contact-form-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  color: #2d5f2e;
  margin-bottom: 1.5rem;
}

.contact-form-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #999;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  font-weight: 300;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1.2rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  color: #1a1a1a;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2d5f2e;
  box-shadow: 0 0 0 3px rgba(45, 95, 46, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  padding: 1.1rem 3rem;
  background-color: #2d5f2e;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  align-self: center;
  margin-top: 1rem;
}

.form-submit-btn:hover {
  background-color: #1f4020;
  transform: translateY(-2px);
}

.form-submit-btn:active {
  transform: translateY(0);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: #fff;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: slideDown 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  font-weight: 300;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.modal-close:hover {
  color: #1a1a1a;
}

.modal-icon {
  width: 80px;
  height: 80px;
  background-color: #2d5f2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 3rem;
  color: #fff;
  font-weight: 300;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.modal-message {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.6;
  font-weight: 300;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 4rem 0 0 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem 3rem 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 300;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: #2d5f2e;
  padding-left: 0.5rem;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2d5f2e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-value {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  line-height: 1.6;
}

.contact-value a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-value a:hover {
  color: #2d5f2e;
}

.footer-bottom {
  background-color: #0d0d0d;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 300;
  margin: 0;
}

/* About Page Styles */

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #2d5f2e 0%, #1f4020 100%);
  padding: 10rem 0 5rem 0;
  position: relative;
}

.page-header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  text-align: center;
}

.page-header-title {
  font-size: 4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.page-header-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

/* About Overview Section */
.about-overview {
  background-color: #fff;
  padding: 6rem 0;
}

.about-overview-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2d5f2e;
  margin-bottom: 2rem;
}

.section-title-center {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2d5f2e;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-title-center-white {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3rem;
  text-align: center;
}

.section-subtitle-center {
  text-align: center;
  font-size: 1.1rem;
  color: #999;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  font-weight: 300;
}

.overview-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.overview-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.overview-content {
  max-width: 1000px;
  margin: 0 auto;
}

.overview-text {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.overview-text strong {
  color: #2d5f2e;
  font-weight: 600;
}

/* Mission, Vision, Values Section */
.mvv-section {
  background-color: #f5f5f5;
  padding: 6rem 0;
}

.mvv-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.mvv-card {
  background: #fff;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mvv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.mvv-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.mvv-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d5f2e;
  margin-bottom: 1rem;
}

.mvv-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  font-weight: 300;
}

.mvv-description strong {
  color: #2d5f2e;
  font-weight: 600;
}

/* Services Overview Section */
.services-overview {
  background-color: #fff;
  padding: 6rem 0;
}

.services-overview-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.services-overview-image {
  max-width: 900px;
  margin: 0 auto 3rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.services-overview-image img {
  width: 100%;
  height: auto;
  display: block;
}

.services-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-summary-card {
  background: #f5f5f5;
  padding: 2.5rem;
  border-radius: 15px;
  border-left: 5px solid #2d5f2e;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-summary-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-summary-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d5f2e;
  margin-bottom: 1rem;
}

.service-summary-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  font-weight: 300;
}

/* Approach Section */
.approach-section {
  background-color: #f5f5f5;
  padding: 6rem 0;
}

.approach-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.approach-image {
  max-width: 800px;
  margin: 3rem auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.approach-image img {
  width: 100%;
  height: auto;
  display: block;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.approach-step {
  background: #fff;
  padding: 2.5rem;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2d5f2e 0%, #1f4020 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.step-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.step-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  font-weight: 300;
}

/* Why Choose Us Section */
.why-choose-us {
  background: linear-gradient(135deg, #2d5f2e 0%, #1f4020 100%);
  padding: 6rem 0;
}

.why-choose-us-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.why-choose-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.why-choose-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.why-choose-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.why-choose-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-weight: 300;
}

/* About CTA Section */
.about-cta {
  background-color: #fff;
  padding: 6rem 0;
}

.about-cta-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 3rem;
  text-align: center;
}

.about-cta-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: #2d5f2e;
  margin-bottom: 1.5rem;
}

.about-cta-text {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.about-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary {
  display: inline-block;
  padding: 1.1rem 3rem;
  background-color: #2d5f2e;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(45, 95, 46, 0.4);
}

.cta-btn-primary:hover {
  background-color: #1f4020;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(45, 95, 46, 0.5);
}

.cta-btn-secondary {
  display: inline-block;
  padding: 1.1rem 3rem;
  background-color: transparent;
  color: #2d5f2e;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid #2d5f2e;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.cta-btn-secondary:hover {
  background-color: #2d5f2e;
  color: #fff;
  transform: translateY(-3px);
}

/* Contact Page Styles */

/* Contact Page Section */
.contact-page-section {
  background-color: #fff;
  padding: 6rem 0;
}

.contact-page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

/* Contact Info Box */
.contact-info-box {
  background: linear-gradient(135deg, #2d5f2e 0%, #1f4020 100%);
  padding: 3rem;
  border-radius: 20px;
  color: #fff;
  height: fit-content;
}

.contact-info-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.contact-info-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-info-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-info-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.contact-info-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-weight: 300;
}

.contact-info-content a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-content a:hover {
  color: #fff;
}

/* Contact Form Box */
.contact-form-box {
  background: #f5f5f5;
  padding: 3rem;
  border-radius: 20px;
}

.contact-form-box-title {
  font-size: 2rem;
  font-weight: 600;
  color: #2d5f2e;
  margin-bottom: 1rem;
}

.contact-form-box-subtitle {
  font-size: 1rem;
  color: #999;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 300;
}

.contact-page-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Contact Additional Info Section */
.contact-additional-info {
  background-color: #f5f5f5;
  padding: 6rem 0;
}

.contact-additional-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.contact-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.contact-benefit-item {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.contact-benefit-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d5f2e;
  margin-bottom: 0.8rem;
}

.contact-benefit-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-btn {
        padding: 1rem 2.5rem;
        font-size: 0.95rem;
    }

    .navbar .container,
    .hero-content {
        padding: 0 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-container {
        padding: 0 2rem;
    }

    .challenges-container {
        padding: 0 2rem;
        gap: 3rem;
    }

    .challenges-title {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-container {
        padding: 0 2rem;
        gap: 3rem;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-image {
        min-height: 450px;
    }

    .testimonials-container {
        padding: 0 2rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .testimonials-title {
        font-size: 2.5rem;
    }

    .faq-container {
        padding: 0 2rem;
    }

    .faq-title {
        font-size: 2.5rem;
    }

    .work-with-us-container {
        padding: 0 2rem;
        gap: 4rem;
    }

    .work-with-us-title {
        font-size: 3rem;
    }

    .work-requirement {
        font-size: 1.05rem;
    }

    .contact-form-container {
        padding: 0 2rem;
    }

    .contact-form-title {
        font-size: 2.5rem;
    }

    .footer-container {
        padding: 0 2rem 3rem 2rem;
        gap: 3rem;
    }

    .page-header-title {
        font-size: 3rem;
    }

    .page-header-subtitle {
        font-size: 1.15rem;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-summary-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .approach-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .overview-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .overview-image {
        min-height: 350px;
    }

    .contact-page-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-btn {
        margin-top: 2rem;
        padding: 0.95rem 2.2rem;
        font-size: 0.9rem;
    }

    .nav-logo h1 {
        font-size: 1.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-title {
        font-size: 2.5rem;
    }

    .services {
        padding: 4rem 0;
    }

    .challenges-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .challenges {
        padding: 4rem 0;
    }

    .challenges-image {
        min-height: 400px;
        order: -1;
    }

    .challenges-title {
        font-size: 2rem;
    }

    .challenges-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about {
        padding: 4rem 0;
    }

    .about-image {
        min-height: 400px;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .testimonials {
        padding: 4rem 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .testimonials-subtitle {
        font-size: 1rem;
    }

    .faq {
        padding: 4rem 0;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-subtitle {
        font-size: 1rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.05rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }

    .work-with-us {
        padding: 4rem 0;
    }

    .work-with-us-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .work-with-us-title {
        font-size: 2.5rem;
    }

    .work-requirement {
        font-size: 1rem;
    }

    .contact-form {
        padding: 4rem 0;
    }

    .contact-form-title {
        font-size: 2rem;
    }

    .contact-form-subtitle {
        font-size: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 3rem 0 0 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 2rem 2.5rem 2rem;
    }

    .footer-heading {
        font-size: 1.1rem;
    }

    .page-header {
        padding: 8rem 0 4rem 0;
    }

    .page-header-title {
        font-size: 2.5rem;
    }

    .page-header-subtitle {
        font-size: 1.05rem;
    }

    .section-title,
    .section-title-center {
        font-size: 2rem;
    }

    .section-title-center-white {
        font-size: 2rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-title {
        font-size: 2.2rem;
    }

    .about-cta-text {
        font-size: 1.05rem;
    }

    .about-cta-buttons {
        flex-direction: column;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 2.5rem;
    }

    .contact-benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-btn {
        margin-top: 1.5rem;
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .services-title {
        font-size: 2rem;
    }

    .services-subtitle {
        font-size: 1rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-heading {
        font-size: 1.3rem;
    }

    .challenges-image {
        min-height: 300px;
    }

    .challenges-title {
        font-size: 1.8rem;
    }

    .challenges-description {
        font-size: 1rem;
    }

    .challenges-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .challenges-list li {
        font-size: 0.95rem;
    }

    .about-image {
        min-height: 300px;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-description {
        font-size: 0.95rem;
    }

    .value-item h4 {
        font-size: 1.1rem;
    }

    .value-item p {
        font-size: 0.9rem;
    }

    .testimonials-title {
        font-size: 1.8rem;
    }

    .testimonials-subtitle {
        font-size: 0.95rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-quote p {
        font-size: 0.95rem;
    }

    .author-name {
        font-size: 1rem;
    }

    .author-position {
        font-size: 0.85rem;
    }

    .faq-title {
        font-size: 1.8rem;
    }

    .faq-subtitle {
        font-size: 0.95rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem 1.25rem;
    }

    .work-with-us-title {
        font-size: 2rem;
    }

    .work-requirement {
        font-size: 0.95rem;
        padding-left: 1.5rem;
    }

    .work-with-us-btn {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
    }

    .contact-form-title {
        font-size: 1.8rem;
    }

    .contact-form-subtitle {
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.95rem;
    }

    .form-submit-btn {
        width: 100%;
        padding: 1rem 2rem;
    }

    .modal-content {
        padding: 2.5rem 2rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-message {
        font-size: 1rem;
    }

    .modal-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .footer-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-links li a,
    .contact-value {
        font-size: 0.9rem;
    }

    .contact-label {
        font-size: 0.8rem;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    .page-header {
        padding: 7rem 0 3rem 0;
    }

    .page-header-title {
        font-size: 2rem;
    }

    .page-header-subtitle {
        font-size: 0.95rem;
    }

    .section-title,
    .section-title-center {
        font-size: 1.8rem;
    }

    .section-title-center-white {
        font-size: 1.8rem;
    }

    .overview-text {
        font-size: 1rem;
    }

    .mvv-card {
        padding: 2rem 1.5rem;
    }

    .mvv-icon {
        font-size: 3rem;
    }

    .service-summary-card {
        padding: 2rem;
    }

    .approach-step {
        padding: 2rem;
    }

    .why-choose-item {
        padding: 2rem;
    }

    .about-cta-title {
        font-size: 1.8rem;
    }

    .about-cta-text {
        font-size: 1rem;
    }

    .overview-image {
        min-height: 300px;
    }

    .services-overview-image,
    .approach-image {
        margin: 2rem auto;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 2rem;
    }

    .contact-info-title,
    .contact-form-box-title {
        font-size: 1.5rem;
    }

    .contact-info-icon {
        font-size: 1.5rem;
    }

    .benefit-icon {
        font-size: 2.5rem;
    }
}
