* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    width: 100%;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}

/* ======================= */
.btn {
    width: auto;
    height: 58px;
    border-radius: 60px;
    padding: 0 24px;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    cursor: pointer;
}

/* ================== */
.btn-white {
    background: #ffffff;
    color: #46aa48;
    border: 1px solid #ffffff;
}

.btn-white:hover,
.btn-white.active {
    background: #46aa48;
    color: #fff;
    border: 1px solid #fff;
}

/* ================== */
.btn-red {
    color: #ffffff;
    background: #ffffff1a;
    border: 1px solid #ffffff;
}

.btn-red:hover,
.btn-red.active {
    background: #ff4c4c;
    color: #ffffff;
    border: 1px solid #ff4c4c;
}

/* ================== */
.btn-green {
    background: #dfede1;
    color: #222222;
    border: 1px solid #dfede1;
}

.btn-green:hover,
.btn-green.active {
    background: #1e521d;
    color: #ffffff;
    border: 1px solid #1e521d;
}

/* =============================== */
/* =========Custom Styles========= */
.customSection {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.customContainer {
    width: 90%;
    display: flex;
    align-items: center;
    margin: 80px 0;
}

/* =============================== */
/* =========Header Section======== */
/* =========================
   HEADER
========================= */

.headerSection {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    padding: 10px 0;
}

.headerContainer {
    width: 95%;
    /* max-width: 1280px;  */
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #4ba33a;
    padding: 14px 28px;
    border-radius: 80px;
    height: 78px;
    margin: 0 auto;
}

/* LEFT LOGO */
.logo {
    height: 78px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* RIGHT LOGO */
.logoright {
    height: 42px; /* reduced size */
    width: auto;
    object-fit: contain;
    display: block;
}

.headerContainer a {
    padding: 0;
    display: flex;
    align-items: center;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1280px) {

    .headerContainer {
        width: 94%;
        padding: 12px 24px;
        height: 60px;
    }

    .logo {
        height: 70px;
    }

    .logoright {
        height: 36px;
    }
}

@media (max-width: 991px) {

    .headerContainer {
        border-radius: 60px;
        height: 64px;
        padding: 10px 20px;
    }

    .logo {
        height: 58px;
    }

    .logoright {
        height: 28px;
    }
}

@media (max-width: 767px) {

    .headerSection {
        padding: 8px 0;
        margin-top: -7px;
    }

    .headerContainer {
        width: 95%;
        height: 58px;
        border-radius: 50px;
        padding: 8px 16px;
    }

    .logo {
        height: 48px;
    }

    .logoright {
        height: 22px;
    }
}

@media (max-width: 480px) {

    .headerContainer {
        height: 54px;
        padding: 8px 14px;
    }

    .logo {
        height: 42px;
    }

    .logoright {
        height: 18px;
    }
}

/* =============================== */
.flotaingBtn {
    position: fixed;
    background-color: #46aa48;
    display: flex;
    align-items: center;
    justify-content: center;
    right: -150px;
    top: 40%;
    width: 182px;
    height: 58px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    border-radius: 20px 20px 0 0;
    rotate: 270deg;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.flotaingBtn.active {
    right: -63px;
    opacity: 1;
    visibility: visible;
}

.flotaingBtn:hover {
    background-color: #246e25;
    /* darker green */

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    /* lift effect */
}

/* =========Footer Section======== */
.footerSection {
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    line-height: 110%;
    text-align: center;
    text-transform: capitalize;
    border-top: 4px solid #46aa48;
    background: #000000;
    padding: 28px 0 32px 0;
    color: #fff;
}

.floatingBtnBox {
    display: none;
}

@media (max-width: 1605px) {
    .logo {
        height: 100px;
    }
}

@media (max-width: 1439px) {
    .logo {
        height: 65px;
    }
}

@media (max-width: 1279px) {
    .customContainer {
        width: 95%;
    }

    .headerContainer {
        width: 95%;
        height: 50px;
        margin-top: 2px;
    }
}

@media (max-width: 1079px) {
    .logo {
        height: 60px;
    }

    .customContainer {
        margin: 20px 0;
    }

    
    .phaseCard {
        min-height: 340px;
        gap: 20px;
    }

    .aboutHeader {
        gap: 16px;
    }

    .verifyBox {
        gap: 10px;
    }

    .checkedImg {
        height: 30px;
    }

    .verifyWrapper {
        margin-top: 16px;
    }
}


@media (max-width: 767px) {
    .logo {
        height: 60px;
    }

    
}

@media (max-width: 600px) {
    .footerSection {
        padding: 20px 0 24px 0;
    }

    
}

@media (max-width: 550px) {
    .logo {
        height: 50px;
    }

    /* .logoright {
        display: none;
    } */
    .heroSection {
        margin-top: 73px;
    }

    .flotaingBtn {
        display: none !important;
    }

    .floatingBtnBox {
        bottom: -60px;
        width: 100%;
        z-index: 9999;
        position: fixed;
        align-items: center;
        justify-content: center;
        display: flex !important;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .floatingBtnBox.active {
        bottom: 0;
        opacity: 1;
        visibility: visible;
    }

    .floatingBtn {
        width: 50%;
        height: 50px;
        display: flex;
        align-items: center;
        text-decoration: none;
        justify-content: center;

    }

    .flotaingBtnBlack {
        background-color: #000;
        color: #fff;
    }

    .flotaingBtnGreen {
        background-color: #46aa48;
        color: #fff;
    }

    .footerSection {
        margin-bottom: 50px;
    }
}

@media (max-width: 450px) {
    .logo {
        height: 40px;
    }
}