@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root{
    --primary-text-color: #183556;
    --secondary-text-color: #577592;
    --accent-color: #2294ed;
    --accent-color-dark: #116eb5;
    --padding-inline-section: 20px;
}

body{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--primary-text-color);
    background-color: #f1f1f1;
}

h1{
    font-size: 3rem;
}

h2{
    font-size: 2rem;
}

h3{
    font-size: 1.5rem;
}

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

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

ul {
    list-style: none;
}

/* utility classes */


.flex {
    display: flex;
    align-items: center;
}


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


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

.hover-link{
    color: var(--primary-text-color);
    transition: 0.2s ease-out;
}
.hover-link:hover{
    color: var(--accent-color);
}


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

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

.secondary-button{
    border: 0.5px solid var(--secondary-text-color);
    border-radius: 6px;
    font-weight: 500;
    color: var(--primary-text-color) !important;
    padding: 12px 24px;
    transition: 0.2s ease-out;
}

.secondary-button:hover{
    border-color: var(--accent-color);
    color: var(--accent-color) !important;
}

/* Nav Bar */

.white-color{
    color: white;
}

.main-nav{
    width: 80%;
    justify-content: space-between;
    position: relative;
    margin-top: 20px;
    background-color: black;
    border-radius: 10px;
}

.title{
    display: none;
}

.company-logo img {
    width: 48px;
}

.nav-links {
    flex-basis: 730px;
}

.nav-links ul {
    justify-content: end;
    gap: 40px;
}

.nav-toggle{
    display: none;
}

/* header section */

header{
    padding: 50px var(--padding-inline-section) 0;
}

.header-section{
    justify-content: space-between;
    gap: 50px;
}

.header-left{
    max-width: 40vw;
}

.header-left h1{
    margin-top: 20px;
}

.get-started-button{
    margin-top: 20px;
}

.header-right img{
    width: 100%;
}

/* companies section */


.companies-section{
    display: none;
}

.companies-header{
    text-align: center;
    margin-block: 30px;
    color: var(--primary-text-color) !important;
}

.logos{
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
}

.logo{
    width: 42px;
}


/* features section */

.features-section{
    padding: 40px var(--padding-inline-section) 40px;
    /* background-image: url(logo.png);
    background-repeat: no-repeat;
    background-position: center; */
}

.double-button{
    gap: 20px;
    margin-top: 20px;
}

.features-header{
    text-align: center;
}

.features-header a {
    display: none;
}

.features-header h2 {
    margin-bottom: 20px;
}

.features-area{
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.features-card{
    flex-direction: column;
    gap: 10px;
    max-width: 30%;
    text-align: center;
}

.features-card img{
    width: 60px;
}

/* Big feature section */

.big-feature-section{
    padding: 30px var(--padding-inline-section) 0;
}

.big-feature-container{
    gap: 30px;
    justify-content: space-evenly;
}

#second-big-feature{
    flex-direction: row-reverse;
}

.feature-img{
    max-width: 23%;
    min-width: 150px;
}

.feature-img img{
    width: 100%;
    height: 100%;
    border-radius: 200px;
    background-position: center;
}

.feature-desc {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 100px;
}


/* Example section */

.examples-section{
    padding: 20px var(--padding-inline-section);
}

.examples-header{
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.example-area{
    justify-content: center;
    margin-block: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.example-card{
    width: 30%;
    position: relative;
    height: 350px;
    background: black;
    background: linear-gradient(rgb(0,0,0,0.1),rgb(0,0,0,0.8)), url(logo.png);
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.example-card:hover{
    box-shadow: 0 0 10px #888;
    transition: 0.2s ease-out;
}

.example-card:nth-child(1){
    background: linear-gradient(rgb(0,0,0,0.1),rgb(0,0,0,0.8)), url(logo.png);
    background-size: cover;
    background-position: center;
}
.example-card:nth-child(2){
    background: linear-gradient(rgb(0,0,0,0.1),rgb(0,0,0,0.8)), url(logo.png);
    background-size: cover;
    background-position: center;
}
.example-card:nth-child(3){
    background: linear-gradient(rgb(0,0,0,0.1),rgb(0,0,0,0.8)), url(logo.png);
    background-size: cover;
    background-position: center;
}
.example-card:nth-child(4){
    background: linear-gradient(rgb(0,0,0,0.1),rgb(0,0,0,0.8)), url(logo.png);
    background-size: cover;
    background-position: center;
}

.example-card h3{
    color: white;
    text-align: center;
}

.card-text{
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.cta-section-container{
    gap: 100px;
    color: white;
}

.cta-section-container iframe{
    width: 50%;
    height: 320px;
    border-radius: 20px;
}

.cta-section{
    padding: 60px var(--padding-inline-section) 60px;
    background-color: #183b54;
}

.cta-section-container p {
    color: rgba(255, 255, 255, 0.632);
    margin-bottom: 10px;
}

/* Footer */

footer{
    padding-block: 80px;
    background-color: #b4b5b634;
}

.link-column{
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-container{
    align-items: flex-start;
    justify-content: space-between;
}

.down-logo{
    height: 100%;
    justify-content: flex-start;
}

/* SubFooter */

.subfooter{
    background-color: #b9cde42d;
    padding: var(--padding-inline-section);
}

.subfooter-container{
    justify-content: center;
    gap: 30px;
}

/* About Section*/

.about-section{
    padding: 30px var(--padding-inline-section) 30px;
}
.about-section h2{
    margin-bottom: 20px;
    text-align: center;
}

.about-container{
    gap: 60px;
    justify-content: space-evenly;
}

#second-about{
    flex-direction: row-reverse;
}

.about-img{
    max-width: 23%;
    min-width: 150px;
}

.about-img img{
    width: 100%;
    height: 100%;
    border-radius: 200px;
    background-position: center;
}

.about-desc {
    flex-direction: column;
    align-items: flex-start;
}