/* CSS à ajouter dans votre fichier de styles */

/* Ajuste la marge pour le header fixe */
* {
    margin: 0;
    font-family: "Roboto", sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Section contenant l'effet parallax */
.parallax-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Image ou arrière-plan avec effet parallax */
.parallax {

    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    height: 100vh;
    width: 100%;
    position: relative;
    z-index: 0;
}

/* Overlay pour améliorer la lisibilité */
.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2c2927;
    opacity: 0.8;
    z-index: 1;
}

/* Conteneur de contenu général au-dessus du parallax */
.parallax-section .container,
.parallax-content {
    position: relative;
    top: 35%;
    left: -1%;
    z-index: 2;
    color: white;
}

/* Si tu veux une animation d’apparition */
.parallax-content {
    animation: fadeInUp 1s ease-out;
}

/* Animation keyframes */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.strator-title {
    /* font-size: clamp(4rem, 5vw, 4rem); */
    font-size: 3rem;
    font-weight: 900;
    font-family: "DM Serif Display", serif;
    line-height: 1.5;
    max-width: 750px;
    margin-bottom: 2rem;
    color: white;
    /* background: linear-gradient(135deg, #ffffff 0%, #123142 50%, #0099cc 100%); */
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    background-clip: text;
    /* text-shadow: 0 0 30px rgba(0, 212, 255, 0.3); */
}

.strator-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.strator-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.strator-btn {
    
    
  padding: 10px 20px;
  border: 2px solid #1d1c1a;
  text-decoration: none;
  color: #1d1c1a;
  transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 600;
  border-radius: 50px;
    cursor: pointer;
    
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
@media (min-width: 576px) { 
    .navbar-brand img{
        height: 120px;
    }
    /* .strator-btn{
        padding: 6px 15px !important;
    } */
}
.strator-btn-primary {
    background: linear-gradient(135deg, #2a617f 0%, rgb(18 49 66) 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(88, 106, 109, 0.3);
}

.strator-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px #123142;
    color: white;
    text-decoration: none;
}

.strator-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.strator-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}



/* Éléments décoratifs flottants */
.strator-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.strator-floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
    animation: float 6s ease-in-out infinite;
}

.strator-circle-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.strator-circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.strator-circle-3 {
    width: 100px;
    height: 100px;
    top: 80%;
    right: 5%;
    animation-delay: 4s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(120deg);
    }

    66% {
        transform: translateY(-10px) rotate(240deg);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .parallax-content {
        padding: 0 10%;
        text-align: center;
    }
    .strator-title{
        font-size: 2rem !important;
    }
    .strator-buttons {
        justify-content: center;
    }

    .strator-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .strator-play-icon {
        width: 50px;
        height: 50px;
        margin: 0 10px;
    }

    .strator-subtitle {
        font-size: 1rem !important;
    }
}
@media(max-width: 998px){
    .parallax-section .container, .parallax-content{
        top: 29% !important;
        left: 0% !important;
    }
}
.rounded-circle .team_pic{
    width: 100%;
    height: 100%;
}
@media (max-width: 480px) {
    .navbar-brand img {
        height: 86px !important;
    }
    .strator-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem !important;
    }
    .strator-btn {
        font-size: 0.77rem;
        padding: 9px 5px !important;
    }

    .strator-title{
        font-size: 0.95rem !important;
    }
    .strator-subtitle {
        font-size: 0.75rem !important;
    }
    .parallax-section .container, .parallax-content {
        top: 39% !important;
    }
    .parallax-section{
        height: 70.5vh !important;
    } 
    /* .strator-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    } */
}





.strator-services {
    padding: 80px 0;
    position: relative;
    background-color: #f2f1e5;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h1 {
    font-size: 2.5rem;
    font-family: "DM Serif Display", serif;
    font-weight: 700;
    color: black;
    margin-bottom: 20px;
}

.section-subtitle {
    color: #a0a0a0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-card {
    background: rgb(255 255 255 / 45%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #123142;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2a617f, #123142);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2a617f, #123142);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.service-title {
    font-size: 1.4rem;
    font-family: "DM Serif Display", serif;
    font-weight: 600;
    margin-bottom: 20px;
    color: black;
}

.service-description {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.strator-about {
    padding: 80px 0;
    position: relative;
    background-color: #fbe8a6;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-visual {
    flex: 1;
    position: relative;
}

.about-text {
    flex: 1;
}


.about-title {
    font-size: 2.5rem;
    font-family: "DM Serif Display", serif;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-description {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.about-features {
    list-style: none;
    padding: 0;
}

.about-features .li {
    /* display: flex;
    align-items: center;
    margin-bottom: 15px; */
    /* color: #d0d0d0; */
}

.about-features .li i {
    color: #123142;
    margin-right: 15px;
    font-size: 1.2rem;
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection-lines::before,
.connection-lines::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(180deg, transparent, #123142, transparent);
    animation: pulse 3s ease-in-out infinite;
}

.connection-lines::before {
    height: 120px;
    top: 35%;
    left: 35%;
    transform: rotate(45deg);
}

.connection-lines::after {
    height: 120px;
    top: 35%;
    right: 35%;
    transform: rotate(-45deg);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .section-title h1 {
        font-size: 2rem;
    }

    .about-title {
        font-size: 2rem;
    }
}



.parallax1 {
  
  /* min-height: 400px; */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Le contenu reste au-dessus du voile */
.parallax1 > .container , .parallax2 > .container {
    position: relative;
    z-index: 3;
}
.parallax2 {
  
  /* min-height: 350px; */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax1::after, .parallax2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 41, 39, 0.6); /* transparence */
    z-index: 2;
}
.partner-section{
    background-color: #f2f1e5;
    padding: 80px 0;
    position: relative;
}
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-img-1,.partner-img-2,.partner-img-3 {
    position: relative;
    
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}
.partner-img-1 {
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
    /* max-width: 300px; */
}

.partner-img-1 img {
    transition: transform 0.5s ease;
    display: block;
}

.partner-img-1:hover img {
    transform: scale(1.1);
}
.project-call-section {
  background-color: #1d1c1a;
  color: #fff;
   padding: 80px 0;
    position: relative;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.call-to-action {
  display: flex;
  flex-wrap: wrap;
  background-color: #fde9a6;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
}

.cta-text-block {
  flex: 1;
  padding: 40px;
  color: #1d1c1a;
}

.cta-text-block h3 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 15px;
}

.cta-text-block p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #1d1c1a;
  border-radius: 50px;
  text-decoration: none;
  color: #1d1c1a;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #1d1c1a;
  color: #fde9a6;
}

.cta-image-block {
  flex: 1;
  min-height: 300px;
  background: #eee;
}

.cta-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-info {
  text-align: left;
}

.business-info h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.4;
}

.business-info h2 span {
  color: #fde9a6;
}

.business-info p {
  font-size: 16px;
  line-height: 1.8;
  color: #ccc;
  max-width: 800px;
}



.card-img-overlay {
    background: #2c2927; /* overlay sombre pour améliorer la lisibilité */
    opacity: 0.8;
    color: white;
    padding: 1rem;
}

.service-icon i {
    color: white;
    font-size: larger;
}
