* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 1rem;
    line-height: 1.5;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #545460;
    /* color: #747483; */
}

/*---------- Genral Style ----------*/

.btn {
    display: inline-block;
    font-weight: 600;
    padding: 15px 20px;
    background: #0B0B5F;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: .8rem;
    transition: all 300ms ease-in-out;
    box-shadow: 0 5px 15px 0 rgb(0 0 0 / 15%);
}

.btn:hover {
    background: #5353b5;
    color: white;
}

/*--------------- Section Title/Subtitle ---------------*/

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    max-width: 20rem;
    text-align: center;
    color: #040447;
}

.section-subtitle {
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    margin: 0 auto;
    max-width: 20rem;
}


@media (min-width: 1000px) { 
    .section-title {
        width: 27rem;
        max-width: 100%;
        font-size: 2rem;
    }
    .section-subtitle {
        width: 27rem;
        max-width: 100%;
    }

}




/*--------------- Header Section ---------------*/

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 85%;
    padding: 2rem 0;
    margin: 0 auto;
}

.header-btn {
    display: none;
}

@media (min-width: 1000px) { 
    .header {
        width: 60%;
        padding: 1rem 0;
    }
    .header-btn {
        display: inline-block;
    }
}

.navbar {
    display: flex;
    gap: 0.8rem;
}

@media (min-width: 1000px) { 
    .navbar {
        display: flex;
        gap: 1.5rem;
    }
}

.navbar > a {
    display: flex;
    align-items: center;
    font-size: 14px;
    text-decoration: none;
    color: #747483;
    transition: all 300ms ease-in-out;
}

@media (min-width: 1000px) { 
    .navbar > a {
        font-size: 1rem;
    }
}

.navbar > a::after {
    content: '';
    display: block;
    width: inherit;
    border-radius: 20%;
    opacity: 0;
    height: 3px;
    margin: 0.1em auto;
    background: #0B0B5F;
    transition: all 300ms ease-in-out;
}

.navbar > a:hover:after {
    opacity: 1;
}

.logo {
    color: #0B0B5F;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
}

/*--------------- Hero Section ---------------*/

.display-sm {
    display: flex!important;
}

.display-lg {
    display: none!important;
}

@media (min-width: 1000px) { 
    .display-sm {
        display: none!important;
    }
    .display-lg {
        display: flex!important;
    }
}

.hero {
    display: grid;
    grid-template-rows: auto 1fr;
    position: relative;
    padding: 3% 10%;
    background-color: #EDFCFE;
}

@media (min-width: 1000px) { 
    .hero {
        grid-template-columns: 1fr 1fr;
        padding: 3% 20%;
    }
}


.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 1rem 0;
    gap: 1.2rem;
}


.hero-right {
    display: flex;
    justify-content: center;
}


@media (min-width: 1000px) { 
    .hero-left {
        margin-top: 0;
        align-items: flex-start;
        text-align: left;
        gap: 2rem;
    }
}

.hero-btn {
    max-width: 114px;
}

.hero-img {
    width: 100%;
    max-width: 400px;
}

.hero-title {
    font-size: 1.9rem;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #040447;
}

@media (min-width: 1000px) { 
    .hero-title {
        font-size: 3rem;
    }
}

.path-bottom {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

@media (min-width: 1000px) { 
    .path-bottom {
        display: block;
    }
}



/*--------------- Benefits Section ---------------*/

.benefits {
    padding: 5rem 0 5rem;
}

@media (min-width: 1000px) { 
    .benefits {
        padding: 5rem 0 7rem;
    }
}

/*-- Cards Section --*/

.cards {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'Roboto', sans-serif;
    gap: 2rem;
    width: 80%;
    margin: 5rem auto;
}

@media (min-width: 1000px) { 
    .cards {
        flex-direction: row;
        width: 60%;
        gap: 0;
    }
}


.card {
    padding: 2rem;
    max-width: 300px;
    border-radius: 1rem;
    box-shadow: 0 25px 60px rgb(11 11 95 / 8%);
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    color: #040447;
}

.card-img {
    width: 100px;
    margin-bottom: 4rem;
}

.card-hr {
    height: 4px;
    width: 20%;
    margin-bottom: 0.9rem;
    background-image: linear-gradient(90deg,#0B0B5F 0%,#FFFFFF 100%);
}

/*----------------- How Work Section  ----------------- */

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    width: 80%;
    margin: 5rem auto;
}

@media (min-width: 1000px) { 
    .how-steps {
        width: 60%;
    } 
}


.how-step {
    display: grid;
    grid-template-rows: 50% 50%;
    gap: 2rem;
}

@media (min-width: 1000px) { 
    .how-step {
        grid-template-columns: 50% 50%;
        grid-template-rows: 1fr;
        gap: 0;
    } 
}


.how-step-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 2rem;
}

@media (min-width: 1000px) { 
    .how-step-left {
        margin-right: 6.25rem;
    }
}


.how-step-title {
    color: #040447;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 1000px) { 
    .how-step-title {
        font-size: 1.5rem;
    }
}


.how-step-img {
    width: 20rem;
}

.how-step-right {
    display: flex;
    justify-content: center;
}

@media (min-width: 1000px) { 
    .how-step-img {
        width: 25rem;
    }
    
    .how-step-right {
        display: block;
        
    }
}


/*----------------- Why Choose Us Section  ----------------- */

.why {
    margin: 8rem auto 5rem;
    width: 80%;
}

@media (min-width: 1000px) { 
    .why {
        width: 60%;
    }
}

@media (max-width: 1000px) { 
    .why-title,
    .why-subtitle {
        width: 100%;
    }
}


.why-inner {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin: 6rem 0;
    gap: 5rem;
}

@media (min-width: 1000px) { 
    .why-inner {
        gap: 0;
        flex-direction: row;
    }
    
}


.why-inner-title {
    color: #040447;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.why-inner-subtitle {
    width: 17rem;
}

.why-hr {
    height: 4px;
    width: 20%;
    margin-bottom: 0.9rem;
    background-image: linear-gradient(90deg,#0B0B5F 0%,#FFFFFF 100%);
}

/*----------------- What We Provide Section  ----------------- */

.provide {
    width: 80%;
    margin: 8rem auto 5rem;
}

@media (min-width: 1000px) { 
    .provide {
        width: 60%;
    }
}


.provide-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 5rem 0;
}

@media (min-width: 1000px) { 
    .provide-cards {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    } 
}


.provide-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 0.25rem;
    height: 3rem;
    gap: 0.5rem;
    box-shadow: 0 25px 60px rgb(11 11 95 / 12%);
}

@media (max-width: 1000px) { 
    .provide-card-text {
        font-size: 0.9rem;
    }    
}

.provide-card-img{
    width: 0.9rem;
}

@media (min-width: 1000px) { 
    .provide-card-img{
        width: 1rem;
    }
}


/*--------------------- Works Section ---------------------*/

.work {
    margin: 8rem auto 5rem;
    width: 80%;
}

@media (min-width: 1000px) { 
    .work {
        width: 60%;
    }
}


.work-inner {
    display: grid;
    justify-content: center;
    grid-template-rows: 1fr 1fr 1fr;
    margin: 5rem 0;
    gap: 1rem;
}

@media (min-width: 1000px) { 
    .work-inner {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr;
        gap: 0;
    }
}


.work-img {
    width: 19rem;
    padding: 1rem;
    border-radius: 1rem;
}

.work-img-1 {
    background-color: rgba(255, 192, 203, 0.3);
}

.work-img-2 {
    background-color: rgba(143, 188, 143, 0.3);
}

.work-img-3 {
    background-color: rgba(196, 143, 245, 0.3);
}


/*--------------------- Trusted By Thousands Section ---------------------*/

.trusted {
    width: 80%;
    margin: 8rem auto 5rem;
}

@media (min-width: 1000px) { 
    .trusted {
        width: 60%;
    }
}


.trusted-cards {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
    margin: 5rem 0;
}

@media (min-width: 1000px) { 
    .trusted-cards {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
    }
}


.trusted-card {
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 25px 60px rgb(11 11 95 / 8%);
}

.trusted-card-name {
    color: #040447;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.trusted-card-profaction {
    font-size: 0.8rem;
}

.trusted-card-text {
    font-size: 1.2rem;
}
 
.trusted-card-img,
.trusted-card-text {
    margin-bottom: 1.5rem;
}

.trusted-hr {
    height: 4px;
    width: 20%;
    margin-bottom: 0.9rem;
    background-image: linear-gradient(90deg,#0B0B5F 0%,#FFFFFF 100%);
}

/*--------------------- Pricing Section ---------------------*/

.pricing {
    margin: 5rem auto;
    width: 80%;
}

@media (min-width: 1000px) { 
    .pricing {
        width: 60%;
    }
}


.pricing-top {
    margin: 8rem 0 4rem;
}

.pricing-inner {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    padding: 0 2rem;
    border-radius: 1rem;
    box-shadow: 0 25px 60px rgb(11 11 95 / 10%);
}

@media (min-width: 1000px) { 
    .pricing-inner {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr;
        padding: 2rem;
    }
}

.pricing-card {
    padding: 2rem 0;
    border-bottom: 1px solid #0000000a;
}

@media (min-width: 1000px) { 
    .pricing-card {
        padding: 1.5rem;
        border-right: 1px solid #0000000a;
        border-bottom: none;
    }     
}


.pricing-card:last-child {
    border-right: none;
    border-bottom: none;
}

.pricing-card-img {
    height: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-card-title {
    color: #040447;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-card-subtitle {
    margin: 1rem 0;
    font-size: 1rem;
}

.pricing-card-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.pricing-card-price {
    margin-bottom: 1rem;
    color: #040447;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 2rem;
}

.pricing-card-trial {
    font-size: 0.8rem;
}

/*--------------------- Footer Section ---------------------*/

.footer {
    position: relative;
    padding: 5rem 0 0;
    background-color: #EDFCFE;
}

.footer-inner {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    margin: 0 auto;
    width: 80%;
    gap: 2rem;
}

@media (min-width: 1000px) { 
    .footer-inner {
        grid-template-columns: 1.5fr 1fr 1fr;
        grid-template-rows: 1fr;
        width: 60%;
        gap: 0;
    }    
}


.footer-logo {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

@media (min-width: 1000px) { 
    .footer-inner-first-text {
        width: 20rem
    }   
}


.footer-inner-middle,
.footer-lnner-last {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-inner-title {
    margin-bottom: 0.5rem;
}

.footer-inner-link {
    color: inherit;
    text-decoration: none;
}
/* 
.footer-top-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
} */

.made-with-love {
    text-align: center;
    padding: 3rem 0;
}






