@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --primary-color: #223203;
    --secondary-color: #c1F900;
    --third-color: #c1F900;
    --fourth-color: #f4ffce;
    --formore: white;
    --background-color: #fcfcfc;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: white;
    font-family: 'Inter', sans-serif;
}


.header {
    width: 100%;
    min-height: 100vh;
    padding: 1.8rem 2rem;
    padding-left: 70px;
    padding-right:  70px;
    background: linear-gradient(to bottom, #fdfff3, #ffffff, #f8ffdf);
}
#toggle-menu {
    display: none;
    color: #c1F900;
    font-size: 1.5rem;
}

.navbar {
    width: 100%;
    height: 70px;
    padding: 15px 2rem;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 100px;
    margin-top: 30px;
    margin-bottom: 120px;
}

.navbar-logo img {
    width: 110px;
    cursor: pointer;
}

.navbar ul{
    display: flex;
    flex-direction: row;
    color: var(--secondary-color);
    gap: 40px;
}

.navbar ul li {
    list-style: none;
    font-weight: 500;
}

.navbar li a {
    text-decoration: none;
    color: white;
    transition: color 0.5s ease, text-decoration 0.5s ease;
}


.navbar li a:hover {
    text-decoration: none;
    color: var(--secondary-color);
    text-decoration: underline;
}


.navbar-btn a {
    padding: 7px 25px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    border-radius: 50px;
    transition: ease 0.3s;
}

.navbar-btn a:hover {
    border: 2px solid var(--secondary-color);
    background-color: #22320300;
    color: white;
}


.header h4 {
    margin-top: 50px;
    font-size: 4.5rem;
    max-width: 750px;
    color: #223203;
    line-height: 4.5rem;
    margin-top: 50px;
    margin-bottom: 20px;
}

.header p {
    font-size: 0.8rem;
    line-height: 1.1rem;
    font-weight: 500;
    max-width: 500px;
    margin-bottom: 35px;
    font-family: 'Inter', sans-serif;
}



.header .sign-up {
    padding: 0.6rem 1.9rem;
    border-radius: 20px;
    text-decoration: none;
    border-radius: 10px;
    color: #c1F900;
    font-weight: 500;
    background-color: var(--primary-color);
    margin-right: 15px;
    transition: ease 0.3s;
}

.sign-up:hover {
    border: 2px solid var(--primary-color);
    background-color: #22320300;
    color: var(--primary-color);
}

.header .sign-in {
    padding: 0.6rem 1.9rem;
    border-radius: 20px;
    text-decoration: none;
    border-radius: 10px;
    color: #c1F900;
    font-weight: 500;
    background-color: none;
    border: 2px solid var(--secondary-color);   
    transition: ease 0.3s;
}

.sign-in:hover {
    border: 2px solid #fdfff300;   
    background-color: var(--primary-color);
    color: white;
}

.banner img {
    right: 50px;
    top: 150px;
    position: absolute;
    width: 550px;
}

#services {
    width: 100%;
    background-color: white;
    padding: 40px;
    min-height: 100vh;
}

#services h4 {
    color: #223203;
    font-size: 1.7rem;
    line-height: 1.0rem;
    margin-left: 20px;
    margin-bottom: 0.5rem;
}

#services h4 span {
    color: #c1F900;
}

.container {
    width: 100%;
    min-height: 300px;
    gap: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 20px;
    justify-content: center;

}

.cont {
    width: 400px;
    height: 230px;
    padding: 30px;
    background-color: var(--fourth-color);
    flex-direction: row;
    flex-wrap: wrap;
    border-radius: 20px;
    transition: transform 0.7s ease;
}

.cont:hover {
    transform: translateY(-7px);
}

.cont img {
    width: 3.0rem;
    margin-bottom: 0.5rem;
}

.cont h5 {
    font-size: 1rem;
    font-weight: 800;
    color: #223203;
    margin-bottom: 0.5rem;
}

.cont p {
    line-height: 1.5rem;
    font-weight: 550;
    color: #223203;
    font-size: 1rem;
}


#why-maxplug {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.why-header .tag {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.why-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    background-color: var(--primary-color);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-card i {
    width: 50px;
    margin-bottom: 15px;
    font-size: 30px;
    color: #c1F900;
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--fourth-color);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.95rem;
    color: white;
    margin-bottom: 15px;
    line-height: 1.5;
}

.why-card a {
    font-weight: bold;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.95rem;
}

.why-card a span {
    font-weight: 900;
    margin-left: 5px;
}





.reviews {
  padding:  15px 60px;  
  margin-top: 10px;
  margin-bottom: 30px;
  text-align: center;
  background: #fff;
  font-family: 'Inter', sans-serif;

}

.section-title {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--primary-color);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.review-card {
  background: var(--fourth-color);
  padding: 25px;
  border-radius: 20px;
  
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform: translateY(10px);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px var(--fifth-color);
}

.review-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 6px;
  border: 3px solid var(--secondary-color);
}

.review-card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.review-card h5 {
  margin: 0;
      font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: black;
}

.review-card p {
  font-size: 0.95rem;
  color: #151515;
  margin: 10px 0 15px;
}

.stars {
  color: #fff81f;
  font-size: 1.2rem;
} 


.footer {
  background-color: var(--primary-color);
  color: white;
  padding: 4rem 6%;
  font-family: 'Inter', sans-serif;
}

.footer h1 {
  color: #c1f900;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.rem;
}

.footer em {
  color: var(--fourth-color);
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-logo {
  max-width: 250px;
}

.footer-logo p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

.footer-links {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.footer-section h2 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul a {
    text-decoration: none;
    color: white;
}

.footer-section ul li {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-section ul li:hover {
  color: #fff;
}

.footer-contact {
  color: white;
  font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
  line-height: 1.6;
  max-width: 250px;
}

.footer-contact p {
  margin: 0.4rem 0;
  font-weight: 400;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 30px;
  height: 30px;
  padding-top: 5px;
  background-color: var(--fourth-color);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 1.1rem;
  transition: background-color 0.3s, color 0.3s;
}

.social-icons a:hover {
  background-color: #c1f900;
  color: #000;
}
.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: #888;
}

.footer-bottom hr {
  border: none;
  margin-bottom: 1rem;
  border-top: 1px solid #ffffff;
  margin-bottom: rem;
}


@media (max-width: 1247px) {
        .banner img {
        position: static;
        width: 70%;
        margin-top: 20px;
    }
    
    

}


@media (max-width: 800px) {
    .header {
        padding: 1.5rem;
    }

 .navbar {
    width: 100%;
    height: 70px;
    padding: 15px 2rem;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 100px;
    margin-top: 30px;
    margin-bottom: 40px;
}

    .navbar ul {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 20px;
        margin-top: 15px;
    }

    .navbar ul.open {
        display: block;
    }

    #toggle-menu {
        display: block;
        position: ;
        top: 25px;
        right: 25px;
        cursor: pointer;
    }

    .navbar-btn {
        display: none;
    }

    .header h4 {
        font-size: 2.5rem;
        line-height: 2.8rem;
        max-width: 40rem;
        margin-top: 0px;
    }

    .header p {
        font-size: 0.8rem;
        line-height: 1.3rem;
    }


    .banner img {
        position: static;
        width: 100%;
        margin-top: 20px;
    }

    .cont {
        min-width: 300px;
        width: 450px;
        height: auto;
    }

    #services {
        padding: 15px;
    }

    #services h4 {
        font-size: 1.3rem;
    }

    .reviews {
        padding:  15px 30px;
    }

    .section-title {
        font-size: 20px;
    }

    .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links {
    flex-direction: column;
    align-items: ;
    gap: 2rem;
  }

  .footer-logo {
    max-width: 100%;
  }

  .footer-section h2 {
    font-size: 1rem;
  }

  .footer-section ul li {
    font-size: 0.85rem;
  }

  .footer-contact {
    text-align: ;
  }

  .footer-bottom {
    font-size: 0.75rem;
  }


}





