/*font roboto poppins 400 & 700*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&family=Roboto:wght@400;700&display=swap');
:root{
    --primary-color:#183b56;
    --secondary-color:#577592;
    --accent-color:#2294ed;
    --accent-color-dark:#1d69a3;
    --padding-inlin-section:20px;

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


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

h1{
    font-size: 3rem;
}

h2{
    font-size: 2rem;
}

h3{
    font-size: 1.5rem;
}

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

a{
    text-decoration: none;
}

ul{
    list-style: none;
}


/*Utility Classes*/
.small-bold-text{
    font-size: 1rem;
    font-weight: 700;
}

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

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

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

.hover-link:hover{
    color: var(--accent-color);
    
}

.primary-button{
    background-color: var(--accent-color);
    padding: 10px 24px;
    border-radius: 6px;
    color: white !important;
    font-weight: 700;
    box-shadow: 0px 0px 2px var(--secondary-color);
    transition: .2s ease-out;
    text-align:center;
    margin-bottom: 20px;
    z-index: 99;
}

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

.secondary-button{
    border: .5px solid var(--secondary-color);
    padding: 9px 18px;
    border-radius: 6px;
    font-weight: 700;
    transition: .2s ease-out;
    color: var(--primary-color);
}

.secondary-button:hover{
    color: var(--accent-color);
    border: .5px solid var(--accent-color);
}
/*Btop-anner*/
.top-banner{
    background: url(assets/asset\ 30.png);
    background-color: #4fb3d4;
    background-size: 300px;
}
.banner-text{
    color: white;
    padding: 15px 30px;
    text-align: center;
}

/*nav*/
.main-nav{
    justify-content: space-between;
    margin-top: 20px;
    position: relative;
}
.company-logo img{
    width: 200px;
}

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

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

.nav-toggle{
    display: none;
}

/* header section */
header{
    padding: 50px var(--padding-inlin-section) 0;
}

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

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

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

.header-left p{
    margin-bottom: 25px;
}
 
.get-started-btn {
    margin-top: 20px !important;
}

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

/* Companies Section */
.companies-header{
    text-align: center;
    margin-block: 30px;
    color: var(--primary-color);
}

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

.logo{
    height: 46px;
}

.features-section{
    padding: 80px var(--padding-inlin-section) 0;
    background: url(assets/asset\ 32.svg);
    background-repeat: no-repeat;
    background-position: center;
}
.features-header{
    text-align: center;
    margin-bottom: 40px;
}

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

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

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

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

/* Big feature section */
.big-features-section{
    padding: 30px var(--padding-inlin-section) 0;
}

.big-feature-container{
    gap: 30px;
}

#second-big-feature{
    flex-direction: row-reverse;
}
.feature-img img{
    width: 100%;
}

.feature-descrption{
    flex-direction: column;
    align-items: flex-start;
}

/* Example section */
.example-header-section{
    flex-direction: column;
    gap: 20px;
    padding: 50px var(--padding-inlin-section) 0;
}
.example-header{
    text-align: center;
}

.exmple-card{
    width: 23%;
    height: 300px;
    position: relative;
    background: black;
    background:linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.8)), url(assets/asset\ 35.jpeg);
    background-size: cover;
}

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

.example-area{
    margin-block: 30px;
    justify-content: space-between;
}

.exmple-card:nth-of-type(2){
    background:linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.8)), url(assets/asset\ 34.jpeg);
    background-size: cover;
}

.exmple-card:nth-of-type(3){
    background:linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.8)), url(assets/asset\ 36.jpeg);
    background-size: cover;
}

.exmple-card:nth-of-type(4){
    background:linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.8)), url(assets/asset\ 37.jpeg);
    background-size: cover;
}

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

/* cta section */
.cta-section{
    background: #183b54;
    padding: 120px var(--padding-inlin-section) 80px;
}

.cta-section-container{
    flex-direction: column;
    gap: 30px;
    color: white;
}

.cta-section-container p{
    color: white;
    margin-top:20px;
}

/*footer section*/
footer{
    padding-block: 60px;
    background: #ebf2fa;
}
.footer-container{
    align-items: flex-start;
    justify-content: space-between;
}

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

/* subfooter */
.subfooter{
    background:#b9cde4 ;
padding: var(--padding-inlin-section);

}

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