/* =====================================================
                        GLOBAL 
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}


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


/* =====================================================
   HEADER / NAVBAR
===================================================== */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}


/* =====================================================
   LOGO STYLES
===================================================== */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: bold;
  color: #263238;
}

.logo img {
  width: 32px;
}


/* =====================================================
   NAVIGATION MENU
===================================================== */
.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #4d4d4d;
  font-size: 15px;
}

.nav-menu a.active {
  color: #28cb8b;
  font-weight: 600;
}


/* =====================================================
   NAVBAR BUTTONS
===================================================== */
.nav-btn {
  display: flex;
  gap: 12px;
}

.Login {
  background: transparent;
  border: none;
  color: #4caf4f;
  font-size: 15px;
  cursor: pointer;
}

.Sign {
  background: #4caf4f;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}


/* =====================================================
   HAMBURGER MENU (MOBILE)
===================================================== */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* =====================================================
   HERO SECTION
===================================================== */
.hero {
  background: #F5F7FA;
  padding: 96px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
}

.hero-text span {
  color: #4CAF4F;
}

.hero-text p {
  margin: 18px 0 30px;
  color: #717171;
}

.btn {
  display: inline-block;
  background: #4CAF4F;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #43a047;
}


/* =====================================================
   CLIENTS SECTION
===================================================== */
.clients {
  padding: 60px 0;
}

.clients p {
  color: #717171;
  margin-top: 8px;
  text-align: center;
}

.client-logos {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* =====================================================
   COMMUNITY SECTION
===================================================== */
.community {
  padding: 80px 0;
  text-align: center;
}

.community p {
  color: #717171;
  margin-top: 8px;
}

.cards {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}


/* =====================================================
   COMMUNITY CARD
===================================================== */
.card {
  width: 360px;
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: 0.3s ease;

}

.card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  background: #e8f5e9;
  padding: 10px;
  border-radius: 12px;
}

.card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #263238;
  margin-bottom: 12px;
  line-height: 1.4;
}

.card p {
  font-size: 14px;
  color: #717171;
  line-height: 1.6;
}


/* =====================================================
   FEATURE SECTION
===================================================== */
.feature {
  padding: 80px 0;
  background: #ffffff;
}

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

.feature-content.reverse {
  flex-direction: row-reverse;
}


.feature-content img {
  width: 480px;
  max-width: 100%;
}

.feature-content > div {
  max-width: 520px;
}

.feature-content h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  color: #263238;
  margin-bottom: 16px;
}

.feature-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #717171;
  margin-bottom: 32px;
}

.feature-content .btn {
  padding: 12px 32px;
}


/* =====================================================
   STATS SECTION
===================================================== */
.stats {
  background: #F5F7FA;
  padding: 72px 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stats-text {
  max-width: 520px;
}

.stats-text h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  color: #263238;
  margin-bottom: 12px;
}

.stats-text h2 span {
  color: #4CAF4F;
}

.stats-text p {
  font-size: 14px;
  color: #717171;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
  row-gap: 32px;
}

.numbers > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.numbers img {
  width: 40px;
  height: 40px;
}

.numbers strong {
  display: block;
  font-size: 28px;
  font-weight: 600;
  color: #263238;
  line-height: 1.2;
}

.numbers span {
  display: block;
  font-size: 14px;
  color: #717171;
}


/* =====================================================
   TESTIMONIAL SECTION
===================================================== */
.testimonial {
  background: #F5F7FA;
  padding: 72px 0;
  display: flex;
  align-items: center;
  gap: 72px;
}


.testimonial .box {
  width: 320px;
  height: 320px;
  background: #F5F7FA; 
  border-radius: 8px;
  margin-left: 120px;
}

.testimonial-content {
  max-width: 760px;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  color: #717171;
  margin-bottom: 24px;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 600;
  color: #4CAF4F;
  margin-bottom: 4px;
}

.testimonial-role {
  display: block;
  font-size: 14px;
  color: #89939E;
  margin-bottom: 32px;
}

.testimonial-logos {
  display: flex;
  align-items: center;
  gap: 32px;
}

.testimonial-logos img {
  height: 28px;
  object-fit: contain;
}

.meet-link {
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
  color: #4CAF4F;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}


/* =====================================================
   BLOG SECTION
===================================================== */
.blog-section {
  background: #ffffff;
  padding: 80px 0 100px;
}

.blog-header {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.blog-header h2 {
  font-size: 36px;
  font-weight: 600;
  color: #263238;
  margin-bottom: 12px;
}

.blog-header p {
  font-size: 14px;
  line-height: 1.6;
  color: #717171;
}

.blog-cards {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.blog-card {
  width: 360px;
  background: #F5F7FA;
  padding: 32px 28px;
  border-radius: 8px;
  text-align: center;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04);
}


.blog-card p {
  font-size: 16px;
  font-weight: 500;
  color: #263238;
  line-height: 1.5;
  margin-bottom: 20px;
}

.blog-card a {
  font-size: 14px;
  font-weight: 500;
  color: #4CAF4F;
  text-decoration: none;
}


/* =====================================================
   CALL TO ACTION SECTION
===================================================== */
.cta-section {
  background: #F5F7FA;
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  color: #263238;
  margin-bottom: 32px;
}


/* =====================================================
   FOOTER
===================================================== */
.footer {
  background: #263238;
  padding: 64px 0;
  color: #FFFFFF;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-logo span {
  font-size: 20px;
  font-weight: 600;
}

.footer-brand p {
  font-size: 14px;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.6;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 32px;
  height: 32px;
  background: #263238;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 12px;
}

.footer-links h4,
.footer-newsletter h4 {
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: white;
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-newsletter form {
  display: flex;
  background: #717171;
  border-radius: 8px;
  overflow: hidden;
}

.footer-newsletter input {
  flex: 1;
  border: none;
  padding: 12px;
  background: transparent;
  color: #89939E;
  font-size: 14px;
}

.footer-newsletter input::placeholder {
  color: #fff;
}

.footer-newsletter button {
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 0 16px;
  cursor: pointer;
  font-size: 16px;
}



@media (max-width: 768px) {

  /* ===============================
     NAVBAR (MOBILE)
  =============================== */
  .menu-toggle {
    display: block;
  }

  .navbar {
    position: relative;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    display: none;
    border-bottom: 1px solid #eee;
    z-index: 10;
  }

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

  .nav-btn {
    display: none;
  }

  /* ===============================
     HERO + FEATURE + STATS
  =============================== */
  .hero-content,
  .feature-content,
  .stats-grid,
  .testimonial {
    flex-direction: column;
    text-align: center;
  }

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

  .feature-content img {
    width: 100%;
  }

  /* ===============================
     CARDS + BLOG
  =============================== */
  .cards,
  .blog-cards {
    flex-direction: column;
    align-items: center;
  }

  .card,
  .blog-card {
    width: 100%;
  }

  /* ===============================
     CLIENT LOGOS
  =============================== */
  .client-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  /* ===============================
     TESTIMONIAL
  =============================== */
  .testimonial .box {
    margin: 0;
  }

  .testimonial-logos {
    flex-wrap: wrap;
    justify-content: center;
  }

  .meet-link {
    margin-left: 0;
    justify-content: center;
  }

  /* ===============================
     FOOTER
  =============================== */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* ===============================
   STATS SECTION - MOBILE RESPONSIVE
================================ */

@media (max-width: 768px) {

  .stats {
    padding: 48px 0;
  }

  .stats-grid {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

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

  .stats-text h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .stats-text p {
    font-size: 14px;
  }

  .numbers {
    grid-template-columns: 1fr;
    row-gap: 24px;
    column-gap: 0;
  }

  .numbers > div {
    justify-content: center;
  }

  .numbers strong {
    font-size: 22px;
  }

  .numbers span {
    font-size: 13px;
  }
}
