/* =======================
   Custom Gilroy Fonts
======================= */
@font-face {
  font-family: "Gilroy";
  src: url("/wp-content/assets/fontsGilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("/wp-content/assets/fontsGilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("/wp-content/assets/fontsGilroy-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("/wp-content/assets/fontsGilroy-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

/* =======================
   Reset + Global Styles
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Gilroy", Arial, sans-serif;
  color: #333;
  background: #fff;
}

/* =======================
   Hero Section
======================= */
/* =======================
   Hero Section
======================= */
.hero {
  background-image: url("/wp-content/uploads/2025/09/first_background.svg");
  background-size: cover;
  background-position: center;
  min-height: 100vh; /* full viewport height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

/* Leaves Image (top-right) */
.hero .leaves {
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: auto;
  pointer-events: none;
  z-index: 1;
}

/* =======================
   Navbar
======================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1f8a40;
  border-radius: 40px;
  padding: 12px 30px;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  margin-top: 50px;
  position: relative;
  z-index: 10;
}

.navbar .logo img {
  height: 55px;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-links li {
  margin: 0 12px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
}

.btn-app {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #1f8a40;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-app:hover {
  background: #e6ffe6;
}

/* =======================
   Hero Content
======================= */
.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 70px;
  line-height: 1.3;
  margin-bottom: 15px;
  font-weight: 400;
}

.hero-text .highlight {
  color: #1f8a40;
}

.hero-text p {
  margin-bottom: 20px;
  font-size: 24px;
  color: #161616;
  line-height: 32px;
  font-weight: 400;
}

.store-buttons {
  display: flex;
  gap: 15px;
}

.store-buttons img {
  width: 150px;
  height: auto;
  cursor: pointer;
}

.hero-image img {
  max-width: 500px;
  margin-top: 30px;
  display: block;
}

/* =======================
   Hamburger
======================= */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* Active Hamburger = X */
/* .menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
} */

/* =======================
   Responsive
======================= */

/* Tablets and below */
@media (max-width: 1024px) {
  .hero-content {
    padding: 1px 20px 1px 20px;
  }
  .hero-text h1 {
    line-height: 1.1;
  }
}
@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #1f8a40;
    flex-direction: column;
    width: 220px;
    padding: 20px;
    border-radius: 12px;
    display: none;
    z-index: 999;
  }

  .nav-links li {
    margin: 12px 0;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .btn-app {
    width: 100%;
    justify-content: center;
  }
  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 70px;
    line-height: 1.2;
    margin-top: 40px;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 18px;
    line-height: 28px;
  }

  .hero-image img {
    max-width: 350px;
    margin: 20px auto 0;
  }

  .store-buttons {
    justify-content: center;
  }
}

/* Mobile screens */
@media (max-width: 768px) {
   .navbar {
    flex-direction: row;
    padding: 12px 18px;
    border-radius: 0px;
    gap: 10px;
    margin-top: 0px;
  }
  .menu-toggle {
    display: flex;
  }
  .hero-content {
    flex-direction: column-reverse;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #1f8a40;
    flex-direction: column;
    width: 220px;
    padding: 20px;
    border-radius: 12px;
    display: none;
    z-index: 999;
  }

  .nav-links li {
    margin: 12px 0;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .btn-app {
    width: 100%;
    justify-content: center;
  }
}

/* Extra small devices (<576px) */
@media (max-width: 576px) {
  .navbar {
    flex-direction: row;
    padding: 12px 18px;
    border-radius: 0px;
    gap: 10px;
  }

  .hero-text h1 {
    font-size: 28px;
    margin-top: 36px;
  }

  .hero-text p {
    font-size: 16px;
    line-height: 24px;
  }

  .store-buttons img {
    width: 120px;
  }

  .btn-app {
    font-size: 12px;
    padding: 6px 14px;
  }

  .hero-image img {
    max-width: 220px;
  }
}

/* Ultra small screens (<300px) */
@media (max-width: 300px) {
  .hero-text h1 {
    font-size: 22px;
  }

  .hero-text p {
    font-size: 14px;
    line-height: 20px;
  }

  .store-buttons img {
    width: 100px;
  }

  .btn-app {
    font-size: 11px;
    padding: 5px 10px;
  }

  .hero-image img {
    max-width: 160px;
  }
}
/* =======================
   Second section
======================= */
.second_section {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
}
.second_section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}
.second_section p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #161616;
}

/* Services grid */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 120px; /* keep all icons same size */
  height: auto;
  margin-bottom: 10px;
}

.service-card span {
  font-size: 18px;
  color: #000;
  font-weight: 500;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Background colors */
.green {
  background: #1f8a40;
}
.blue {
  background: #0099cc;
}
.yellow {
  background: #ffcc00;
  color: #333;
}
.orange {
  background: #ff9933;
}
.red {
  background: #cc3333;
}
.orange2 {
  background: #e67300;
}
.brown {
  background: #996633;
}
.purple {
  background: #663399;
}

/* Button */
.cta-btn {
  background: #227138;
  color: #fff;
  border: none;
  padding: 19px 22px;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 40px;
  transition: background 0.3s ease;
}
.cta-btn:hover {
  background: #15692f;
}

.services-slider {
  display: flex;
  padding: 10px 0;
  gap: 30px; /* space between items */
 overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  cursor: grab;
  user-select: none;          /* prevent text selection while dragging */
  -webkit-overflow-scrolling: touch;
}
.services-slider:active {
  cursor: grabbing;
}

.services-slider::-webkit-scrollbar {
  display: none; /* hide scrollbar (optional) */
}

@media (max-width: 992px) {
  .second_section {
    padding: 60px 15px;
  }

  .second_section h2 {
    font-size: 24px;
  }

  .second_section p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 30px;
    max-width: 90%;
  }

  .service-card img {
    width: 100px;
  }

  .service-card span {
    font-size: 16px;
  }

  .cta-btn {
    font-size: 16px;
    padding: 16px 20px;
  }
}

/* Mobiles */
@media (max-width: 576px) {
  .second_section {
    padding: 40px 10px;
  }

  .second_section h2 {
    font-size: 20px;
  }

  .second_section p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 25px;
  }

  /* Services grid → switch to slider on small screens */
  .services {
    display: none; /* hide normal grid */
  }

  .services-slider {
    display: flex; /* already set */
    gap: 20px;
    padding: 10px 5px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .services-slider .service-card {
    flex: 0 0 120px; /* fixed width cards in slider */
    scroll-snap-align: start;
  }

  .service-card img {
    width: 80px;
  }

  .service-card span {
    font-size: 14px;
  }

  .cta-btn {
    font-size: 14px;
    padding: 14px 18px;
    margin-top: 25px;
  }
}

/* =======================
   Founder Section
======================= */
/* Main Section */
/* ---------- Upper Green Section ---------- */
.founder-section {
  position: relative;
}
.founder-section .leaves img {
  position: absolute;
  height: 342px;
  width: 159px;
  top: 42px;
}

/* ---------- Shared Container ---------- */
.founder-container {
  max-width: 1200px; /* matches your Figma grid */
  margin: 0 auto;
  padding: 0 80px; /* consistent left/right padding */
  position: relative;
  z-index: 1;
}

/* ---------- Top Green Section ---------- */
.founder-top {
  background: #dff0dc;
  border-radius: 0px 100px 0px 101px;
  padding: 128px 0; /* vertical only, horizontal comes from .founder-container */
}

.founder-text h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0a412f;
}

.founder-text span {
display: inline-block;   /* or block */
  font-size: 20px;
  color: #0a412f;
  font-weight: 400;
  max-width: 600px;
  line-height: 1.4;
  margin-bottom: 30px;
  white-space: normal;     /* ensures wrapping */

}

.founder-text p {
  color: #333;
  line-height: 1.6;
  margin-top: 50px;
  max-width: 600px;
}

/* ---------- Image Overlap ---------- */
/* ---------- Image Overlap ---------- */
.founder-image {
  position: absolute;
  right: 80px; /* aligns inside container */
  top: 56%; /* place vertically at the middle of green section */
  transform: translateY(
    -50%
  ); /* pull it up so half goes into green and half into white */
  z-index: 2;
}

.founder-image img {
  width: 420px;
  height: 466px;
  object-fit: cover;
  display: block;
  border-radius: 0 40px 0 40px;
}
/* ---------- Bottom White Section ---------- */
.founder-bottom {
  background: #fff;
  padding: 60px 1px 1px 1px;
}

.founder-bottom p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 556px;
}
@media (max-width: 1024px) {
  .founder-text h2 {
    font-size: 48px;
  }
  .founder-container {
    padding: 0 20px;
  }
  .founder-image {
    top: 62%;
  }
  .founder-image img {
    object-fit: contain;
    width: 260px;
    height: 451px;
  }
}
/* Tablets (≤ 992px) */
@media (max-width: 992px) {
  .founder-container {
    padding: 0 40px;
  }

  .founder-top {
    padding: 80px 0;
    border-radius: 0 60px 0 60px;
  }

  .founder-text h2 {
    font-size: 24px;
  }

  .founder-text span {
    font-size: 18px;
  }

  .founder-text p {
    margin-top: 30px;
    font-size: 16px;
    max-width: 500px;
  }

  .founder-image {
    right: 40px;
    top: 60%;
  }

  .founder-image img {
    width: 300px;
    height: auto;
    border-radius: 0 30px 0 30px;
  }

  .founder-bottom {
    padding: 40px 0;
  }

  .founder-bottom p {
    font-size: 16px;
    max-width: 500px;
  }
}
@media (min-width: 577px) and (max-width: 992px) {
  .founder-container {
    padding: 0 40px;
    text-align: center; /* center text */
  }
  .leaves {
    display: none;
  }
  .founder-top {
    padding: 80px 0;
    border-radius: 0 60px 0 60px;
  }

  .founder-text h2 {
    font-size: 24px;
  }

  .founder-text span {
    font-size: 18px;
  }

  .founder-text p {
    margin-top: 30px;
    font-size: 16px;
    max-width: 100%; /* expand since no image */
    margin-left: auto;
    margin-right: auto;
  }

  /* Hide founder image */
  .founder-image {
    display: none;
  }

  .founder-bottom {
    padding: 40px 0;
    text-align: center;
  }

  .founder-bottom p {
    font-size: 16px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobiles (≤ 576px) */
@media (max-width: 576px) {
  .founder-container {
    padding: 0 20px;
  }
  .leaves {
    display: none;
  }
  .founder-top {
    padding: 60px 0;
    border-radius: 0 40px 0 40px;
    text-align: center; /* stack text */
  }

  .founder-text h2 {
    font-size: 20px;
  }

  .founder-text span {
    font-size: 16px;
  }

  .founder-text p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.5;
    max-width: 100%;
  }

  /* Move image below text */
  .founder-image {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin: 30px auto 0;
    text-align: center;
  }

  .founder-image img {
    width: 100%;
    display: none;
    height: auto;
    border-radius: 0 20px 0 20px;
  }

  .founder-bottom {
    padding: 30px 0;
    text-align: center;
  }

  .founder-bottom p {
    font-size: 14px;
    max-width: 100%;
  }
}

/**CHOOSE LAWNS**/
.why-choose {
  background: #fff;
  text-align: center;
  padding: 100px 260px;

  margin: 0 auto;
}

.why-choose h2 {
  font-size: 48px;
  font-weight: 700;
  color: #0a412f;
  margin-bottom: 25px;
}

.why-choose p {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 25px;
}

.why-choose .cta-btn {
  margin-top: 40px;
  display: inline-block;
  background: #227138;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s;
}

.why-choose .cta-btn:hover {
  background: #117a4d;
}

@media (max-width: 1024px) {
  .why-choose {
    background: #fff;
    text-align: center;
    padding: 74px 20px;
    margin: 0 auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .why-choose {
    padding: 1px 15px 80px 16px;
  }

  .why-choose h2 {
    font-size: 28px;
  }

  .why-choose p {
    font-size: 15px;
  }
}

/* ========================= */
/* How It Works Section      */
/* ========================= */

.how-it-works {
  padding: 2px 20px 0;
  text-align: center;
}

.how-it-works-header {
  margin-bottom: 60px;
}

.how-it-works-header h1 {
  font-size: 48px;
  color: #000000;
  margin-bottom: 10px;
}

.how-it-works-header p {
  font-size: 18px;
  color: #161616;
  font-weight: 400;
  margin: 0 auto;
}

.how-it-works-content {
  display: flex;
  align-items: center;
  gap: 80px;
  margin: 0 auto 1px;
  max-width: 1200px;
}

.customer-flow {
  flex-direction: row; /* Default for customers */
}

.helper-flow {
  flex-direction: row-reverse; /* Reverse order for helpers */
  gap: 70px; /* Same gap to align columns */
}

.image-block {
  width: 50%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  max-width: 100%;
  height: auto;
  display: block;
}

.steps-block {
  width: 50%;
  text-align: left;
}

.step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-direction: column;
}

.icon-circle {
  background-color: var(--light-green);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.icon-circle img {
  width: 60px;
  height: 60px;
}

.step-item h2 {
  margin-bottom: 10px;
  margin-top: 10px;
  font-size: 24px;
  font-weight: 500;
  color: #000000;
}

.step-item p {
  font-size: 18px;
  color: #161616;
  font-weight: 400;
  line-height: 28px;
}

.footer-separator {
  width: 80%;
  height: 1px;
  background-color: var(--border-color);
  margin: 80px auto 0;
}
.how-it-works .cta-btn {
  background: #227138;
  color: #fff;
  border: none;
  padding: 15px 24px;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s ease;
}
.how-it-works .cta-btn:hover {
  background: #15692f;
}

/* ========================= */
/* Responsive Styles         */
/* ========================= */

@media (max-width: 992px) {
  .how-it-works-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .image-block,
  .steps-block {
    width: 100%;
  }

  .steps-block {
    text-align: center;
  }

  .step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .icon-circle {
    margin: 0 0 10px 0;
  }

  .how-it-works-content.helper-flow {
    flex-direction: column;
  }
}

/* ================================== */
/* Get Help Section - SVG Background */
/* ================================== */

.get-help-section-svg-bg {
  background-image: url("/wp-content/uploads/2025/09/get_help.svg"); /* Using your SVG as background */
  background-size: cover; /* Ensures the SVG covers the entire section */
  background-position: center; /* Centers the SVG */
  background-repeat: no-repeat; /* Prevents the SVG from repeating */
  color: #ffffff; /* Text color for content on top of dark background */
  padding: 80px 0; /* Vertical padding for the content */
  position: relative;
  overflow: hidden;
  width: 100%; /* Take full width of the screen */
  margin-top: 90px;
}

/* Reusing existing content styles, just ensure they are scoped correctly */
.get-help-content-full {
  display: flex;
  justify-content: center; /* Center the entire content block */
  align-items: center;
  max-width: 1200px; /* Maximum width for inner content */
  margin: 0 auto; /* Center the content horizontally */
  position: relative; /* Ensure content layers above background if needed */
  z-index: 2; /* Ensure content is visible above the background */
  padding: 0 20px; /* Add some horizontal padding */
}

.phone-mockups-full {
  flex: 1; /* Allow to grow */
  text-align: right; /* Align phones to the right within their column */
  padding-right: 50px; /* Space between phones and text */
}

.phones-full {
  max-width: 100%; /* Ensure image scales within its container */
  height: auto;
  display: block; /* Remove extra space below image */
}

.get-help-text-full {
  flex: 1; /* Allow to grow */
}

.get-help-text-full h2 {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 15px;
}

.get-help-text-full p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
  font-weight: 400;
  color: #ffffff;
}

.store-buttons-full {
  display: flex;
  gap: 15px;
}

.store-buttons-full img {
  height: 50px; /* Size of app store badges */
}

/* ================================== */
/* Responsive Adjustments             */
/* ================================== */

@media (max-width: 992px) {
  .store-buttons-full {
    align-items: center;
    justify-content: center;
  }
  .get-help-content-full {
    flex-direction: column; /* Stack items vertically */
    text-align: center;
    padding: 0 40px;
  }
  .phone-mockups-full {
    padding-right: 0;
    margin-bottom: 40px; /* Space between phones and text */
    text-align: center; /* Center phones on smaller screens */
  }
  .phones-full {
    max-width: 450px; /* Limit phone size on smaller screens */
  }
  .get-help-text-full h2 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .get-help-section-svg-bg {
    padding: 60px 0;
  }
  .get-help-text-full h2 {
    font-size: 28px;
  }
  .get-help-text-full p {
    font-size: 16px;
  }
  .store-buttons-full img {
    height: 40px;
  }
}

/* ================================== */
/* loved_by             */
/* ================================== */

.loved_by_users {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* ========================= */
/* Loved by Our Users Section */
/* ========================= */

.loved_by {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  text-align: center;
  z-index: 0; /* make sure it's a stacking context */
}

.loved_by::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 205px; /* adjust to your svg height */
  background: url("/wp-content/uploads/2025/09/bottom_profile.svg") no-repeat center bottom;
  background-size: cover;

  z-index: 1; /* higher than content */
  pointer-events: none;
}

.loved_by_users {
  margin-bottom: 50px;
}

.loved_by_users h1 {
  font-size: 38px;
  margin-bottom: 10px;
}

.loved_by_users span {
  font-size: 18px;
  color: #666;
}

.testimonials-grid {
  display: grid;
  gap: 24px;
  margin: 0 auto;
  padding: 0 10px;
  grid-template-columns: repeat(
    3,
    minmax(0, 300px)
  ); /* fixed width for boxes */
  padding: 0 260px !important;
  justify-content: center; /* center the 3 boxes in the row */
  gap: 20px;
}

.testimonials-grid .box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.box {
  background-color: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  z-index: 9999;
  border: 1px solid #e5e5ea;
}

.profile {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.profile .head {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 2px;
}

.profile .user_name {
  color: #888;
  font-size: 14px;
}

.detail {
  font-size: 16px;
  color: #8e8e93;
  line-height: 1.5;
}

.loved_by_users h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0a412f;
}

.loved_by_users span {
  display: block;
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.5;
}

/* Individual Box */
.box {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 20px;
  text-align: left;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.08);
}

/* Profile Row */
.profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.profile img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

/* Name & Username */
.profile .head {
  font-weight: 600;
  font-size: 16px;
  color: #0a412f;
  margin: 0;
}

.profile .user_name {
  font-size: 14px;
  color: #777;
  margin: 0;
}

/* Testimonial Text */
.detail {
  display: block;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* ---------- RESPONSIVENESS ---------- */

/* Tablets */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: auto;
    padding: 0 !important;
    justify-content: center;
  }
  .loved_by_users {
    margin-bottom: 20px;
  }
  .loved_by_users h1 {
    font-size: 32px;
  }
  .loved_by_users span {
    font-size: 16px;
  }
}

/* ✅ Media Queries for finer control */
@media (max-width: 768px) {
  .loved_by_users h1 {
    font-size: 26px;
  }
  .loved_by_users span {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .navbar .logo img {
    height: 40px !important;
  }
  .navbar {
    margin-top: 0px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;

    padding: 0px !important;
  }
}

@media (max-width: 300px) {
  .navbar {
    margin-top: 5px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0px !important;
  }
  .box {
    padding: 15px;
  }
  .profile img {
    width: 40px;
    height: 40px;
  }
  .profile .head {
    font-size: 14px;
  }
  .detail {
    font-size: 14px;
  }
}

/* ========================= */
/* Faq section               */
/* ========================= */

/* ========================= */
/* FAQ Section */
/* ========================= */
.faq_section {
  background-color: #e7eede; /* Light green background */
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.faq_container {
  display: flex;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  max-width: 1000px;
  width: 100%;
  overflow: hidden;
}

.faq_text_column {
  flex: 1;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.faq_text_column h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #333;
}

.faq_text_column p {
  font-size: 18px;
  color: #666;
}

.faq_accordion_column {
  flex: 1;
  padding: 60px 40px;
  border-left: 1px solid #e0e0e0;
}

.faq_item {
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
}

.faq_item:last-child {
  border-bottom: none;
}

.faq_question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.faq_question h3 {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
}
.faq_dropdown_icon {
  width: 12px;
  height: 12px;
  border: solid #666; /* Match the gray color from the design */
  border-width: 0 2px 2px 0;
  display: inline-block;
  transform: rotate(
    45deg
  ); /* The default position is a downward-pointing arrow */
  transition: transform 0.3s ease; /* Smooth transition for rotation */
}

/* This class would be added via JavaScript when the FAQ item is active/open */
.faq_item.active .faq_dropdown_icon {
  transform: rotate(-135deg); /* Rotates the arrow to point upwards */
}

.accordion_icon {
  width: 15px;
  height: 15px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M12 21l-12-18h24z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

/* This class would be added via JavaScript to rotate the arrow */
.faq_item.active .accordion_icon {
  transform: rotate(180deg);
}

.faq_answer {
  display: none; /* Hidden by default, shown with JavaScript */
  padding-bottom: 20px;
}

.faq_item.active .faq_answer {
  display: block;
}

.faq_answer p {
  margin: 0;
  font-size: 16px;
  color: #666;
}

/* ---------- FAQ Section ---------- */
.faq_section {
  background-color: #e7eede;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.faq_container {
  display: flex;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  max-width: 1000px;
  width: 100%;
  overflow: hidden;
}

/* Text Column */
.faq_text_column {
  flex: 1;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.faq_text_column h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #333;
}

.faq_text_column p {
  font-size: 18px;
  color: #666;
}

/* Accordion Column */
.faq_accordion_column {
  flex: 1;
  padding: 60px 40px;
  border-left: 1px solid #e0e0e0;
}

.faq_item {
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
}

.faq_item:last-child {
  border-bottom: none;
}

.faq_question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.faq_question h3 {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
}

.faq_dropdown_icon {
  width: 12px;
  height: 12px;
  border: solid #666;
  border-width: 0 2px 2px 0;
  display: inline-block;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq_item.active .faq_dropdown_icon {
  transform: rotate(-135deg);
}

.accordion_icon {
  width: 15px;
  height: 15px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M12 21l-12-18h24z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.faq_item.active .accordion_icon {
  transform: rotate(180deg);
}

.faq_answer {
  display: none;
  padding-bottom: 20px;
}

.faq_item.active .faq_answer {
  display: block;
}

.faq_answer p {
  margin: 0;
  font-size: 16px;
  color: #666;
}

/* ---------- RESPONSIVE DESIGN ---------- */

/* Tablets (<=1024px) */
@media (max-width: 1024px) {
  .faq_container {
    flex-direction: column;
  }

  .faq_text_column,
  .faq_accordion_column {
    padding: 40px 30px;
    border-left: none;
    border-top: 1px solid #e0e0e0;
  }

  .faq_text_column {
    text-align: center;
    align-items: center;
    border-top: none; /* only accordion gets border */
  }

  .faq_text_column h2 {
    font-size: 28px;
  }

  .faq_text_column p {
    font-size: 16px;
  }

  .faq_question h3 {
    font-size: 18px;
  }
}

/* Mobiles (<=600px) */
@media (max-width: 600px) {
  .faq_section {
    padding: 50px 15px;
  }

  .faq_text_column,
  .faq_accordion_column {
    padding: 25px 20px;
  }

  .faq_text_column h2 {
    font-size: 22px;
  }

  .faq_text_column p {
    font-size: 14px;
  }

  .faq_question h3 {
    font-size: 16px;
  }

  .faq_answer p {
    font-size: 14px;
  }
}
@media (max-width: 300px) {
  .faq_section {
    padding: 30px 10px;
  }

  .faq_text_column,
  .faq_accordion_column {
    padding: 15px 10px;
  }

  .faq_text_column h2 {
    font-size: 18px;
  }

  .faq_text_column p {
    font-size: 12px;
  }

  .faq_question h3 {
    font-size: 14px;
  }

  .faq_answer p {
    font-size: 12px;
  }

  .faq_dropdown_icon,
  .accordion_icon {
    width: 10px;
    height: 10px;
  }
}
/* ========================= */
/* Get Started Section */
/* ========================= */

.get-started-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.get-started-container {
  display: flex;
  align-items: center;
  gap: 50px;
  background-color: #ffffff; /* White background for the card */
  border-radius: 20px;
  max-width: 1200px;
  padding: 50px;
}

.get-started-text-column {
  flex: 1;
  text-align: left;
}

.get-started-text-column h1 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.get-started-text-column p {
  font-size: 18px;
  color: #161616;
  margin-bottom: 15px;
  font-weight: 400;
}

.get-started-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.get-started-buttons img {
  height: 50px;
}

.get-started-image-column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.get-started-image-column img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive adjustments */
/* ---------- Base Styles ---------- */
.get-started-section {
  background: #f9fdf8;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.get-started-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
}

.get-started-text-column {
  flex: 1;
}

.get-started-text-column h1 {
  font-size: 40px;
  line-height: 1.3;
  color: #0a412f;
  margin-bottom: 20px;
}

.get-started-text-column p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #444;
  max-width: 600px;
}

.get-started-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.get-started-buttons img {
  height: 50px;
  cursor: pointer;
}

.get-started-image-column {
  flex: 1;
  display: flex;
  justify-content: center;
}

.get-started-image-column img {
  max-width: 100%;
  height: auto;
}

/* ---------- Tablet (≤1024px) ---------- */
@media (max-width: 1024px) {
  .get-started-section {
    padding: 1px 20px;
  }
  .get-started-container {
    text-align: center;
    gap: 30px;
    padding: 50px 1px 30px 15px;
  }

  .get-started-text-column {
    order: 2;
  }

  .get-started-image-column {
    order: 1;
  }

  .get-started-text-column h1 {
    font-size: 32px;
  }

  .get-started-text-column p {
    font-size: 16px;
    margin: 10px auto;
  }

  .get-started-buttons {
    justify-content: start;
  }
}

/* ---------- Mobile (≤600px) ---------- */
@media (max-width: 600px) {
  .get-started-section {
    padding: 50px 20px;
  }
  .get-started-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 0px;
  }

  .get-started-text-column h1 {
    font-size: 24px;
  }

  .get-started-text-column p {
    font-size: 14px;
  }

  .get-started-buttons img {
    height: 40px;
  }
}

/* ---------- Extra Small (≤300px) ---------- */
@media (max-width: 300px) {
  .get-started-section {
    padding: 30px 10px;
  }
  .get-started-container {
    padding: 4px;
  }
  .get-started-text-column h1 {
    font-size: 18px;
    line-height: 1.2;
  }

  .get-started-text-column p {
    font-size: 12px;
  }

  .get-started-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .get-started-buttons img {
    height: 35px;
  }
}

/* ========================= */
/* Footer */
/* ========================= */
.footer {
  background-color: #227138; /* Dark green background */
  color: #fff;
  padding: 20px;
  width: 100%;
}

.footer_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1px 100px;
  margin: 0 auto;
}

.footer_copyright {
  font-size: 14px;
}

.footer_copyright p {
  margin: 0;
}

.footer_social_icons {
  display: flex;
  gap: 15px;
}

.footer_social_icons img {
  width: 24px;
  height: 24px;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .footer_container {
    flex-direction: column;
    text-align: center;
    padding: 0px 13px;
    gap: 15px;
  }
}
