/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Roboto', sans-serif;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  padding: 3px 0;
  height: 80px;
  border-bottom: rgb(15, 170, 10) 3px solid;
  z-index: 1000;
  display: flex; /* Use flexbox to align content */
  align-items: center; /* Vertically center logo and content */
  justify-content: space-between; /* Align content across the width */
}

.logo img {
  width: 175px; /* Adjust this size according to the available space */
  height: auto; /* Maintain the aspect ratio */
  max-height: 175px; /* Set a maximum height so it fits within the header */
  display: block;
  margin-left: 0px; /* Adjust margin if you want space around the logo */
}

.nav-text {
  font-size: 24px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #000;
}

nav.nav-desktop {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  padding-right: 20px;
}

.nav-links a {
  text-decoration: none;
  font-size: 18px;
  color: #333;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links a:hover {
  color: rgb(15, 170, 10);
  font-weight: bold;
}
.nav-links li {
  position: relative;
}
.menu-icon {
  display: none;
  cursor: pointer;
  width: 30px;
  height: auto;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2000;
}


.menu-icon img {
  width: 100%; /* Ensure image fits container */
  height: auto;
}

/* Hero Section */
.hero-section {
  background: url('/assets/images/pexels-simlibas-16886315.jpg') no-repeat center center/cover;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.description {
  font-size: 1.25rem;
  margin-bottom: 40px;
}

.cta-btn {
  padding: 12px 30px;
  background-color: rgb(15, 170, 10);
  color: #fff;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: rgb(12, 140, 8);
}

/* About Section */
.about-section {
  background-color:#F5F5DC;
  padding: 50px 0;
  margin-top: 20px;
}

.section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.highlight-green {
  color: rgb(15, 170, 10);
  font-weight: 700;
}

.about-content {
  display: block;
  justify-content: space-between;
  /*align-items: center;
  text-align: center;*/
  margin: 0 auto;
}

.about-content p {
  font-size: 20px;
  font-weight: 700;
   margin-bottom: 10px;   /* Adds space below each paragraph */
   padding-bottom: 5px;   /* Adds extra padding below each paragraph */
  /*text-align: center;*/
}

.space {
    padding-top: 5px; /* Adds space between paragraphs */
    padding-bottom: 5px; /* Adds space below paragraphs */
}
.partner {
    font-size: 21px;
    font-weight: 700;
}

.who-we-are {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
/* Desktop styles */
.about-cards-stacked {
    position: relative;
    width: 320px;
    height: 320px;
    max-width: 350px;
    max-height: 350px;
    min-width: 150px;
    min-height: 150px;
}

.about-card-img {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    object-fit: cover;
    background: #fff;
    transition: box-shadow 0.3s;
    border: 3px solid #F5F5DC;
}

.img1 { top: 60%; left: 0%; z-index: 1; }
.img2 { top: 30%; left: 25%; z-index: 2; }
.img3 { top: 0%; left: 55%; z-index: 3; }

.about-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.about-image-col {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.about-content-col {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Mobile styles */
@media (max-width: 600px) {
  .about-section {
        padding: 20px 10px;
    }

    .about-flex {
        flex-direction: column-reverse; /* Move image on top */
        align-items: center;
        text-align: center;
    }

    .about-image-col {
        justify-content: center;
        margin-top: -40px; /* Moves the image stack UP */
    }

    .about-cards-stacked {
        width: 200px;
        height: 200px;
    }

    .about-card-img {
        width: 100px;
        height: 100px;
    }

    .img1 { top: 60px; left: 0px; }
    .img2 { top: 30px; left: 20px; }
    .img3 { top: 0px; left: 40px; }
}

/* Services Section */
.services-section {
  background-color:#ffffff;
  padding: 50px 0;
  margin-bottom: 20px;
  margin-top: 20px;
}

.service-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  background-color: #F5F5DC;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  flex: 1;
  transition: transform 0.3s ease-in-out;
}

.service-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  font-size: 16px;
  background-color:#f5f5dc;
  padding: 30px 0;
  border-top: 1px solid #2ec002;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-col {
  flex-basis: 30%;
  padding: 10px;
}

.footer-logo {
  width: 250px;
  margin-bottom: 0px;
  height: 100%;
}

.footer-col h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.copyright{
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  margin-left: 30%;
  margin-bottom: 0;
  align-items: baseline;
}

.footer-col p, .footer-links, .contact-info {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.footer-links, .contact-info {
  list-style: none;
  padding-top: 5px;
  margin: 0;
}

.footer-links li, .contact-info li {
  margin-bottom: 10px;
}

.footer a {
  color: #413e3e; 
  text-decoration: none;
}
.contact{
  padding-top:10px;
}

.footer a:hover {
  color: #0f5f07;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-col {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
}

/* Mobile Navigation */
.nav-mobile {
  display: none;
  position: fixed;
  top: 90px;
  right: 0;
  background-color: #fff;
  width: 70%;
  height: 100vh;
  padding: 20px;
  z-index: 1500;
  text-align: center;
  box-shadow: -3px 0 5px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.nav-mobile.active {
  transform: translateX(0);
}

.nav-mobile .nav-links {
  display: block;
}

.nav-mobile .nav-links li {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .menu-icon {
    display: block;
  }

  .nav-desktop {
    display: none;
  }

  .nav-mobile {
    display: none;
  }

  .nav-mobile.active {
    display: block;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-col {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
}

/* Mobile Navigation */
.nav-mobile {
  display: none;
  position: fixed;
  top: 90px;
  right: 0;
  background-color: #fff;
  width: 70%;
  height: 100vh;
  padding: 20px;
  z-index: 1500;
  text-align: center;
  box-shadow: -3px 0 5px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.nav-mobile.active {
  transform: translateX(0);
}

.nav-mobile .nav-links {
  display: block;
}

.nav-mobile .nav-links li {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .menu-icon {
    display: block;
  }

  .nav-desktop {
    display: none;
  }

  .nav-mobile {
    display: none;
  }

  .nav-mobile.active {
    display: block;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .description {
    font-size: 1rem;
  }

  .about-cards,
  .service-cards {
    flex-direction: column;
  }

  .about-card,
  .service-card {
    width: 100%;
  }

  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  header {
    height: 70px;
    padding: 10px;
  }

  .logo img {
    width: 140px;
    max-height: 60px;
  }

  .menu-icon {
    width: 25px;
  }
}

@media (max-width: 768px) {
  .footer-logo {
    width: 200px;
    margin: 0 auto 10px;
  }

  .footer-col h4, .footer-col p {
    font-size: 16px;
  }

  .copyright {
    margin-left: 0;
    text-align: center;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    background-position: center;
    background-size: cover;
    height: 80vh;
    padding: 40px 20px;
  }

  .hero-content {
    padding: 10px;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
