* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    width: 100%;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.primary-btn {
    letter-spacing: 2px;
    background-color: #2294ed;
    border-radius: 5px;
    padding: 12px 15px;
    font-weight: 600;
    color: white !important;
    box-shadow: 0 0 2px #577592;
    transition: 0.3s;
}

.primary-btn:hover {
    background-color: #1d69a3;
}

.secondary-btn {
    letter-spacing: 2px;
    border: 1px solid #183b56;
    border-radius: 5px;
    padding: 10px 15px;
    font-weight: 600;
}

.secondary-btn:hover {
    border-color: #1d69a3;
    color: #1d69a3 !important;
}

.hover-link {
    color: #183b56;
    transition: 0.3s;
}

.hover-link:hover {
    color: #2294ed;
}

.container {
    max-width: 1180px;
    margin-inline: auto;
    padding: 0 20px;
}

.flex {
    display: flex;
    align-items: center;
}

.top-banner {
    background-image: url(./Assets/asset\ 30.png);
    background-repeat: repeat;
    background-color: #4fb3d4;
    background-size: 300px;
}

.banner-content {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    padding: 15px 30px;
    text-align: center;
}

.main-nav {
    justify-content: space-between;
    margin-top: 20px;
}

.company-logo img {
    width: 200px;
}

.nav-links {
    flex-basis: 750px;
}

.nav-links ul {
    justify-content: end;
    gap: 40px;
    font-size: 1.1rem;
    font-weight: 500;
}

header {
    padding: 50px 20px 0;
}

.header-section {
    justify-content: center;
    gap: 50px;
}

.header-left {
    width: 40vw;
}

.header-left h1 {
    margin-top: 20px;
    font-size: 48px;
    color: #183b56;
}

.header-left p {
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color:  #1d69a3;
}

.get-started-btn {
    margin-top: 20px;
}

.header-right img{
    width: 600px;
}

.company-header {
    text-align: center;
    color: #183b56;
    font-size: 1.4rem;
    margin-top: 50px;
    margin-bottom: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.company-logos {
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    height: 46px;
}

.feature-section {
    padding: 50px 20px 0;
    background-image: url(./Assets/asset\ 32.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.feature-header {
    text-align: center;
}

.feature-header h2 {
    margin-bottom: 30px;
    color: #183b56;
}

.feature-area {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-top: 30px;
}

.feature-card {
    flex-direction: column;
    gap: 20px;
    max-width: 30%;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.big-feature-section {
    padding: 30px 20px 0;
    font-family: 'Poppins', sans-serif;
    color: #183b56;
    margin-top: 50px;
}

.big-feature-container {
    gap: 30px;
}

.feature-img img {
    width: 100%;
}

.feature-desc {
    flex-direction: column;
    align-items: flex-start;
}

.feature-desc h3 {
    font-size: 3rem;
}

.feature-desc p {
    font-weight: 500;
    font-size: 1.05rem;
}

.example-header {
    text-align: center;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
    color: #183b56;
    font-size: 1.3rem;
}

.example-area {
    justify-content: space-between;
    margin-block: 30px;
}

.example-card {
    width: 23%;
    position: relative;
    min-height: 300px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    background: black;
    background: linear-gradient(rgb(0,0,0,0.1),rgb(0,0,0,0.8)) , url(./Assets/asset\ 35.jpeg);
    background-size: cover;
    transition: 0.3s ease-in-out;
}

.example-card:hover {
    box-shadow: 0 0 10px #183b56;
    transform: scale(105%);
}

.card-text {
    position: absolute;
    bottom: 20px;
    right: 20px;
    left: 20px;
    color: white;
}

.cta-section-container {
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    color: white;
    gap: 50px;
}

.cta-section {
    background-color: #183b56;
    padding: 120px 20px 80px;    
}

footer {
    padding-block: 80px;
    background-color: #b4c9e1;
}

.link-column {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-container {
    align-items: start;
    justify-content: space-between;
}

.sub-footer {
    background-color: #7c94b3;
    padding: 20px;
}

.subfooter-container {
    justify-content: center;
    gap: 30px;
}