/* RESET & BASE */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    font-family: Arial, sans-serif;
}

/* HEADER & NAVIGATION */
header {
    background: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1vw 3vw;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 45%; 
}

.navb {
    text-decoration: none;
    font-size: .8vw;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0 0.5vw;
    padding: 0.6vw 1.2vw;
    background: transparent;
    border-radius: 2vw;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid transparent;
}

.navb:hover {
    background: rgba(255, 255, 255, 0.1);
    color: yellow;
    transform: translateY(-2px);
    border: 1px solid yellow;
}

.bars {
    padding: .3vw;
    border: .2vw white;
    background: black;
    cursor: pointer;
}

.fa-bars {
    font-size: 1.2vw;
    color: white;
}

/* SECTION 1: HERO */
.section1, .ddd {
    background: rgba(0, 0, 255, 0.589);
    height: 45vw;    
    width: 100%;
    position: relative;
}

.section1 .kkk {
    width: 25vw;
    position: absolute;
    top: 10vw;
    left: 20vw;
    animation: slideInLeft 1s ease-out;
}

.image4 {
    width: 25vw;
    position: absolute;
    top: 11vw;
    left: 47vw;
    animation: slideInRight 1s ease-out;
}

.slogant {
    width: 30vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 24vw;
    left: 45vw;
    animation: fadeIn 1.5s ease-in;
}

.slogant p {
    text-transform: uppercase;
    font-size: .8vw;
}

.btn {
    background: yellow;
    color: black;
    font-weight: 900;
    box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.2);
    border: none;
    margin-top: 1vw;
}

.btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 0.8vw 1.5vw rgba(0, 0, 0, 0.3);
    background: white;
}

.point {
    font-size: 5vw;
    color: black;
    position: relative;
    top: -6vw;
    left: 48vw;
}

/* SECTION 2: SERVICES */
#section2 {
    background: red;
    width: 100%;
    height: 55vw;
    position: relative;
    z-index: 1;
}

.image5 {
    background: green;
    width: 100%;
    height: 50%;
}

.img1 {
    width: 100%;
}

.titre {
    width: 45vw;
    height: 10vw;
    position: absolute;
    text-align: center;
    top: 6vw;
    right: 26vw;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

h3 {
    color: white;
    font-size: 2.5vw;
    text-transform: uppercase;
    margin: 1.5vw;
}

span {
    color: yellow;
}

.para1 {
    color: white;
    font-size: 1vw;
}

.offre {
    width: 18vw;
    height: 25vw;
    position: absolute;
    top: 19vw;
    right: 38vw;
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1.2s ease-out;
}

.img2, .img3, .img4 {
    background-size: cover;
    width: 18vw;
    height: 18vw;
    border-radius: 100%;
    border: .5vw white solid;
}

.img2 { background-image: url(../image/image\ 2.jpg); }
.img3 { background-image: url(../image/image\ 3.jpg); }
.img4 { background-image: url(../image/image\ 1.jpg); }

h4 {
    margin: 1.5vw;
    color: white;
    font-size: 1.5vw;
    text-transform: uppercase;
}

.para2 {
    color: wheat;
    font-size: 1vw;
}

.offre2 { right: 12vw; animation: fadeInUp 1.4s ease-out; }
.offre3 { left: 17vw; animation: fadeInUp 1s ease-out; }

.btn1 {
    position: absolute;
    font-size: 1vw;
    font-weight: bold;
    background: yellow;
    left: 44vw;
    bottom: 1.5vw;
    padding: 0.7vw 2vw;
    text-decoration: none;
    color: black;
    z-index: 1;
    border-radius: 5vw;
    border: 2px solid black;
    box-shadow: 0.3vw 0.3vw 0 black;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn1:hover {
    transform: translate(-0.2vw, -0.2vw);
    box-shadow: 0.5vw 0.5vw 0 black;
    background: white;
}

/* SECTION 3: PORTFOLIO */
#section3 {
    width: 100%;
    height: 50vw;
    background: rgba(0, 0, 255, 0.8);
    position: relative;
}

.titre2 {
    width: 50vw;
    height: 20vw;
    text-align: center;
    position: absolute;
    top: 3vw;
    right: 23vw;
}

h5 {
    color: black;
    font-size: 3vw;
    margin: 1.5vw;
    text-transform: uppercase;
}

.para3 {
    font-size: 1vw;
    color: white;
}

.image6 {
    margin: 2vw 25vw;
    width: 50vw;
    height: 30vw;
    position: absolute;
    top: 11vw;
    border-radius: 2vw;
    background: url(../image/Work\ Images\ copie.jpg) no-repeat center/cover;
    animation: zoomIn 1s ease-out;
}

/* SECTION 4 & 5: LOGOS & TESTIMONIALS */
#section4 {
    width: 100%;
    height: 20vw;
    background: url(../image/Dummy\ Logos\ copie.jpg) no-repeat center/cover;
}

#section5 {
    width: 100%;
    height: 50vw;
    background-image: url(../image/Shape\ copie.jpg);
    position: relative;
}

.h52 { color: white; }
.titre22 { right: 25vw; }

.profil {
    width: 20vw;
    height: 25vw;
    position: absolute;
    bottom: 10vw;
    right: 40vw;
    animation: fadeInUp 1s ease-out;
}

.int_profil {
    width: 20vw;
    height: 25vw;
    background: url(../image/Shape1\ copie.jpg) no-repeat center/cover;
    border-radius: 1vw;
    position: relative;
}

.pdp {
    width: 5vw;
    height: 5vw;
    border-radius: 1vw;
    position: absolute;
    top: 2vw;
    right: 13vw;
}

.propo {
    position: absolute;
    color: white;
    font-size: 1vw;
    top: 3vw;
    right: 4vw;
}

h6 { font-size: 1.5vw; }

.description {
    margin: 1vw;
    font-size: .9vw;
    position: absolute;
    color: white;
    bottom: 8vw;
}

.virgul {
    font-size: 5vw;
    font-family: Verdana, sans-serif;
    color: yellow;
    position: absolute;
    right: 1vw;
}

.note {
    width: 12vw;
    display: flex;
    justify-content: space-around;
    position: absolute;
    left: 1vw;
    bottom: 2vw;
}

.etoil {
    width: 2vw;
    height: 2vw;
    background: yellow;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.btn2 {
    bottom: -6vw;
    left: 4vw;
}

/* FORMULAIRE - RÉGLAGE FINAL */
#formulaire {
    width: 100%;
    height: 40vw;
    background: blue;
    position: relative;
    overflow: hidden; 
}

#formulaire .get {
    position: absolute;
    left: 34vw;
}

#formulaire .contact {
    width: 30vw;
    position: absolute;
    top: 6vw;
    left: 15vw;
    animation: slideInLeft 1s ease-out;
}

#formulaire hr {
    border: 1px dashed white;
    margin: 1.5vw;
}

#formulaire .titre_contact {
    font-size: 2vw;
    color: yellow; 
    font-weight: bold;
}

#formulaire .add {
    font-size: 1.1vw;
    margin-left: 2vw;
    color: white;
}

#formulaire .form {
    width: 30vw;
    height: 25vw;
    position: absolute;
    top: 8vw;
    left: 54vw;
    display: flex;
    flex-direction: column;
    animation: slideInRight 1s ease-out;
}
form{
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
#formulaire input, 
#formulaire textarea {
    background: #00000056;
    color: white;
    padding: .8vw 1.2vw;
    margin: 0.5vw 0; 
    border-radius: 0.5vw;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: 0.3s;
    font-size: 0.9vw;
}

#formulaire input:focus, 
#formulaire textarea:focus {
    border-color: yellow;
    outline: none;
    box-shadow: 0 0 0.5vw yellow;
}

#formulaire input { width: 100%; }
#formulaire textarea { width: 100%; resize: none; }

#formulaire .submit {
    font-size: 1vw;
    font-weight: bold;
    background: yellow;
    left: 0; 
    padding: 0.8vw 2.5vw;
    color: black;
    border-radius: 0.3vw;
    border: 2px solid black;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

#formulaire .submit:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.3);
}

/* FOOTER & LINKS */
#sectionfin {
    height: 24vw;
    background: url(../image/Rectangle\ 1\ copy\ 15.png) no-repeat center/cover;
    position: relative;
}

.divlogo {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 10vw;
    top: 5vw;
    left: 13vw;
}

.logo2 { width: 8vw; }

.paralogo {
    margin-top: 1vw;
    color: white;
    font-size: 1vw;
}

.servicepage { position: absolute; top: 5vw; left: 35vw; }
.servicepage2 { position: absolute; top: 5vw; left: 53vw; }
.servicepage3 { position: absolute; top: 5vw; left: 71vw; }

.font {
    width: 10vw;
    display: flex;
    justify-content: space-between;
}

.fab, .fas {
    font-size: 1.2vw;
    color: yellow; 
    transition: transform 0.3s ease;
}

.fab:hover, .fas:hover {
    transform: translateY(-5px);
}

.fa-wifi { transform: rotateZ(8deg); }

footer {
    height: 5vw;
    background: linear-gradient(blue, black);
    text-align: center;
    position: relative;
}

.parafooter {
    color: white;
    font-size: 1vw;
    position: absolute;
    bottom: 2vw;
    right: 43vw;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}