@font-face {
    font-family: 'Poppins';
    src: URL('assets/fonts/Poppins/Poppins-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    src: URL('assets/fonts/Roboto/static/Roboto-Medium.ttf') format('truetype');
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
  }
.nav-links li {
    list-style: none;
}

:root{
    --primary-text-color:#183b56;
    --secondary-text-color:#577592;
    --accent-color:#067bf0;
    --accent-color-dark:#067bf0;
    --padding-inline-section: 20px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-text-color);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem;
    color: var(--secondary-text-color);
    line-height: 1.8rem;
}

a {
    text-decoration: none;
    display: inline-block;
}

.small-bold-text {
    font-size: 1rem;
    font-weight: 700;
}

.container {
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: var(--padding-inline-section);
    overflow: hidden;
}

.top-banner {
    background-color: #067BF0;
    /* border-bottom: 0.5px solid #ccc; */

}
.banner-text {
    text-align: center;
    color: white;
    padding: 15px 30px;
}

#cursor {
    animation: blink 0.7s infinite;
    color: #067bf0;
  }
  
  @keyframes blink {
    50% {
      opacity: 0;
    }
  }

.flex {
    display: flex;
    align-items: center;
}
.company-logo {
    font-size: 33px;
    color: var(--accent-color) !important;
    font-weight: 800;
    letter-spacing: 3px;
}

.main-nav{
    justify-content: space-between;
    margin-top: 10px;
    position: relative;
    overflow: initial;
}
.nav-links {
    flex-basis: 730px;
}
.nav-links ul{
    justify-content: end;
    gap: 40px;
}
.hover-link{
    color: var(--primary-text-color);
    transition: all 0.55s ease;
}

.hover-link:hover {
    color: var(--accent-color);
}
.padding-side-20 {
    padding-left: 40px;
    padding-right: 40px;
}

.primary-button {
    background-color: var(--accent-color);
    color: white !important;
    border-radius: 6px;
    padding: 12px 24px;
    font-weight: 700;
    box-shadow: 0 0 2px var(--secondary-text-color);
    transition: all 0.2s ease-out;
}

.primary-button:hover {
    background-color: var(--accent-color-dark);
}

.secondary-button {
    border: 0.5px solid var(--secondary-text-color);
    border-radius: 6px;
    font-weight: 700;
    color: var(--primary-text-color);
    padding: 12px 16px;
    transition: 0.2s ease-out;
}
.secondary-button:hover {
    color: var(--accent-color);
    border: 1px solid var(--accent-color);;
    
}

header {
    padding: 50px var(--padding-inline-section);
    min-height: 100vh;
}

.header-section{
    justify-content: center;
    gap: 50px;
}
.header-left{
    max-width: 60vw;
}
.header-right {
    max-width: 40vw;
}
.header-right img {
    width: 100%;
}
.signup-button {
    margin-top: 20px;
}

.branding-para {
    margin-top: 10px;
}

.text-center1 {
    text-align: center !important;
}
.margin-top-20 {
    margin-top: 20px;
}
.margin-left-20 {
    margin-left: 20px;
}
.margin-top-60 {
    margin-top:100px;
}

.justify-content-even {
    justify-content: space-evenly;
}

section{
    margin-top: 20px;
}
.text-about{
    /* text-decoration: underline; */
    text-align: center;
}
.about-section {
    min-height: 60vh;
    background-color: var(--accent-color);
    color: white !important;
    padding: 40px 0px;
    border-radius: 20px;
    margin: 40px;
    box-shadow: 2px 2px 8px #020202;
}
.accent-dark-bg{
    color: var(--primary-text-color);
}
.text-white {
    color: white;
}
.features-container {
    flex-wrap: wrap;
    justify-content: center;
}
.feature-card{
    border: 1px solid var(--accent-color-dark);
    border-radius: 10px;
    margin: 20px;
    width: 300px;
    padding: 20px 30px;
    transition: 0.50s ease;
    cursor: pointer;
    position: relative;
    box-shadow: 2px 3px 5px #333;
}

.feature-card:hover {
    background-color: var(--accent-color-dark);
    color: white;
    box-shadow: 1px 5px 5px var(--primary-text-color);
}
.feature-card:hover .circle {
    display: block;
}
.feature-heading {
    text-align: center;
    margin-bottom: 10px;
    font-size: 20px;
}
.circle {
    position: absolute;
    height: 30px;
    width: 30px;
    background-color: var(--accent-color);
    border-radius: 60px;
    top: -10px;
    left: -10px;
    display: none;
}

svg {
    width: 18px;
    height: 18px;
}
.pricing-container {
    justify-content: center;
}

.pricing-small {
    flex-wrap: wrap;
    /* background-color: var(--accent-color); */
    padding: 10px 20px;
    display: inline-block;
    margin: 20px;
    justify-content: space-between;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 10px;
}

.pricing-small h5 {
    display: inline-block; margin-left: 10px;
}

.branding-text {
    color: var(--accent-color) !important;
}
.no-border {
    /* border: none !important; */
    transition: 0.5s ease;
    width: 180px;
    text-align: center;
}
.no-border:hover{
    border: 1px solid var(--accent-color) !important;
}

.price-card {
    width: 400px;
    height: 100%;
    /* border: 0.5px solid var(--primary-text-color); */
    border-radius: 10px;
    margin: 0 auto;
    padding: 10px 1px;
    box-shadow: 1px 1px 1px #fff;
    background-color: #fff;
}
.price-heading{
    text-align: center;
    margin-top: 10px;
}
.text-stripe {
    text-decoration: line-through;
    text-align: center;
}
.price-amount {
    /* display: inline-block; */
    text-align: center !important;
}
.price-off{
    /* display: inline-block; */
    text-align: center;
}
.price-symbol {
    font-size: 18px;
}
.text-center-p{
    text-align: center;
}
.small-p {
    font-size: 0.9rem;
}
.success-button {
    background: var(--accent-color);
    padding: 10px 20px;
    margin: 20px;
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
    text-align: center;
    display: block;
}
.plan-features {
    position: relative;
    padding: 0px 10px;
}
.plan-features ul li {
    list-style: none;
    position: relative;
    padding: 10px;
}
.tick-svg {
    position: relative;
    top: 5px;
    left: 10px;
}
.blacktick-svg {
    width: 13px;
    height: 13px;
}
.call-us-p{
    display: inline-block;
    /* background-color: #ccc; */
    width: 100%;
    text-align: center;
    padding: 5px;
    margin-top: 10px;
    color: var(--primary-text-color);
    font-weight: 600;
    border: 0.5px groove var(--accent-color);
    border-radius: 5px;
}
.no-boder {
    border: none !important;
}
.contact-div {
    /* box-shadow: 2px 3px 5px #333; */
    padding: 20px;
}
.p-about {
    line-height: 2;
}
.footer-div {
    height: 100%;
    background-color: var(--primary-text-color);
    border-bottom: 0.5px groove #fff;
}
.footer-flex {
    /* flex-direction: column; */
    /* flex-wrap: wrap; */
    justify-content: space-between;
    justify-items: center;
    padding: 10px 20px;
}
.footer-cpmpany {
    font-size: 30px;
    color: white;
}
.footer-p{
    color: white;
}
.footer-call-us-p{
    color: white;
}
.footer-anchor{
    color: white;
    padding: 5px 0px;
}
.sub-footer{
    padding: 10px;
    background-color: var(--primary-text-color);
    color: white;
    text-align: center;
}
.accent-bg{
    color: var(--accent-color);
}
.pricing-section{
    background-color: var(--accent-color);
    padding: 30px 0px;
    margin: 40px;
    box-shadow: 2px 2px 8px #020202;
    border-radius: 20px;
    /* background-image: url(assets/bg1.png); */
    /* background-size: 800px; */
    /* background-size: contain; */
}
.features-section {
    margin-top: 100px;
}
.nav-toggle {
    display: none;
    font-size: 2rem;
}
@media screen and (max-width: 991px) {
    .nav-toggle {
        display: block;
        margin-right: 20px;
    }
    .nav-links{
        display: block;
        position: absolute;
        top: 100%;
        left: -100%;
        width: 80%;
        background-color: #fff;
        padding-block: 20px;
        font-size: 1.5rem;
        box-shadow: 5px 2px 10px #333;
        height: 100vh;
        transition: all 0.55s ease;
        /* background: rgba(0, 0, 0, 0.5); */
    }
    .nav-links ul {
        flex-direction: column;
    }
    .nav-links.active {
        left: 0;
    }
    .primary-button{
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    .secondary-button{
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
        margin-left: 0;
    }
    .price-card {
        margin-top: 50px;
    }
}

@media screen and (max-width: 767px) {
    .header-section {
        flex-direction: column-reverse;
    }
    .header-left {
        max-width: 100%;
        text-align: center;
    }
    .header-right{
        max-width: 100%;
    }
    .primary-button {
        width: 100%;
        margin-bottom: 20px;
        font-size: 1.1rem;
    }
    .secondary-button {
        width: 100%;
        margin-left: 0;
        font-size: 1.1rem;
    }
    .feature-card {
        width: 100%;
    }
    .footer-flex {
        flex-direction: column;
    }
    .footer-call-us-p {
        margin-bottom: 30px;
        border-bottom: 1px solid #fff;
    }
    .footer-p {
        margin-bottom: 30px;
    }
    .footer-li {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-anchor {
        margin: 10px;
    }
}

@media screen and (max-width: 497px) {
    :root {
        --padding-inline-section: 10px;
    }
    .about-section{
        margin: 10px;
        border-radius: 10px;
    }
    .pricing-section {
        margin: 10px;
        border-radius: 10px;
    }
    .pricing-container {
        flex-direction: column;
    }
    .pricing-small {
        margin: 5px;
    }
    .footer-p {
        text-align: center;
    }
    h2 {
        font-size: 2rem;
    }
    .feature-heading {
        font-size: 1.2rem;
    }

    .price-card {
        margin-top: 30px;
        width: 100%;
    }
    .success-button {
        font-size: 1.1rem;
    }
    .contact-div p {
        padding: 10px;
    }
    .company-logo {
        font-size: 2rem;
    }
    .nav-toggle {
        font-size: 2rem;
    }
    .small-bold-text {
        font-size: 1rem;
    }
}