@font-face {
    font-family: 'Syne';
    src: local('Syne Regular'), 
         url('fonts/Syne/static/Syne-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Syne';
    src: local('Syne Medium'), 
         url('fonts/Syne/static/Syne-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Syne';
    src: local('Syne SemiBold'), 
         url('fonts/Syne/static/Syne-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Syne';
    src: local('Syne Bold'), 
         url('fonts/Syne/static/Syne-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Syne';
    src: local('Syne ExtraBold'), 
         url('fonts/Syne/static/Syne-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Syncopate';
    src: local('Syncopate Regular'), 
         url('fonts/Syncopate/Syncopate-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Syncopate';
    src: local('Syncopate Bold'), 
         url('fonts/Syncopate/Syncopate-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
    font-family: 'Syne';
    list-style: none;
}

:root {
    --background: #F9F5F2;
    --second-background: #F7F4FF;
}

body {
    min-height: 100vh;
    background-color: var(--background);
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1em 15%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    backdrop-filter: blur(10px);
    z-index: 1000;
    border: 2px solid #1d1d1d;
}

ul {
    display: flex;
    align-items: center;
    gap: 3em;
}

nav ul a {
    color: #1d1d1d;
    transition:  0.2s ease-in-out;
    font-family: 'Syne';
    font-weight: 700;
}

nav ul a:hover {
    color: #B76EFF;
}

.logo img {
    width: 100px; 
    max-width: 120px; 
    height: auto; 
    display: block; 
}

.logo img:hover{
	transition: 0.2s ease-in-out;
	opacity: 0.8;
}

.logo span {
	width: 80px;
	height: auto;
    color: #7D05F0;
    font-family: 'Syncopate';
}

.logo:hover {
    opacity: 1;
}

.btn {
    padding: 0.8em 2.5em;
    background-color: #E7CDFF;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 2em;
    font-size: 1.1em;
    border: 2px solid #1d1d1d;
    cursor: pointer;
    transition: 0.3s ease-in-out;   
}

.btn:hover {
    background-color: #7D05F0;
    color: var(--background);
}

.btn.clicked {
    background: linear-gradient(to right, #7D05F0, #B96EFC);
    color: var(--background);
}

span {
    background: linear-gradient(to right,#7D05F0, #B96EFC);
    background-clip: text;
    color: transparent;
}

section {
    min-height: 100vh;
    padding: 8rem 12%;
    border: 2px solid #1d1d1d;;
    transition: 0.2s ease-in-out;
}

#menu {
    color: #7D05F0;
    font-size: 3em;
    display: none;
}

/* Home Section */
#home {
    display: flex;
    align-items: left;
    justify-content: left;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

#home.active {
    opacity: 1;
    transform: translateY(0);
}

#home .home-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

#home img {
    position: relative;
    width: 30.5vw;
    margin-top: 7em;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
}

#home.active img {
    opacity: 1;
    transform: translateY(0);
}

#home img:hover {
    transform: translateY(-5px) scale(1.1);
    transition: transform 0.2s ease-in;
}

.home-cv {
    text-decoration: none; 
    color: #1d1d1d;
}

.info-box {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
    gap: 1.5rem;
    max-width: 900px;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease-out 0.5s, transform 1s ease-out 0.5s;
}

#home.active .info-box {
    opacity: 1;
    transform: translateX(0);
}

.info-box p {
    padding-top: 40px;
    color: #1d1d1d;
    font-family: 'Syncopate';
    font-size: 20px;
    line-height: 45px;
}

.info-box h1 {
    font-size: 3.5em;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    line-height: 80px;
    width: 100%;
    border-right: 5px solid;
    white-space: nowrap;
    overflow: hidden;
    animation: 
        typing 2s steps(14),
        cursor .4s step-end infinite alternate;
}

@keyframes cursor {
    50% { border-color: transparent }
}

@keyframes typing {
    from { width: 0 }
}

.info-box h3 {
    font-size: 2.7em;
    font-family: 'Syncopate';
    font-weight: 450;
}

.fading-first-name {
    position: absolute;
    width: 100%;
    font-size: 17vw;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    white-space: nowrap; 
    text-align: center; 
    overflow: hidden;
    color: #0000000D; 
    top: 25%; 
    left: 50%;
    transform: translate(-50%, -50%); 
    z-index: -1;
}

.fading-last-name {
    position: absolute;
    width: 100%;
    font-size: 12.6vw;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    white-space: nowrap; 
    text-align: center; 
    overflow: hidden;
    color: #0000000D;
    top: 88%; 
    left: 49.5%;
    transform: translate(-50%, -50%); 
    z-index: -1;
}

.btn-box {
    display: flex;
    gap: 1em;
}

::-webkit-scrollbar {
    width: 20px;
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #7D05F0, #B96EFC);
    border-top: 2px solid #1D1D1D;
    border-bottom: 2px solid #1D1D1D;
}

#about {
    background-color: var(--second-background);
    display: flex;
    flex-direction: row !important;
    align-items: center;
    justify-content: space-evenly;
    gap: 5em;
    border-top: none;
    border-bottom: 2px solid #1d1d1d;
	opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

#about.active {
    opacity: 1;
    transform: translateY(0);
}

#about .about-image {
    display: flex;
    order: 2;
    width: 30vw;
    max-width: 100%; 
}

#about .about-image  img{
    width: 30vw;
}

.about-container {
    display: flex;
    flex-direction: column;
    text-align: left;
    order: 1;
}

.about-container h1 {
    font-size: 4em;
    font-weight: 800;
    line-height: 1.5;
}

.about-container p {
    font-family: 'Syne';
    font-size: 20.5px;
    line-height: 2;
    color: #1d1d1d;
    opacity: 0.8;
    width: 100%;
}

.tools-row {
    display: flex;
    justify-content: space-between;
    align-self: center;
    align-items: center;
    align-content: center;
    gap: 60px; 
    margin-top: 10px;
    width: 90%;
    max-width: 600px;
}

.dev-tools, .creative-tools {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 30px;
}

.icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.icons img {
    flex: 1 1 calc(33.33% - 10px); 
    max-width: 35px;
    width: 35px; 
    height: 35px; 
    box-sizing: border-box;
	transition: 0.3s ease-in-out;	
}

.dev-tools h2,
.creative-tools h2,
.microsoft-tools h2 {
    margin-top: 20px;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    background: linear-gradient(to right, #7D05F0, #B96EFC);
    background-clip: text;
    color: transparent;
}

.icons img:hover {
    transform: translateY(-5px);
    box-shadow: #00000033;
}

#services {
	border-top: none;
    background-color: var(--background);
}

#services h1 {
    text-align: center;
    font-family: 'Syne';
    font-weight: 800;
    font-size: 5em;
    margin-bottom: 10px;
    margin: 0.5em 0;
}

#services .services-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2em;
}

.services-content .box {
    border-radius: 2rem;
    flex-direction: column;
    justify-content: center;
    background: #fbfaff;
    box-shadow: 4px 4px 10px #1d1d1d66;
    object-fit: cover;
    padding: 3em;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.services-content .box:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 15px #00000033;
}

.services-content .box h3 {
    margin-top: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1.5em;
    color: #1d1d1d;
}

.services-content .box p {
    color: #5e5858;
}

.services-content .box img {
    min-width: 25px;
    border-radius: 0.5em;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-content .box {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.services-content .box.fade-in {
    opacity: 1;
    transform: translateY(0);
}

#demo-reel {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; 
    background-color: black; 
}

#demo-reel-video {
    max-width: 90%;
    max-height: 80vh; 
    border-radius: 10px;
}

#toggle-video {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.5em;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

#toggle-video:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.more-text {
    display: none;
  }

.read-more-btn {
    background: none;
    border: none;
    color: #7D05F0;
    cursor: pointer;
    font-weight: bold;
    padding: 0;
    margin-top: 0.5em;
    font-size: 0.95em;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    max-width: 80%;
    max-height: 80%;
    border-radius: 1rem;
}

.close {
    position: absolute;
    top: 30px;
    right: 45px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

#projects {
    border-top: none;
    background-color: var(--second-background);
    padding: 8em 5%;
}

#projects h1 {
    font-size: 4em;
    font-weight: 800;
    text-align: center;
    margin: 0.5em 0;
}

#projects .btn-box {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

#projects .btn {
    text-decoration: none;
    color: #1D1D1D;
    padding-left: 60px;
    padding-right: 60px;
}

#projects .btn:hover {
    color: #ffffff;
}

.projects-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.projects-card {
    width: 400px;
    max-width: 400px;
    flex: 1 1 300px;
    background: #fbfaff;
    box-shadow: 4px 4px 10px #1d1d1d66;
    margin: 1rem;
    padding: 1.5rem;
    border-radius: 2rem;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.projects-card:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 15px #00000033;
}

.projects-card .projects-description {
    margin-top: 15px;
    color: #5e5858;
}

.projects-image {
    display: block;
    border-radius: 1.5rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    width: 100%;
    aspect-ratio: 4 / 3; 
}

.projects-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
    display: block;
    cursor: pointer;
}

.projects-img:hover {
    transform: scale(1.05);
}

.projects-skills {
    display: flex;
    align-items: center;
    column-gap: 0.75rem;
    border-radius: 0.5rem;
    margin: 20px 0 1.5rem;
    padding-inline: 0.75rem;
    width: max-content;
    height: 40px;
}

.projects-skills img {
    width: 36px;
    height: 36px;
    transition: transform 0.3s ease-in-out;
}

.projects-skills img:hover {
    transform: translateY(-3px);
}

.filter-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2em 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6em 1.5em;
    border: none;
    background-color: #f0f0f0;
    color: #1d1d1d;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #1d1d1d;
    color: #fff;
}


#contact h1 {
    text-align: center;
    font-size: 4em;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 50px;
}

.contact {
    border-top: none;
}
.contact .container .content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.contact-left h2 {
    color: #2a2a2a;
    font-size: 2.1em;
    font-weight: 700;
    margin-bottom: 40px;
}

.contact-list  {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1em;
}

.contact-list li {    
    margin-bottom: 40px;
}

.contact-list li h3 {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 10px;
}   

.contact-list li h3 i{
    color: #7D05F0;
    font-size: 1.3em;
    margin-right: 10px;
}

.contact-list li span {
    color:#7D05F0;
    font-weight: 200;
    font-size: 1.2em;
    margin-left: 40px;
}


.contact-list li a {
    color: #7D05F0;
    font-display: none;
}

.contact-right p {
    color: #1d1d1d;
    font-size: 1.6em;
    margin-bottom: 30px;
}

.contact-right p span {
    color: #7D05F0;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    border: 2px solid #1D1D1D80;;
    color: #1D1D1D;
    background-color: #fbfaff;
    font-size: 19px;
    margin-bottom: 20px;
    padding: 15px 40px 40px 20px;
    border-radius: 5px;
}

.contact-form textarea {
    width: 100%;
    resize: none;
}

::placeholder {
    color: #2a2a2a;
}

.contact-form .first-row input {
    width: 100%;
}

.contact-form .second-row {
    display: flex;
    justify-content: space-between;
}

.contact-form .second-row input {
    width: 48%;
}

.contact-form .btn {
    border: none;
    margin-top: 0;
    border-radius: 5px;
    cursor: pointer;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10em;
    bottom: 0;
    background-color: #ffffff;
    width: 100%;
    padding: 5em 15%;
    border-right: 2px solid #1d1d1d;
    border-left: 2px solid #1d1d1d;
    border-bottom: 2px solid #1d1d1d
}

.col-left {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.col-box {
    display: flex;
    align-items: center;
    gap: 1em;
    text-align: left;
}

.col-box i {
    font-size: 2em;
}

.col-box span {
    font-size: 1.2em;
}

.col-right {
    display: flex;
    flex-direction: column;
    gap: 1em;
    color: #1D1D1D;
    max-width: 500px;
}

.col-right span {
    font-size: 1.3em;
}

.col-right .social-icons {
    display: flex;
    align-items: baseline;
    justify-content: left;
    gap: 1em;
    
}

.col-right .social-icons i {
    font-size: 2em;
    transition: 0.2s ease-in-out;
    cursor: pointer;
}

.social-icons i:hover {
    color: #1d1d1d;
}

.icon-links {
    display: flex;
    align-items: center; 
}

.icon-links span {
    display: flex; 
}

.infinite-scroll-logos {
    min-height: 100%;
    width: 100%;
    overflow: hidden;
    background-color: white;
    padding: 30px 0;
}
  
  .logo-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
  }
  
  .logo-slide {
    display: flex;
    align-items: center;
    gap: 60px;
  }
  
  .logo-item {
    display: flex;
    flex-direction: row;
    gap: 25px;
    align-items: center;
    min-width: 100px;
    text-align: center;
  }
  
  .logo-item img {
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
  }
  
  .logo-item p {
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(to right, #7D05F0, #B96EFC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-align: center;
  }
  
  .logo-item img:hover {
    transform: scale(1.1);
  }
  
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

/*About Me Page*/
#about-me-page #about {
    border-top: none;
    border-bottom: none;
    border-left: 2px solid #1d1d1d;
    border-right: 2px solid #1d1d1d;
    background-color: #F7F4FF;
    padding: 8rem 10%;
    padding-bottom: 5%
}

.certificate-slider {
    position: relative;   
    height: 400px;    
    border-top: none;
    margin: 0 auto;
    overflow: hidden;
    background: #f7f4ff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.8s ease;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .slide img {
    max-width: 50%;
    max-height: 50%;
    object-fit: contain;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    border-radius: 5px;
  }
  
  .slide.active {
    opacity: 1;
    z-index: 1;
  }
  
  .arrow {
    position: absolute;
    top: 50%;
    width: 70px;
    height: 70px;
    cursor: pointer;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(125, 5, 240, 0.15); 
    border-radius: 50%;
    transition: color 0.3s ease, background 0.3s ease;
  }
  
  .arrow.l {
    left: 60px;
  }
  
  .arrow.r {
    right: 60px;
  }
  
  .arrow i {
    font-size: 28px;
    color: #7D05F0;
    transition: transform 0.3s ease;
  }
  
  .arrow:hover {
    color: #B96EFC;
    transition: color 0.3s ease;
  }
  
  .indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
  }
  
  .indicator {
    width: 14px;
    height: 14px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .indicator.active {
    background: #7D05F0;
  }
  

#about-me-page .skills {
    border-top: none;
    border-bottom: none;
    border-left: 2px solid #1d1d1d;
    border-right: 2px solid #1d1d1d;
    background-color: var(--second-background);
    padding: 8rem 10%;
}
#about-me-page .skills .container .content {
    width: 100%;
}

#about-me-page .skills-description {
    max-width: 800px;
    margin-bottom: 50px;
}

#about-me-page .skills-description h3 {
    font-size: 2em;
    font-weight: 800;
    background: linear-gradient(to right,#7D05F0, #B96EFC);
    background-clip: text;
    color: transparent;
    margin-bottom: 5px;
}

#about-me-page .skills-description p {
    font-weight: 100;
    font-size: 20px;
    color: #1d1d1d;
    opacity: 0.8;
}

#about-me-page .education-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

#about-me-page .item {
    font-size: 16px;
}

#about-me-page .skills-info {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    justify-content: center;
    align-self: center;
    gap: 45px;
    margin: 0, auto;
}

#about-me-page .skills-info h4 {
    margin-bottom: 25px;
}

#about-me-page .skills-info h4 label {
    background: #9E3DFC;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600px;
    padding: 5px 15px;
    border-radius: 5px;
}

.education .item {
    background: #fbfaff;
    box-shadow: 4px 4px 10px #1d1d1d66;
    border-bottom: 3px solid #B76EFF;
    padding: 20px;
    width: 100%;
    margin-top: 15px;
    border-radius: 6px;
    transition: .3s ease;
}

#about-me-page .education-list .item .year {
    font-size: 18px;
    font-weight: 100;
    color: #7D05F0;
    margin-bottom: 5px;
}

#about-me-page .education-list p {
    color: #1d1d1d;
    opacity: 0.8;
    font-size: 17px;
    font-weight: 100;
}

#about-me-page .education-list p span {
    color: #B76EFF;
    font-size: 17px;
    font-weight: 500;
}

#about-me-page .skill-bar {
    display: flex;
    flex-direction: column;
}

#about-me-page .bars {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap:1px;
}

#about-me-page .bar {
    background: #fbfaff;
    box-shadow: 4px 4px 10px #1d1d1d66;
    border-bottom: 3px solid #B76EFF;
    width: 100%;
    align-items: center;
    margin-bottom: 10px;
    padding: 20px;
    border-radius: 6px;
    transition: 0.3s ease;
    margin-top: 15px;
}


#about-me-page .info {
    display: flex;
    flex-direction: row;
    gap: 5px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    font-size: #1d1d1d;
}

#about-me-page .bar .info span {
    font-weight: 500px;
}

#about-me-page .bar .line {
    position: relative;
    width: 100%;
    height: 7px;
    background: #c5acdf;
    border-radius: 2px;
}

#about-me-page .bar .line::before {
    content: '';
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    background: #7D05F0;
    border-radius: 2px;
}

#about-me-page .bar .s1:before {
    width: 94%;
}

#about-me-page .bar .s2:before {
    width: 97%;
}

#about-me-page .bar .s3:before {
    width: 89%;
}

#about-me-page .bar .s4:before {
    width: 85%;
}
#about-me-page .bar .s5:before {
    width: 95%;
}

#about-me-footer {
    border: 2px solid #1d1d1d;
}

#about-me-page .education,
#about-me-page .skills,
#about-me-page .seminar {
    width: 100%; 
}
@media(max-width: 1526px){
    .info-box h1 {
        font-size: 2em;
    }

    .info-box h3 {
        font-size: 1.5em;
    }

    #about {
        gap: 2em;
    }
    #about h1 {
        font-size: 2.5em;
    }

    #about p {
        font-size: 20px;
    }

    .about-image img {
        width: 40vw;
    }

    #favicon {
        width: 300px;
    }

    .services_heading h1 {
        font-size: 2.5em;
    }
    
    .contact .content {
        gap: 3rem;

    }

    .contact-left h2 {
        font-size: 1.5em;
    }

    .contact-left li span {
        font-size: 1.14em;
        
    }

    .contact-list li {
        font-size: 1em;
    }

    .contact-list li h3 {
        font-size: 1.2em;
    }

    .contact-list li span {
        margin-left: 0;
        font-size: 1em;
    }
    .contact-right p {
        font-size: 1.1em;
    }

    .contact-right ::placeholder {
        font-size: 18px;
    }

    .contact-right .btn {
        font-size: 18px;
    }
    
    #about-me-page .about-info p {
        font-size: 17px;
        
    }
    
    #about-me-page .tools-row {
        display: flex; 
        flex-wrap: wrap;
        justify-content: center; 
        align-items: center; 
        align-content: center;
        align-self: center;
        gap: 2rem; 
    }
    
    #about-me-page .dev-tools, 
    #about-me-page .creative-tools, 
    #about-me-page .microsoft-tools {
        width: 40%; 
        max-width: 350px; 
        text-align: center; 
    }
    
    #about-me-page .icons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    #about-me-page .icons img {
        max-width: 35px; 
        width: 35px; 
        height: 35px; 
        transition: transform 0.3s ease-in-out; 
    }
    
    #about-me-page .icons img:hover {
        transform: scale(1.1);
    }
    
    #about-me-page .tools-row h2 {
        font-size: 20px; 
    }
    

}

@media(max-width: 968px) {
    section {
        padding: 8em 15%;        
    }
	
    nav .btn {
        display: none;
    }

    #menu {
        display: block;
    }

    #favicon {
        width: 300px;
    }

    .links {
        position: absolute;
        top: 100%;
        width: 100%;
        right: 0;
        padding: 1em 3em;
        color: white;
        display: flex;
        flex-direction: column;
        text-align: center;
        background: #000000E6;
        display: none;
    }

    .links a {
        margin: 2em 0;
        display: block;
        font-size: 1.5em;
        color: white;
    }

    .links.active {
        display: block;
    }

    .info-box {
        text-align: center;
    }

    .info-box h1 {
        font-size: 3em;
    }

    .info-box h3 {
        font-size: 1.8em;
    }

    .btn-box {
        display: flex;
        justify-content: center;
    }
	
    #home {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #home .home-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }

    #home img {   
        width: 48vw
    }

    #about {
        flex-direction: column !important; 
    }
	
    #about .about-image {
        width: 50vw; 
        max-width: 100%;
        order: 1; 
    }


     #about .about-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .about-container {
        order: 2;
        text-align: center;
    }
	
	.about-container h1 {
		text-align: center;
	}
	
    .about-container p {
		text-align: center;
	}

    #about .image-container img {
        order: 1;
		width: 45vw;
		row-gap: 10px;
		margin-bottom: 0;
    }

    #about h1 {
        font-size: 3em;
    }

    #about ul {
        font-size: 1em;
    }

    .services h1 {
        font-size: 3em;
    }

}

@media(max-width: 768px) {

    .arrow {
        display: none;
    }

    .slide img {
        max-width: 70%;
        height: 70%;
    }

    .info-box h1 {
        font-size: 2.0em;
    }

    .info-box h3 {
        font-size: 1.5em;
    }

    #favicon {
        width: 250px;
    }

    #home img {
        width: 62vw;
    }
    
    #about .about-image img {
        width: 72vw !important;
    }
    .about-container h1 span {
		text-align: center;
        font-size: 0.5em;
    }
	
	.about-container p {
		text-align: center;
		font-size: 10px;
	}

    .tools-row {
        justify-content: center;
    }

    .skills-description h3 {
        text-align: center;
        font-size: 1.4em !important;
    }

    .skills-description p {
        text-align: center;
		font-size: 10px;
    }
    .education, .skills, .seminar {
        width: 100%;
        text-align: left;
    }

    #contact h1 {
        font-size: 3em;
        margin-bottom: 20px;
    }
    .contact .content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        font-size: 0.9rem;
    }

    .contact-left {
        width: 100%;
        text-align: left;
        margin-bottom: 40px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-left h2 {
        font-size: 1.3em;
    }

    .contact-list {
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .contact-list li {
        text-align: left;
        margin-bottom: 10px;
    }

    .contact-list li h3 {
        font-size: 1.2em;
    }

    .contact-list li span {
        display: block;
        margin-left: 0;
        font-size: 1.1em;
    }

    .contact-right {
        text-align: left;
        width: 100%;
    }

    .contact-right p {
        font-size: 1em;
    }

    .contact-form {
        width: 100%;
    }

    .contact-form input,
    .contact-form textarea {
        display: flex;
        width: 100%;
        font-size: 1em;
    }

    .contact-form .second-row {
        flex-direction: column;
        gap: 15px;
    }

    .contact-form .second-row input {
        width: 100%;
    }

    .conta-ct-form
    .contact-form .btn {
        
        justify-content: center;
    }

    #services h1 {
        font-size: 3em;
    }

    #projects h1 {
        font-size: 3em;
    }

    footer {
        flex-direction: column;
        gap: 5em;
        align-items: baseline;
    }

    .social-icons {
        justify-content: center;
        align-self: center;
    }  
}

@media (max-width: 450px) {
    
    .arrow {
        display: none;
    }

    .slide img {
        max-width: 70%;
        height: 70%;
    }

    .skills-info {
        place-self: center !important;
       
    }

    .education-list .item,
    .bars .bar {
        width: 75% !important;
        place-self: center;
        text-align: left;
    }
    
    .tools-row h2 {
        font-size: 17px !important;
    }

    .year {
        font-size: 20px !important;
        
    }
    .item p {
        font-size: 15px !important;
    }
}

@media (max-width: 430px) {
    
    .education h4  {
        text-align: center;
    }

    .tools-row {
        flex-direction: column !important;
    }

    .about-me-page #about {
        padding-bottom: 8%;
    }

    .infinite-scroll-logos {
        padding: 40px 0;
    }
    
    .logo-slide {
        gap: 30px;
    }
    
    .logo-item {
        flex-direction: column;
        gap: 10px;
        min-width: 80px;
    }

    .logo-item img {
        height: 30px;
    }
    
    .logo-item p {
        font-size: 12px;
        font-weight: 600;
        background: linear-gradient(to right, #7D05F0, #B96EFC);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
        text-align: center;
    }
}

@media (max-width: 414px) {
    
    .certificate-slider {
        height: 300px;
    }
  
    section {
        padding: 8em 15%;        
    }
	
	.logo img {
		width: 50%;
	}

	 #about {
        padding-bottom: 10% !important;
    }
	.infinite-scroll-logos {
  
        padding: 20px 0;
      }
    
    .logo-slide {
        gap: 25px;
    }

    .logo-item {
        flex-direction: column;
        gap: 8px;
        min-width: 70px;
    }

    .logo-item img {
        height: 28px;
    }

    .logo-item p {
        font-size: 11.5px;
        font-weight: 600;
        background: linear-gradient(to right, #7D05F0, #B96EFC);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
        text-align: center;
    }

	body {
        font-size: 14px;
    }

    .info-box h1 {
        font-size: 1.5em;
    }

    .info-box h3 {
        font-size: 1.2em;
    }

    #favicon {
        width: 200px;
    }
	
	.info-box {
		column-gap: 10px;
	}
	
    #home img {
        width: 80vw;
    }
	
    .about-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
	
	.about-container h1 span {
		font-size: 0.5em;
	}


    .about-container p {
        line-height: 1.6em;
        max-width: 100%;
        margin: 0 auto;
    }

    .dev-tools {
        max-width: 80%;
        text-align: center;
    }
	
	.tools-row {
        flex-direction: column !important;
        align-items: center;
        gap: 20px;
    }

    .dev-tools, .creative-tools, .microsoft-tools {
        width: 90%; 
        max-width: 300px;
        gap: 15px; 
    }

    .dev-tools h2,
    .creative-tools h2,
    .microsoft-tools h2{
        font-size: 22px; 
    }

    .icons img {
        max-width: 30px; 
        width: 30px;
        height: 30px;
        gap: 10px;
    }

    #about img {
        width: 65vw;
    }

    #about-me-page .dev-tools {
        max-width: 80%;
        text-align: center;
    }
	
    #about-me-page .tools-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    #about-me-page .dev-tools, .creative-tools, .microsoft-tools {
        width: 90%; 
        max-width: 150px;
        gap: 15px; 
    }

    #about-me-page .dev-tools h2,
    .creative-tools h2,
    .microsoft-tools{
        font-size: 22px; 
    }

    #about-me-page .icons img {
        max-width: 30px; 
        width: 30px;
        height: 30px;
        gap: 10px;
    }

    #about .education-list {
        max-width: 50% !important;
    }

    .education h4  {
        text-align: center;
    }

    .skills-description p {
        font-size: 0.9em;
        text-align: center;
    }

    .education h2, .skills h2, .seminar h2 {
        font-size: 1.5em;
    }

    .education p, .skills p, .seminar p {
        font-size: 0.9em;
    }

    #toggle-video {
        left: 85%;
    }

    .services h1,
    #contact h1,
    #projects h1 {
        font-size: 2.5em;
    }

    #contact .input-box span {
        font-size: 1em;
    }

    .input-box input {
        padding: 0.4em 0.8em;
    }

    .btn-box {
        flex-direction: column;
        align-items: center;
    }

    footer {
        flex-direction: column;
        gap: 3em;
        align-items: center;
        text-align: center;
    }
}
