@font-face {
    font-family: Nimbus Sans;
    src: url(./font/NimbusSans-Regular.otf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Nimbus sans, Arial, sans-serif;
}

html,
body {
    height: 100%;
    width: 100%;
    background-color: #ffffff;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

#main {
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas: "header header header header"
        "section section section section"
        "figure figure figure figure"
        "stats stats stats stats";
    margin: 0 auto;
    box-sizing: border-box;
    max-width: 1400px;
    padding: 0 20px;
}

#main header {
    grid-area: header;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0px;
}

#main header .header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

#main header .header-left img {
    height: 30px;
    width: 30px;
}

#main header .header-left h2 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

#main header .header-center {
    display: flex;
    gap: 35px;
}

#main header .header-center a {
    text-decoration: none;
    color: #000000;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 2px;
    transition: color 0.3s;
}

#main header .header-center a:hover {
    color: #0061fe;
}

#main header .header-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

#main header .header-right button {
    padding: 12px 24px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s;
}

#main header .header-right button:nth-child(1) {
    background-color: transparent;
    color: #0061fe;
    border: 1px solid #e5e5e5;
}

#main header .header-right button:nth-child(1):hover {
    border-color: #0061fe;
}

#main header .header-right button:nth-child(2) {
    background-color: #0061fe;
    color: white;
    border: 1px solid #0061fe;
}

#main header .header-right button:nth-child(2):hover {
    background-color: #0052d9;
}

#main section {
    grid-area: section;
    padding: 40px 0px 60px 0px;
}

#main section .info {
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

#main section .info-left h1 {
    font-size: 40px;
    white-space: nowrap;
    font-weight: 500;
    color: #000000;
}

#main section .info-right {
    display: flex;
    flex-direction: column;
}

#main section .info-right p {
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
}

#main section .info-right .button-group {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

#main section .info-right button {
    padding: 14px 28px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    border-radius: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

#main section .info-right button:nth-of-type(1) {
    background-color: #0061fe;
    color: white;
}

#main section .info-right button:nth-of-type(1):hover {
    background-color: #0052d9;
}

#main section .info-right button:last-child {
    background-color: transparent;
    color: #000000;
    border: 1px solid #e5e5e5;
}

#main section .info-right button:last-child:hover {
    border-color: #0061fe;
    color: #0061fe;
}

#main figure {
    grid-area: figure;
    margin-top: 20px;
    background-color: #d9d9d9;
    background-image: url(./assets/main-1_hero.png);
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    background-repeat: no-repeat;
    min-height: 450px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    font-size: 24px;
    color: #000000;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 1000;
    padding: 80px 20px 40px 20px;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-logo img {
    height: 30px;
    width: 30px;
}

.mobile-menu-logo h2 {
    font-size: 20px;
    font-weight: 600;
}

.close-menu {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #000000;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.mobile-nav a {
    text-decoration: none;
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav a i {
    font-size: 16px;
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.mobile-buttons button {
    padding: 14px 20px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s;
}

.mobile-buttons button:nth-child(1) {
    background-color: transparent;
    color: #0061fe;
    border: 1px solid #e5e5e5;
}

.mobile-buttons button:nth-child(2) {
    background-color: #0061fe;
    color: white;
    border: 1px solid #0061fe;
}

.stats-container {
    grid-area: stats;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.stat-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.stat-box h2 {
    font-size: 48px;
    font-weight: 500;
    color: #000000;
}

.stat-box p {
    font-size: 15px;
    color: #999999;
    line-height: 1.5;
    text-align: center;
}

#expertise-section {
    background-color: #f6f7f9;
    border-radius: 25px;
    padding: 80px 20px;
    margin: 0 20px;
}

#expertise-section .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

.small-button {
    padding: 10px 20px;
    background-color: white;
    border: 1px solid #e5e5e5;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.small-button:hover {
    border-color: #0061fe;
    color: #0061fe;
}

.expertise-content {
    display: flex;
    gap: 80px;
    width: 100%;
}

.expertise-content h2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3;
    color: #000000;
}

.expertise-content img {
    width: 600px;
    height: 600px;
    object-fit: cover;
    border-radius: 25px;
}

.expertise-cont {
    display: flex;
    flex-direction: column;
    gap: 60px;
    justify-content: flex-end;
}

.expertise-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
}

#services-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

#services-section h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #000000;
}

.service-cont {
    margin: 50px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.services-subtitle {
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
    max-width: 800px;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-card {
    background-color: #f5f5f5;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blue-card {
    background-color: #0061fe;
    color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blue-card h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
}

.blue-card h3:nth-of-type(2) {
    font-size: 18px;
    font-weight: 400;
    margin-top: 8px;
    color: #e0e0e0e2
}

.blue-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-top: 15px;
    color: #e0e0e08b;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    text-decoration: none;
    border: 1px solid white;
    border-radius: 50%;
    padding: 10px;
    color: white;
    font-size: 15px;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.8;
}

.team-info {
    position: absolute;
    bottom: -40%;
    width: 100%;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px 20px 20px;
    color: white;
}

.team-info h4 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 5px;
}

.team-info p {
    font-size: 16px;
    opacity: 0.9;
}

.team-card:hover .team-info {
    bottom: 0;
    transition: bottom 0.5s;
}

#journey-section {
    background-color: #f6f7f9;
    border-radius: 25px;
    padding: 80px 20px;
    margin: 0 20px;
}

#journey-section h2 {
    font-size: 36px;
    font-weight: 500;
    margin: 30px 0 20px 0;
    color: #000000;
}

.journey-subtitle {
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
    max-width: 800px;
    margin-bottom: 50px;
}

.journey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.journey-image {
    background-color: #e5e5e5;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    height: 500px;
    object-fit: cover;
}

.journey-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.active .timeline-number {
    background-color: #0061fe;
    color: white;
    border: 1px solid #0061fe;

}
.timeline-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    color: #999999;
}
.timeline-item h5{
    color:#0061fe;
    font-size: 17px;

}
.timeline-item:nth-of-type(2) h5,
.timeline-item:nth-of-type(3) h5,
.timeline-item:nth-of-type(4) h5{
    font-size: 17px;
    color: #999999;
    margin-top: 5px;
}
.timeline-text h4 {
    color: #666666;
    margin-top: 20px;
}

.timeline-text h2 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #000000;
}

.timeline-text p {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
}

#testimonial-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.testimonial-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background-color: #f5f5f5;
    border-radius: 20px;
    padding: 50px;
    align-items: center;
}

.testimonial-left {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testi-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stars {
    display: flex;
    gap: 5px;
    color: #0061fe;
    font-size: 20px;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text img {
    height: 30px;
    width: 30px;
}

.logo-text h3 {
    font-size: 20px;
    font-weight: 600;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    gap: 30px;
    align-items: center;
}

.testimonial-author .author-name {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 5px;
}

.testimonial-author .author-title {
    font-size: 16px;
    color: #666666;
}

.testimonial-right {
    background-color: #e5e5e5;
    border-radius: 15px;
    overflow: hidden;
}

.testimonial-right img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

#contact-section {
    padding: 80px 20px;
    background-color: #fafafa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-left h2 {
    margin-top: 30px;
    font-size: 36px;
    font-weight: 500;
    color: #000000;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info {
    font-size: 20px;
    color: #333333;
}

.contact-text {
    font-size: 20px;
    color: #888888;
}

.contact-email {
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 18px;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: #0061fe;
    color: white;
}

.contact-right {
    background-color: #e5e5e5;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.contact-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

footer {
    background-color: #1a1a1a;
    color: white;
    border-radius: 25px;
    margin: 20px 20px;
    padding: 60px 20px 30px 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #333333;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 30px;
    width: 30px;
}

.footer-logo h3 {
    font-size: 25px;
    font-weight: 600;
}

.footer-newsletter p {
    font-size: 20px;
    color: #cccccc;
}

.newsletter-input {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.newsletter-input input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #333333;
    border-radius: 25px;
    background-color: #2a2a2a;
    color: white;
    font-size: 14px;
    outline: none;
}

.newsletter-input input::placeholder {
    color: #888888;
}

.newsletter-input button {
    padding: 12px 28px;
    background-color: #0061fe;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.newsletter-input button:hover {
    background-color: #0052d9;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #0061fe;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.footer-bottom h4 {
    font-size: 16px;
    font-weight: 500;
    color: #888888;
}

.footer-bottom p {
    font-size: 14px;
    color: #888888;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    text-decoration: none;
    width: 35px;
    height: 35px;
    border: 1px solid #cccccc66;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cccccc;
    font-size: 16px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background-color: #0061fe;
    color: white;
}

@media screen and (max-width: 1200px) {
    #main section .info {
        gap: 60px;
    }

    .expertise-content {
        gap: 50px;
    }

    .expertise-content img {
        width: 100%;
        max-width: 500px;
        height: auto;
        aspect-ratio: 1/1;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .journey-image {
        max-width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }
}

@media screen and (max-width: 992px) {
    #main header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    #main header .header-center {
        gap: 25px;
        flex-wrap: wrap;
    }

    #main section .info {
        flex-direction: column;
        gap: 30px;
    }

    #main section .info-left h1 {
        white-space: normal;
        font-size: 36px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .expertise-content {
        flex-direction: column;
        gap: 40px;
    }

    .expertise-content img {
        max-width: 100%;
        width: 100%;
    }

    .expertise-cont {
        gap: 30px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .journey-image {
        max-width: 100%;
        margin: 0 auto;
    }

    .testimonial-card {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }

    .testimonial-right img {
        width: 100%;
        height: auto;
        max-height: 400px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-cont {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    #main {
        padding: 0 15px;
    }

    .container {
        padding: 0 15px;
    }

    #main header {
        padding: 20px 0;
    }

    #main header .header-center {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    #main header .header-center a {
        width: 100%;
    }

    #main header .header-right {
        width: 100%;
        justify-content: space-between;
    }

    #main header .header-right button {
        flex: 1;
        padding: 12px 16px;
    }

    #main section {
        padding: 30px 0 40px 0;
    }

    #main section .info-left h1 {
        font-size: 32px;
    }

    #main section .info-right .button-group {
        flex-direction: column;
        width: 100%;
    }

    #main section .info-right button {
        width: 100%;
        justify-content: center;
    }

    #main figure {
        min-height: 300px;
    }

    .hamburger {
        display: block;
    }

    #main header .header-center,
    #main header .header-right {
        display: none;
    }

    #main header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .stat-box h2 {
        font-size: 40px;
    }

    #expertise-section {
        padding: 60px 15px;
        margin: 0 15px;
    }

    .expertise-content h2 {
        font-size: 28px;
    }

    .expertise-content p {
        font-size: 15px;
    }

    #services-section {
        padding: 60px 15px;
    }

    #services-section h2 {
        font-size: 28px;
    }

    .services-subtitle {
        font-size: 15px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .blue-card {
        padding: 25px;
    }

    .blue-card h3 {
        font-size: 20px;
    }

    .team-info h4 {
        font-size: 24px;
    }

    #journey-section {
        padding: 60px 15px;
        margin: 0 15px;
    }

    #journey-section h2 {
        font-size: 28px;
    }

    .journey-subtitle {
        font-size: 15px;
    }

    .journey-content {
        gap: 30px;
    }

    .journey-image {
        height: auto;
        aspect-ratio: 1/1;
    }

    #testimonial-section {
        padding: 60px 15px;
    }

    .testimonial-card {
        padding: 30px;
        gap: 30px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .testi-left {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    #contact-section {
        padding: 60px 15px;
    }

    .contact-left h2 {
        font-size: 28px;
        margin-top: 20px;
    }

    .contact-text,
    .contact-info {
        font-size: 16px;
    }

    .contact-content {
        gap: 30px;
    }

    footer {
        padding: 50px 15px 25px 15px;
        margin: 15px 15px;
    }

    .footer-top {
        gap: 40px;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .footer-newsletter p {
        font-size: 16px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .newsletter-input {
        flex-direction: column;
    }

    .newsletter-input button {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    #main section .info-left h1 {
        font-size: 28px;
    }

    #main section .info-right p {
        font-size: 15px;
    }

    #main header .header-right button {
        font-size: 14px;
        padding: 10px 12px;
    }

    .mobile-menu {
        padding: 60px 15px 30px 15px;
    }

    .mobile-nav a {
        font-size: 16px;
    }
    .mobile-buttons button {
        padding: 12px 16px;
        font-size: 14px;
    }

    .stat-box h2 {
        font-size: 36px;
    }

    .stat-box p {
        font-size: 14px;
    }

    .small-button {
        font-size: 16px;
        padding: 8px 16px;
    }

    .expertise-content h2 {
        font-size: 24px;
    }

    .expertise-content p {
        font-size: 14px;
    }

    #services-section h2 {
        font-size: 24px;
    }

    .services-subtitle {
        font-size: 14px;
    }

    .blue-card h3 {
        font-size: 18px;
    }

    .blue-card p {
        font-size: 14px;
    }

    .team-info h4 {
        font-size: 20px;
    }

    .team-info p {
        font-size: 14px;
    }

    #journey-section h2 {
        font-size: 24px;
    }

    .journey-subtitle {
        font-size: 14px;
    }

    .timeline-text h2 {
        font-size: 16px;
    }

    .timeline-text h4 {
        font-size: 14px;
    }

    .timeline-text p {
        font-size: 14px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .logo-text h3 {
        font-size: 18px;
    }

    .stars {
        font-size: 16px;
    }

    .testimonial-author .author-name,
    .testimonial-author .author-title {
        font-size: 14px;
    }

    .contact-left h2 {
        font-size: 24px;
    }

    .contact-text,
    .contact-info {
        font-size: 14px;
    }

    .contact-email,
    .contact-phone,
    .contact-address {
        font-size: 14px;
    }

    .footer-logo h3 {
        font-size: 20px;
    }

    .footer-newsletter p {
        font-size: 14px;
    }

    .newsletter-input input,
    .newsletter-input button {
        font-size: 13px;
    }

    .footer-column h4 {
        font-size: 14px;
    }

    .footer-column a {
        font-size: 13px;
    }

    .footer-bottom h4,
    .footer-bottom p {
        font-size: 13px;
    }
}

@media screen and (max-width: 360px) {
    #main section .info-left h1 {
        font-size: 24px;
    }

    .stat-box h2 {
        font-size: 32px;
    }

    .expertise-content h2,
    #services-section h2,
    #journey-section h2,
    .contact-left h2 {
        font-size: 22px;
    }
}

html {
    scroll-behavior: smooth;
}

::selection {
    background-color: #0061fe;
    color: white;
}

button:focus,
input:focus,
a:focus {
    outline: 2px solid #0061fe;
    outline-offset: 2px;
}

img {
    display: block;
    max-width: 100%;
}

@media print {

    header,
    footer,
    button {
        display: none;
    }
}