* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
}

.header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  color:#4CAF4F;
  font-size: 18px;
}

.logo-text {
  font-size: 20px;
  font-weight: bold;
  color: #263238;
  width: 77.61px;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  text-decoration: none;
  color: #263238;
  font-size: 15px;
  transition: color 0.3s;
}

.nav a:hover {
  color: #4CAF4F;
}

/* Button */
.btn {
  background: #4CAF4F;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 500;
}

.btn:hover {
  background: #4CAF4F;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: #263238;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    display: none;
    border-top: 1px solid #eee;
  }

  .nav.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #f7f9fc;
  color: #263238;
}

/* HERO */
.hero {
  padding: 60px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-text h1 span {
  color: #4CAF4F;
}

.hero-text p {
  font-size: 16px;
  color: #717171;
  margin-bottom: 24px;
  max-width: 420px;
}

.btn {
  display: inline-block;
  background: #4CAF4F;
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

/* CLIENTS */
.clients {
  background: #fff;
  color: #4D4D4D;
  padding: 60px 20px;
  text-align: center;
}

.clients h2 {
  font-size: 28px;
  margin-bottom: 10px;
  columns: #4D4D4D;
}

.clients p {
  color: #717171;
  margin-bottom: 30px;
}

.client-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.client-logos span image {
  opacity: 0.6;
  font-size: 14px;
  gap: 70px;
  color: #263238;
}

/* COMMUNITY */
.community {
  padding: 70px 20px;
  text-align: center;
}

.community h2 {
  font-size: 32px;
  margin-bottom: 12px;
  color: #4D4D4D;
}

.community p {
  color:  #717171;
  margin-bottom: 40px;
}

.cards {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 24px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.card .icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #717171;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 30px;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #ffffff;
  color: #263238;
}

/* FEATURE SECTION */
.feature {
  background:  #ffffff;
  padding: 80px 20px;
}

.feature-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.feature-image img {
  max-width: 100%;
  height: auto;
}

.feature-text {
  max-width: 520px;
}

.feature-text h2 {
  font-size: 34px;
  line-height: 1.3;
  color: #4D4D4D;
  margin-bottom: 18px;
}

.feature-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #717171;
  margin-bottom: 24px;
}

.btn {
  display: inline-block;
  background: #4CAF4F;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

/* STATS SECTION */
.stats {
  background: #f7f9fc;
  padding: 70px 20px;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.stats-left h3 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #4D4D4D;
}

.stats-left h3 span {
  color: #4CAF4F;
}

.stats-left p {
  color: #4D4D4D;
  font-size: 15px;
}

.stats-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 60px;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat-box .icon {
  font-size: 28px;
}

.stat-box h4 {
  font-size: 20px;
  margin-bottom: 2px;
}

.stat-box span {
  font-size: 14px;
  color: #717171;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .feature-container {
    flex-direction: column;
    text-align: center;
  }

  .stats-container {
    flex-direction: column;
    text-align: center;
  }

  .stats-right {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .feature-text h2 {
    font-size: 26px;
  }

  .stats-left h3 {
    font-size: 26px;
  }

  .stats-right {
    grid-template-columns: 1fr;
  }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f7fa;
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 80px 20px;
    background: #f5f7fa;
}

.cta h1 {
    font-size: 44.55px;
    letter-spacing: 0%;
    font-style: Semi Bold;
    color: #263238;
    line-height: 52.9px;
    font-weight: 600;
    margin-bottom: 25px;
}
.cta a{
  font-size: 11.14px;
  line-height: 16.71px;
  font-weight: 500;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: #4CAF4F;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
}

/* Footer */
.footer {
    background: #263238;
    color: #fff;
    padding: 60px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* Footer Boxes */
.footer-box {
    flex: 1 1 220px;
    padding: 1523px,1px;
}

.logo {
    font-size: 26px;
    margin-bottom: 10px;
}

.footer-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #F5F7FA;
}

.footer-box h3 {
    margin-bottom: 15px;
}

.footer-box ul {
    list-style: none;
    gap: 8.35px;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    text-decoration: none;
    color: #cfd8dc;
    font-size: 14px;
}

/* Social Icons */
.socials {
    margin-top: 15px;
    gap: 11.14px;
}

.socials span {
    display: inline-block;
    margin-right: 8px;
    background: #455a64;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
}
.socials span img{
  height: 28.27px;
  width: 28.27px;
}

/* Newsletter */
.newsletter {
    display: flex;
    background: #455a64;
    border-radius: 6px;
    overflow: hidden;
    color: #FFFFFF;
}

.newsletter input {
    border: none;
    padding: 10px;
    flex: 1;
    background: transparent;
    color: #fff;
    outline: none;
}

.newsletter button {
    border: none;
    background: #4CAF4F;
    color: #fff;
    padding: 0 15px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .cta h1 {
        font-size: 26px;
    }

    .footer-container {
        flex-direction: column;
    }
}
