/* ===== GLOBAL STYLES ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
}
body {
  line-height: 1.6;
  color: #333;
}
html {
  scroll-behavior: smooth; /* Smooth scroll */
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
section {
  padding: 80px 20px;
}

/* ===== HEADER and logo ===== */
header {
  background-color: #1c5d3b;
  color: #fff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

header .logo img {
  width: 100px;
  /*adjustlogosize*/height: auto;
  display: block;
  background-color: white;
  border: radius 30px;;
  -webkit-border-radius:30px;
  -moz-border-radius:30px;
  -ms-border-radius:30px;
  -o-border-radius:30px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}
nav ul li a {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s, transform 0.3s;
}
nav ul li a:hover {
  color: #a8e6cf;
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(to right, rgba(28,93,59,0.7), rgba(168,230,207,0.7)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?crop=entropy&cs=tinysrgb&fit=max&fm=jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 150px 20px;
}
.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.3rem;
  max-width: 650px;
  margin: 0 auto 30px;
}
.hero .btn {
  background: linear-gradient(45deg, #1c5d3b, #a8e6cf);
  color: #fff;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.hero .btn:hover {
  transform: translateY(-5px);
  background: linear-gradient(45deg, #83d39f, #c3f0d1);
}

.features-section {
  padding: 90px 20px;
  background-color: #f1f8f4; /* soft green background */
}

.features-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.feature-box {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 75px;
  height: 75px;
  background-color: #0b6b3a; /* brand green */
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 34px;
  height: 34px;
  filter: brightness(0) invert(1);
}

.feature-box h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1f1f1f;
}

.feature-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.home-about {
  padding: 100px 20px;
  background-color: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.about-content .about-tag {
  display: inline-block;
  margin-bottom: 15px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #e7f4ed;
  color: #0b6b3a;
  border-radius: 30px;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #1f1f1f;
}

.about-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 14px 30px;
  background-color: #0b6b3a;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.about-btn:hover {
  background-color: #095c31;
  transform: translateY(-2px);
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(rgba(28,93,59,0.75), rgba(28,93,59,0.75)),
              url("images/about-hero.jpg") center/cover no-repeat;
  padding: 140px 20px;
  text-align: center;
  color: #ffffff;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 1.2rem;
  max-width: 650px;
  margin: auto;
}

 /* ===== ABOUT PAGE ===== */
.about-page {
  padding: 80px 20px;
}

.about-wrapper {
  max-width: 1200px;
  margin: auto;
}

/* Company Intro */
.about-intro {
  text-align: center;
  margin-bottom: 60px;
}

.about-intro .section-tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: #e6f4ec;
  color: #0b6b3a;
  border-radius: 30px;
  margin-bottom: 15px;
}

.about-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1c5d3b;
  font-family: 'Playfair Display', serif;
}

.about-intro p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  max-width: 850px;
  margin: auto;
}

/* Mission & Vision Grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.about-card {
  background-color: #f5f5f5;
  padding: 35px 25px;
  border-radius: 25px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
}

.about-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
  background: linear-gradient(135deg, #1c5d3b, #83d39f);
}

.about-card h3 {
  font-size: 1.7rem;
  margin-bottom: 12px;
  color: #1c5d3b;
  transition: color 0.3s ease;
}

.about-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.about-card:hover h3,
.about-card:hover p {
  color: #fff;
}

/* ===== CORE VALUES ===== */
.values-section {
  text-align: center;
  margin-bottom: 90px;
}

.values-section h2 {
  font-size: 2.4rem;
  margin: 20px 0 50px;
  color: #1c5d3b;
  font-family: 'Playfair Display', serif;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* Individual value box */
.value-box {
  background: #0b6b3a;
  color: #ffffff;
  padding: 35px 25px;
  border-radius: 25px;
  font-weight: 500;
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

/* Hover effect */
.value-box:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  background: linear-gradient(135deg, #1c5d3b, #83d39f);
}

/* Glow overlay */
.value-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.5s ease;
  border-radius: 50%;
  pointer-events: none;
}

.value-box:hover::before {
  transform: scale(1);
}

/* Text inside value box */
.value-box {
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: center;
}

/* ===== TRUST SECTION ===== */
.trust-section {
  text-align: center;
  margin-bottom: 80px;
}

.trust-section h2 {
  font-size: 2.2rem;
  color: #1c5d3b;
  margin-bottom: 20px;
}

.trust-section p {
  font-size: 1.05rem;
  color: #555;
  max-width: 750px;
  margin: auto;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SERVICES ===== */
.services {
  padding: 110px 20px;
  background-color: #f7faf8;
}

.services-wrapper {
  max-width: 1250px;
  margin: auto;
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 15px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: #e6f4ec;
  color: #0b6b3a;
  border-radius: 30px;
}

.services-header h3 {
  font-size: 38px;
  color: #1c1c1c;
  margin-bottom: 15px;
}

.services-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

/* Service Cards */

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
}

.service-card {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 220px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-content {
  padding: 30px 28px 35px;
}

.service-content h4 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1f1f1f;
}

.service-content p {
  font-size: 15.5px;
  color: #555;
  line-height: 1.7;
}

/* Change card background on hover */
.service-card {
  transition: 
    background-color 0.4s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* Hover state */
.service-card:hover {
  background-color: #0b6b3a; /* brand green */
}

/* Text color changes */
.service-card:hover h4,
.service-card:hover p {
  color: #ffffff;
}

/* Optional: soften image when hovered */
.service-card:hover .service-image img {
  transform: scale(1.05);
  opacity: 0.85;
}

/* Optional: subtle overlay feel */
.service-card:hover .service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 107, 58, 0.25);
}

.service-image {
  position: relative;
}


/* ===== PROJECTS ===== */
.projects {
  text-align: center;
}
.projects h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #1c5d3b;
  margin-bottom: 50px;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.project-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
.project-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s, filter 0.3s;
}
.project-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* ===== CONTACT ===== */
.contact {
  background-color: #f5f5f5;
}
.contact h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #1c5d3b;
  text-align: center;
  margin-bottom: 50px;
}
.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact input, .contact textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.3s;
}
.contact input:focus, .contact textarea:focus {
  border-color: #1c5d3b;
  outline: none;
}
.contact button {
  padding: 15px;
  border: none;
  border-radius: 30px;
  background-color: #1c5d3b;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.contact button:hover {
  background-color: #14532d;
  transform: translateY(-3px);
}

/* ===== FOOTER ===== */
footer {
  background-color: #1c5d3b;
  color: #fff;
  text-align: center;
  padding: 25px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 768px) {
  .about {
    flex-direction: column;
  }
  nav ul {
    flex-direction: column;
    gap: 15px;
  }
  .hero h2 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
}

.contact-info {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.contact-box {
  background: #ffffff;
  padding: 40px 25px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-5px);
}

.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-color: #0b6b3a; /* WealthMark green */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.contact-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.contact-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}



.services-page {
  padding: 80px 20px;
  background-color: #f7faf8;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: #e6f4ec;
  color: #0b6b3a;
  border-radius: 30px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #1f1f1f;
}

.section-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* Service Cards */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.service-card {
  background-color: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
  background-color: #0b6b3a;
}

.service-card:hover h3,
.service-card:hover p {
  color: #ffffff;
}

.service-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.08);
  opacity: 0.85;
}

.service-content {
  padding: 25px 20px 30px;
}

.service-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1f1f1f;
  transition: color 0.35s ease;
}

.service-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  transition: color 0.35s ease;
}


