@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Roboto:wght@400;500&display=swap');

* {
    padding: 0;
    margin: 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.2rem;
    color: var(--secondary-text-color);
    line-height: 1.8rem;
}

a {
    text-decoration: none;
    display: inline-block;
}

/* utility classes */

.small-bold-text {
    font-size: 1rem;
    font-weight: 500;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: var(--padding-inline-section);
    overflow: hidden;
}

.flex {
    display: flex;
    align-items: center;
}

ul {
    list-style: none;
}

.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;
    padding: 12px 24px;
    box-shadow: 0 0 2px var(--secondary-text-color);
    transition: 0.2s ease-out;
}
.primary-button:hover {
    color: white;
    background-color: var(--accent-color-dark);
}

.secondary-button {
    border: 0.5px solid rgb(128, 128, 128, 0.5);
    border-radius: 6px;
    font-weight: 500;
    color: var(--primary-text-color);
    padding: 10px 24px;
    transition: 0.2s ease-out;
}

.secondary-button:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.small-logo img{
    margin-top: 30px;
    margin-bottom: 30px;
    height: 30px;
    width: auto;
}

.arrow {
    height: 12px;
    width: 12px;
    margin-left: 8px;
}

/* top-banner */

.top-banner {
    background-image: url(./assets/asset\ 32.png);
    background-color: #4CABF5;
    background-size: 300px;
}

.banner-text {
    color: white;
    padding: 15px 30px;
    text-align: center;
}

/* nav-bar */

nav .container {
    margin-top: 20px;
    justify-content: space-between;
    position: relative;
}

.company-logo img {
    width: 200px;
}

.navbar {
    flex-basis: 730px;
}

.navbar ul {
    justify-content: end;
    gap: 40px;
}

.hover-button {
    display: none;
}

/* header */

header .container {
    justify-content: space-between;
    margin-top: 49px;
}

.header-text {
    width: 40vw;
}

.header-right .pic {
   width: 100%;
}


.header-text h1 {
    font-weight: 500;
}

header p {
    padding-top: 10px;
}

.header-button {
    width: 250px;
    margin-top: 48px;
    text-align: center;
}

.terms {
    font-size: 12px;
    margin-top: -10px;
    margin-left: 65px;
}

/*  companies-section */

.companies-section .small-bold-text{
    text-align: center;
    padding-top: 50px;
    color: #183b56;
}

.companies-section img {
    margin-top: 40px;
    padding-right: 30px;
    width: auto;
    height: 46px;
}

/* features */

.features {
    background-image: url(./assets/asset\ 34.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
}


.features h2{
        font-weight: 500;
        margin-top: 80px;
}

.features .secondary-button {
    margin-top: 10px;
    text-align: center;
}

.col-container {
    margin-top: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
}

.col {
    width: 30%;
    margin-top: 20px;
}

.col h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
}

.col .icons {
    height: 40px;
    width: 40px;
    margin-top: 35px;
}

/* big-feautres */

.big-features .container {
    justify-content: space-between;
    margin-top: 60px;
    align-items: start;
}

.big-features-img {
    height: 500px;
    width: 581px;
}

.big-features-text {
    padding-top: 10px;
    flex-basis: 460px;
}

.big-features p {
    padding-top: 10px;
}

.big-features .text1 {
    width: 380px;
    margin-top: -50px;
    margin-left: 30px;
}

.name-plate {
    margin-top: 25px;
    margin-left: 40px;
}

.name-plate img {
    height: 48px;
    width: 48px;
    margin-right: 10px;
}

/* examples */

.examples {
    text-align: center;
}

.examples h2{
    margin-bottom: 5px;
}

.card-container {
    justify-content: space-between;
    flex-wrap: wrap;
}

.card {
    width: 24%;
    border-radius: 4px;
    margin-top: 20px;
    height: 300px;
    color: white;
}

.card:hover {
    box-shadow: 0 0 10px #888;
    transition: 0.2s ease-out;
}


.card1 {
    background-image: url(./assets/asset\ 36.jpeg);
    background-size: 100% 100%;
    position: relative; 
}

.card::before {
    content: ""; /* Add content for the pseudo-element */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Your desired background color with opacity */
    z-index: 1; /* Ensure the overlay is above the background image */
    border-radius: 4px; /* Optionally add rounded corners to the overlay */
}

.card2 {
    background-image: url(./assets/asset\ 37.jpeg);
    background-size: 100% 100%;
    position: relative;
}
.card3 {
    background-image: url(./assets/asset\ 38.jpeg);
    background-size: cover;
    position: relative;
}
.card4 {
    background-image: url(./assets/asset\ 39.jpeg);
    background-size: cover;
    position: relative;
}

.card p{
    margin-top: 227px;
    font-size: 1.3rem;
    font-weight: 500;
    color: white;
    padding-left: 13px;
    padding-right: 13px;
    position: relative;
    z-index: 2;
}

/* cta-section */

.cta {
    background-color: #183b56;
    color: white;
    margin-top: 24px;
    height: 650px;
    width: 100%;
}

.cta .container {
    justify-content: space-between;
}

.cta-text {
    flex-basis: 593px;
}

.cta h2 {
    padding-top: 98px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    line-height: 2.1rem;
    padding-top: 8px;
    padding-bottom: 42px;
}

.cta .small-bold-text {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.cta li {
    list-style: disc;
    padding-bottom: 10px;
    margin-left: 60px;
    color: rgba(255, 255, 255, 0.7);

}

.cta ul {
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.cta .secondary-button{
    color: rgba(255, 255, 255, 0.7);
    margin-left: 7px;
} 

.cta .secondary-button:hover{
    color: var(--accent-color);
    margin-left: 7px;
} 

.cta .primary-button {
    margin-right: 7px;
}

.cta-button p {
    display: inline;
}

.cta-img {
    position: relative;
    width: 593px;
    height: 586px;
}

.cta .img1 {
    position: absolute;
    width: 593px;
    height: 586px;
}

.cta .img2 {
    position: absolute;
    width: 286px;
    height: 270px;
    margin-top: 160px;
    margin-left: 150px;
}

/* cta2 */

.cta2 .container {
    text-align: center;
}

.cta2 h2 {
    padding-top: 110px;
}

.cta2 p {
    padding-top: 48px;
    padding-bottom: 50px;
}

.terms1 p{
    font-size: 12px;
    margin-top: -45px;
}

/* footer */

footer  {
    background-color: #EBF2FA;
    min-height: 410px;
}

footer .container {
    padding-top: 80px;
    padding-bottom: 80px;
    justify-content: space-between;
    align-items: flex-start;
}

footer img {
    height: 26px;
    width: 152px;
}


footer dt {
    font-weight: bold;
    font-size: 18px;
    padding-bottom: 15px;
}

footer dd {
    padding-bottom: 4px;
}


footer a {
    color: rgb(128, 128, 128);
}

footer a:hover {
    color: var(--accent-color);
}

/* subfooter */

.subfooter {
    background-color: #B9CDE4;
    padding: var(--padding-inline-section);
}

.subfooter .container {
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.subfooter img {
    height: 16px;
    width: 16px; 
}

.subfooter a {
    padding-right: 30px;
    color: rgb(33, 73, 28);
}

.subfooter a:hover {
    color: var(--accent-color);
}











