@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
:root{

    --font-color:#9c9c9c;
    --heading-color:#ccffcc;
    --primar-color: #00823c;
    --navbar-color:#ccffcc;
    
}
:root {
  --section-bg: #1f2a2b;
}

*{
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    transition: .2s;

    transition:all .2s linear;
    text-decoration: none;
    font-family:'Poppins', sans-serif ;
   

}
html{
    font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

/* ===== Section Title (ABOUT US) ===== */

/*---- Top Banner--- */
#about .about-header {
  background: #2e7d32;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

#about .about-header h2 {
  
  margin: 0;
  font-size: 3rem;    
  font-weight: 800;
  text-transform: uppercase;
}

#about .about-header .highlight-bar {
  display: inline-block;
  width: 5px;
  height: 30px;
  background: #ffc107; 
  margin-right: 10px;
  vertical-align: middle;
}

/* ---Content Area--- */
#about .about-container {
  padding: 40px 20px 30px;
 width: 100%;
  margin: 0;
  color: #333;
  padding-bottom: 20px;
}

#about .about-intro {
  text-align: center;
  font-size: 1.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

#about h3 {
  color: #2e7d32; 
  font-weight: 600;
  margin-top: 30px;
 text-align: left;
  font-size: 2.4rem;
  width: 100%;
  margin-bottom: 10px;

}
#about p{
   font-size: 1.9rem;
  text-align: left;    
  line-height: 1.7;
  width: 100%;          
  margin: 10px 0
}

#about .about-list {
  list-style: none;
  padding-left: 20px;
}

#about .about-list li {
  position: relative;
  padding-left: 20px;
  margin: 8px 0;
}

#about .about-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffc107; 
  font-size: 1.3rem;
}

/*--- Responsive mobile Design--- */
@media (max-width: 768px) {
  #about .about-header h2 {
    font-size: 2rem;
    max-width: 100%;
    margin: 0 auto;
  }

  #about .about-intro,
  #about-services .about-intro {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 15px;   /* breathing room for small screens */
    text-align: center;
  }

  #about .about-container {
    padding: 20px;
  }
}

/* About Services Section */
#about-services {
  padding:40px 5% 60px;
  background: transparent;
  text-align: center;
  padding-top: 30px;
}


.about-services-title {
  font-size: 4rem;
  color: var(--primar-color);
  margin-bottom: 40px;
  text-transform: uppercase;
}

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.about-service-card {
 background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.about-service-card:hover {
 transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

.about-service-card img {
 width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.about-service-card h3 {
font-size: 2.4rem;
  font-weight: 600;
  color: #006400; 
  margin-bottom: 10px;
}

.about-service-card p {
 font-size: 1.5rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

/*---- Mobile------ */
@media (max-width: 768px) {
  
  .about-services-title {
    font-size: 3rem;
  }
  .about-service-card img {
    height: 200px;
  }
  .about-service-card h2 {
    font-size: 2rem;
  }
  .about-service-card p {
    font-size: 1.5rem;
  }
}



/* ====== PROJECTS PAGE STYLING ====== */

/* Banner/Header */
.projects-header-banner {
  background: #2e7d32; /* dark green */
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.projects-header-banner h2 {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
}

.projects-header-banner .highlight-bar {
  display: inline-block;
  width: 5px;
  height: 30px;
  background: #ffc107; /* yellow */
  margin-right: 10px;
  vertical-align: middle;
}

/* Intro Text */
.projects-intro {
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 20px;
  text-align: center;
}

.projects-intro p {
  font-size: 1.9rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Projects List */
.projects-list {
  display: flex;
  flex-direction: column; /* stack vertically */
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* Each Project Card */
.project-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* Image */
.project-card img {
  width: 45%;
  border-radius: 8px;
  object-fit: cover;
}

/* Info */
.project-info {
  flex: 1;
}

.project-info h3 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #2e7d32;
  margin-bottom: 10px;
}

.project-info p {
  font-size: 1.9rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Responsive (Mobile) */
@media (max-width: 768px) {
  .project-card {
    flex-direction: column; /* stack image and text */
    text-align: center;
  }

  .project-card img {
    width: 100%;
  }

  .project-info h3 {
    font-size: 1.4rem;
  }

  .project-info p {
    font-size: 1rem;
  }
}



/* ===== Let's Talk Section ===== */
#lets-talk {
  padding: 60px 20px;
  background: #2e7d32; /* Dark green background */
  color: #fff;
}

.lets-talk-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.lets-talk-image {
  flex: 1;
}

.lets-talk-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.lets-talk-content {
  flex: 1;
  background: #2e7d32; /* Slightly lighter green for contrast */
  padding: 40px;
  border-radius: 8px;
}

.lets-talk-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.lets-talk-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.lets-talk-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ffc107; /* Yellow button */
  color: #1f2a2b;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.lets-talk-btn:hover {
  background: #e0a800;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .lets-talk-container {
    flex-direction: column;
    text-align: center;
  }

  .lets-talk-content {
    padding: 30px 20px;
  }

  .lets-talk-content h2 {
    font-size: 2rem;
  }
}


#contact {
  padding: 60px 5%;
  background: #f9f9f9;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  align-items: center;
}

.contact-info h2 {
  font-size: 2.8rem;
  color: #00823c; /* brand dark green */
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #444;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.contact-info ul li i {
  color: #00823c;
  margin-right: 10px;
}

.contact-form form {
  background: #2e7d32;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.input-group {
  margin-bottom: 20px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--heading-color);
  border-radius: 6px;
  font-size: 1.4rem;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #00823c;
  outline: none;
}

.btn {
  display: inline-block;
  background: #ffc107 ;
  color: #fff;
  padding: 12px 24px;
  font-size: 1.6rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn:hover {
  background:  #ffc107;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info ul li {
    justify-content: center;
  }
}

/* ===== Reviews Section ===== */
#reviews {
  background: #f9f9f9;
  padding: 60px 20px;
}

.reviews-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.reviews-intro {
  font-size: 1.6rem;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Review Cards */
.review-card {
  background: #fff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: left;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.review-card p {
  font-size: 1.5rem;
  color: #444;
  font-style: italic;
  margin-bottom: 10px;
}

.review-card h3 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #00823c;
}

/* Responsive */
@media (max-width: 768px) {
  .reviews-intro {
    font-size: 1.4rem;
  }
  .review-card {
    padding: 18px;
    text-align: center;
  }
  .review-card p {
    font-size: 1.3rem;
  }
  .review-card h3 {
    font-size: 1.2rem;
  }
}
