@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --light-green: #edfaf1;
    --base-green: #24dd71;
    --dark-green: #208245;
    --light-yellow: #ffe3a3;
    --base-yellow: #ffcc56;
    --dark-yellow: #ffb914;
    --light-heading: #efefef;
    --light-text: #cecece;
    --dark-heading: #232d39;
    --dark-text: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', arial;
}

html, body {
    scroll-behavior: smooth;
}
body {
    background-color: #f9f9f9;
}


/* navigation */

header  {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    transform: translateY(0);
    padding: 0 20px;
    background-color: var(--light-green);
    transition: transform .3s ease-in-out;
    box-shadow: 0 1px 6px var(--dark-green);
}

header.hidden {
    transform: translateY(-100%);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3px 21px  3px;
}

.logo {
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 2.1rem;
    color: var(--dark-yellow);
}

.logo span {
    color: var(--dark-green);
}

.nav-items {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-green);
    font-size: 18px;
    transition: .2s ease;
    user-select: none;
}

.nav-links a:hover {
    color: var(--dark-yellow);
}

.nav-links a:active {
    color: var(--dark-green);
}

.nav-items button {
    background-color: var(--dark-green);
    padding: .3rem 1.3rem;
    outline: none;
    font-size: 18px;
    border: none;
    color: var(--light-green);
    border-radius: 4px;
    cursor: pointer;
    transition: .2s ease;
    margin-left: 2rem;
}

.nav-items button:hover {
    background-color: var(--dark-yellow);
}

.nav-items button:active {
    background-color: var(--dark-green);
}

#menu-btn {
    color: var(--dark-green);
    cursor: pointer;
    display: none;
    margin-left: .5rem;
}

#close-menu-btn {
    position: absolute;
    top: 20px;
    color: var(--dark-green);
    right: 20px;
    display: none;
    cursor: pointer;
}

.scroll-bar {
    width: 100%;
    height: 3px;
    background-color: var(--dark-yellow);
    position: fixed;
    top: 0;
    z-index: 1000;
    scale: 0 1;
    transform-origin: left;
    animation: scroll linear;
    animation-timeline: scroll(y);
}

@keyframes scroll {
    to {
        scale: 1 1;
    }
}



.main-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  color: var(--light-heading);
}

.slideshow-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  height: 100%;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--light-heading);
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2rem;
  color: var(--light-text);
}

.cta-group {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-button {
  background-color: var(--dark-green);
  color: var(--light-heading);
  padding: 0.75rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: var(--dark-yellow);
}

.promo-badge {
  background-color: var(--dark-yellow);
  color: var(--dark-heading);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  max-width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  animation: pop-in 1s ease;
}

.promo-badge strong {
  font-size: 1.2rem;
}

.social-icons {
  margin-top: 2rem;
  display: flex;
  gap: 1.2rem;
}

.social-icons a {
  color: var(--light-green);
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--dark-yellow);
}

@keyframes pop-in {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .promo-badge {
    font-size: 0.8rem;
  }
}

/* achievements */

.achievements {
    width: 100%;
    padding: 20px;
    background-color: var(--dark-green);
    transition: all .3s ease;
}

.achievements h2 {
    font-size: 2rem;
    text-align: center;
    margin: .5rem auto;
    color: var(--light-heading);
    cursor: default;
}

.achievements .description {
    font-size: 1.1rem;
    color: var(--light-text);
    cursor: default;
    text-align: center;
    margin: 1rem auto;
}

.achievements .container {
    max-width: 1200px;
    margin: 2rem auto;
}

.achievements-container {
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.achievement {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 .8rem;
    gap: .8rem;
    margin: 1rem;
    width: 16rem;
    border-left: 2px solid var(--light-green);
}


.achievement .icon {
    font-size: 2rem;
    width: 3.5rem;
    text-align: center;
    display: flex;
    justify-content: center;
    box-shadow: 0 0 12px var(--dark-yellow);
    align-items: center;
    height: 3.5rem;
    color: var(--dark-yellow);
    background-color: var(--light-green);
    border-radius: 50%;

}

.achievement .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--light-heading);
    cursor: default;
}

.achievement .name {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--light-text);
    cursor: default;
}


/* about */

.about {
    width: 100%;
    padding: 20px;
    height: auto;
    background-color: white;
    transition: all .3s ease;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    height: auto;
}

.about-content {
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.about-title {
    font-size: 3rem;
    text-align: left;
    color: var(--dark-heading);
    cursor: default;
    max-width: 600px;
}

.about-title span {
    color: var(--dark-green);
}

.about-description {
    color: var(--dark-text);
    cursor: default;
    text-align: left;
    max-width: 600px;
}

.about-cards {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    margin: 3rem auto;
}

.about-cards .card {
    max-width: 380px;
    min-height: 250px;
    padding: .5rem;
    border-radius: .6rem;
    cursor: default;
    transition: all .3s ease;
}

.card-icon {
    font-size: 1.5rem;
    padding: .2rem;
    width: 3rem;
    height: 3rem;
    border-radius: .5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.timing {
    color: #f77c2a;
    background-color: #f77c2a39;
}
.cleaners {
    color: #208245;
    background-color: #20824639;
}
.satisfaction {
    color: #8e29b6;
    background-color: #8e29b639;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-heading);
    margin: .3rem 0;
}

.card-description {
    line-height: 1.3;
    color: var(--dark-text);
}


/* services */

.services {
    width: 100%;
    padding: 20px;
    height: auto;
    background-color: var(--light-green);
    transition: all .3s ease;
}

.services-title {
    font-size: 3rem;
    text-align: center;
    color: var(--dark-heading);
    cursor: default;
    margin: 2.5rem auto 1rem;
}

.services-description {
    font-size: 1rem;
    text-align: center;
    margin: 1rem auto 2.5rem;
    color: var(--dark-text);
    cursor: default;
}

.services-container {
    max-width: 1200px;
    margin: 4rem auto 2rem;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    gap: 2rem;
}

.service {
    max-width: 300px;
    min-height: 350px;
    padding: 1rem;
    border-radius: 1rem;
    background-color: white;
    box-shadow: 0 0 8px rgba(0,0,0,0.05); 
    transition: all .3s ease;
}

.service .detail {
    min-height: 150px;
    cursor: default;
}

.service .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: .5rem;
    border-radius: 50%;
    border: none;
    width: 100px;
    height: 100px;
}

.service i {
    text-align: center;
    font-size: 3.5rem;
    color: var(--dark-green);
}

.service .title {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-top: 1.5rem;
    color: var(--dark-heading);
}

.service .description {
    font-size: 1rem;
    text-align: center;
    color: var(--dark-text);
    margin-top: .5rem;
}

.service .learn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}

.service a {
    color: var(--light-green);
    background-color: var(--dark-green);
    padding: .3rem 1rem;
    border: none;
    outline: none;
    font-size: 14px;
    border-radius: .4rem;
    transition: all .3s ease;
    text-decoration: none;
    cursor: pointer;
}

.service:hover {
    background-color: var(--dark-green);
}

.service:hover .icon {
    background-color: white;
}

.service:hover i {
    color: var(--dark-green);
}

.service:hover .title {
    color: var(--light-heading);
}

.service:hover .description {
    color: var(--light-heading);
}

.service:hover a {
    background-color: var(--light-green);
    color: var(--dark-green);
}

.service a:hover {
    background-color: var(--dark-yellow);
    color: var(--light-heading);
}

.service a:active {
    background-color: var(--light-green);
    color: var(--dark-green);
}


/* testimonials */

.testimonials {
    width: 100%;
    padding: 20px;
    height: auto;
    background-color: white;
    transition: all .3s ease;
}

.testi-title {
    font-size: 3rem;
    text-align: center;
    margin-top: 2rem;
    color: var(--dark-heading);
    cursor: default;
}

.testi-description {
    color: var(--dark-text);
    margin-top: 1rem;
    text-align: center;
}

.testi-container {
    max-width: 1200px;
    margin: 4rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.customer {
    border-radius: 1.5rem;
    min-width: 280px;
    height: 350px;
    background-color: var(--dark-green);
    transition: all .3s ease;
}

.customer .content {
    width: 100%;
    height: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    padding: 1rem;
    background-color: var(--light-green);
    box-shadow: 0 0 8px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all .3s ease;
    pointer-events: none;
}

.customer, .customer .content {
    will-change: transform;
}

.cust-content {
    max-width: 200px;
    margin: 0 auto;
}

.customer .profile {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: .6rem;
}

.profile .image {
    padding: .8rem .8rem .4rem .4rem;
    background-color: var(--dark-green);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(25deg);
    border-radius: 35% 40% 50% 50%;
    margin-left: .4rem;
    transition: all .3s ease;
}

.image img {
    width: 4rem;
    border: 3px solid white;
    border-radius: 50%;
    transform: rotate(-25deg);
}

.profile .name {
    margin-top: .6rem;
    text-align: center;
    color: var(--dark-heading);
    cursor: default;
    z-index: 1;
}

.profile .name span {
    color: var(--dark-green);
    font-weight: 600
}

.customer .review {
    margin-top: .8rem;
    text-align: center;
    padding: 0 auto;
    color: var(--dark-text);
    cursor: default;
    z-index: 1;
}

.customer:hover{
    transform: rotate(5deg);
}

.customer:hover .content{
    transform: rotate(-5deg);
}


/* footer */

footer {
    width: 100%;
    height: auto;
    background-color: var(--dark-green);
    padding: 20px;
}

.footer {
    max-width: 1200px;
    margin: 2rem auto 5rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer .main {
    cursor: default;
    flex: 1 1 400px;
}

.footer .brand {
    width: 100px;
    height: 30px;
    border-radius: .4rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    background-color: var(--light-green);
    color: var(--dark-yellow);
}

.footer span {
    color: var(--dark-green);
}

.brand-description {
    color: var(--light-text);
}

.footer .links {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    flex: 2 1 700px;
    gap: 2rem;
}

.footer .links div {
    flex: 1;
}

.footer .links .title {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--light-heading);
    margin-bottom: 1rem;
    cursor: default;
}

.footer ul {
    list-style: none;
    white-space: nowrap;
}

.footer li {
    margin-bottom: .3rem;
}

.footer ul a {
    text-decoration: none;
    color: var(--light-text);
    transition: all .3s ease;
}

.footer a:hover {
    color: var(--dark-yellow);
}

.footer a:active {
    color: var(--light-text);
}

.copyright {
    text-align: center;
    color: var(--light-text);
    margin-top: .2rem;
}