@font-face {
    font-family: navis;
    src: url(UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    height: 100%;
    width: 100%;
    font-family: navis;
    color: #1D2939;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 0;
}

header {
    background-color: #FFFFFF;
    padding: 20px 0;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;}
.logo {
    height: 32px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
}
nav ul a {
    text-decoration: none;
    color: #667085;
    font-weight: 500;
}
.more-links span {
    font-size: 0.7em;
    margin-left: 4px;
}
.nav-right {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 300;
    text-decoration: none;
    text-align: center;
    border: 1px solid transparent;
}
.btn-primary {
    background-color: #0161FF; 
    color: #FFFFFF; 
    border-color: #0161FF; 
}
.btn-secondary {
    background-color: #FFFFFF; 
    color: #0161FF; 
    border-color: #0161FF;
}

.hero {
    margin-top: 10px;
    padding: 40px 50px;
    background-color: #F6F7F9;
    border-radius: 30px;
    margin-left: 15px;
    margin-right: 15px;
}
.hero-content {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
.hero-text {
    flex-basis: 40%;
}
.hero-text h1 {
    font-size: 60px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}
.hero-description {
    flex-basis: 60%;
    color: #667085; 
    font-size: 18px;
    line-height: 1.6;
}
.hero-buttons {
    margin-top: 32px;
    display: flex;
    gap: 12px;
}
.hero-buttons .btn-primary span {
    margin-left: 8px;
}
.hero-image {
    margin-top: 64px;
}
.hero-image img {
    width: 100%;
    border-radius: 40px;
}

.stats {
    display: flex;
    justify-content: space-around;
    padding: 80px 0;
}
.stat-item {
    text-align: center;
    flex-basis: 25%;
}
.stat-item h2 {
    font-size: 60px;
    font-weight: 600;
    color: #101828; 
    margin: 0 0 12px 0;
}
.stat-item p {
    color: #667085; 
    font-size: 16px;
    margin: 0;
}

.expertise {
    padding: 40px 50px;
    display: flex;
    align-items: center;
    gap: 64px;
    background-color: #F6F7F9;
    border-radius: 30px;
    margin-left: 15px;
    margin-right: 15px;
}
.expertise-content {
    flex-basis: 50%;
}
.tag-btn {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #D0D5DD; 
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    color: #344054;
    text-decoration: none;
    
}
.expertise-content h2 {
    font-size: 48px;
    font-weight: 600;
    color: #101828;
    margin: 0 0 20px 0;
    line-height: 1.2;
}
.expertise-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #667085; 
    margin: 0;
}
.expertise-image {
    flex-basis: 50%;
}
.expertise-image img {
    width: 100%;
    border-radius: 40px;
}

.services {
    padding: 40px 50px;
}
.services-header {
    display: flex;
    justify-content: space-between;
    gap: 64px;
    margin-bottom: 64px;
}
.services-title {
    flex-basis: 50%;
}
.services-title h2 {
    font-size: 48px;
    font-weight: 600;
    color: #101828;
    line-height: 1.2;
    margin-top: 20px;
}
.services-description {
    flex-basis: 50%;
    color: #667085;
    font-size: 16px;
    line-height: 1.5;
    padding-top: 50px; /* Aligns text better with the title */
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.team-card {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    background-color: #F9FAFB; /* Light gray default background */
    color: #101828;
    transition: background-color 0.4s ease, color 0.4s ease;
}
.team-card img {
    width: 100%;
    display: block;
    transition: opacity 0.4s ease;
}
.card-info {
    position: absolute;
    left: 0;
    right: 0;
    padding: 24px;
    transition: opacity 0.4s ease;
}
.default-info {
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #FFFFFF;
}
.default-info h3 {
    font-size: 20px;
    font-weight: 600;
}
.default-info p {
    font-size: 14px;
    opacity: 0.8;
}
.hover-info {
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #FFFFFF;
    opacity: 0; 
}
.hover-info h3 {
    font-size: 24px;
    font-weight: 600;
}
.hover-info p {
    font-size: 16px;
    margin-top: 4px;
}
.hover-info .bio {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    margin-top: 12px;
    opacity: 0.9;
}
.social-links {
    position: absolute;
    bottom: 24px;
    display: flex;
    gap: 16px;
}
.social-links a {
    color: #FFFFFF;
}
.team-card:hover {
    background-color: #0161FF; 
    color: #FFFFFF;
}
.team-card:hover img {
    opacity: 0; 
}
.team-card:hover .default-info {
    opacity: 0; 
}
.team-card:hover .hover-info {
    opacity: 1; 
}


.milestones-card {
    background-color: #F6F7F9;
    padding: 40px 50px;
    border-radius: 40px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.milestones-header {
    display: flex;
    justify-content: space-between;
    gap: 64px;
    margin-bottom: 32px;
}
.milestones-title {
    flex-basis: 50%;
}
.milestones-title h2 {
    font-size: 48px;
    font-weight: 600;
    color: #101828;
    line-height: 1.2;
    margin-top: 20px;
}
.milestones-description {
    flex-basis: 50%;
    color: #667085;
    font-size: 16px;
    line-height: 1.5;
    padding-top: 50px;
}
.milestones-body {
    display: flex;
    align-items: flex-start;
    gap: 64px;
}
.milestones-image {
    flex-basis: 50%;
}
.milestones-image img {
    width: 100%;
    border-radius: 40px;
}
.timeline {
    flex-basis: 50%;
    position: relative;
}
.timeline-item {
    display: flex;
    gap: 24px; 
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 32px; 
    bottom: 0;
    width: 2px;
    background-color: #EAECF0; 
}
.timeline-item:last-child::before {
    display: none;
}
.timeline-item + .timeline-item {
    margin-top: 24px; 
}
.timeline-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #EAECF0;
    color: #667085;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; 
    z-index: 1; 
}
.timeline-content .year {
    font-size: 14px;
    font-weight: 500;
    color: #0161FF; 
}
.timeline-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1D2939;
    margin: 4px 0 0 0;
}
.timeline-content p {
    font-size: 14px;
    color: #667085;
    line-height: 1.5;
    margin: 8px 0 0 0;
    display: none; 
}
.learn-more {
    font-size: 14px;
    font-weight: 600;
    color: #1D2939;
    text-decoration: none;
    margin-top: 12px;
    display: none; 
}
.timeline-item.active .timeline-icon {
    background-color: #0161FF;
    color: #FFFFFF;
}
.timeline-item.active::before {
    background-color: #0161FF;
}
.timeline-item.active .timeline-content p,
.timeline-item.active .learn-more {
    display: block;
}

.testimonial-section {
    padding: 40px 50px;
}
.testimonial-card {
    display: flex;
    align-items: center;
    gap: 64px;
    background-color: #FFFFFF;
    border-radius: 40px;
    padding: 48px;
}
.testimonial-content {
    flex-basis: 50%;
}
.testimonial-logo {
    height: 32px;
    margin-bottom: 24px;
}
.stars {
    color: #0161FF; 
    margin-bottom: 24px;
    font-size: 20px;
}
.testimonial-content blockquote {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    color: #101828;
    margin: 0 0 24px 0;
    border: none;
    padding: 0;
}
.author-name {
    font-weight: 600;
    color: #101828;
    margin: 0 0 4px 0;
}
.author-title {
    color: #667085; 
    margin: 0;
}
.testimonial-image {
    flex-basis: 50%;
}
.testimonial-image img {
    width: 100%;
    border-radius: 16px;
}

.contact-section {
    padding: 40px 50px;
    display: flex;
    align-items: center;
    gap: 64px;
    background-color: #FFFFFF; 
}
.contact-content {
    flex-basis: 50%;
}
.contact-content h2 {
    font-size: 48px;
    font-weight: 600;
    color: #101828;
    margin: 20px 0 48px 0;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}
.contact-item .label {
    font-size: 14px;
    font-weight: 500;
    color: #667085;
    margin: 0 0 8px 0;
}
.contact-item p,.contact-item a {
    font-size: 18px;
    font-weight: 500;
    color: #101828;
    text-decoration: none;
    margin: 0;
}
.contact-socials .label {
    font-size: 14px;
    font-weight: 500;
    color: #667085;
    margin: 0 0 16px 0;
}
.social-icons {
    display: flex;
    gap: 16px;
}
.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid #D0D5DD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667085;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-icons a:hover {
    background-color: #0161FF;
    border-color: #0161FF;
    color: #FFFFFF;
}
.contact-map {
    flex-basis: 50%;
}
.contact-map img {
    width: 100%;
    border-radius: 16px;
}

footer {
    background-color: #232323;
    color: #EAECF0;
    padding: 64px 0 32px 0;
    border-radius: 20px;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
}
.footer-logo {
    margin-bottom: 24px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-col {
    flex: 1;
}
.subscribe-col {
    flex: 1.5; 
}
.subscribe-col h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}
.subscribe-form {
    display: flex;
    gap: 8px;
}
.subscribe-form input {
    flex-grow: 1;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #475467;
    background-color: #344054;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
}
.subscribe-form input::placeholder {
    color: #98A2B3;
}
.subscribe-form .btn-primary {
    flex-shrink: 0;
}
.link-col h3 {
    font-size: 14px;
    font-weight: 600;
    color: #98A2B3; 
    margin-bottom: 16px;
}
.link-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.link-col a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    font-size: 14px;
    color: #98A2B3;
}
.copyright {
    text-align: center; 
}
.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}
.language-selector .fa-chevron-down {
    font-size: 10px;
}
.footer-socials {
    display: flex;
    gap: 24px;
}
.footer-socials a {
    color: #98A2B3;
    font-size: 20px;
}