@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
    background-color: #151515;
    scroll-behavior: smooth;
}
::-webkit-scrollbar-track
{
	border: 1px solid black;
	background-color: #151515;
}
::-webkit-scrollbar
{
	width: 10px;
	background-color: #151515;
}
::-webkit-scrollbar-thumb
{
	background-color: #00bfff;	
}

/* Navbar */

nav {
    display: flex;
    justify-content: right;
    align-items: center;
    width: 100%;
    height: 75px;
    background-color: #151515;
    border-bottom: 2px solid #ccc;
}
nav .logo {
    position: absolute;
    top: 5%;
    left: 12.5%;
    transform: translate(-50%, -50%);
    color: #fff;
    cursor: pointer;
    font-weight: bold;
}
nav .logo a{
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    margin-right: 20px;
}
nav ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-right: 5%;
}
nav ul a {
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    margin-right: 20px;
    transition: all 0.3s ease-in-out;
}
nav ul a:last-child {
    margin-right: 0;
}
nav ul a:hover {
    color: #00bfff;
}

/* Home Container */

.Home-Container {
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ChatToggleContainer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background-color: transparent;
}
.ChatToggleButton {
    width: 60px;
    height: 60px;
    background: #00bfff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    animation: animToggle 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    max-height: 600px;
}
.ChatToggleButton:hover {
    background: #009acd;
}
.ChatToggleButton i {
    color: #fff;
    font-size: 28px;
}
.ChatBox {
    width: 50px;
    height: 450px;
    max-height: 600px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    animation: fadeIn 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    overflow: auto;
}
.ChatBox.hidden {
    display: none;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.ChatBox {
    border-radius: 15px;
    width: 70%;
    height: 90%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: #151515;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.Chating {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
    scroll-behavior: smooth;
}
.MessageBox, .MessageBoxIA {
    background-color: #151515;
    padding: 10px;
    border-radius: 10px;
    max-width: 70%;
    margin: 10px 0;
    align-self: flex-end;
    position: relative;
    color: #ccc;
    overflow: hidden;
    white-space: pre-wrap;
    word-wrap: break-word;
    height: auto;
    min-height: 20px;
    display: block;
    flex-shrink: 0;
    max-height: 200px;
}
.MessageBox {
    left: -50px;
}
.MessageBoxIA {
    color: #101010;
    background-color: #00bfff;
    align-self: flex-start;
    left: 30px;
    color: #fff;
}
.InputBox {
    width: 100%;
    height: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-top: 1px solid #ccc;
}
#Input-Chat {
    width: 85%;
    padding: 10px;
    border-bottom: 2px solid #ccc;
    outline: none;
    transition: 0.2s;
}
#Input-Chat:focus {
    border-bottom: 2px solid #0056b3;
}
.bx-send {
    font-size: 25px;
    color: #00bfff;
    cursor: pointer;
    margin-left: 0px;
    transition: 0.2s;
}
.bx-send:hover {
    color: #0056b3;
}
.design-box{
    width: 100%;
    height: 100%;
}
.design-box .design-box-1{
    width: 750px;
    height: 550px;
    background-color: #00bfff;
    position: absolute;
    top: 125px;
    left: -8%;
    transform: skewX(-15deg);
    transition: 0.2s;
}
.design-box .design-box-1 #box1{
    width: 150px;
    height: 50px;
    background-color: #151515;
    position: absolute;
    top: 80%;
    left: 50%;
    transform: skewX(15deg);
    transition: 0.2s;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    color: #fff;
    
}
.design-box .design-box-1 #box1:hover{
    background-color: #00bfff;
    border: 2px solid #151515;
}
.design-box .design-box-2{
    width: 750px;
    height: 550px;
    background-color: #00bfff;
    position: absolute;
    top: 125px;
    right: -38%;
    transform: skewX(-15deg);
    transition: 0.2s;
}
.design-box .design-box-2 #box2{
    width: 150px;
    height: 50px;
    background-color: #151515;
    position: absolute;
    top: 80%;
    left: 40%;
    transform: skewX(15deg);
    transition: 0.2s;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    color: #fff;
}
.design-box .design-box-2 #box2:hover{
    background-color: #00bfff;
    border: 2px solid #151515;
}
/* About Container */

.About-Container {
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.About-Container .Paragraf {
    position: relative;
    top: 200px;
    width: 70%;
    height: 500px;
    border-radius: 5px;
}
.About-Container .Paragraf p {
    margin: 10px;
    color: #fff;
}
.About-Container .Paragraf button {
    width: 200px;
    height: 50px;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 40%;
    cursor: pointer;
    background: #00bfff;
    border: 0px;
    color: #fff;
    border-radius: 5px;
    transition: 0.2s;
    font-size: 16px;
}
.About-Container .Paragraf button:hover {
    background: #009acd;
}
.About-Container .Paragraf .VisualisationCV{
    left: 60%;
}
.limit-About {
    width: 10px;
    height: 5px;
}

/* Portfolio Container */

.Portfolio-Container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.Portfolio-Container span {
    width: 30%;
    max-width: 350px;
    height: 350px;
    margin: 50px;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.Portfolio-Container span h2 {
    position: relative;
    color: #fff;
}
.Portfolio-Container span img {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dark-blue);
}

/* Portfolio BTS Container */

.Portfolio-BTS-Container {
    width: 100%;
    height: 150px;
    border-bottom: 1px solid var(--dark-blue);
    display: flex;
    justify-content: center;
    align-items: center;
}
.Portfolio-BTS-Container button {
    width: 400px;
    height: 50px;
    position: relative;
    cursor: pointer;
    border: 0px;
    color: #fff;
    border-radius: 5px;
    transition: 0.2s;
    font-size: 16px;
    background: #00bfff;
}
.Portfolio-BTS-Container button:hover{
    background: #009acd;
}

/* Certificat Container */

.Certificat-Container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--dark-blue);
}
.Certificat-Container span {
    width: 50%;
    max-width: 600px;
    height: 350px;
    margin: 50px;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.Certificat-Container span img {
    width: 100%;
    height: 100%;
}

/* Contact Container */

.Contact-Container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background: #151515;
}
form {
    display: flex;
    gap: 20px;
    background: #151515;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 600px;
}
.Left-Form, .Right-Form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 50%;
    position: relative;
}
label {
    color: #ccc;
    font-weight: bold;
    font-size: 14px;
}
input, textarea {
    padding: 10px;
    border: none;
    border-bottom: 2px solid #ccc;
    border-radius: 0;
    font-size: 14px;
    outline: none;
    color: #ccc;
}
input:focus, textarea:focus {
    border-bottom: 2px solid #00bfff;
}
textarea {
    height: 194px;
    resize: none;
}
.Contact-Container button {
    background: #00bfff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    position: absolute;
    top: 92%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
}
.Contact-Container button:hover {
    background: #009acd;
}

/* Footer */

footer {
    background-color: #151515;
    color: #ccc;
    padding: 20px 10px;
    text-align: center;
    font-family: Arial, sans-serif;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-content p {
    margin: 10px 0;
}
.footer-content ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    margin: 10px 0;
}
.footer-content ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}
.footer-content ul li a:hover {
    color: #00bfff;
}
.social-icons {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    margin: 15px 0 0;
}
.social-icons li a {
    font-size: 24px;
    color: #ccc;
    transition: color 0.3s ease;
}
.social-icons li a:hover {
    color: #00bfff;
}

