* {
    box-sizing: border-box;

}

:root {
    --primary-color: #4fe5f9;
    --dark-color: #001371;
    --light-color: #e5fcff;
    --dark-bg: #262e4b;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    color: #111;
}

button,
.btn {
    background: transparent;
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    display: inline-block;
}

button:hover,
.btn:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.hero>* {
    flex: 1;


}

.hero-content {
    background-color: var(--light-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.hero-content .content-box {
    max-width: 600px;
    padding: 0 48px;
}

.hero-content h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 24px;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 24px;
    opacity: .7;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 500px;
    max-height: 500px;
}

header {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
    gap: 48px;
    padding: 24px;
}

.logo-badge img {
    max-height: 100px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 48px;
}

nav a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    position: relative;
    padding: 4px 0;
    overflow: hidden;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--dark-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

nav a:hover {
    color: var(--dark-color);
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 19, 113, 0.4);
    transform: scale(0);
    animation: ripple-animation 0.4s linear;
    pointer-events: none;
    z-index: 5;
}

@keyframes ripple-animation {
    to {
        transform: scale(3.5);
        opacity: 0;
    }
}

picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero picture {
    margin-left: -100%;
}

.mission {
    min-height: 70vh;
    background: #4d7189 url(../images/circle-bg.png);

    color: #fff;

    display: flex;


}

.mission>* {
    flex: 1;
}

.mission h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 24px;
}

.mission strong {
    font-weight: 300;
    font-size: 2em;
}

.mission p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    padding: 0 0 16px;
    opacity: .8;

}

.mission-content {
    display: flex;
    flex-direction: column;
    align-items: end;

    background-size: cover;
    background-position: center;


}

.mission picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-text {
    padding: 48px;
    flex: 1;


}

.mission-picture {
    background: url(../images/mission-bg.png);
    background-size: cover;
    background-position: left bottom;
}

.mission .blank-space {
    background: var(--light-color) url(../images/shadow.png) no-repeat;
    background-size: contain;
    background-position: left bottom;
}

.about-us {
    min-height: 80vh;
    background: #fff;
    display: flex;
 
    
}

.about-us-picture {
    padding: 48px;      
    display: flex;
    align-items: center;
    min-width:600px;
       justify-content: flex-end;
}

.about-us-picture picture {
    position: relative;
    display: flex;
    margin-bottom: auto;
}

.about-us-picture picture img {

    border-radius: 24px;
}

.about-us-picture-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 48px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.1;

    border-radius: 0 0 24px 24px;
}

.aboutus-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.aboutus-content h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 24px;
    color: var(--dark-color);
}

.aboutus-content p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    padding: 0 0 16px;
    opacity: .8;

}

.services {
    min-height: 100vh;
    padding: 96px 0 0;


    background-color: var(--dark-bg);
    color: #fff;
}

.services h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 24px;
    color: #fff;
    text-align: center;
}

.services-content {
    display: flex;
    padding: 48px 48px 0;



}

.services-content>div {
    flex: 1;
    padding: 48px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.services-content>div:last-child {
    border-right: none;
}

.services-content h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 48px;
    color: var(--primary-color);

}



.services-content li {
    font-size: 18px;
    margin-bottom: 1em;


    opacity: .8;
}

.services-content li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.services-content li::marker {
    color: var(--primary-color);
}

.client-feedback {

    padding: 96px 48px;


}

.client-feedback h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 24px;
    color: var(--dark-color);
    text-align: center;
}

.client-feedback h3 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 48px;
    color: var(--dark-color);
}

.client-testimonials {
    width: 50%;
    margin: 0 auto;
    display: flex;
    gap: 48px;
}

.client-testimonials>div {
    flex: 1;
    padding: 48px;
    border: 1px solid var(--dark-color);
}

.client-testimonials strong {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 48px;
    color: var(--dark-color);

}

.client-testimonials p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    padding: 0 0 16px;
    opacity: .8;

}

footer {
    background-color: var(--dark-bg);
    color: #fff;
    padding: 100px 48px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 80px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    max-height: 200px;
    width: fit-content;
    margin-bottom: 10px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.7;
    margin: 0;
    max-width: 300px;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    opacity: 0.7;
    transition: all 0.3s ease;
    width: fit-content;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 80px auto 0;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.4;
    text-transform: lowercase;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.partners h3 {
    color: var(--dark-color);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
    margin: 24px 0 16px;

}

.partner-logo a {
    display: inline-flex;
    justify-content: center;
    align-items: center;


    border: 1px solid #ddd;
    padding: 24px;

}

.partner-logo a:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.partner-logo a img {
    max-height: 100px;
    max-width: 100%;
    width: auto;
}