* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* outline: 1px solid red; */
}



/* NAV BAR  BY EDWIN */

header {
    display: flex;
    flex-direction: row;
    width: 90%;
    padding: 5px 30px;
    margin: 0 auto;
}

.navbar {
    display: flex;
    align-items: center;
    height: 60px;
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 0 5rem;
    background: #fff;
}

.checkbox {
    display: none;
}

.harmburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.harmburger span {
    width: 25px;
    height: 2px;
    background: #000;
    margin: 4px 0;
    border-radius: 4px;
}

.brand-name {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 600;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 10px;
}

.nav-lists {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 10px;
    margin-left: 50px;
    justify-content: center;
    align-items: center;
}

.lists {
    display: flex;
    flex-direction: row;
    list-style: none;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    gap: 10px;
    padding: 5px 10px;
}

.lists:hover {
    background-color: #f9ffef;
}

.lists a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

.nav-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.login-btn {
    border: none;
    border-radius: 5px;
    padding: 7px;
    color: #004838;
    background: white;
    font-size: 1.2rem;
    font-size: 600;
    cursor: pointer;
}

.start-btn {
    padding: 7px;
    border-radius: 5px;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    background: #004838;
    color: #E2FB6C;
}

.login-btn:hover {
    background-color: #EBEDE8;
}

.start-btn:hover {
    background-color: #fff;
    color: #000;
}


@media screen and (max-width:768px) {

    .harmburger {
        display: flex;
        margin-left: auto;
    }

    .nav-lists {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 10px;
        background: white;
        margin-left: 0;
        justify-content: flex-start;
        align-items: flex-start;
        z-index: 1;
        width: 100%;
    }

    .nav-btns {
        display: none;
        z-index: 1;
        background: white;
        width: 100%;
        gap: 20px;
        left: 0;
        top: 0;
    }

    .login-btn {
        border: 2px solid #004838;
        border-radius: 5px;
        padding: 5px;
        color: #004838;
        background: white;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
    }

    .start-btn {
        padding: 5px;
        border-radius: 5px;
        border: none;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        background: #004838;
        color: #E2FB6C;
    }

    .lists {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-bottom: 15px;
    }

    .lists li {
        list-style: none;
        font-size: 1.2rem;
        font-weight: 600;
        cursor: pointer;
        padding: 10px 0;
        border-bottom: 1px solid #000;
    }

    .checkbox:checked~.nav-lists {
        display: flex;
    }

    .checkbox:checked~.nav-btns {
        display: flex;
        flex-direction: column;
        gap: 20px;
        top: 240px;
        margin: 0 auto;
        position: absolute;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
        background-color: white;
        padding-left: 15px;
        padding-bottom: 10px;
    }

    .checkbox:checked~.harmburger::before,
    .checkbox:checked~.harmburger::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 26px;
        height: 2px;
        background: #191A23;
    }

    .checkbox:checked~.harmburger::before {
        transform: rotate(45deg);
    }

    .checkbox:checked~.harmburger::after {
        transform: rotate(-45deg);
    }

    .checkbox:checked~.harmburger span {
        background: transparent;
    }


}


.hero {
    background: url(assets/hero\ background.jpeg);
    width: 90%;
    margin: 5rem auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;

}

.hero-top {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    padding: 6rem;
}

.hero-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-txt h1 {

    margin: 5rem auto 2rem auto;

}

/* 
.hero-txt p {

    margin-top: 5rem;

} */


.hero-fast-btn {
    display: flex;
    gap: .5rem;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 1.5rem;
    padding: .5rem;
    /* height: 5rem; */
    /* width: 8rem; */
    margin-bottom: -20px;

}

.hero-fast-btn img {
    width: 1.2rem;
}

.hero-fast-btn p {
    color: #014839;
    font-size: .7rem;
    font-weight: 1000;
}

.hero-txt h1 {
    font-size: 4rem;
    color: #083322;
}

.hero-txt>p {
    font-size: 1.3rem;
    color: #313131;
    margin-top: -8px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.hero-btn {
    padding: 1rem;
    width: 8rem;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
}

.green-btn {
    background-color: #004939;
    color: #b6d11f;
}

.white-btn {
    background-color: #fff;
    color: #004939;
}

.partner-icons {
    width: 150px;
}

.hero-pic-one img {
    width: 230px;
}

.hero-pic-one,
.hero-pic-two,
.hero-pic-three,
.hero-pic-four {
    position: absolute;
}


.hero-pic-one,
.hero-pic-two,
.hero-pic-three,
.hero-pic-four img {
    width: 150px;
    height: 150px;

}


.hero-pic-one {
    left: 1rem;
    top: 0rem;
}

.hero-pic-two {
    right: 4rem;
    top: 0rem;
}

.hero-pic-three {
    bottom: 0rem;
    left: 14rem;

}

.hero-pic-four {
    bottom: 0rem;
    right: 7rem;
}


/*The lower section of hero that has the parners icon*/
.hero-icons {

    width: 90%;

    margin: 1rem auto;
    display: flex;
    gap: 5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.partner-txt p {
    font-size: 1rem;
    font-weight: 600;
    color: #313131;
}



<<<<<<< HEAD
/* FEATURES BY  BOSAN */
.features {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.8rem;
}

.feat-txt {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feat-txt p{
    align-self:center;
    width: 80%;
}

.features .feat-bttn  button {
    background-color: white;
    color: #004838;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150%;
    border: 0.01px solid #ebede8;
    /* padding: 0.1rem; */
    border-radius: 1rem;
    gap:0.5rem;
    height: 2rem;
}



/* INTEGRATION SECTION  */
=======
.partner-logo {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;

}

.partner-icons img {
    width: 150px;
    height: 55px;
}
>>>>>>> refs/remotes/origin/main


/* MAXI STYLES */


.integration-section {

    width: 100%;

}

.int-container {
    margin: 3rem auto;
    background: url(assets/bg.jpeg);
    background-position: center;
    width: 90%;
    height: 80vh;
    overflow: hidden;
    border-radius: 10px;
    background-size: cover;
}

.int-text {
    text-align: center;
    padding: 2rem;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.3;
    margin-top: 2rem;

}

.int-text span {
    background-color: rgba(47, 47, 47, 0.445);
    color: white;
    font-size: 20px;
    padding: .5rem 1.5rem;
    border-radius: 20px;
}

.int-text span i {
    margin-right: .5rem;
    font-weight: light;
}

.int-text h2 {
    margin-top: 1rem;
    font-size: 2.1rem;
}

.int-text p {
    margin-top: rem;
    line-height: 1.4;
    /* font-size: 0.8rem; */
}

.int-text a {
    text-decoration: underline;
    color: #fff;
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.int-text a i {
    color: #f0f0f0;
    font-size: 1.2rem;
}

.card-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    /* margin-top: 1.4rem; */
}

.slider-container {
    display: flex;
    gap: 3.5rem;
    width: 100%;
    animation: scroll 20s linear infinite;
}

.card {
    width: 5rem;
    height: 5rem;
    background: #fff;
    padding: .4rem;
    border-radius: 10px;
}

.card img {
    width: 4.6rem;
    height: 4.1rem;
}

.slider-container2 {
    display: flex;
    gap: 2rem;
    width: 97%;
    animation: scroll2 20s linear infinite;
}

.card2 {
    width: 4.7rem;
    height: 4.7rem;
    background: #fff;
    padding: .4rem;
    border-radius: 10px;
}

.card2 img {
    width: 4rem;
    height: 4rem;
}

.mail {
    width: 3rem;
    height: 2rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-80%);
    }
}

@keyframes scroll2 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(80%);
    }
}


/* JOJO'S STYLES */

.integration {

    width: 90%;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.integration-text {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 2rem;

    span {
        color: #073127;
        font-size: xx-large;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    p {
        color: #073127;
        font-size: xx-large;
        text-align: center;
        margin-top: 20px;
        font-weight: 300;
    }
}

.integration-image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    img {
        height: 5rem;
        width: 7rem;
        /* border-radius: 50%; */
        background-color: #FFFFFF;
    }

}

/* JHESSY STYLES */

.stat-container {

    width: 90%;
    border-radius: 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #eef7f5;
    padding: 2rem 0;
    margin: 2rem auto;
}

.stat-container h1 {
    color: #004838;
    font-size: 5rem;
    font-weight: 600;
}

.stat-container p {

    color: #004838;
    font-size: 1.7rem;

}

/* ZACKA PAM STYLES */


.Discover {
    width: 90%;
    margin: 3rem auto;
    padding: 6rem 10rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: hsl(178, 27%, 17%);

}

.Discover h3 {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2em;
    letter-spacing: 0;
    text-align: left;
    color: #FFFFFF;



}

.clause {
    text-decoration: underline;
    text-decoration-color: chartreuse;

}

.btn {
    gap: 2rem;
    display: flex;
    align-items: center;
}

.discover-btn1 {
    padding: 1.5rem 2rem;
    border-radius: 10px;
    border: none;
    border-radius: 10px;
    font-size: 1.3rem;
}

.discover-btn2 {
    padding: 1.5rem 2rem;
    background-color: chartreuse;
    border: none;
    border-radius: 10px;
    font-size: 1.3rem;


}


/* zacka section media queries */

@media (max-width:900px){

    .Discover{
        flex-direction: column;
        gap:2rem;
    }
}


/*
   FOOTER
*/

.footer-main {
    width: 100%;
    background-color: #1A1A1A;
    color: #fff;
    margin-top: 2rem;
}




.f-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0 1.5rem;
    
}

/* Main footer section */
.footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 4rem;
    margin: 0 auto 3rem;
}

/* Logo + contact section */
.footer-info {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 4.375rem;
    height: auto;
}

.footer-logo p {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.contacts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 0;
}

.footer-contact i {
    width: 20px;
    text-align: center;
}

.footer-contact p {
    margin: 0;
    font-size: 0.95rem;
    word-break: break-word;
}

/* Footer links */
.others {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 4rem;
    flex: 1;
    max-width: 650px;
}

.list h3 {
    margin: 0 0 1.2rem;
    font-size: 1rem;
}

.list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list li {
    margin-bottom: 0.8rem;
}

.list a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.list a:hover {
    color: #fff;
}

/* Bottom section */
.last {
    border-top: 1px solid #333;
    padding-top: 1.5rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.last p {
    margin: 0;
    color: #aaa;
    font-size: 0.85rem;
}

.socials {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.socials a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.2s ease;
}

.socials a:hover {
    opacity: 0.6;
}


/* 
   TABLET for footer
 */

@media (max-width: 900px) {

    .f-container {
        width: 88%;
    }

    .footer-content {
        gap: 3rem;
    }

    .others {
        gap: 2rem;
    }
}


/* 
   MOBILE for footer
 */

@media (max-width: 700px) {

    .f-container {
        width: 88%;
        padding: 2.5rem 0 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .footer-info {
        width: 100%;
    }

    .others {
        width: 100%;
        max-width: none;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .last {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }
}


/* footer
   SMALL PHONES
*/

@media (max-width: 450px) {

    .f-container {
        width: 90%;
    }

    .footer-content {
        gap: 2rem;
    }

    .others {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
    }

    .footer-logo img {
        width: 3.5rem;
    }

    .footer-logo p {
        font-size: 1.3rem;
    }

    .footer-contact {
        gap: 0.7rem;
    }

    .footer-contact p {
        font-size: 0.85rem;
    }

    .list h3 {
        font-size: 0.95rem;
    }

    .list a {
        font-size: 0.82rem;
    }

    .last p {
        font-size: 0.75rem;
    }

    .socials {
        gap: 1rem;
    }
}


/*
   VERY SMALL PHONES for footer
*/

@media (max-width: 350px) {

    .others {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .footer-contact p {
        font-size: 0.8rem;
    }
}



/* Bosan..eva,,,dixon */

.others {
    display: flex;
    gap: 5rem;
    margin-top: 1rem;
    /* width:100%;  */
}

.list li {
    list-style: none;
}

.list a {
    text-decoration: none;
    color: #fff;
}

.solutions,
.customers,
.resources {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.solutions p,
.customers p,
.resources p {
    font-weight: bold;
    font-size: 2.3rem;
}

.solutions ul,
.customers ul,
.resources ul {

    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.last {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    width: 50%;
    margin: 4rem auto 2rem auto;
    /* justify-content: space-evenly; */
}

.socials a {
    text-decoration: none;
    color: #fff;
    font-size: 1.4rem;
    /* margin-right: 20px; */

    flex-wrap: wrap;
}

.partner-logo img {
    width: 9.375rem;
    /*150px*/
    height: 3.4375;
    /*55px*/
}

/* Media Queries for the hero section */
@media (max-width: 1030px) {
    .hero-pic-one {
        left: 0rem;
        top: 0rem;
    }

    .hero-pic-two {
        right: 3rem;
        top: 0rem;
    }

    .hero-pic-three {
        bottom: 0rem;
        left: 10rem;

    }

    .hero-pic-four {
        bottom: 0rem;
        right: 7rem;
    }

    .hero-icons {
        /*Erase this later, nothing was changed*/
        gap: 1rem;
    }
}

@media (max-width: 1030px) {
    .hero-pic-four {
        bottom: 0rem;
        right: 7rem;
    }

    .partner-icons {
        width: 110px;
    }

    .hero-pic-one img {
        width: 190px;
    }
}

/*Responsiveness for mobile view*/
@media (max-width: 768px) {
    .hero-txt h1 {
        font-size: 3rem;
    }

    .hero-txt>p {
        font-size: 1rem;
    }

    .hero-pic-three {
        bottom: 0rem;
        left: 7rem;

    }
}

/*Breakpoint to adjust the hero absolute positioned images*/
@media (max-width: 568px) {
    .hero-pic-three {
        bottom: 0rem;
        left: 4rem;
    }

    .hero-pic-four {
        bottom: 0rem;
        right: 4rem;
    }

    .partner-icons {
        width: 80px;
    }

    .hero-pic-one img {
        width: 130px;
    }
}

/*Breakpoint for smaller screens to fit perfectly*/
@media (max-width: 448px) {
    .hero-top {
        padding: 5rem 3rem;
    }

    .hero-pic-one {
        left: 0rem;
        top: 0rem;
    }

    .hero-pic-two {
        right: 3rem;
        top: 0rem;
    }

    .hero-pic-three {
        bottom: 0rem;
        left: 1rem;
    }

    .hero-pic-four {
        bottom: 0rem;
        right: 1rem;
    }

    .hero-fast-btn {
        gap: .2rem;
        padding: .4rem;
        height: 1rem;
        width: 7rem;
    }

    .hero-fast-btn img {
        width: 10px;
        height: 10px;
    }

    .hero-fast-btn p {
        font-size: .6rem;
    }

    .hero-btns {
        gap: .7rem;
    }

    .hero-btn {
        padding: .6rem;
        width: 6rem;
        border-radius: 1rem;
        font-size: .7rem;
    }

    .hero-icons {
        flex-direction: column;
    }

    .partner-logo {
        flex-direction: column;
    }

}




/* FEATURES */

.feature {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.8rem;
}

.feat-txt {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feat-txt p {
    align-self: center;
    width: 80%;
}

.feature .feat-bttn button {
    background-color: white;
    color: #004838;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150%;
    width: fit-content;
    border: 0.01px solid #ebede8;
    /* padding: 0.1rem; */
    padding: 0.4rem 1rem;
    border-radius: 1rem;
    gap: 0.5rem;
    height: 2rem;
    height: auto;
}

.feature .feat-bttn button .material-symbols-outlined {
    height: auto;
    font-size: 1.1rem;
    color: #004838;
}

/* features by Eva */
.features {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: whitesmoke;
    padding: 0px 3px 0px 0px;
    border-radius: 1.4rem;
}

.explore {
    width: 27.1rem;
    margin-top: 2.8rem;
    margin: 2.8rem 2.8rem 0px 3.2rem;
}

.explore h2 {
    font-size: 2.3rem;
    margin-bottom: 1.4rem;
    color: #004838;

}

.explore p {
    line-height: 1.8rem;
    font-size: 1.15rem;
}

.explore button {
    padding: 1.2rem 2.3rem 1.2rem 2.3rem;
    background-color: #004838;
    color: #e2fb6c;
    border: none;
    border-radius: 0.6rem;
    margin-top: 7rem;
    box-shadow: 0px 5px 5px 2px #bbbfc2;
}

.explore button:hover {
    color: #0e4d3fe8;
    background-color: #e2fb6c;
}

.chart img {
    width: 30rem;
    height: auto;
    margin-top: 2.8rem;
    border-radius: 0px 0px 15px;
}

/* task-management and smart notifcation cards css by iDev_dixon */
.dashboard {
    display: grid;
    grid-column: 1 / 3;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden;
    background-color: green;
}

.task-management {
    /* display:flex; */
    flex-direction: column;
    display: grid;
    grid-template-rows: auto 1fr;
    background-color: WHITE;
    width: 100%;
    border-radius: 2rem;
    border: 2px solid lavender;
}

.down {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.notifications {
    /* display:flex; */
    flex-direction: column;
    display: grid;
    grid-template-rows: auto 1fr;
    background-color: #EBEDEB;
    width: 50%;
    border-radius: 2rem;
    border: 2px solid lavender;

}

.smart {
    background-color: #EBEDEB;
    height: 13rem;
    border-radius: 2rem;
    width: 100%;
    font-size: 2.2rem;
    padding: 2rem;
}

.smart-container {
    border-radius: 2rem;
    /* background-color:#EBEDEB; */
}

.task {
    background-color: #EBEDEB;
    height: 13rem;
    width: 100%;
    font-size: 2.8rem;
    border-radius: 2rem 2rem 0rem 0rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.email,
.new,
.social,
.announcements,
.reminders {
    background-color: WHITE;
    display: flex;
    justify-content: space-between;
    padding: 2rem;
}

.material-symbols-outlined {
    height: 3rem;
    /* width: 4rem; */
    color: green;
}

.activity {
    display: flex;
    justify-content: space-between;
    height: 5rem;
    padding: 2rem;
}

.activity button {
    height: 2rem;
    width: 5rem;
    background-color: white;
    color: black;
    border-radius: 0.5rem;
    border: 1px solid lavender;

}

.save {
    height: 2rem;
    width: 5rem;
    background-color: white;
    color: black;
    border-radius: 0.5rem;
    border: 1px solid lavender;
}

.bill {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
}

.text {
    margin-left: 2rem;
}

.jones {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
}

.bill img,
.jones img {

    height: 3rem;
    width: 3rem;
    border-radius: 50%;
}

.empty {
    height: 1rem;
    width: 2rem;
    background-color: rgba(128, 128, 128, 0.426);
    border-radius: 0.5rem;
    border: none;
}

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

.pdf {
    display: flex;
    gap: 3rem;
    padding: 2rem;
    margin-left: 6rem;

}

.bold {
    color: black;
    font-weight: bold;
}

.cards {
    display: grid;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.down {
    grid-area: dw;
    display: flex;
    gap: 2rem;
    width: 80%;
}

.grid {
    grid-area: gd;
    width: 80%;
    justify-self: center;
}

.feats {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.down {
    align-items: stretch;
}

.left {
    flex: 1;
    min-width: 0;
    display: flex;
    gap: 2rem;
}

.right {
    flex: 1;
    min-width: 0;
    display: flex;
}

.notifications,
.task-management {
    height: 100%;
}

hr {
    width: 90%;
    justify-self: center;
}

.person {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media screen and (max-width: 1414px) {
    .feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 0.8rem;
        width: 100%;
    }

    .feat-txt {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .feat-txt p {
        align-self: center;
        width: 100%;
    }

    .features {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        background-color: whitesmoke;
        padding: 0px 3px 0px 0px;
        border-radius: 1.4rem;
    }

    .explore {
        width: 100%;
        margin: 2.4rem 2rem 0px 2rem;
    }

    .explore button {
        margin-top: 3rem;
    }

    .chart {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .chart img {
        width: 100%;
        max-width: 30rem;
        margin: 1.5rem 2rem 2rem 2rem;
    }

    .down {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 2rem;
        width: 100%;
    }

    .grid {
        width: 92%;
    }

    .left,
    .right {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .grid {
        width: 100%;
        padding: 0 1rem;
    }

    .down {
        width: 90%;
        padding: 0 1rem;
    }

    .explore h2 {
        font-size: 1.7rem;
    }

    .explore p {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .explore button {
        padding: 1rem 1.8rem;
        margin-top: 2rem;
    }

    .smart,
    .task {
        height: auto;
        font-size: 1.7rem;
        padding: 1.5rem;
    }

    .email,
    .new,
    .social,
    .announcements,
    .reminders,
    .bill,
    .jones {
        padding: 1.2rem;
    }

    .nill {
        gap: 0.75rem;
    }

    .pdf {
        margin-left: 0;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .activity {
        padding: 1.2rem;
        height: auto;
    }
}

@media screen and (max-width: 480px) {
    .feat-bttn button {
        font-size: 0.85rem;
    }

    .feature h1 {
        font-size: 1.4rem;
    }

    .explore h2 {
        font-size: 1.4rem;
    }

    /* INTEGRATION SECTION  */
    .smart,
    .task {
        font-size: 1.3rem;
    }

    .text {
        margin-left: 0;
        display: block;
        margin-top: 0.75rem;
    }
}

/* Container wrapper */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

/* Hide default checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* Track (OFF state) */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 34px;
}

/* Knob */
.slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

/* Track (ON state - active green) */
input:checked + .slider {
  background-color: #0b3c26; /* Dark green matching your image */
}

/* Move knob to the right when ON */
input:checked + .slider::before {
  transform: translateX(24px);
}