@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800;900&display=swap');

*{
    padding: 0;
    margin: 0;
    font-family: 'Figtree','Poppins','system-ui', sans-serif;
    background: transparent;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition:all 0.3s ease 0s;
    -o-transition:all 0.3s ease 0s;
    color: var(--snow-white);
}
:root{
    --bg-header: #1f2937;
    --bg-para: #1f2937;
    --border: #383838;
    --box-shadow:linear-gradient( to bottom right, hsl(0, 0%, 25%) 0%, hsla(0, 0%, 25%, 0) 50% );
    --bg: #111827;
    --gbg: radial-gradient( circle 321px at 8.3% 75.7%,  rgba(209,247,241,1) 0%, rgba(249,213,213,1) 81% );
    --white: #fff;
    --snow-white: #f3f4f6;
    --blue: #0284c7;
    --blueh: #006597;
}

/* common */
h1{
    letter-spacing: 4px;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(90deg,#df805b,#e961e2);
    -webkit-background-clip: text;
}
/* navbar */
header{
    width: 100vw;
    height: 50px;
    position: sticky;
    top: 0;
    background-color: var(--bg);
    box-shadow: 0px 15px 10px -15px #111; 
    z-index: 1;
}
nav{
    display: flex;
    justify-content: space-between;
    width: 95%;
    height: 100%;
    margin: auto;
    align-items: center;
}
#logo{
    font-weight: 900;
    text-decoration: none;
    color: var(--snow-white);
}
#nav-menu{
    display: flex;
    list-style: none;
}
#nav-menu>li>a{
    text-decoration: none;
}
.menu-link{
    margin-left: 20px;
}
.menu-link>a:hover{
    color: var(--blue);
}
#singupbtn{
    padding: 5px 15px;
    background-color: var(--blue);
    border-radius: 25px;
    font-weight: 600;
}
#singupbtn:hover{
    cursor: pointer;
    background-color: var(--blueh);
    color: var(--bg);
}

/* main section */
section{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    min-height: 95vh;
    background: #5C258D;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #4389A2, #5C258D);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #4389A2, #5C258D); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    max-height: 100vh;
}
main{
    display: block;
    text-align: center;
    /* margin: 0; */
}
main>:last-child{
    padding-bottom: 20px;
}
main>h6{
    font-size: 28px;
}
main>h1{
    font-size: 72px;
}
main>p{
    font-size: 18px;
    color: var(--snow-white);
    width: 80%;
    margin: auto;
}
main>button{
    margin: 40px 0;
    outline: none;
    border: none;
}
main>button>:hover, #signupbtnhome:hover{
    cursor: pointer;
    background-color: var(--blueh);
}
#signupbtnhome{
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    background-color: var(--blue);
}
.blue{
    color: var(--blue);
}

/* about */
.about{
    width: 100vw;
    padding: 50px 0;
    background: #FFFEFE;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #FFFEFE, #FFFEFE);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #ffffff, #ffffff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    max-height: 95vh;
}
.about>div{
    width: 70%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.about>div>img{
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    border-radius: 10px;
    max-height: 80%;
    width: 100%;
}
.aboutimg>p{
    text-align: center;
    margin-bottom: 20px;
    color: #111;
}
.aboutimg>h1{
    text-align: center;
}

/* pricing */
#price{
    width: 100vw;
    padding: 50px 0;
    background: #614385;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #516395, #614385);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #516395, #614385); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
#price>:first-child{
    text-align: center;
}
#pricediv{
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 3fr);
    gap: 30px;

}
.pricebox{
    margin: 30px 0;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.pricebox>:first-child{
    text-align: center;
    padding: 30px 15px;
    background: linear-gradient(-45deg,#751266,#154064);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    font-size: 24px;
}
.pricebox>:first-child>:first-child{
    padding: 15px 0;
    color: rgb(130, 233, 130);
}

.pricebox>:first-child>:first-child{
    padding: 15px 0;
    color: rgb(130, 233, 130);
}
.pricebox>:first-child>:nth-child(2){
    font-size: 20px;
}
#stand{
    color: var(--blue);
}
#pro{
    color: rgb(204, 204, 66);
}
.pricerate{
    font-size: 70px;
}
.pricerate>span{
    color: gray;
}
.pricebtn{
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    background-color: var(--blue);
    font-size: 18px;
    border: none;
    margin-top: 20px;
}
.pricebtn:hover{
    cursor: pointer;
    background-color: var(--blueh);
}
.pricebox>:last-child{
    padding: 30px 0 30px 30px;
    background-color: linear-gradient(-45deg,#24ff72,#9a4eff);
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
}

/* start now section */
#startnow{
    display: flex;
    background: hsla(4, 48%, 94%, 1);
    max-height: 100vh;

background: linear-gradient(90deg, hsla(4, 48%, 94%, 1) 0%, hsla(66, 70%, 80%, 1) 50%, hsla(226, 67%, 76%, 1) 100%);

background: -moz-linear-gradient(90deg, hsla(4, 48%, 94%, 1) 0%, hsla(66, 70%, 80%, 1) 50%, hsla(226, 67%, 76%, 1) 100%);

background: -webkit-linear-gradient(90deg, hsla(4, 48%, 94%, 1) 0%, hsla(66, 70%, 80%, 1) 50%, hsla(226, 67%, 76%, 1) 100%);

filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#F7E9E8", endColorstr="#E9F0AA", GradientType=1 );
}
#startnow>div{
    width: 50%;
}
.leftstart{
    display: flex;
    justify-content: center;
    align-items: center;
}
.leftstart>img{
    width: 80%;
    margin: 50px 20px;
}
.righttstart{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}
.righttstart>div{
    margin: 30px;
    line-height: 40px;
}
.righttstart>div>h1, .righttstart>div>p{
    color: var(--bg);
}
/* mobile ads section */
#mobile-ad{
    display: flex;
    background: hsla(94, 100%, 70%, 1);
    max-height: 100vh;

background: linear-gradient(90deg, hsla(94, 100%, 70%, 1) 0%, hsla(0, 100%, 77%, 1) 100%);

background: -moz-linear-gradient(90deg, hsla(94, 100%, 70%, 1) 0%, hsla(0, 100%, 77%, 1) 100%);

background: -webkit-linear-gradient(90deg, hsla(94, 100%, 70%, 1) 0%, hsla(0, 100%, 77%, 1) 100%);

filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#A9FF68", endColorstr="#FF8989", GradientType=1 );
}
#mobile-ad>div{
    width: 50%;
}
.left-mobile{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}
.left-mobile>div{
    margin: 30px;
    line-height: 40px;
}
.left-mobile>div>h1, .left-mobile>div>p{
    color: var(--bg);
}
.right-mobile{
    display: flex;
    justify-content: center;
    align-items: center; 
}
.right-mobile>img{
    width: 80%;
    margin: 50px 20px; 
}

/* contact form */
#contact {
    padding: 50px 0;
    width: 100vw;
    background: #2193b0;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #6dd5ed, #2193b0);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #6dd5ed, #2193b0); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}
#contact>:first-child {
    text-align: center;
}

.contact-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
    width: 100vw;
}
.contact-box>:first-child {
    width: 50vw;

}
.contact-box>:last-child {
    width: 50vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-box>:last-child>img {
    width: 60%;
}
.form-horizontal{
    max-width: 400px;
    font-weight: 400;
  }
  
  .form-control, 
  textarea {
    max-width: 400px;
    letter-spacing: 1px;
    width: 100%;
    margin: 5px 0;
    color: var(--bg);
    font-size: 16px;
    /* border: 1px solid var(--blue); */
    border: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    outline: none;
    padding: 3px;
    border-radius: 5px;
    background: hsla(176, 61%, 87%, 1);

background: linear-gradient(90deg, hsla(176, 61%, 87%, 1) 0%, hsla(150, 54%, 86%, 1) 50%, hsla(301, 68%, 84%, 1) 100%);

background: -moz-linear-gradient(90deg, hsla(176, 61%, 87%, 1) 0%, hsla(150, 54%, 86%, 1) 50%, hsla(301, 68%, 84%, 1) 100%);

background: -webkit-linear-gradient(90deg, hsla(176, 61%, 87%, 1) 0%, hsla(150, 54%, 86%, 1) 50%, hsla(301, 68%, 84%, 1) 100%);

filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#CAF2EF", endColorstr="#C9EFDC", GradientType=1 );
  }
  
  .send-button {
    margin-top: 15px;
    height: 40px;
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    /* border: 1px solid var(--blue); */
    border: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;   
    outline: none;
    padding: 3px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 18px;
    color: var(--bg);
    background: hsla(176, 61%, 87%, 1);

background: linear-gradient(90deg, hsla(176, 61%, 87%, 1) 0%, hsla(150, 54%, 86%, 1) 50%, hsla(301, 68%, 84%, 1) 100%);

background: -moz-linear-gradient(90deg, hsla(176, 61%, 87%, 1) 0%, hsla(150, 54%, 86%, 1) 50%, hsla(301, 68%, 84%, 1) 100%);

background: -webkit-linear-gradient(90deg, hsla(176, 61%, 87%, 1) 0%, hsla(150, 54%, 86%, 1) 50%, hsla(301, 68%, 84%, 1) 100%);

filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#CAF2EF", endColorstr="#C9EFDC", GradientType=1 );
  }
  .send-button:hover {
    background: var(--blue);
    cursor: pointer;
  }
  
  .send-text {
    display: block;
    margin-top: 10px;
    font: 700 12px 'Lato', sans-serif;
    letter-spacing: 2px;
  }
  
  .alt-send-button:hover {
    transform: translate3d(0px, -29px, 0px);
  }

  /* footer */
#footer{
    background: var(--bg);
    text-align: center;
    width: 100%;
    padding: 50px 0;
}  
#footer>*{
    max-width: 500px;
    margin: auto;
}  
.footersocial{
    display: flex;
    list-style: none;
    max-width: 100%;
    width: 250px;
    padding: 20px 0;
    justify-content: space-between;
}
.footersocial>li>a>i{
    font-size: 24px;
}
.footersocial>li>a>i:hover{
    color: var(--blue);
}
.copyright{
    background-color: var(--bg-header);
    text-align: center;
}

/* login page */
#login{
    width: 100vw;
    height: 90vh;
    background-image: url("/img/background-lite.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 30px;
}
#login>h1{
    text-align: center;
    color: var(--bg);
}
.login-box{
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
    padding-top: 30px;
}
.login-img{
    width: 40%;
}
.login-img>img{
    width: 70%;
}
label{
    color: var(--bg);
}
#login-form{
    width: 60%;
    padding: 30px 20px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    backdrop-filter: blur(10px);
}
.login-input, .form-control{
    background: var(--snow-white);
}
#dont{
    padding: 15px 0;
    color: var(--bg);
}
#dontsignup>a{
    color: var(--blue);
}
#dontsignup>a:hover{
    cursor: pointer;
    color: var(--blueh);
}
@media only screen and (max-width: 850px){
    section{
        height: auto;
        min-height: fit-content;
    }
    main{
        display: block;
        text-align: center;
        margin-top: 10vh;
    }
    main>h6{
        font-size: 20px;
    }
    main>h1{
        font-size: 40px;
    }
    main>p{
        font-size: 14px;
        color: var(--snow-white);
    }
    main>button{
        margin: 40px 0;
        outline: none;
        border: none;
    }
    .about>div{
        width: 95%;
        margin: auto;
    }
    .aboutimg>h1{
        font-size: 26px;
    }
    .aboutimg>h2{
        font-size: 14px;
    }
    #pricediv{
        width: 90%;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    #logo{
        font-size: 16px;
    }
    .menu-link{
        margin-left: 10px;
    }
    .nav-menu>li>a{
        font-size: 12px;
    }
    #startnow, #mobile-ad{
        flex-direction: column-reverse;

    }
    #startnow>div{
        width: 100%;
    }
   .righttstart>div>p{
        line-height: normal;
    }
    .leftstart>img{
        padding: 0;
        margin: 0;
    }
    #mobile-ad{
        flex-direction: column;
    }
    #mobile-ad>div{
        width: 100%;
        margin: auto;
    }
    .left-mobile>div>p{
        line-height: normal;
    }
    #mobile-ad>div{
        width: 100%;
        margin: auto;
    }
    #mobile-ad>div>img{
        padding:0;
        margin: 0;
        height: 60%;
    }
    .contact-box{
        flex-direction: column;
        margin: 10px 0;
    }
    .contact-box>:first-child {
        width: 80vw;
    }
    .contact-box>:last-child {
        display: none;
    }
    #footer>p{
        padding: 0 40px;
    }
    #footer{
        padding-bottom: 0px;
    }
    .login-img{
        display: none;
    }
}