@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --blue-primary: #0066cc;
    --blue-dark: #063e78;
    --blue-light: #4a90e2;
    --white: #ffffff;
    --gray-light: #f3f5f7;
    --gray: #e2e6ea;
    --gray-dark: #777;
    --black: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "League Spartan", sans-serif;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
    color: #333;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

body.loaded {
    opacity: 1;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 120px;
    height: 120px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #0066b3;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-content {
    position: absolute;
    text-align: center;
}

.loader-content img {
    max-width: 80px;
    margin-bottom: 10px;
}

.loader-content p {
    color: #0066b3;
    font-weight: bold;
}

.content-hero-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 90px;
    background-size: cover;
}

.content-hero-wrapper .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    justify-content: center;
}

/* Styles de base pour le hero */
.heroSwiper {
    width: 100%;
    height: 100%;
    /* Ajustez selon vos besoins */
}

.content-hero-wrapper {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

/* Conteneur du contenu */
.content-hero-wrapper .container {
    position: relative;
    z-index: 2;
    max-width: 85%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Styles pour le texte */
.hero-title {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ff6b00;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

/* Classes d'animation */
.animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Overlay pour meilleure lisibilitÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â© */
.content-hero-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Styles pour la pagination et navigation */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #ff6b00;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
    font-weight: bold;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.container {
    max-width: 85%;
    margin: 0 auto;
    padding: 0 15px;
}

.projects-page .container {}

.flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

/* Header */
.top-bar {
    /* background-color: #1e1e1e; */
    color: white;
    /* padding: 10px 0; */
}

.scrolled .top-bar {
    display: none;
}

.top-bar .container {
    border-bottom: 1px solid rgb(255 255 255 / 17%);
    padding: 11px 0;
    display: flex;
    justify-content: space-between;
}

.top-bar .left {
    display: flex;
    align-items: center;
}

.top-bar .left i {
    color: #4CAF50;
    margin-right: 10px;
}

.top-bar .right a {
    color: white;
    /* background-color: #0077b5; */
    display: inline-block;
    text-decoration: none;
    /* border-radius: 3px; */
}

/* Navigation */
.main-nav {
    /* background-color: white; */
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
    padding: 15px 0;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.logo {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.maps-locations-content {
    display: flex;
}

.maps-locations-text p {
    line-height: 1.5;
    font-size: 17px;
}

.maps-locations-text,
.maps-locations-map {
    /* flex: 1; */
    width: 50%;
}

.maps-locations-map {
    width: 50%;
}


.nav-links li {
    /* margin-left: 20px; */
    position: relative;
    padding: 10px;
}

ul.submenu {
    /* display: none; */
    position: absolute;
    top: 180%;
    left: 0;
    background: #4fbada;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 150px;
    z-index: 1000;
    border-radius: 0 0 5px 5px;
    overflow: hidden;
    width: 340px;
    transition: ease-in-out .3s;
    visibility: hidden;
    opacity: 0;
}

li.has-submenu li a {
    margin: 0;
    padding: 10px 25px;
    display: block;
    text-shadow: unset;
    border-bottom: 1px solid rgb(255 255 255 / 35%);
    line-height: 1.3;
    color: #fff !important;
}

li.has-submenu li a:hover {
    background: #fff;
    color: #4fbada !important;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    text-shadow: -1px -1px 11px rgb(0 0 0 / 68%);
    padding: 10px 0px;
    position: relative;
}

.scrolled .nav-links a {
    color: #4fbada;
    font-weight: 400;
    text-shadow: unset;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.contact-btn {
    background-color: #4fbada;
    color: white !important;
    padding: 8px 15px !important;
    border-radius: 5px;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background-image: url('/api/placeholder/1200/600');
    background-size: cover;
    background-position: center;
    color: white;
    /* padding: 100px 0; */
    position: relative;
    height: 81vh;
}

section.hero.inner-page {
    height: auto;
}

section.hero.inner-page .container {}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(53 124 147 / 57%);
}

.hero .container {
    position: relative;
    z-index: 10;
    padding: 0 0 25px;
    z-index: 10;
}

.inner-page .container {
    padding: 120px 0 25px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    max-width: 100%;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
}

.hero-btn {
    display: inline-block;
    background-color: #4fbada;
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    margin-top: 20px;
    border-radius: 5px;
    position: relative;
    z-index: 30;
    font-size: 18px;
}

.hero-dots {
    margin-top: 40px;
}

.hero-dots .dot {
    width: 10px;
    height: 10px;
    background-color: #4fbada;
    border-radius: 50%;
    margin: 10px 0;
}

/* Blue Banner */
.blue-banner {
    background-color: #0066b3;
    color: white;
    padding: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    display: flex;
    position: absolute;
    left: 3%;
    flex-direction: column;
    bottom: 10%;
}


.hero span.swiper-pagination-bullet-active {
    height: 50px;
    border-radius: 10px;
    background-color: #4fbada;
}

.hero span.swiper-pagination-bullet {
    margin-bottom: 10px !important;
    transition: linear .3s;
}

section.blue-banner h3 {
    font-size: 20px;
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.7;
}

.blue-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-30deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* About Section */
.about {
    padding: 60px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

section.about .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-us-page section.about .container {
    flex-direction: row-reverse;
}

.container.secondary {
    flex-direction: row !important;
}

.about-content {
    flex: 1;
    padding-right: 40px;
}

.about h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    /* padding-left: 20px; */
}

.content-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: #4fbada;
}

.about p {
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: 0.95rem;
    text-align: left;
}

.about-image {
    /* flex: 1; */
    position: relative;
    width: 50%;
    padding-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image a {
    position: absolute;
    font-size: 2rem;
    color: #acdbff;
}

.about-image:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    border: 58px solid;
    border-radius: 54%;
    display: none;
}

.about-image img {
    width: 73%;
    display: block;
    margin: 0 auto;
}

.about-us-page .about-image img {
    border-radius: inherit;
    width: 100%;
}

.about-image img {
    width: 80%;
    border-radius: 50%;
}

.about-btn {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid #4fbada;
    color: #4fbada;
    text-decoration: none;
    margin-right: 15px;
    border-radius: 3px;
}

.brochure-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: #0066b3;
    color: white;
    text-decoration: none;
    border-radius: 3px;
}

/* Services Section */
.services {
    background-attachment: fixed;
    padding: 60px 0;
    color: white;
    position: relative;
    background-color: #f9f9f9;
    background-size: cover;
}

.services:after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgb(79 186 218 / 52%);
}

.service-page .services:after {
    display: none;
}

section.services .container {
    position: relative;
    z-index: 10;
}

.services h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 30px;
    font-family: 'Montserrat';
}

.services-intro,
.services p {
    text-align: center;
    margin-bottom: 40px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    font-size: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    background-color: white;
    border-radius: 5px;
    padding: 0;
    color: #333;
    box-shadow: 3px 5px 12px 0px rgb(0 0 0 / 10%);
    overflow: hidden;
}

.service-image {
    position: relative;
    width: 100%;
    height: 200px;
    /* ou une autre hauteur fixe adaptÃƒÆ’Ã‚Â©e */
    /* overflow: hidden; */
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-icon {
    color: #4fbada;
    /* font-size: 2rem; */
    margin-bottom: 15px;
    width: 50px;
    display: block;
    /* max-height: 80px; */
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.service-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
    text-align: left !important;
    padding-left: 0;
    margin: 0 0 15px 0;
}

.service-btn {
    display: inline-block;
    padding: 5px 10px;
    color: #4fbada;
    text-decoration: none;
    font-size: 0.9rem;
}

.see-all-btn {
    display: block;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    max-width: 200px;
    text-align: center;
    margin: 40px auto 0;
    border-radius: 3px;
}

/* Projects Section */
.projects {
    padding: 60px 0;
}

.about-us-page section.projects {
    background: #FFF !important;
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
    color: #4fbada;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.projects h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 30px;
}

.about-us-page .projects h2,
.about-us-page .projects .section-title {
    /* color: #fff; */
}

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

.project-card {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 5px;
}

.project-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.project-info {
    position: relative;
    padding: 1.2rem;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    margin-top: -5px;
}

.project-info a {
    display: block;
    width: auto !important;
}

.project-info p {
    line-height: 1.5;
    margin: 10px 0;
}

.new-page .project-info {
    position: relative;
    width: 100%;
    background: #4fbada;
    text-align: center;
    text-transform: uppercase;
    border-radius: 10px 10px 0 0;
}

.project-info h3 {
    font-size: 1.4rem;
    /* margin-bottom: 5px; */
    border-left: 3px solid #4fbada;
    padding-left: 10px;
    line-height: 1.3;
}

.projects-page.new-page h3 {
    margin: 0;
}

.project-btn {
    display: inline-block;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    font-size: 0.8rem;
    margin-top: 10px;
    border-radius: 3px;
}

.view-projects-btn {
    display: block;
    background-color: #4fbada;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    max-width: 200px;
    text-align: center;
    margin: 40px auto 0;
    border-radius: 3px;
}

/* Clients Section */
.clients {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.clients h2 {
    position: relative;
    /* padding-left: 20px; */
    margin-bottom: 30px;
    font-size: 1.9rem;
}

.clients h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: #4fbada;
    display: none;
}

.clients-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.client-logo {
    height: auto;
    margin: 10px;
}

.client-logo img {
    width: 100%;
    height: 75px;
    object-fit: contain;
}

/* Newsletter */
.newsletter {
    background-color: #0066b3;
    color: white;
    padding: 30px 0;
}

section.newsletter .content-left {
    width: 35%;
}

section.newsletter .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newsletter h2 {
    margin-bottom: 15px;
    font-family: 'Montserrat';
    font-size: 25px;
}

.newsletter p {
    margin-bottom: 20px;
    line-height: 1.3;
}

.newsletter-form {
    display: flex;
    width: 42%;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 15px;
    border: none;
    border-radius: 3px 0 0 3px;
    width: 60%;
    font-family: inherit;
}

.newsletter-form button {
    padding: 13px 30px;
    background-color: #4fbada;
    color: white;
    border: none;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    width: 25%;
}

/* Footer */
footer {
    background-color: #1e1e1e;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-logo p {
    font-size: 0.9rem;
    color: #ccc;
    max-width: 300px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    margin-top: 20px;
}

.social-icon {
    width: 30px;
    height: 30px;
    background-color: #0066b3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.footer-links h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #ccc;
}

.submenu li a {
    padding: 10px;
    color: #fff;
    /* white-space: nowrap; */
}

.has-submenu:hover .submenu {
    display: block;
    top: 120%;
    visibility: visible;
    opacity: 1;
}

.has-submenu:hover .submenu li {
    padding: 0;
}

ul.submenu li {
    margin: 0;
}

.mobile-menu {
    display: none;
}

.projects .swiper-pagination {
    transform: translateY(10px);
    text-align: center;
    display: none;
}

.projects span.swiper-pagination-bullet {
    background: rgb(79 186 218 / 58%);
    transition: ease-in-out .3s;
}

.projects span.swiper-pagination-bullet-active {
    background: rgb(79 186 218 / 92%);
    width: 40px;
    border-radius: 10px;
}


.clients .content-section-title,
.about.content-section-title {
    text-align: left;
    position: relative;
    padding-left: 20px;
}

.clients .content-section-title p,
.about.content-section-title p {
    text-align: left !important;
    margin-bottom: 6px;
}

.content-section-title {
    position: relative;
    padding-left: 20px;
    margin-bottom: 30px;
    display: block;
    text-align: left;
}


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

/* Responsive Styles */
@media (max-width: 1024px) {
    .mobile-menu {
        display: block !important;
    }

    .container {
        padding: 0;
        max-width: 95% !important;
    }


    .hero .container {
        padding: 0 20px;
    }

    .inner-page .container {
        padding: 152px 0 70px;
    }


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

    .about {
        flex-direction: column;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .footer-content {
        flex-wrap: wrap;
    }

    .footer-logo,
    .footer-links,
    .footer-contact {
        flex-basis: 50%;
        margin-bottom: 30px;
    }

    .inner-contact {
        padding-top: 15px;
    }

    .footer-bottom {
        font-size: 14px;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .footer-bottom p {
        text-align: center;
    }
}

@media (max-width: 1100px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #4cc7f1;
        flex-direction: column;
        width: 30px;
        height: auto;
    }

    .scrolled button.mobile-menu-btn span {
        background: #4bc8f1;
        transition: ease-in-out .3s;
    }

    button.mobile-menu-btn span {
        display: block;
        width: 100%;
        height: 3px;
        background: #fff;
        margin-bottom: 8px;
        border-radius: 5px;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 250px;
        height: 100vh;
        background-color: white;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        padding: 20px;
    }

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu-close {
        text-align: right;
        margin-bottom: 20px;
    }

    .mobile-menu ul {
        list-style: none;
    }

    .mobile-menu li {
        margin-bottom: 15px;
    }

    .mobile-menu a {
        text-decoration: none;
        color: #333;
        font-size: 16px;
        display: block;
        padding: 5px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .clients-logos {
        justify-content: center;
    }

    .client-logo {
        margin: 15px;
    }

    .footer-logo,
    .footer-links,
    .footer-contact {
        flex-basis: 100%;
    }

    .projects-page .project-card {
        width: 100% !important;
    }

    .projects-page .inner-container {
        width: 90% !important;
    }
}


/* Overlay pour menu mobile */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.overlay.active {
    display: block;
}

.content-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 20;
}

.content-header {
    /* Styles par dÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â©faut */
    transition: all 0.3s ease;
    /* Pour une transition fluide */
}

.content-header.scrolled {
    /* Styles quand on scroll */
    background-color: #fff;
    /* Exemple */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Exemple */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}


.myProjectsSwiper {
    padding: 20px 0 50px;
}

.swiper-slide {
    height: auto;
    /* Pour que toutes les slides aient la mÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Âªme hauteur */
}

.project-card {
    height: 100%;
    /* Vos styles existants pour project-card */
}

.project-card a {
    display: inline-block;
    width: 100%;
}

.projects-page .project-card {
    width: 100%;
    /* margin: 10px 5px; */
    gap: 1.5rem;
    /* display: unset; */
    break-inside: avoid;
    margin-bottom: 1.5rem;
}

.new-page .project-card {
    width: 100%;
}

.projects-page .inner-container {
    width: 85%;
    margin: 0 auto;
    display: block;
    flex-wrap: wrap;
    columns: 200px 3;
    gap: 1.5rem;
}

.projects-page .inner-container.projects-wrapper {
    columns: unset !important;
}

.inner-container.inner-container-list {
    columns: unset;
}

/* Styles pour les boutons de navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    /* Changez la couleur */
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background-color: var(--gray-light);
}

.stats-container {
    display: flex;
    justify-content: space-between;
    text-align: center;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    margin: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--blue-primary);
    margin-bottom: 10px;
}


/* Regional agencies section */
.regional-agencies {
    padding: 50px 0;
}

section.regional-agencies .container {
    margin-bottom: 40px;
}

.section-title {
    color: #26a9e2;
    /* margin-bottom: 50px; */
    position: relative;
    font-size: 13px;
    font-weight: normal;
    /* padding-left: 60px; */
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 50px;
    height: 2px;
    background-color: #0099cc;
    transform: translateY(-50%);
    display: none;
}

.section-title h2 {
    font-size: 24px;
    margin-top: 5px;
}

.join-us-page h2 {
    color: #242424;
}

.agencies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    overflow: h;
}

.agency-card {
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.agency-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.agency-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.agency-image {
    height: 200px;
    overflow: hidden;
}

.agency-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.agency-card:hover .agency-image img {
    transform: scale(1.1);
}

.agency-info {
    padding: 20px;
    text-align: center;
}

.agency-info h3 {
    color: #0099cc;
    margin-bottom: 15px;
}

.contact-details {
    margin-top: 20px;
    font-size: 14px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    color: #666;
    text-align: left;
}

.contact-item span a {
    text-decoration: underline;
    color: #4fbada;
}

.contact-item span {
    line-height: 1.4;
}

.contact-item i {
    margin-right: 10px;
    color: #0099cc;
    width: 20px;
    text-align: center;
}

.inner-contact {
    padding-top: 20px;
}

.inner-contact span {
    line-height: 1.5;
    display: block;
}

div#map {
    max-width: 60%;
    margin: 0 auto;
}

div#map_holder {
    width: 100% !important;
    height: auto;
}

body div#map_inner:after {
    position: absolute;
    background: #fff;
    bottom: 0;
    height: 30px;
    content: '';
    left: 0;
    right: 0;
    z-index: 99;
}

.service-text {
    padding: 35px 20px 20px;
}


.container.second {
    flex-direction: row !important;
}

.content-head p {
    line-height: 1.5;
    font-size: 16px;
    margin: 0 0 20px;
}

.projects-page .projects-categories {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}


h2.category-realisation {
    text-align: left;
    text-transform: uppercase;
    border-bottom: 2px solid;
    padding-bottom: 10px;
    color: #4fbada;
}

.main-content {
    padding-right: 50px;
    padding: 50px 0;
}

.feature-image {
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
}

.date {
    color: #39aee6;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px;
}

.article-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a3263;
}

.article-content {
    margin-bottom: 30px;
}

.article-content p {
    font-size: 16px;
    line-height: 1.5;
}

/* Sidebar */
.sidebar {
    /* flex: 1; */
    width: 30%;
    padding-top: 50px;
}

.sidebar-title {
    color: #1a3263;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #39aee6;
}

.recent-post {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

.post-thumbnail {
    width: 80px;
    /* height: 60px; */
    margin-right: 15px;
    flex-shrink: 0;
}

.post-thumbnail img {
    width: 100%;
    display: block;
    height: auto;
}

.post-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
    line-height: 1;
}

.post-info .date {
    font-size: 12px;
    margin-bottom: 0;
}

main.main-content {
    width: 65%;
}

.post-info .date {
    display: none;
}

.projects-categories-wrapper {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: 41px auto;
}

.content-inner-category {
    width: 45%;
}

.content-inner-category img {
    width: 100%;
    display: block;
}

ul.gtb-list li a {
    color: inherit;
    font-size: 20px;
    color: #4fbada;
    font-weight: 600;
    padding: 0 0 10px 0;
}

ul.gtb-list li::marker {
    color: #4fbada;
    font-size: 29px;
    position: absolute;
    left: 0;
}

@media only screen and (min-width:1024px) {
    .container {
        max-width: 85%;
    }

    section.blue-banner h3 {
        max-width: 85%;
        font-size: 25px;
    }
}

ul.gtb-list li {
    width: 100%;
    margin-bottom: 20px;
}

ul.gtb-list h3 {
    margin-bottom: 10px;
    color: #4fbada;
    font-size: 20px;
}

ul.gtb-list p {
    line-height: 1.4;
}



@media (max-width: 576px) {
    .projects-page .project-card {
        width: 100% !important;
    }

    .maps-locations-content {
        flex-direction: column;
    }

    .maps-locations-text,
    .maps-locations-map {
        width: 100%;
    }

    div#map_background {
        width: 100% !important;
    }

    span.swiper-pagination-bullet-active {
        height: 5px !important;
        width: 30px !important;
    }

    .hero .swiper-button-next,
    .hero .swiper-button-prev {
        top: 95%;
    }

    .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {}

    .hero .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
        bottom: 1% !important;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .agency-card {
        opacity: 1 !important;
        width: 100%;
    }

    section.about .container,
    section.newsletter .container {
        flex-wrap: wrap !important;
        width: 98% !important;
        margin: 0 auto !important;
    }

    section.newsletter .content-left {
        width: 100%
    }

    div#map {
        max-width: 100% !important;
        min-height: 300px;
        margin-top: 20px !important;
    }

    main.main-content {
        width: 100%;
    }

    .container.flex.align-items-center.justify-content-between {
        flex-wrap: wrap;
    }

    .feature-image {
        height: 300px;
    }

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

    aside.sidebar {
        width: 100%;
    }

    .about-content {
        width: 100%;
    }

    .about-image {
        width: 100%;
        padding: 0;
    }

    .top-bar .left,
    .top-bar .right {
        font-size: 0.8rem;
    }

    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .projects-page .projects-categories {
        flex-wrap: wrap;
    }

    .content-inner-category {
        width: 100% !important;
    }

    .projects-categories-wrapper {
        flex-wrap: wrap;
    }

    .hero h1 {
        font-size: 1.3rem;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

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

    .newsletter-form input {
        margin-bottom: 10px;
        border-radius: 3px;
    }

    .newsletter-form button {
        border-radius: 3px;
        width: 100%;
    }

    .about-btn,
    .brochure-btn {
        display: block;
        margin-bottom: 10px;
        text-align: center;
    }

    a.hero-btn.animate {
        display: inline !important; 
        text-align: center !important;
    }


    section.hero {
        min-height: 90vh !important;
    }
}

.content-head {
    width: 90%;
    margin: 0 auto;
}


 .ripple {
      position: absolute;
      top: 50%;
      left: 47%;
      width: 60px;
      height: 60px;
      border: 2px solid #00f2ff;
      border-radius: 50%;
      transform: translate(-50%, -50%) scale(0);
      opacity: 0.7;
      animation: ripple-animation 2.5s infinite ease-out;
      pointer-events: none;
    }

    .ripple:nth-child(1) {
      animation-delay: 0s;
    }

    .ripple:nth-child(2) {
      animation-delay: 0.8s;
    }

    .ripple:nth-child(3) {
      animation-delay: 1.6s;
    }

    @keyframes ripple-animation {
      0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.6;
      }
      100% {
        transform: translate(-50%, -50%) scale(3.5);
        opacity: 0;
      }
    }

    .about-image a {
      /* position: relative; */
      /* display: inline-block; */
      /* padding: 14px 30px; */
      /* color: white; */
      /* text-decoration: none; */
      /* background-color: #0077ff; */
      /* border-radius: 6px; */
      /* font-family: sans-serif; */
      /* font-size: 16px; */
      /* z-index: 1; */
    }