/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #f9fafc;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* header Nav */


/* NAVBAR */
.navbar {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #eee;
    backdrop-filter: blur(10px);

  position: sticky;
  top: 0;
  z-index: 1000;
}

/* CONTAINER */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-links a.active {
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;

  border-style: solid;
  border-color: #6c7ae0 transparent transparent transparent;
}

/* LOGO */
.logo img {
  height: 28px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  position: relative;
  padding: 6px 10px;
  transition: 0.2s;
}

/* ACTIVE TAB (like screenshot highlight) */
.nav-links a.active {
  background: #6c7ae0;
  color: #fff;
  border-radius: 6px;
}

/* HOVER */
.nav-links a:hover {
  color: #6c7ae0;
}

/* CTA BUTTON */
.btn-outline {
  border: 2px solid #3bb273;
  color: #3bb273;
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #3bb273;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links {
    display: none; /* later we can add hamburger */
  }
}










/* HERO SECTION */
.hero {
  position: relative;
  padding: 80px 0 60px;
  background: #ffffff;
  overflow: hidden;
}

/* subtle dotted background */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#e6e6e6 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.4;
  z-index: 0;
}

/* FLEX LAYOUT */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* LEFT CONTENT */
.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 600;
  color: #111;
  margin-bottom: 20px;
}

.no-gap {
  margin-left: 5px;
}

.hero-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
}

/* HIGHLIGHT TEXT */
.highlight {
  background: #4caf50;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  padding: 12px 20px;
  border: 2px solid #6c7ae0;
  color: #6c7ae0;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #6c7ae0;
  color: #fff;
}

/* RIGHT IMAGE */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 450px;
}

/* BOTTOM PATTERN STRIP */
.hero-pattern {
  margin-top: 60px;
  height: 40px;
  background: repeating-linear-gradient(
    45deg,
    #6c7ae0,
    #6c7ae0 10px,
    #ffffff 10px,
    #ffffff 20px
  );
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-image img {
    max-width: 300px;
  }
}

/* SECTION BASE */
.about-highlight {
  background: linear-gradient(180deg, #6f7edb, #7c8be6);
  padding: 80px 0;
  color: #fff;
  position: relative;
}

/* CONTAINER */
.about-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT */
.about-left {
  flex: 1;
}

.about-left h2 {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.3;
}

/* RIGHT */
.about-right {
  flex: 1;
}

.about-right p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #eaeaff;
}

/* PATTERN STRIPS */
.pattern-top,
.pattern-bottom {
  height: 40px;
  width: 100%;
  background: repeating-linear-gradient(
    45deg,
    #ffffff,
    #ffffff 10px,
    transparent 10px,
    transparent 20px
  );
  opacity: 0.9;
}

/* slight variation for top */
.pattern-top {
  position: absolute;
  top: 0;
  left: 0;
}

/* bottom */
.pattern-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-left h2 {
    font-size: 32px;
  }
}

/* SECTION */
.products {
  padding: 80px 0;
  background: #f7f8fa;
}

/* HEADER */
.products-header {
  max-width: 700px;
  margin-bottom: 50px;
}

.products-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.products-header p {
  color: #555;
  line-height: 1.6;
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD BASE */
.product-card {
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  transition: 0.3s;
}

.product-card h3 {
  margin-bottom: 15px;
}

/* IMAGE */
.product-image img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
}

/* TEXT */
.product-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

/* BUTTON */
.btn-secondary {
  display: inline-block;
  padding: 10px 18px;
  background: #3e7c59;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-secondary:hover {
  opacity: 0.85;
}

/* COLOR VARIANTS */
.product-card.green {
  background: #dfeee3;
}

.product-card.blue {
  background: #e1e6f2;
}

/* HOVER EFFECT */
.product-card:hover {
  transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION */
.team {
  background: #eef0f6;
  padding: 80px 0;
}

/* LAYOUT */
.team-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* IMAGE */
.team-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.team-image img {
  width: 100%;
  max-width: 420px;
}

/* CONTENT */
.team-content {
  flex: 1;
  max-width: 520px;
}

.team-content h2 {
  font-size: 34px;
  margin-bottom: 20px;
  color: #222;
}

.team-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .team-container {
    flex-direction: column;
    text-align: center;
  }

  .team-content h2 {
    font-size: 28px;
  }
}
/* SECTION */
.trusted {
  padding: 80px 0;
  background: #ffffff;
}

/* HEADER */
.trusted-header {
  max-width: 700px;
  margin-bottom: 50px;
}

.trusted-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #111;
}

.trusted-header p {
  color: #555;
  line-height: 1.6;
}

/* GRID */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

/* CARD */
.logo-card {
  aspect-ratio: 1 / 1;   /* makes it square */
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 12px 24px rgba(0, 0, 0, 0.06);

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden; /* important */
  padding: 0; /* remove padding */
}

.logo-card img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

/* HOVER */
.logo-card:hover {
  transform: translateY(-4px);
  background: #ffffff;
    filter: grayscale(0%);
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 500px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* SECTION */
.cta {
  background: #c9d8c8; /* soft green like screenshot */
  padding: 100px 20px;
  text-align: center;
}

/* CONTAINER */
.cta-container {
  max-width: 700px;
  margin: auto;
}

/* TITLE */
.cta h2 {
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #111;
}

/* TEXT */
.cta p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* BUTTON */
.cta-button {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

/* HOVER */
.cta-button:hover {
  background: #222;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .cta h2 {
    font-size: 36px;
  }

  .cta p {
    font-size: 16px;
  }
}

/* FOOTER */
.footer {
  background: linear-gradient(135deg, #6ec06e, #4aa35e);
  padding: 80px 0;
  color: #fff;
}

/* LAYOUT */
.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

/* COLUMN */
.footer-col {
  flex: 1;
}

.footer-col h3 {
  margin-bottom: 20px;
  font-size: 20px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: #eaffea;
  text-decoration: none;
  transition: 0.2s;
}

.footer-col a:hover {
  color: #ffffff;
}

/* TEXT */
.footer-col p {
  margin-bottom: 8px;
  color: #eaffea;
}

/* EMAIL */
.footer-email {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

/* SPACING */
.mt {
  margin-top: 15px;
}

.mt-lg {
  margin-top: 30px;
}

/* IMAGES */
.ratings img,
.payment img {
  display: block;
  margin-bottom: 12px;
  max-width: 160px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .ratings img,
  .payment img {
    margin: 10px auto;
  }
}