*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body{
    font-family: 'Inter', sans-serif;
}
@font-face {
    font-family: 'cusf';
    font-style: normal;
    font-weight: normal;
    src: url('/asset/font/Segoe-Script.woff') format('woff');
}



/* Navbar */
.navb{
    width: 100%;
    padding: 32px 80px;
    display: flex;
}
.navb>.mid{
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navb>.mid>div{padding: 0px 14px;}
.navb>.mid a{
    text-decoration: none;
    font-size: 16px;
    color: #053e48;
}
.navb>.mid a:nth-child(n+2){
    margin-left: 42px;
}
.navb>.mid a:hover {
    color: #3f8315; /* replace with your desired hover color */
}
.navb>.right{
    display: flex;
    justify-content: center;
    align-items: center;
}
.navb>.right button, #mobileNav button{
    padding: 14px 28px;
    font-size: 16px;
    color: white;
    background-color: #053e48;
    border: none;
    border-radius: 60px;
    cursor: pointer;
}


/* Mobile dropdown styles */
.mobile-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid;
    padding: 24px 0;
}
.mobile-nav a {
    color: #053e48;
    text-decoration: none;
    font-size: 18px;
    padding: 0px 32px;
    padding-bottom: 24px;
    display: block;
}
.mobile-nav a:nth-child(6){
    width: fit-content;
    padding-bottom: 0px;
}
.mobile-nav a button {
    width: 100%;
    font-size: 18px;
    padding: 14px 0;
}

/* Show mobile nav when active */
.mobile-nav.active {
    display: flex;
}
.nav-toggle {
    display: none;
}
/* Hide mid and right, show toggle on mobile/tablet */
@media (max-width: 990px) {
    .navb>.mid,
    .navb>.right {
        display: none !important;
    }
    .nav-toggle {
        display: block !important;
        background: none;
        border: none;
        font-size: 32px;
        color: #053e48;
        cursor: pointer;
        margin-left: auto;
    }
}







/* hero content */
.heroc{
    width: 100%;
    padding: 80px;
    background-color: #f0f4f4;
    display: flex;
    justify-content: center;
}
.hero{
    width: 100%;
    max-width: 1440px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.hero>.left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero>.left>div>.tit{
    font-size: 38px;
    font-weight: 600;
    letter-spacing: 0px;
    line-height: 45px;
    color: #053e48;
    margin-bottom: 12px;
    max-width: 646px;
}
.hero>.left>div>.tit>span{
    font-family: "cusf", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #3f8315;
}
.hero>.left>div>.desc{
    max-width: 646px;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 32px;
}
.hero>.left>div>.btnc>a>button{
    border: none;
    font-size: 18px;
    padding: 14px 28px;
    border-radius: 60px;
    background-color: #053e48;
    color: white;
    cursor: pointer;
}
.hero>.left>div>p{
    margin-top: 10px;
    font-size: 20px;
}
.hero>.right>img{
    width: 100%;
    max-width: 540px;
    height: auto;
    padding-left: 60px;
}


@media (max-width: 800px) {
    .hero{
        grid-template-columns: 1fr;
        gap: 70px;
    }
    .hero>.left>div>.tit{text-align: center;}
    .hero>.left>div>.desc{text-align: center;}
    .hero>.left>div>p{text-align: center;}
    .hero>.left>div>.btnc{
        display: flex;
        justify-content: center;
    }
    .hero>.right{margin: auto;}
    .hero>.right>img{padding: 0px;}
}

@media (min-width: 801px) and (max-width: 1000px) {
    .hero>.right>img{padding: 0px;}
    .hero>.left>div>.tit>span{font-size: 28px;}
    .hero>.left>div>.tit{
        font-size: 28px;
        margin-bottom: 12px;
    }
    .hero>.left>div>.desc{
        font-size: 18px;
        margin-bottom: 18px;
        padding-right: 10px;
    }
    .hero>.left>div p{font-size: 18px;}
}



/* why us */
.why{
    margin: 100px 80px;
}
.why>.tit{
    width: 100%;
    font-family: "cusf", sans-serif;
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: #053e48;
    margin-bottom: 16px;
}
.why>.desc{
    width: 100%;
    max-width: 880px;
    margin: auto;
    text-align: center;
    font-size: 20px;
    font-weight: normal;
    line-height: 26px;
}



/* problem & solution */
.ps{
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.ps>.mid{
    padding: 0px 25px;
    max-height: 470px;
    margin: auto;
}
.ps>.mid>img{
    width: auto;
    height: 100%;
}
.ps>.right{
    display: flex;
    justify-content: end;
    align-items: center;
}
.ps>.left{
    display: flex;
    justify-content: start;
    align-items: center;
}
.ps>.left .tit{
    font-family: "cusf", sans-serif;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: #e40000;
}
.ps>.right .tit{
    font-family: "cusf", sans-serif;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: #053e48;
}
.ps>.left .pts, .ps>.right .pts{
    font-size: 18px;
    padding: 6px 24px;
}
.ps .pts>span{ font-size: 22px; }
.ps>.left .pts>span{ color: #e40000; }
.ps>.right .pts>span{ color: #007e1b; }


@media (max-width: 1280px) {
    .ps{padding: 0px 80px;}
}

@media (max-width: 1140px) {
    .ps{
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
        'mid mid'
        'left right';
    }
    .ps>.mid{ 
        grid-area: mid;
        margin-bottom: 30px;
    }
    .ps>.left{ 
        grid-area: left;
        display: block;
    }
    .ps>.right{ 
        grid-area: right;
        display: block;
    }
}
@media (max-width: 700px) {
     .ps{
        grid-template-columns: 1fr !important;
        grid-template-areas: 
        'mid'
        'left'
        'right';
        gap: 24px;
    }  
    .ps>.left .pts ,.ps>.right .pts{
        padding: 6px 0px;
    }
}
@media (max-width: 580px) {
    .ps>.mid>img{
        width: 100%;
        height: auto;
    }
}



/* key features */
.kf{
    padding: 100px 80px;
}
.kf>.tit{
    font-family: "cusf", sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #053e48;
    margin-bottom: 16px;
}
.kf>.desc{
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    max-width: 1200px;
    text-align: center;
    margin: auto;
    margin-bottom: 50px;
}
.kf>.fet{
    max-width: 1130px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
    row-gap: 50px;
    column-gap: 16px;
}
.kf .fet>.fec{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 242px;
}
.fec>p{
    text-align: center;
}
.fec>.tit{
    font-size: 18px;
    font-weight: 700;
    margin-top: 16px;
    color: #053e48;
}
.fec>.desc{
    font-size: 16px;
    font-weight: 400;
    margin-top: 5px;
}



/* image features */
.ifetc{
    width: 100%;
    padding: 100px 80px;
    background-color: rgba(5, 62, 72, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ifetc>.ifet{
    width: 100%;
    max-width: 695px;
}
.ifetc>.ifet>.box:nth-child(1){
    display: grid;
    grid-template-columns: 242px auto;
    column-gap: 32px;
}
.ifetc>.ifet>.box:nth-child(2){
    display: grid;
    grid-template-columns: auto 242px;
    column-gap: 32px;
}
.ifetc>.ifet>.box:nth-child(3){
    display: grid;
    grid-template-columns: 300px auto;
    column-gap: 32px;
}
.ifetc .box>.right{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ifetc .box>.right>.tit{
    font-family: "cusf", sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;;
    color: #053e48;
}
.ifetc .box>.right>.desc{
    font-size: 22px;
    font-weight: 400;
}



@media (max-width: 660px) {
    .ifetc>.ifet>.box{
        grid-template-columns: 1fr !important;
        gap: 32px;
        margin-bottom: 50px;
    }
    .ifet>.box>.right>p{text-align: center;}
    .ifet>.box>.left{
        display: flex;
        justify-content: center;
    }
    .ifet>.box>.left>img{
        width: 100%;
        max-width: 242px;
        height: auto;
    }
    .ifet>.box:nth-child(3)>.left>img{
        width: 100%;
        max-width: 300px;
        height: auto;
    }
    .ifetc>.ifet>.box.box:nth-child(2){
        grid-template-areas: 
        'top'
        'bot';
    }
    .ifet>.box:nth-child(2)>.left{
        grid-area: top;
    }
    .ifet>.box:nth-child(2)>.right{
        grid-area: bot;
    }
}



/* playstore banner */
.psbanner{
    width: 100%;
    padding: 0px 80px;
    background-color: #053e48;
}
.psbanner>.psb{
    width: 100%;
    max-width: 1440px;
    margin: auto;
    display: grid;
    grid-template-columns: 50% 50%;
}
.psb>.right{
    background-image: url(/asset/img/img5.png);
    background-position: center;
    background-repeat: no-repeat;
}
.psb>.left{
    padding: 100px 0px;
    max-width: 646px;
}
.psb>.left>.tit{
    font-size: 40px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
    letter-spacing: 0px;
    line-height: 45px;
}
.psb>.left>.tit>span{
    font-family: "cusf", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #3f8315;
}
.psb>.left>.desc{
    font-size: 20px;
    color: white;
    letter-spacing: 0px;
    line-height: 27px;
    margin-bottom: 32px;
}
.psb>.right>img{
    display: none;
}


@media (max-width: 800px) {
    .psb{
        grid-template-columns: 1fr !important;
    }
    .psb>.right{
        background-image: none;
        display: flex;
        justify-content: center;
        padding-bottom: 100px;
    }
    .psb>.right>img{
        display: block;
        width: 100%;
        max-width: 430px;
        height: auto;
    }
    .psb>.left{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .psb>.left>p{text-align: center;}
    .psb>.left>img{
        max-width: 300px;
        height: auto;
    }
}



/* plan */
.plan{
    width: 100%;
    padding: 0px 80px;
    padding-top: 150px;
}
.plan>.tit{
    max-width: 1110px;
    margin: auto;
    font-family: "cusf", sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: #053e48;
}
.plan>.desc{
    max-width: 1200px;
    margin: auto;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    margin-bottom: 50px;
}

/* --- Optimized Plan Section --- */
.plan>.plnc {
        width: 100%;
    max-width: 1440px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-items: center;
    justify-content: center;
    gap: 24px;
}
.plan>.plnc>.box {
        border: 2px solid #053e48;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
    transition: box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(5, 62, 72, 0.04);
    max-width: 290px;
}
.plan>.plnc>.box:hover {
    box-shadow: 0 4px 24px rgba(5,62,72,0.10);
}
.plan .titc>.ptit {
    font-family: "cusf", sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #3f8315;
    margin-bottom: 4px;
}
.plan .titc>.ppri {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4px;
}
.plan .plan-desc {
    font-size: 16px;
    color: #444;
    text-align: center;
    margin: 10px 0 18px 0;
    line-height: 1.5;
}
.plan .ptc {
    flex-grow: 1;
    width: 100%;
}
.plan-feat-title {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    margin-bottom: 8px;
    margin-top: 8px;
}
.plan-feat-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}
.plan-feat-list li {
    font-size: 16px;
    margin: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.plan-feat-list .tick {
    color: #3f8315;
    font-size: 18px;
    margin-right: 6px;
}
.plan .btnc {
    margin: 18px auto 0 auto;
}
.plan .btnc>a {
    text-decoration: none;
}
.plan .btnc>a>button {
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 500;
    background-color: #053e48;
    color: white;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.plan .btnc>a>button:hover {
    background: #3f8315;
    color: #fff;
}

/* Responsive Plan Cards */
@media (max-width: 1100px) {
    .plan .titc>.ptit {
        font-size: 24px;
    }
    .plan .titc>.ppri {
        font-size: 22px;
    }
    .plan-feat-list li {
        font-size: 15px;
    }
    .plan .btnc>a>button {
        font-size: 16px;
    }
}
@media (min-width: 601px) and (max-width: 900px) {
    .plan>.plnc {
        max-width: 600px;
    }
    .plan>.plnc>.box {
        min-width: 0;
    }
}
@media (max-width: 600px) {
    .plan>.plnc>.box {
                width: 100%;
    }
    .plan .ptc {
        width: 100%;
        align-self: center;
    }
}



@media (max-width: 1100px) {
    .plan .titc>.ptit{
        font-size: 26px;
        font-weight: 600;
    }
    .plan .titc>.ppri{
        font-size: 26px;
        font-weight: 600;
    }
    .plan .ptc>.pts{ font-size: 16px; }
    .plan .btnc>a>button{ font-size: 18px; }
}
/* App preview */
.apv{
    padding: 150px 80px;
}
.apv>.tit{
    font-family: "cusf", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #053e48;
    text-align: center;
    margin-bottom: 16px;
}
.apv>.desc{
    font-size: 20px;
    text-align: center;
    margin-bottom: 50px;
}
.app-screenshots {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: flex-start;
    margin: 32px auto 0 auto;
    max-width: 1440px;
}
.appshot {
    width: 200px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 16px rgba(5, 62, 72, 0.05);
    background: #fff;
    transition: transform 0.2s;
}
.appshot:hover {
    transform: scale(1.05);
}
    
@media (max-width: 900px) {
    .app-screenshots {
        gap: 16px;
        max-width: 100vw;
    }
    .appshot {
        width: 170px;
    }
}
    
@media (max-width: 600px) {
    .app-screenshots {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .appshot {
        width: 100%;
        height: auto;
    }
}



/* footer */
.foot{
    padding: 50px 80px;
    background-color: #053e48;
    display: grid;
    grid-template-columns: 280px repeat(4, max-content);
    column-gap: 9%;
    justify-content: center;
}
.foot p{ 
    color: #ccc; 
    text-decoration: none;
    margin-bottom: 10px;
}
.foot p>a{ 
    color: #ccc; 
    text-decoration: none;
}
.foot p>a:hover{ 
    color: white;
}
.foot>.ld>.desc{
    font-size: 18px;
    margin-top: 24px;
}
.foot .tit{
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 18px;
}
.foot>.cu span{margin-right: 10px;}


@media (min-width: 1231px) and (max-width: 1440px) {
    .foot{ column-gap: 6%; }
}
@media (min-width: 866px) and (max-width: 1230px) {
    .foot{ 
        grid-template-columns: repeat(5, 1fr);
        column-gap: 4%;
     }
}
@media (min-width: 601px) and (max-width: 865px) {
    .foot{ 
        grid-template-columns: repeat(3, 1fr);
        grid-template-areas: 
        'one one three'
        'two four five';
        gap: 40px;
    }
    .ld{grid-area: one;}
    .cu{grid-area: two;}
    .ql{grid-area: three;}
    .comp{grid-area: four;}
    .fu{grid-area: five;}
}
@media (min-width: 331px) and (max-width: 600px) {
    .foot{ 
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: 
        'one one'
        'two three'
        'four five';
        gap: 20px;
    }
    .ld{grid-area: one;}
    .cu{grid-area: two;}
    .ql{grid-area: three;}
    .comp{grid-area: four;}
    .fu{grid-area: five;}
}
@media (min-width: 200px) and (max-width: 420px) {
    .foot{
        grid-template-columns: 1fr;
        grid-template-areas: 
        'one'
        'two'
        'three'
        'four'
        'five';
        gap: 30px;
    }
    .ld{grid-area: one;}
    .cu{grid-area: two;}
    .ql{grid-area: three;}
    .comp{grid-area: four;}
    .fu{grid-area: five;}
}



/* copyright */
.cr{
    padding: 18px 80px;
    background-color: #1d1d1d;
    color: white;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.cr>p{
    font-size: 16px;
    font-weight: normal;
}
.cr>div{
    display: flex;
    gap: 24px;
}
.cr a{
    text-decoration: none;
    color: white;
    font-size: 16px;
}


@media (max-width: 767px) {
    .cr{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas: 
        'top'
        'bot';
        gap: 18px;
    }
    .cr>p{
        grid-area: bot;
        text-align: center;
    }
    .cr>div{
        grid-area: top;
        justify-content: center;
    }
}






/* tab resolution */
@media (min-width: 551px) and (max-width: 800px) {
    .navb{padding: 32px 50px;}
    .bnavc{padding: 16px 50px !important;}
    .heroc{padding: 50px;}
    .why{margin: 50px;}
    .ps{padding: 0px 50px;}
    .kf{padding: 100px 50px;}
    .ifetc{padding: 100px 50px;}
    .psbanner{padding: 0px 50px;}
    .plan{padding: 150px 50px 0px 50px;}
    .apv{padding: 150px 50px;}
    .foot{padding: 50px;}
    .cr{padding: 18px 50px;}
}

/* Mobile resolution */
@media (min-width: 300px) and (max-width: 550px) {
    .navb{padding: 18px 30px;}
    .bnavc{padding: 16px 30px !important;}
    .heroc{padding: 30px;}
    .why{margin: 30px;}
    .ps{padding: 0px 30px;}
    .kf{padding: 100px 30px;}
    .ifetc{padding: 100px 30px;}
    .psbanner{padding: 0px 30px;}
    .plan{padding: 150px 30px 0px 30px;}
    .apv{padding: 150px 30px;}
    .foot{padding: 30px;}
    .cr{padding: 18px 10px;}
}

@media (max-width: 500px) {
    .hero>.left>div>.tit{
        font-size: 26px;
        line-height: normal;
        margin-bottom: 10px;
    }
    .hero>.left>div>.tit>span{
        font-size: 26px;
    }
    .hero>.left>div>.desc{
        font-size: 18px;
        line-height: normal;
        margin-bottom: 30px;
    }
    .hero>.left>div>p{
        font-size: 18px;
    }
    .hero>.right>img{padding: 0px;}


    .why>.tit{font-size: 26px;}
    .why>.desc{
        font-size: 18px;
        line-height: normal;
    }


    .ps>.left .tit{font-size: 28px;}
    .ps>.right .tit{font-size: 26px;} 
    .ps>.left .pts ,.ps>.right .pts{
        padding: 3px 0px;
    }


    .kf>.tit{
        font-size: 26px;
        line-height: normal;
        margin-bottom: 18px;
    }
    .kf>.desc{
        font-size: 18px;
        line-height: normal;
        text-align: center;
    }


    .ifetc .box>.right>.tit{
        font-size: 26px;
        line-height: normal;
    }
    .ifetc .box>.right>.desc{
        font-size: 18px;
        line-height: normal;
        margin-top: 8px;
    }


    .psb>.left>.tit>span{font-size: 26px;}
    .psb>.left>.tit{
        font-size: 26px;
        line-height: normal;
        margin-bottom: 30px;
    }
    .psb>.left>.desc{
        font-size: 18px;
        line-height: normal;
        margin-bottom: 30px;
    }


    .plan>.tit{
        font-size: 26px;
        line-height: normal;
    }
    .plan>.desc{
        font-size: 18px;
        line-height: normal;
    }


    .apv>.tit{
        font-size: 26px;
        line-height: normal;
    }
    .apv>.desc{
        font-size: 18px;
        line-height: normal;
    }


    .foot>div p{font-size: 16px !important;}
    .foot .tit{font-size: 18px !important;}
}

@media (min-width: 350px) and (max-width: 599px) {
    .fet{
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
        'one two'
        'tre fur'
        'fiv six'
        'sev sev';
    }
    .kf .fet>.fec{width: 100%;}
    .fet>.fec:nth-child(7){grid-area: sev;}
}