* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

:root {
  --pri-color: #05361a;
  --sec-color: #aad13f;
  --acc-color: #B6DB8C;
  --linear-grd: linear-gradient(270deg, #05361a 0%, var(--pri-color) 100%);
  --linear-grd-light: linear-gradient(270deg, #094f26 0%, var(--pri-color) 100%);
  --shadow-main: box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  --grey-txt-color: #707070;
  --body-bg-color: #f5f5f5;
  --black-txt-color: #1d1d1d;
}

body {
    background-color: #F5F5F5;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    font-family: "Anek Gujarati", sans-serif;
    position: relative;
}

.homepage-hero {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 600px;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(270deg, #05361a 0%, #05361a 100%);
    margin-top: 70px;
}

.homepage-hero h1 {
color: white;
font-weight: 400;
font-size: 56px;
width: 18ch;
line-height: 1.3;
}
.bold {
    color: var(--sec-color);
    font-weight: 600;
    transition: 0.5s;
}
.homepage-hero p {
color: rgb(222, 222, 222);
font-weight: 300;
margin-top: 20px;
width: 58ch;
font-size: 20px;
margin-bottom: 20px;
}

.hero-action-group {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.button {
    padding: 10px 18px;
    border-radius: 9px;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    border: none;
    transition: 0.4s;
    text-decoration: none;
    display: inline-block;
}
.button-main {
    background-color: var(--sec-color);
    color: var(--pri-color);
}
.button-main:hover {
    background-color: white;
}
.button-sec {
    background: none;
    border: 1.5px solid white;
    color: white;
}
.button-sec:hover {
    background: white;
    color: var(--pri-color);
}

.usp {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 100px;
    padding: 0 20px;
}

.section h2 {
    font-size: 42px;
    max-width: 20ch;
    width: auto;
    line-height: 1.2;
    color: var(--pri-color);
    font-weight: 400;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease-in;
    text-align: center;
}
.usp .copy {
    color: grey;
    animation: fadeInUp 1s ease-in;
    padding: 0 10px;
}
.highlight {
    text-decoration: underline;
    text-decoration-color: var(--sec-color);
    text-decoration-thickness: 10px;
    text-underline-offset: -3px;
    text-decoration-skip-ink: none;
}

.feature-stack {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 1400px;
    margin: 30px 0px;
    margin-bottom: 80px;

}

.feature-card {
    width: 350px;
    min-width: 350px;
    background-color: white;
    padding: 25px;
    border-radius: 18px;
    border: 1.5px solid transparent;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.feature-card:nth-child(1) { animation-delay: 0s; }
.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.3s; }
.feature-card:nth-child(5) { animation-delay: 0.4s; }
.feature-card:nth-child(6) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.feature-card:hover {
    box-shadow: 0px 0px 50px rgb(0, 0, 0, 0.14);
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--pri-color);
}
.feature-card p {
    color: grey;
    font-size: 14px;
    width: 38ch;
}

.hot-features {
    display: flex;
    width: 100%;
    margin-bottom: 100px;
}
.hot-features div {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    height: 515px;
    overflow: hidden;
    padding-top: 80px;
}
.hot-features div h4 {
margin-bottom: 35px;
color: var(--sec-color);
font-weight: 600;
font-size: 20px;
}
.hot-features img {
    width: 400px;
}
.notif {
    width: 50%;
    background: var(--pri-color);
}
.notif img,
.msg img {
        animation: fadeInUp 1s ease-in;
}
.msg {
    width: 50%;
    background: var(--pri-color);
}
.get-started {
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}
.get-started h2 {
    max-width: 22ch;
    width: auto;
}
.get-started .copy {
    color: grey;
    text-align: center;
    padding: 0 10px;
}

.steps-stack {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.step {
    width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    transition: 0.5s;
}
.step:hover {
    transform: translateY(-3px);
}
.step h3 {
    font-size: 30px;
    font-weight: 500;
    color: var(--pri-color);
    background-color: var(--sec-color);
    width: 60px;
    height: 60px;
    padding: 10px;
    border-radius: 50%;
    margin-bottom: 15px;
}
.step h5 {
    font-size: 20px;
    font-weight: 500;
    color: var(--pri-color);
}
.step p {
    font-size: 16px;
    color: grey;
}
.cta {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 400px;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(270deg, #05361a 0%, #05361a 100%);
    padding: 30px 20px 0;
}
.cta h2 {
    font-size: 42px;
    color: white;
    font-weight: 400;
    max-width: 30ch;
    width: auto;
    margin-bottom: 30px;
    line-height: 1.2;
}
.cta-highlight {
    color: var(--sec-color);
}

@media (max-width: 1024px) {
    .homepage-hero {
        height: auto;
        padding: 80px 20px;
    }

    .homepage-hero h1 {
        font-size: 44px;
        width: auto;
    }

    .homepage-hero p {
        width: auto;
        max-width: 90%;
    }

    .feature-card {
        width: 100%;
        min-width: 0;
    }

    .feature-card p {
        width: auto;
    }

    .hot-features {
        flex-direction: column;
    }

    .notif,
    .msg {
        width: 100%;
    }

    .hot-features div {
        height: auto;
        padding-bottom: 60px;
    }

    .hot-features img {
        width: min(420px, 85%);
    }

    .steps-stack {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .homepage-hero h1 {
        font-size: 34px;
    }

    .homepage-hero p {
        font-size: 16px;
    }

    .hero-action-group {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .hero-action-group .button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .section h2 {
        font-size: 32px;
        width: auto;
    }

    .feature-stack {
        padding: 0 16px;
    }

    .get-started h2 {
        width: auto;
        font-size: 32px;
    }

    .steps-stack {
        flex-direction: column;
        align-items: center;
    }

    .step {
        width: min(360px, 90%);
    }

    .cta {
        height: auto;
        padding: 60px 20px;
    }

    .cta h2 {
        width: auto;
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .homepage-hero h1 {
        font-size: 28px;
    }

    .homepage-hero p {
        font-size: 14px;
    }

    .section h2 {
        font-size: 26px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card h4 {
        font-size: 18px;
    }

    .hot-features div {
        padding-top: 60px;
    }

    .hot-features img {
        width: 90%;
    }

    .step {
        padding: 28px;
    }

    .cta h2 {
        font-size: 26px;
    }
}
