@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&family=Raleway:wght@300;900&family=Roboto:wght@400;700&family=Work+Sans:wght@100;300;400;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary-text-color: #183b56;
    --secondary-text-color: #577592;
    --accent-color: #2294ed;
    --accent-color-dark: #1d69a3;
    --padding-inline-section: 20px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-text-color);
}

h1 {
    font-size: 3rem;
}

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;
}

ul {
    list-style: none;
}

/* utility class */

.small-bold-text {
    font-size: 1rem;
    font-weight: 500;
}

.container {
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: var(--padding-inline-section);
    overflow: hidden;
}

.flex {
    display: flex;
    align-items: center;
}

.hover-links{
    color: var(--primary-text-color);
    transition: 0.2s ease-out;
}

.hover-links:hover{
    color: var(--accent-color);
}

.primary-btn{
    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-btn:hover{
    background-color: var(--accent-color-dark);
}

.secondary-btn{
    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-btn:hover{
    border-color: var(--accent-color) ;
    color: var(--accent-color) !important;
}

/* Top Banner  */
.top-banner{
    background-image: url('./assets/asset\ 32.png');
    background-color: #e74694;
    background-size: 300px;
}

.banner-text{
    color: white;
    padding: 15px 30px;
    text-align: center;
}

/* navbar  */

.main-nav{
    margin-top: 20px;
  justify-content: space-between;
  position: relative;
}

.company-logo img{
    width: 200px;
}

.nav-links{
    flex-basis: 730px;
}

.nav-links ul{
    justify-content: end;
    gap: 40px;
}

.nav-links .buttons{
    gap: 10px;
}

.nav-toggle{
    display: none;
}

/* header section  */

header{
    padding: 50px var(--padding-inline-section) 0;
}

.header-section{
    justify-content: center;
    gap: 50px;
}

.header-right img{
    width: 100%;
}

.header-left h1{
    margin-top: 20px;
}

.header-left {
    max-width: 40vw;
}

.get-started-btn{
    margin-top: 20px;
}


/* companies section  */

.companies-header{
    text-align: center;
    margin-block: 30px;
    color: var(--primary-text-color);
}

.logos{ 
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
}

.logo{
    height: 46px;
}

/* features-section */

.features-section{
    padding: 80px var(--padding-inline-section) 0;
    background-image: url(./assets/asset\ 34.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60% ;
}

.features-header{
    text-align: center;
    margin-bottom: 40px;
}

.features-header h2{
    margin-bottom: 20px;
}

.features-header a i{
    color: var(--accent-color);
    padding-left: 3px;
}

.features-area{
    flex-flow: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.features-card{
    flex-direction: column;
    gap: 20px;
    max-width: 30%;
    text-align: center;
}

.features-card img{
    width: 40px;
}

.features-card a i{
    color: var(--accent-color);
    padding-left: 3px;
}

/* big-features-section */

.big-features-section{
    padding: 30px var(--padding-inline-section) 0;
}

.big-feature-container{
    gap: 30px;
}

.row-reverse{
    flex-direction: row-reverse;
}

.feature-img img{
    width: 100%;
}

.feature-desc{
    flex-direction: column;
    align-items: flex-start;
    padding-left: 30px;
}

.testimonials{
    margin-top: 20px;
}

.testimonial-logo{
    max-height: 30px;
    margin-bottom: 30px;
}

.testimonial-text{
    max-width: 410px;
    color: var(--primary-text-color);
    text-align: left;
    background-image:url(./assets/asset\ 35.svg) ;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 64px;
    background-attachment: scroll;
    margin-top: -15px;
    margin-left: -30px;
    padding-top: 15px;
    padding-left: 30px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

.person{
    margin-top: 20px;
    display: flex;
    flex-direction: row;
}

.person-img{
    max-height: 48px;
}

.person-name{
    color: var(--primary-text-color);
    padding-left: 10px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    display: block;
}

.person-title{
    color: var(--secondary-text-color);
    padding-left: 10px;
    line-height: 18px;
    display: inline-block;
}

/* examples section  */

.examples-section{
    padding: 80px var(--padding-inline-section) 0px;
}

.examples-header{
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.examples-area{
    justify-content: space-between;
    flex-wrap: wrap;
    margin-block: 30px;
}

.examples-cards{
    width: 23%;
    position: relative;
    height: 300px;
    background: black;
    background: linear-gradient(rgb(0, 0, 0, 0.1), rgb(0, 0, 0, 0.8)), url(./assets/asset\ 36.jpeg);
    background-size: cover;
    transition: 0.2s ease-out;
}

.card-text{
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: white;
}

.examples-cards:nth-child(2){
    background: linear-gradient(rgb(0, 0, 0, 0.1), rgb(0, 0, 0, 0.8)), url(./assets/asset\ 37.jpeg);
    background-size: cover;
}

.examples-cards:nth-child(3){
    background: linear-gradient(rgb(0, 0, 0, 0.1), rgb(0, 0, 0, 0.8)), url(./assets/asset\ 38.jpeg);
    background-size: cover;
}

.examples-cards:nth-child(4){
    background: linear-gradient(rgb(0, 0, 0, 0.1), rgb(0, 0, 0, 0.8)), url(./assets/asset\ 39.jpeg);
    background-size: cover;
}

.examples-cards:hover{
    box-shadow: 0 0 10px #888;
}

/* panel-section  */
/* .panel-section{
    background-color: var(--primary-text-color);
    padding-top: 30px;
    padding-bottom: 30px;
}

.panel-container{
    display: flex;
    flex: 50%;
    height: 614px;
}

.panel-section{
    position: relative;
}

.panelad-image {
    background-image: url(./assets/asset\ 40.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: visible;
} */

/* cta-section-container */
.cta-section{
   padding: 120px var(--padding-inline-section) ;
}

.cta-section-container{
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

/* footer  */

footer{
    padding-block: 80px;
    background-color: #ebf2fa;
}

.footer-container{
    align-items: flex-start;
    justify-content: space-between;
}

.link-col{
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

/* sub footer  */

.sub-footer{
    background-color: #b9cde4;
    padding: var(--padding-inline-section);
}

.sub-footer-con{
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}


