@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-width: 0;
    overflow-x: auto;
    position: relative;
    
}

body {
    font-family: 'inter', sans-serif;
    margin: 0;
    padding: 0;
    background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%) no-repeat fixed;
    height: 100%;
    overflow-x: hidden;
}

.About_Me, .Projects, .skills, .home,
.experience, .Etudiant, .testimonial, .message{
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: all 0.8s ease-out;
}

.About_Me.active, .Projects.active, .skills.active, .home.active,
.experience.active, .Etudiant.active, .testimonial.active, .message.active{
    opacity: 1;
    transform: translateY(0) scale(1);
}



.module{
    z-index: 0;
    position:absolute;
    width: 700px;
    top:430px;
    right: -250px;
}


#star-container {
    position: fixed;
    top: -50px; 
    left: -50px;
    width: calc(100% + 100px); 
    height: calc(100% + 100px);
    z-index: -1;
    background: transparent; 
    pointer-events: none;
    transition: transform 0.1s ease-out;
}

#stars, #stars2, #stars3 {
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
}

#stars {
    width: 1px;
    height: 1px;
    animation: animStar 50s linear infinite;
}

#stars2 {
    width: 2px;
    height: 2px;
    animation: animStar 100s linear infinite;
}

#stars3 {
    width: 3px;
    height: 3px;
    animation: animStar 150s linear infinite;
}

@keyframes animStar {
    from { transform: translateY(0px); }
    to { transform: translateY(-2000px); }
}



.content{
    color: white;
    overflow: hidden; 
}


.NavBar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5%;
    background: rgba(4, 4, 4, 0.789);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.214);
    transition: 0.5s ease;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 12;
}
.NavBar:hover{
    box-shadow: 0 0 15px #00ddfa60;
}

.NavBar a:nth-child(1){
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    
}

.NavBar .text-logo{
    font-size: 25px;
    color: #0099cc;
}
.NavBar .text-logo span{
    color: #b9d928;
}

.NavBar img{
    background: #00000060;
    border-radius: 12px;
    width: 50px;
    padding: 8px;
    box-shadow: 0 0 15px rgba(67, 67, 67, 0.505);
    transition: 0.5s ease;
}

.NavBar img:hover{
    scale:  1;
    border: 1px solid #bad928;
    box-shadow: 0 0 15px #bad928;
    background: #000;
}

.NavBar .Bar_element{
    display: flex;
    align-items: center;
    gap: 70px;
    min-width: 0;
}

.NavBar .Bar_element  a.active{
    color: #00defa;
    border-bottom: 2px solid #00defa;
    padding-bottom: 5px;

}
.NavBar .Bar_element a{
    text-decoration: none;
    color: #bad928;
    font-size: 1.3em;
    font-weight: 500;
    text-wrap: nowrap;
}

.NavBar .Bar_element a:hover{
    color: #00defa;
}

.NavBar .Bar_element button{
    border: none;
    background: transparent;
    margin-left: 40px;
}

.NavBar .Bar_element button a{
    background: #bad928;
    color: #000;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 1.3em;
    font-weight: 550;
    transition: 0.3s ease;
}

.NavBar .Bar_element button a:hover{
    background: transparent;
    border: 2px solid #bad928; 
    color: #bad928;
    box-shadow: 0 0 10px #b9d9289c;
    scale: 1;
}

.NavBar .menu{
    color: #000;
    font-size: 1.5rem;
    background: #00defa;
    padding: 5px;
    border-radius: 10px;
    transition: 0.5s ease;
    display: none;
    transition: 0.5s ease;
}

.NavBar .menu:hover{
    color: #00defa;
    background: #000;
    border: 1px solid #00defa;
    box-shadow: 0 0 10px #00defa;
}

.NavBar .close{
    color: #000;
    font-size: 1.5rem;
    background: #b9d928;
    padding: 5px;
    border-radius: 10px;
    transition: 0.5s ease;
    display: none;
    transition: 0.5s ease;
}
.NavBar .close:hover{
    color: #b9d928;
    background: #000;
    border: 1px solid #b9d928;
    box-shadow: 0 0 10px #b9d928;
}

.Bar_element_phone{
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 150%;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    gap: 50px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid #b9d92852;
    box-shadow: 0 8px 10px 0 #b9d92816;
    padding: 30px 70px;
    border-radius: 30px;
    display: none;
    z-index: 10;
}

.Bar_element_phone a{
    text-decoration: none;
    color: #bad928;
    font-size: 1.5em;
    font-weight: 700;
    text-wrap: nowrap;
}

.Bar_element_phone button{
    border: none;
    background: transparent;
    margin-top: 30px;
}

.Bar_element_phone button a{
    background: #bad928;
    color: #000;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 1.7em;
}
.home{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-top: 150px;

}

.Hero{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hero_img img{
    width:500px;
    background: rgba(134, 134, 134, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid #fff ;
    border-radius: 50% 0;
    transition: 0.5s ease;
}

.hero_img img:hover{
    box-shadow: 0 8px 10px 0 #a4a4a456;
    background: transparent;
    scale: 1.05;
    border: 1.5px solid #b9d928;
}

.hero_content{
    display: flex;
    flex-direction: column;
    width: 40%;
    z-index: 9;
}

.hero_content h3{
    font-size: 23.04px;
    color: #b9d928;
    margin-bottom: 20px;
}

.hero_content h1{
    font-size: 47.78px;
    color: #fff;
    margin-bottom: 20px;
    font-family: inter;
}

.hero_content h1 span{
    color: #b9d928;
    font-size: 40px;
    font-family: inter;
}
.hero_content .substitle p{
    line-height: 1.5;
    font-size: 1.3rem;
    font-weight: 500;
    font-family: inter;
}

.hero_content .social{
    display: flex;
    margin-top: 30px;
    gap: 30px;
}

.hero_content .social i{
    background: #b9d928;
    font-size: 2rem;
    color: #000;
    width: 60px;
    padding: 10px 0;
    border-radius: 25px 0;
    transition: 0.5s ease;
}

.hero_content .social i:hover{
    color: #b9d928;
    border: 2px solid #b9d928;
    background: transparent;
    box-shadow: 0 3px 7px #b9d92865;
    scale: .8;
}


.line {
    overflow: hidden;
    background: rgba(185, 217, 40, 0.703);
    box-shadow: 0 8px 62px 0 #b9d9285e;
    margin: 50px 0;
    rotate: -3deg;
    margin-bottom: 100px;
    transition: 0.3s ease;
    scale: 1.05;
}

.line:hover{
    background: transparent;
    border-top: 2px solid #00defa;
    border-bottom: 2px solid #00defa;
    box-shadow: 0 8px 62px 0 #00defa;
    scale: 1.01;
}
  
.line_track {
    display: flex;
    width: max-content;      
    gap: 60px;      
    animation: scroll 55s linear infinite;
}

.line_track:hover .line_elements{
    color: #00defa;
}
  
.line_elements {
    display: flex;
    gap: 80px;
    flex-shrink: 0;                 
    height: 80px;
    align-items: center;
    color: #000;
    transition: 0.3s ease;
}
  
  @keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-65%); } 
}

.line_elements h3{
    font-size: 25px;
    font-weight: 700;
    font-family: inter;
}


.line_elements i{
    font-size: 30px;
    font-weight: 400;
    margin-right: 10px;
}

.About_Me{
    width: 100%;
    height: 100%;
    padding-top: 10%;
    margin-bottom: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.about_container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    
}

.about_image_container{
    width: 30%;
    height: 100%;
    display: flex;
    align-items:center;
    justify-content: end;
    position: relative;
}

.about_icons img{
    position: absolute;
}

.about_icons .Code{
    right: 4%;
    top: 40%;
    border: 4px solid #00defa;
    padding: 5px; 
    border-radius: 80px;
    box-shadow: 0 0 15px #00defa;
}

.about_icons .Code,
.about_icons .wordpress,
.about_icons .figma,
.about_icons .paint{
    transition: 0.3s ease;
    animation: scale 15s linear infinite;
}

.about_icons .Code:hover,
.about_icons .wordpress:hover,
.about_icons .figma:hover,
.about_icons .paint:hover{
    scale: 1.17;
}

@keyframes scale {
    0% { 
        transform: translateY(-80%) translateX(-30%); 
    }
    50% { 
        transform: translateY(0%) translateX(10%); 
    }
    100%  { 
        transform: translateY(-80%) translateX(-30%); 
    } 
}

.about_icons .wordpress{
    top: 0;
    right: 4%;
    border: 4px solid #00defa;
    box-shadow: 0 0 15px #00defa;
    padding: 10px;
    border-radius: 80px;
}

.about_icons .figma{
    top: 10%;
    right: 80%;
    border: 4px solid #00defa;
    box-shadow: 0 0 15px #00defa;
    padding: 0px;
    border-radius: 80px;
}

.about_icons .paint{
    top: 70%;
    right: 100%;
    border: 5px solid #00defa;
    box-shadow: 0 0 15px #00defa;
    padding: 10px;
    border-radius: 80px;
}

.about_main_img{
    max-width: 500px;
    border-right: 5px solid white;
    border-radius: 50% 0;
}

.about_content{
    display: flex;
    align-items: center;
    width: 50%;
}

.about_content_container{
    max-width:750px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-left: 4px solid white;
    padding: 20px 40px 30px 90px;
    transition: 0.4s ease;

}

.about_content_container:hover{
    background:transparent;
}


.about_content_container h2{
    color: #00defa;
    font-size: 50px;
    margin-bottom: 61px;
  
}

.about_content_container h3{
    color: #00defa;
    font-size: 1.3rem;
    font-family: inter;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.about_content_container p{
    font-size: 1.1rem;
    line-height: 1.5rem;
    font-family: inter;
    font-weight: 300;
    margin-bottom: 8px;
}

.about_content_container h4{
    font-size: 1.1rem;
    font-family: inter;
    line-height: 1.5rem;
    font-weight: 500;
    margin-bottom: 50px;
}

.about_links{
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: center;

}

.about_link{
    text-decoration: none;
    color: #000;
    background:#00defa;
    padding: 10px 20px;
    font-size: 18px;
    font-family: inter;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
    text-wrap: nowrap;
}

.about_link:hover{
    background: transparent;
    color: #00defa;
    border: 1px solid #00defa;
    box-shadow: 0 5px 10px #00ddfa36;
    scale: 0.95;
}

.experience{
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: column;
}
.experience .tile_hed {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    background: linear-gradient(to bottom,transparent 2%, #b9d92862, #b9d928c7, #b9d928);
    padding: 18px 20px;
    border-radius: 12px;
    z-index: 3;
}

.experience .tile_hed h2{
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 10px;
    padding-top: 10px;
}

.experience .tile_hed p{
    font-weight: 600;
    line-height: 1.5;
    font-size: 15px;
    color: #000;
}

.exp_parent{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1520px;
    margin: 90px auto 0;
    position: relative;
    height: 100%;
}

.deep {
    width: 15px;
    height: 112%;
    border-radius: 12px;
    background: #b9d928;
    position: absolute;
    left: 50%;
    top: -11%;
    transform: translateX(-50%);
    z-index: 1;
}

.ele_exp{
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 100px;
}



.ele_exp1{
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 100px;
    align-items: end;
    margin-bottom: 30px;
}

.exp_cont{
    position: relative;
    width: 92%; 
    padding: 20px 20px 20px ;
    border: 1px solid #b9d928;
    background: rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(8px) saturate(150%);
    border-radius: 15px;
    transition:  0.4s ease;
}

.exp_cont:hover{
    scale: 1.02;
    background: transparent;
    border: 0;
    box-shadow: 0 8px 12px 0 rgba(208, 255, 0, 0.147);
}

.exp_cont .scale{
    width: 40px;
    height: 40px;
    background: #b9d928;
    position: absolute;
    right: -7.5%;
    top: 40%;
    transform: translate(-50%, -50%) rotate(45deg);
    transform: rotate(45deg);
    border-radius: 8px;
}

.exp_cont .scale2{
    width: 40px;
    height: 40px;
    background: #b9d928;
    position: absolute;
    left: -7.5%;
    top: 40%;
    transform: translate(-50%, -50%) rotate(45deg);
    transform: rotate(45deg);
    border-radius: 8px;
}

.exp_cont .img{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    border-radius: 50%;
}

.exp_cont .img img{
    border: 2px solid #b9d928;
    padding: 2px;
    border-radius: 50%;
}

.exp_cont .img h2{
    font-size: 20px;
    font-family: inter;
    color: #b9d928;
}

.exp_cont h3{
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.exp_cont p{
    font-weight: 300;
    line-height: 1.5;
    font-size: 15px;
}

.exp_phone{
    display: none;
    flex-direction: column;
}

.Etudiant{
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: column;
    margin-top: 250px;
}

.Etudiant .tile_hed {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    background: linear-gradient(to bottom,transparent 2%, #00ddfa5b, #00defa, #00defa);
    padding: 10px 20px;
    border-radius: 12px;
    z-index: 3;
}

.Etudiant .tile_hed h2{
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 10px;
    padding-top: 10px;
}

.Etudiant .tile_hed p{
    font-weight: 600;
    line-height: 1.5;
    font-size: 16px;
    color: #000;
}

.deep2 {
    width: 15px;
    height: 115%;
    border-radius: 12px;
    background:#00defa;
    position: absolute;
    left: 50%;
    top: -15%;
    transform: translateX(-50%);
    z-index: 1;
}

.etud_parent{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1520px;
    margin: 90px auto 0;
    position: relative;
    height: 100%;
}

.ele_etud{
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 150px;
}

.etud_cont{
    position: relative;
    width: 92%;
    padding: 20px 20px 20px;
    border: 1px solid #00defa;
    background: rgba(1, 58, 80, 0.12);
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(8px) saturate(150%);
    border-radius: 15px;
    transition: 0.4s ease;
}

.etud_cont .scale2 {
    width: 40px;
    height: 40px;
    background: #00defa;
    position: absolute;
    left: -7.5%;
    top: 40%;
    transform: translate(-50%, -50%) rotate(45deg);
    transform: rotate(45deg);
    border-radius: 8px;
}

.etud_cont .scale {
    width: 40px;
    height: 40px;
    background: #00defa;
    position: absolute;
    right: -7.5%;
    top: 40%;
    transform: translate(-50%, -50%) rotate(45deg);
    transform: rotate(45deg);
    border-radius: 8px;
}

.etud_cont .img {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    border-radius: 50%;
}

.etud_cont .img img {
    border: 2px solid #00defa;
    padding: 2px;
    border-radius: 50%;
}

.etud_cont .img h2 {
    font-size: 20px;
    font-family: inter;
    color: #00defa;
}

.etud_cont:hover{
    scale: 1.02;
    border: 0;
    background: #00000034;
    box-shadow: 0 8px 12px 0 #00ddfa2c;
}

.etud_cont h3 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}
.etud_cont p {
    font-weight: 300;
    line-height: 1.5;
    font-size: 16px;
}

.ele_etud1{
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 150px;
    align-items: end;
    margin-top: 100px;
}

.skills{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 250px;
}

.skills .title{
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.skills p {
    font-weight: 500;
    line-height: 1.5;
    font-size: 16px;
}

.titulo{
	font-size: 2.7em;
    font-weight: normal;
	padding: 10px 0 16px 0;
    margin: 0 0 30px;
	text-align:center;
	color:#00defa;
    background:#0000002b;
	border-radius:2px;
	border: 1px solid #00defa;  
    border-radius: 12px;
}

h2.plataformas {
  border: 1px solid #b9d928;  
  color: #b9d928;
}

h2.programas {
  border: 1px solid #ffa200;  
  color: #ffa200;

}
 
.container {
	width: 90%;
	margin: 0 auto; 
	overflow: hidden;
}

.col {
    width: 27%;
    margin: 0 3%;
    position: relative;
    float: left;
    font-size: 12px;
    line-height: 2em;
    padding: 5% 0 0;
}

.col .skills_a{
    display:flex;
    align-items:center;
    justify-content: space-between;
}
/*.col { width:101%; }*/
.skill { 
	list-style:none; 
	padding-top:30px;
}

.skill li { 
	margin-bottom:70px; 
	background:#030303; 
	height:6px; 
	border-radius:3px; 
	border-left:1px solid #111; 
	border-top:1px solid #111; 
	border-right:1px solid #333; 
	border-bottom:1px solid #333;  
}

.skill li em { 
	position:relative; 
  font-style: normal;
  font-size: 16px;
  text-align: center;
  color:#dedede;
	top:-28px;
}

.blueline { 
	height: 3px; 
	margin: 2px 0; 
	background: #00defa; 
	position: absolute;
	box-shadow: 0px 0px 10px 1px rgba(0,198,255,0.6);
}
.greenline { 
	height: 3px; 
	margin: 2px 0; 
	background: #b9d928; 
	position: absolute;
	box-shadow: 0px 0px 10px 1px rgba(173, 255, 47,0.4);
}
.redline { 
	height: 3px; 
	margin: 2px 0; 
	background: #ffa200; 
	position: absolute;
	box-shadow: 0px 0px 10px 1px rgba(255, 69, 0,0.4);
}

/* CSS - الكود ديالك الأصلي */
.titulo      { opacity:1; }
.html        { width:95%; }
.css         { width:90%; }
.php         { width:75%; }
.javascript  { width:70%; }
.jquery      { width:50%; }

.wordpresss  { width:90%; }
.prestashop  { width:95%; }
.joomla      { width:90%; }
.blogger     { width:65%; }
.tridion     { width:80%; }

.dreamweaver { width:90%; }
.illustrator { width:85%; }
.photoshop   { width:80%; }
.premiere    { width:80%; }
.flash       { width:70%; }

/* class للanimation عند scroll */
.animate.titulo      { animation:titulo 5s ease-out; }
.animate.html        { animation:html 2s ease-out; }
.animate.css         { animation:css 2s ease-out; }
.animate.php         { animation:php 2s ease-out; }
.animate.javascript  { animation:javascript 2s ease-out; }
.animate.jquery      { animation:jquery 2s ease-out; }

.animate.wordpresss  { animation:wordpress 2s ease-out; }
.animate.prestashop  { animation:prestashop 2s ease-out; }
.animate.joomla      { animation:joomla 2s ease-out; }
.animate.blogger     { animation:blogger 2s ease-out; }
.animate.tridion     { animation:tridion 2s ease-out; }

.animate.dreamweaver { animation:dreamweaver 2s ease-out; }
.animate.illustrator { animation:illustrator 2s ease-out; }
.animate.photoshop   { animation:photoshop 2s ease-out; }
.animate.premiere    { animation:premiere 2s ease-out; }
.animate.flash       { animation:flash 2s ease-out; }

/* keyframes ديالك يبقى كما هو */
@keyframes titulo      { 0% { opacity:0; } 100% { opacity:1; } }
@keyframes html        { 0% { width:0; } 100% { width:95%; } }
@keyframes css         { 0% { width:0; } 100% { width:90%; } }
@keyframes php         { 0% { width:0; } 100% { width:75%; } }
@keyframes javascript  { 0% { width:0; } 100% { width:70%; } }
@keyframes jquery      { 0% { width:0; } 100% { width:50%; } }

@keyframes wordpress   { 0% { width:0; } 100% { width:90%; } }
@keyframes prestashop  { 0% { width:0; } 100% { width:95%; } }
@keyframes joomla      { 0% { width:0; } 100% { width:90%; } }
@keyframes blogger     { 0% { width:0; } 100% { width:65%; } }
@keyframes tridion     { 0% { width:0; } 100% { width:80%; } }

@keyframes dreamweaver { 0% { width:0; } 100% { width:90%; } }
@keyframes illustrator { 0% { width:0; } 100% { width:85%; } }
@keyframes photoshop   { 0% { width:0; } 100% { width:80%; } }
@keyframes premiere    { 0% { width:0; } 100% { width:80%; } }
@keyframes flash       { 0% { width:0; } 100% { width:70%; } }


/*Projects*/
.Projects{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%; 
    padding-top: 120px;
}

.view-btns-container {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.Projects .title{
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.Projects .title_subtitle{
    font-size: 16px;
    padding-bottom: 30px;
}



.Projects .view_all {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
    border: 2px solid #00defa;
    background: rgba(0, 0, 0, 0.38);
    transition: 0.3s ease;
}

.Projects .view_all a {
    text-decoration: none;
    color: #00defa;
}


.Projects .view_all:hover a{
    color: #000;
}

.Projects .view_all:hover{
    background: #00defa;
    color: #000;
    scale: 1.09;
    box-shadow: 0 0 10px #00defa;
}





.Projects .container{
    width: 90%;
    padding: 0 5% 0;
    margin: 0 auto;
}

.items_links{
   width: 80%;
   margin: 40px auto;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 80px;
}

.item_link{
    font-size: 1.2rem;
    font-weight: 600;
    color: #00defa;
    border-radius: 30px;
    padding: 10px 20px;
    text-wrap: nowrap;
    cursor: pointer;
    transition: 0.5s ease;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}
.item_link:hover{
    background: #00defa;
    color: #000;
    scale: 1.09;
    box-shadow: 0 0 10px #00defa;
}

.menu-active{
    background: #00defa;
    color: #000;
    scale: 1.09;
    box-shadow: 0 0 10px #00defa;
}

.gallery{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.project-img{
    width: 100%;
    height: 100%;
    border-radius: 12px; 
    backdrop-filter: blur(2px);
    transition: 0.5s ease;
    animation: ScalAnimation .5s ease;
    overflow: hidden;

}

.project-img:hover{
    box-shadow: 0 0 12px #00ddfa8d;
}

@keyframes ScalAnimation{
    0%{
        transform: scale(0);
    }
    100%{
        transform: scale(1);
    }
}

.project-img:hover img{
    transform: scale(1.13);
    border-radius: 12px;
    background: #00defa;

}

.overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 150%;
    left: 0;
    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: column;
    padding-bottom: 32px;
    gap:10px;
    border-radius: 12px;
    transition: 0.3s ease-in-out;
}


.project-img:hover .overlay {
    top: 0;
    background: linear-gradient(transparent, #000000b2, #000);
    border: 1px solid #00defa;
}



.action-aria{
    display: flex;
    align-items: center;
    gap: 15px;
}

.overlay h4{
    font-size: 20px;
    color: #fff;
}

.overlay p{
    font-size: 14px;
    text-align: center;
    width: 90%;
}


.action-aria .btn {
    display: inline-block;
    width: fit-content;
    padding: 10px 20px;
    text-decoration: none;
    color: #000;
    border-radius: 12px;
    background: #00defa;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid transparent;
    transition: 0.4s ease;
}

.action-aria .btn:hover{
    background: transparent;
    border-color: white;
    color: white;
}

.gallery img{
    width: 100%;
    display: block;
    object-fit: cover;
    transition: 0.5s ease;
    
}

/* Testimonials  */
.testimonial {
    padding: 80px 30px;
    max-width: 1800px;
    margin: 0 auto;
}

.testimonial .title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.testimonial .title_subtitle {
    font-size: 16px;
    padding-bottom: 50px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-container {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.testimonialSwiper {
    padding: 20px 0 60px;
    overflow: hidden;
    width: 100%;
}

.testimonialSwiper .swiper {
    overflow: hidden;
}

.testimonialSwiper .swiper-wrapper {
    overflow: visible;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.testimonialSwiper .swiper-slide {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease !important;
}

.test_card {
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    height: auto;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.test_card:hover {
    border-color: #00defa;
    box-shadow: 0 8px 32px rgba(0, 222, 250, 0.2);
    transform: translateY(-5px) scale(1.02);
}

.test_card_header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.test_card_avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 222, 250, 0.3);
}


.test_card_info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #00defa;
    font-weight: 600;
}

.test_card_info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.test_card_rating {
    display: flex;
    gap: 5px;
    color: #ffd700;
    font-size: 1.2rem;
}

.test_card_content {
    flex: 1;
}

.test_card_content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* Swiper Navigation */
.testimonialSwiper .swiper-button-next,
.testimonialSwiper .swiper-button-prev {
    color: #00defa;
    background: rgba(0, 221, 250, 0);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(0, 222, 250, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonialSwiper .swiper-button-next:after,
.testimonialSwiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.testimonialSwiper .swiper-button-next:hover,
.testimonialSwiper .swiper-button-prev:hover {
    background: rgba(0, 222, 250, 0.2);
    border-color: #00defa;
    transform: scale(1.1);
}

.testimonialSwiper .swiper-button-next.swiper-button-disabled,
.testimonialSwiper .swiper-button-prev.swiper-button-disabled {
    opacity: 0.3;
}

/* Swiper Pagination */
.testimonialSwiper .swiper-pagination {
    bottom: 0;
}

.testimonialSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonialSwiper .swiper-pagination-bullet-active {
    background: #00defa;
    width: 30px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 222, 250, 0.5);
}

.message{
    padding: 100px 30px 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding-top: 250px;

}

.message_container{
    max-width: 800px;
    width: 100%;
    background:transparent ;
    border-radius: 24px;
    padding: 40px 30px 45px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1px);
}

.message_container:hover{
    box-shadow: 0 25px 30px #0099cc27;
}

.message_title{
    font-size: 2.4rem;
    margin-bottom: 10px;
    text-align: center;
    color: #00defa;
    margin-bottom: 30px;
}

.message_subtitle{
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.message_form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.message_form_row{
    display: flex;
    gap: 20px;
}

.message_field{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.message_field label{
    font-size: 0.95rem;
    font-weight: 600;
    color: #b9d928;
}

.message_field input,
.message_field textarea{
    max-width: 100%;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 222, 250, 0.5);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.95rem;
    color: #ffffff;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    font-family: inherit;
}

.message_field input::placeholder,
.message_field textarea::placeholder{
    color: rgba(255, 255, 255, 0.45);
}

.message_field input:focus,
.message_field textarea:focus{
    border-color: #00defa;
    box-shadow: 0 5px 8px rgba(0, 221, 250, 0.223);
    background: rgba(0, 0, 0, 0.9);
}

.message_btn{
    align-self: center;
    margin-top: 15px;
    background: #bad928;
    color: #000;
    padding: 12px 18px;
    border-radius: 12px;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.message_btn:hover{
    transform: scale(1.1);
    box-shadow: 0 5px 8px #b9d92838 ;
    color: #b9d928;
    background: transparent;
    border: 1px solid #b9d928;
}

.message_btn:active{
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.form-status{
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 18px;
}

.form-status.success{
    color: #bad928;
}

.form-status.error{
    color: #ff7676;
}

/* Footer */
.footer{
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(0, 222, 250, 0.2);
    padding: 60px 30px 30px;
    margin-top: 80px;
    position: relative;
}

.footer::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00defa, #b9d928, #00defa, transparent);
}

.footer_container{
    max-width: 1400px;
    margin: 0 auto;
}

.footer_content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_brand{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer_logo{
    background: #00000060;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 0 15px rgba(67, 67, 67, 0.505);
    width: 80px;
}

.footer_logo_b{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
}

.footer_logo_b img{
    width: 70px;
}

.footer_logo_b .text-logo{
    color: #0099cc;
    font-size: 25px;
}

.footer_logo_b .text-logo span{
    color: #b9d928;
}


.footer_brand h3{
    font-size: 1.4rem;
    color: #00defa;
    margin: 0;
    font-weight: 700;
}

.footer_brand p{
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.footer_tagline{
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.85rem !important;
    width: 90%;
    font-style: italic;
    margin-top: 8px !important;
}

.footer_links h4,
.footer_contact h4,
.footer_social h4{
    font-size: 1.1rem;
    color: #b9d928;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer_links ul,
.footer_contact ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer_links a{
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer_links a:hover{
    color: #00defa;
    transform: translateX(5px);
}

.footer_contact li{
    display: flex;
    align-items: center;
}

.footer_contact a{
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.footer_contact a:hover{
    color: #00defa;
}

.footer_contact i{
    color: #b9d928;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.footer_social_links{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer_social_links a{
    width: 45px;
    height: 45px;
    background: rgba(0, 222, 250, 0.1);
    border: 1px solid rgba(0, 222, 250, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00defa;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer_social_links a:hover{
    background: #00defa;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 222, 250, 0.4);
    border-color: #00defa;
}

.footer_bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
}

.footer_copyright p,
.footer_made p{
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer_made{
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer_made i{
    color: #ff7676;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.footer_made .fa-code{
    color: #00defa;
    animation: none;
}













@media screen and (min-width: 768px) and (max-width: 1024px) {
    .NavBar .Bar_element{
        gap: 30px;
    }
    .module{
        width: 400px;
        top:440px;
        right: -165px;
    }

    .home{
        padding-top: 0px;
    }
    .NavBar .Bar_element a{
        font-size: 1rem;
    }
    .NavBar .text-logo{
        font-size: 1rem;
    }
    .NavBar .Bar_element button{
        margin-left: 10px;
    }

    .NavBar .Bar_element button a{
        font-size: 1rem;
    }

    .NavBar img{
        width: 40px;
    }

    .Hero {
        margin-top: 150px;
    }

    .hero_img img{
        width: 320px;
    }

    .hero_content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .hero_content h1 {
        font-size: 36px;
    }
    .hero_content .substitle p{
        font-size: 1.1rem;
    }

    .line_elements {
        height: 70px;
    }

    .line_elements h3{
        font-size: 33px;
    }
    .line_elements i {
        font-size: 32px;
    }

    .about_main_img{
        width: 300px;
        margin-bottom: 140px;
    }

    .about_content{
        width: 65%;
    }

    .about_content_container{
        padding: 30px ;
        width:100% ;
    }

    .about_content_container h2{
        font-size: 30px;
        margin-bottom: 20px;
    }

    .about_content_container h3{
        font-size: 14px;
    }

    .about_content_container p{
        font-size: 14px;
    }

    .about_content_container h4{
        font-size: 14px;
        margin-bottom: 10px;
    }
    .about_link{
        font-size: 14px;
        text-wrap: nowrap;
    }

    .about_icons img{
        width: 60px;
    }
    .about_icons .Code,
    .about_icons .wordpress,
    .about_icons .figma,
    .about_icons .paint{
        border: 2px solid #00defa;
    }
    .about_icons .Code:hover,
    .about_icons .wordpress:hover,
    .about_icons .figma:hover,
    .about_icons .paint:hover{
        border: 2px solid #b9d928;
    }

    .about_icons .paint{
        top: 80%;
        right: 50%;
    }

    .exp_cont .img h2{
        font-size: 20px;
    }

    .exp_cont h3{
        font-size: 15px;
    }

    .exp_cont p{
        font-size: 14px;
    }

    .ele_exp{
        gap: 110px;
    }

    .deep{
        width: 10px;
    }

    .exp_cont .scale{
        width: 20px;
        height: 20px;
        border-radius: 5px;
        right: -7%;
        top: 40%;
    }

    .exp_cont .scale2{
        width: 20px;
        height: 20px;
        border-radius: 5px;
        left: -7%;
        top: 40%;
    }

    .exp_parent{
        margin: 100px auto;
    }

    .etud_cont h3{
        font-size: 15px;
    }

    .etud_cont p{
        font-size: 14px;
    }

    .deep2 {
        width: 10px;
    }

    .etud_cont .scale {
        width: 20px;
        height: 20px;
        border-radius: 5px;
        right: -7%;
        top: 40%;
    }

    .etud_cont .scale2 {
        width: 20px;
        height: 20px;
        border-radius: 5px;
        left: -7%;
        top: 40%;
    }

    .skill li em{
        font-size: 14px;
    }

    .skills .container{
        padding: 0;
    }

    .titulo{
        font-size:1.2rem;
        padding: 8px 0 12px 0;
    }

    .skill li em{
        text-wrap: nowrap;
    }

    .container{
        width: 90%;
    }

    .Projects .title_subtitle{
        font-size: 1rem;
        text-align: center;
        width: 80%;
    }

    .items_links{
        width: 90%;
        gap: 30px;
    }

    .item_link{
        font-size: 1rem;
    }
    
    .gallery{
        grid-template-columns: repeat(3, 1fr);
    }

    .overlay{
        padding-bottom: 10px;
    }

    .overlay h4{
        font-size: 18px;
    }

    .overlay p{
        font-size: 12px;
    }

    .action-aria .btn{
        font-size: 12px;
        padding: 5px 10px;
        border-radius: 8px;
    }

    .testimonial {
        padding: 60px 20px;
    }

    .testimonial .title {
        font-size: 2rem;
    }

    .testimonial .title_subtitle {
        font-size: 1.2rem;
        padding-bottom: 30px;
    }

    .testimonial-container {
        max-width: 100%;
        padding: 30px 10px;
    }

    .test_card {
        padding: 30px;
        min-height: 280px;
    }

    .test_card_header {
        gap: 15px;
    }

    .test_card_avatar {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .test_card_info h4 {
        font-size: 1.1rem;
    }

    .test_card_info p {
        font-size: 0.85rem;
    }

    .test_card_rating {
        font-size: 1rem;
        gap: 3px;
    }

    .test_card_content p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .testimonialSwiper .swiper-button-next,
    .testimonialSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .testimonialSwiper .swiper-button-next:after,
    .testimonialSwiper .swiper-button-prev:after {
        font-size: 16px;
    }

    .testimonialSwiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .testimonialSwiper .swiper-pagination-bullet-active {
        width: 25px;
    }

    /* Footer tablet */
    .footer{
        padding: 50px 20px 25px;
    }

    .footer_content{
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .footer_bottom{
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    /* Message section tablet */
    .message{
        padding: 80px 20px 100px;
    }

    .message_container{
        max-width: 95%;
        padding: 30px 24px 35px;
    }

    .message_title{
        font-size: 2rem;
    }

    .message_subtitle{
        font-size: 0.95rem;
    }
    .message_field input, .message_field textarea {
        max-width: 90%;
    }

}



@media screen and (min-width: 275px) and (max-width: 767px) {

    .module{
        width: 400px;
        top:430px;
        right: -165px;
    }

    .home{
        padding-top: 0px;
    }
    .NavBar .Bar_element {
        display: none;
    }
    .NavBar .menu{
        display: block;
    }
    .NavBar img{
        width: 60px;
    }

    .Hero{
        flex-wrap: wrap;
        margin-top: 120px;
    }

    .hero_content{
        order: 1;
    }
    .hero_img{
        order: 2;
    }
    .hero_img img {
        width: 350px;
    }
    .hero_content {
        width: 80%;
    }
    .hero_content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .hero_content h1 {
        font-size: 36px;
    }
    .hero_content .substitle p{
        font-size: 1.1rem;
    }
    .line_elements h3{
        font-size: 27px;
    }
    .line_elements i {
        font-size: 27px;
    }
    .line_elements {
        height: 50px;
    }

    .about_container{
        flex-wrap: wrap;
        border-right: 5px solid #fff;
    }
    .about_image_container{
        width: 100%;
    }
    .about_content{
        width: 80%;
    }
    .about_main_img{
        width: 400px;
        margin-bottom: 0px;
    }

    .about_content{
        width: 100%;
        
    }

    .about_content_container{
        padding: 30px ;
        width:100% ;
        border-left:0px;
    }

    .about_content_container h2{
        font-size: 30px;
        margin-bottom: 20px;
    }

    .about_content_container h3{
        font-size: 14px;
    }

    .about_content_container p{
        font-size: 14px;
    }

    .about_content_container h4{
        font-size: 14px;
        margin-bottom: 10px;
    }
    .about_link{
        font-size: 14px;
        text-wrap: nowrap;
    }

    .about_icons img{
        width: 60px;
    }
    .about_icons .Code,
    .about_icons .wordpress,
    .about_icons .figma,
    .about_icons .paint{
        border: 2px solid #00defa;
    }
    .about_icons .Code:hover,
    .about_icons .wordpress:hover,
    .about_icons .figma:hover,
    .about_icons .paint:hover{
        border: 2px solid #b9d928;
    }

    .about_icons .paint{
        top: 70%;
        right: 80%;
    }

    .about_links{
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }

    .exp_cont .img h2{
        font-size: 20px;
    }

    .exp_cont h3{
        font-size: 15px;
    }

    .exp_cont p{
        font-size: 14px;
    }

    .ele_exp{
        gap: 60px;
        flex-wrap: wrap ;
        width: 85%;
        align-items: center;
    }

    .deep{
        display: none;
    }

    .exp_cont .scale{
        display: none;
    }

    .exp_cont .scale2{
       display: none;
    }


    .exp_parent{
        flex-direction: column;
        margin: 100px auto;
    }
    
    .ele_exp1{
        width: 85%;
        align-items:center;
        margin-top: 60px;
        margin-left: 20px;
        gap: 60px;
        display: none;

    }
    .exp_phone{
        display: flex;
    }
    .exp_cont.a { order: 1; }
    .exp_cont.b { order: 2; }
    .exp_cont.c { order: 3; }
    .exp_cont.d { order: 4; }
    .exp_cont.e { order: 5; }
    .experience .tile_hed h2{
        font-size: 2.2rem;
    }
    .experience .tile_hed p{
        font-size: 14px;
    }
    .experience .tile_hed{
        width: 80%;
    }

    .Etudiant{
        margin-top: 40px;
    }

    .ele_etud1{
        display: none;
    }

    .ele_etud{
        width: 85%;
        gap: 60px;
        align-items: center;
    }
    .deep2{
        display: none;
    }
    .etud_cont .scale2 {
      display: none;
    }

    .etud_cont .scale{
        display: none;
    }

    .Etudiant .tile_hed{
        width: 80%;
    }
    
    .Etudiant .tile_hed h2{
        flex: 2.2rem;
    }

    .Etudiant .tile_hed p {
    font-size: 14px;
    }

    .skills .title{
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .col {
        width: 90%;
    }

    .items_links{
        width: 100%;
        justify-content: center;
        gap: 0;
        flex-wrap: wrap;
        margin: 30px 0;
    }
    .item_link {
        margin:10px;
        font-size: 14px;
    }

    .Projects .container{
        padding: 0;
    }

    .gallery{
        grid-template-columns: 1fr;
    }
    .Projects{
        height: 100%;
        margin: 150px auto 100px;
    }

    .project-img{
        height: max-content;
    }

    .Projects .title_subtitle{
        text-align: center;
        font-size: 20px;
        width: 90%;
    }
    .skills .title .subtitlee{
        text-align: center;
        font-size: 16px;
        width: 80%;
    }

    /* Message section mobile */
    .message{
        padding: 60px 15px 90px;
    }

    .message_container{
        max-width: 100%;
        padding: 26px 18px 30px;
        border-radius: 18px;
    }

    .message_title{
        font-size: 1.8rem;
    }

    .message_subtitle{
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    .message_form_row{
        flex-direction: column;
        gap: 16px;
    }

    .message_btn{
        width: 100%;
        justify-content: center;
    }

    .testimonial {
        padding: 50px 15px;
        max-width: 100%;
    }

    .testimonial .title {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .testimonial .title_subtitle {
        font-size: 0.95rem;
        padding-bottom: 25px;
    }

    .testimonial-container {
        max-width: 100%;
        padding: 20px 0;
        overflow: visible;
    }

    .testimonialSwiper {
        padding: 10px 0 50px;
    }

    .test_card {
        padding: 20px;
        min-height: auto;
        border-radius: 15px;
        gap: 15px;
    }

    .test_card_header {
        gap: 12px;
        flex-wrap: wrap;
    }

    .test_card_avatar {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .test_card_info h4 {
        font-size: 0.95rem;
        margin-bottom: 3px;
    }

    .test_card_info p {
        font-size: 0.8rem;
    }

    .test_card_rating {
        font-size: 0.9rem;
        gap: 2px;
        flex-wrap: wrap;
    }

    .test_card_content {
        flex: 1;
    }

    .test_card_content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .testimonialSwiper .swiper-button-next,
    .testimonialSwiper .swiper-button-prev {
        width: 35px;
        height: 35px;
        display: none;
    }

    .testimonialSwiper .swiper-pagination {
        bottom: 10px;
        position: relative;
        margin-top: 20px;
    }

    .testimonialSwiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }

    .testimonialSwiper .swiper-pagination-bullet-active {
        width: 20px;
        border-radius: 4px;
    }

    /* Footer mobile */
    .footer{
        padding: 40px 15px 20px;
        margin-top: 60px;
    }

    .footer_content{
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 35px;
        padding-bottom: 30px;
    }

    .footer_brand{
        text-align: center;
        align-items: center;
    }

    .footer_logo{
        margin: 0 auto 8px;
    }

    .footer_links h4,
    .footer_contact h4,
    .footer_social h4{
        font-size: 1rem;
        margin-bottom: 15px;
        text-align: center;
    }

    .footer_links ul{
        align-items: center;
    }

    .footer_contact ul{
        align-items: center;
    }

    .footer_contact a{
        justify-content: center;
    }

    .footer_social_links{
        justify-content: center;
    }

    .footer_bottom{
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer_copyright p,
    .footer_made p{
        font-size: 0.85rem;
    }

    .Projects .view_all{
        margin: 50px 0;
    }

}