@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    background-color: black;
    color: white;
}

header {
    margin-top: 0px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 9% 0;
    background-color: black;
    filter: drop-shadow(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}




.logo {
    font-size: 3rem;
    color: #df21df;
    font-weight: 800;
    cursor: pointer;
    transition: 0.5s ease;
}

.logo:hover {
    transform: scale(1.2);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 2.5rem;
    color: white;
}














nav a {
    font-size: 1.8rem;
    color: white;
    margin-left: 5rem;
    font-weight: 500;
    transition: 0.3s ease;
    border-bottom: 2px solid transparent;
}

nav a:hover,
nav a.active {
    color: #df21df;
    border-bottom: 3px solid #df21df;
}














@media(max-width:995px) {
    .hamburger {
        display: block;
    }

    nav {
        position: absolute;
        display: none;
        top: 5rem;
        right: 0;
        width: 40%;
        border-left: 3px solid #df21df;
        border-bottom: 3px solid #df21df;
        border-bottom-left-radius: 2rem;
        padding: 1rem solid;
        background-color: #161616;
        border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
    }

    nav.active {
        display: block;
    }

    nav a {
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
    }

    nav a:hover,
    nav a.active {
        padding: 1rem;
        border-radius: 0.5rem;
        border-bottom: 0.5rem solid #df21df;
    }
}






.header img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}









section {
    margin-top: 150px;
    min-height: 20vh;
    padding: 5rem 9% 5rem;
}

.home {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    background-color: black;
}

.home .home-content h1 {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.3;
}

span {
    color: #df21df;
}

.home-content h2 {
    font-size: 5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.home-content h3 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.home-content p {
    font-size: 1.8rem;
}

.home-img {
    border-radius: 50%;
}





.typing-text{
    font-size: 28px;
    font-weight: 600;
    min-width: 280px;
}

.typing-text span{
    position: relative;
}

.typing-text span::before{
    content: "software Developer";
    color: #df21df;
    animation: words 8s infinite;
}

.typing-text span::after{
    content: "";
    background-color: black;
    position: absolute;
    width: calc(100% + 8px);
    height: 100%;
    border-left: 3px solid black;
    right: -8;
    animation: cursor 0.6s infinite;
}

@keyframes cursor{
    to{
        border-left: 3px solid #df21df;
    }
}

@keyframes words{
    0%, 25%{
        content: "Web Developer.";
    }
    26%, 50%{
        content: "UI/UX Designer.";
    }
    51%, 75%{
        content: " FrontEnd Developer.";
    }
    76%, 100%{
        content: "Graphic Designer.";
    }
}












.home-img img {
    position: relative;
    width: 24vw;
    border-radius: 50%;
    box-shadow: 0 0 25px solid #df21df;
    cursor: pointer;
    transition: 0.2s linear;
}

.home-img img:hover {
    font-size: 1.8rem;
    font-weight: 500;
}



.btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    background-color: black;
    border-radius: 4rem;
    font-size: 1.6rem;
    color: #df21df;
    letter-spacing: 0.3rem;
    font-weight: 600;
    border: 2px solid #df21df;
    transition: 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    transform: scale3d(1.03);
    background-color: #df21df;
    color: black;
    box-shadow: 0 0 13px #472347;
}



.tool-palette-section {
    padding: 10px 73px 10px ;
    background: #0f0f0f;
    color: #fff;
    text-align: center;
}

.tool-palette-section h2 {
    font-size: 4rem;
    margin-top: 50px;
    margin-bottom:30px;
    color: White;
}
.tool-palette {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 25px;
    justify-items: center;
    align-items: center;
}

.tool-item {
    background: #1b1b1b;
    margin-bottom: 40px;
    padding: 20px ;
    border-radius: 20px;
    border: 0.3rem solid #333;
    transition: transform 0.3s, background 0.3s;
    width: 100%;
    max-width: 120px;
    max-height: 150px;
}

.tool-item:hover {
    transform: translateY(-8px);
    background: #2b2b2b;
    border: 0.1rem solid #df21df;
    box-shadow: 0 0 15px #773477;
}

.tool-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 10px;
}

.tool-item p {
    font-size: 1.5rem;
    color: #ddd;
}
















#testimonial {
    padding: 50px 20px;
    background: black;
}

.container h2 {
    font-size: 4rem;
    margin-bottom:50px;
    color: White;
}


.container {
    max-width: 900px;
    margin: auto;
}

.testimonial-swiper {
    padding: 20px;
}

.testimonial-details {
    background-color:#0f0f0f;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.testimonial-details:hover {
    transform: translateY(-5px);
}

.testimonial-details p {
    font-size: 1.2rem;
    font-style: italic;
    color: white;
    margin-bottom: 25px;
}
.testimonial-client {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-client img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
}

.testimonial-client h6 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.testimonial-client p {
    font-size: 1rem;
    color: white;
    margin: 0;
}

/* Swiper pagination */
.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 4px;
    transition: background-color 0.3s;
}

.swiper-pagination-bullet-active {
    background: #df21df;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-details {
    padding: 20px;
}

.testimonial-details p {
    font-size: 1rem;
}

.testimonial-client img {
    width: 50px;
    height: 50px;
}
}

























@media (max-width: 1000px) {
    .home {
        gap: 4rem;
    }
}

@media(max-width:995px) {
    .home {
        flex-direction: column;
        margin: 5rem 4rem;
    }

    .home .home-content h3 {
        font-size: 2.5rem;
    }

    .home-content h1 {
        font-size: 5rem;
    }

    .home-img img {
        width: 80vw;
        margin-top: 4rem;
    }
}




section {
    padding: 10px 20px;
    text-align: center;
}
section h1 {
    font-size: 7rem;
    margin-bottom: 20px;
    color: white;
}

section h2 {
    font-size: 5rem;
    margin-bottom: 20px;
    color: white;
}

section h3 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

section p, section ul {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color:white;
}

.about ul, .resume ul, .contact ul {
    list-style-type: none;
    padding: 0;
}

.about li, .resume li, .contact li {
    margin: 10px 0;
}












/* Tools Carousel Section */

.tools-section {
    padding: 60px 60px;
    background-color: #0f0f0f;
    color: #fff;
    text-align: center;
}

.tools-section h2 {
    font-size: 4rem;
    margin-bottom: 50px;
}

.tools-section h2 span {
    color: #df21df;
}

.tools-swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #1a1a1a;
    padding: 30px 0px 0px;
    border-radius: 20px;
    transition: transform 0.3s;
    padding-bottom: 100px;
    max-height: 400px;
}

.tools-swiper .swiper-slide img {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.tools-swiper .swiper-slide p {
    color: #ccc;
    font-size: 1.5rem;
    margin: 20px;
}

.tools-swiper .swiper-slide h3 {
    padding: 2px;
    color: #ccc;
    font-size: 2rem;
}


.swiper-button-prev,
.swiper-button-next {
    color: #df21df ;
}

.swiper-pagination-bullet-active {
    background: #df21df ;
}






body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: black;
}


















/* Contact Section Styling */
.contact {
    text-align: center;
    padding: 50px 20px;
    background-color: black;
    color: #fff;
    margin: top auto;;
}

.contact h2 {
    font-size: 4rem;
    margin-bottom: 15px;
}

.contact h2 span {
    color: #df21df;
}

.contact p {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: #ccc;
}




















/* Contact Form Styling */

.contact-form {
    max-width: 500px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border: none;
    border-radius: 10px;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 1.2rem;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

.contact-form button.btn {
    padding: 15px;
    background-color: #0f0f0f;
    border: none;
    color: #df21df;
    font-weight: bold;
    cursor: pointer;
    border-radius: 30px;
    border: 2px solid #df21df;    
    transition: background-color 0.3s, transform 0.3s;
}

.contact-form button.btn:hover {
    background-color: #0f0f0f;
    color: #df21df;
    transform: scale(1.02);
}
/* Responsive */
@media (max-width: 600px) {
    .contact h2 {
        font-size: 2rem;
    }

    .social-icons {
        flex-wrap: wrap;
        gap: 15px;
    }

    .contact .btn {
        width: 80%;
    }
}




















/* Social Icons Styling */

@media (max-width: 600px) {
  .social-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
  }

  .social-icons a {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 2.2rem;
    margin: 1rem;
  }
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background-color: transparent;
    border: 0.2rem solid #df21df;
    font-size: 2rem;
    border-radius: 50%;
    margin: 3rem 1.5rem 2rem 0;
    transition: 0.3s ease;
    color: #df21df;
}

.social-icons a:hover {
    color: black;
    transform: scale(1.2) translateY(-2px);
    background-color: #df21df;
    box-shadow: 0 0 15px #633063;
}






tool-palette-section hr{
    border: 0;
    height: 1.5px;
    background: #333;
    margin: 30px auto;
    width: 100%;
}

/* Footer Styling */

.footer-section {
  padding: 10px 73px;
  background: #0f0f0f;
  color: #fff;
  text-align: center;
}

footer {
    background-color: black;
    padding: 0px ;
    color: #0a0a0a;
    padding-bottom: 0px ;
}

.footer-section {
    padding: 0px 73px ;
    background: black;
    color: #fff;
    text-align: center;
    margin: 0;
}

footer hr {
    border: 0;
    height: 1.5px;
    background: #333;
    margin: 20px auto;
    width: 100%;
}

footer p {
    margin: 0.1;
    font-size: 1.2rem;
    text-align: center;
}

body {
  margin-bottom: 0;
}

footer {
  margin-bottom: 0;
  padding-bottom: 0;
}

body > *:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}





.resume {
  background-color: black;
  color: white;
  padding: 60px 20px; /* top/bottom and left/right padding */
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.resume p {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #ccc;
}

.resume-content .btn {
  padding: 12px 30px;
  font-size: 1.5rem;
  border-radius: 25px;
  border: 2px solid #df21df;
  background-color: transparent;
  color: #df21df;
  transition: all 0.3s ease;
  text-decoration: none;
}

.resume-content .btn:hover {
  background-color: #df21df;
  color: #0f0f0f;
  box-shadow: 0 0 10px #df21df;
}

@media (max-width: 768px) {
  .resume {
    padding: 40px 15px;
  }

  .resume-content .btn {
    width: 80%;
    font-size: 1.4rem;
  }
}
.resume-content .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  font-size: 1.5rem;
  border-radius: 25px;
  border: 2px solid #df21df;
  background-color: transparent;
  color: #df21df;
  transition: all 0.3s ease;
  text-decoration: none;
}

.resume-content .btn .download-icon {
  margin-right: 10px;
  font-size: 1.6rem; /* slightly larger than the text */
}

.resume-content .btn:hover {
  background-color: #df21df;
  color: #0f0f0f;
  box-shadow: 0 0 10px #df21df;
}


.resume {
  padding: 50px 20px;
  background-color: #0f0f0f;
  color: white;
  text-align: center;
}

.resume h2 {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #df21df;
}

.resume-frame {
  max-width: 900px;
  margin: auto;
  border: 1.5px solid #df21df;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px #421e42;
}



.about-section {
    padding: 60px 20px;
    background-color: black;
    color: #fff;
    text-align: left;
}



.about-section p {
    font-size: 1.8rem;
    max-width: 800px;
    margin: 10px auto;
    color: #ccc;
    line-height: 1.6;
}

/* Hobbies inside About Section */
.hobbies-section {
  margin-top: 30px;
  max-height: 300px;
}

.hobbies-section p {
    font-size: 1.9rem;
    max-width: 800px;
    margin: 10px auto;
    color: #ccc;
    line-height: 1.6;
    text-align: left;
  
}

.interest-list {
  list-style: none;
  padding: 10px 0 ; /* Top and bottom padding */
  max-height: 150px; /* Set a reasonable max height */
  gap: 18px;
}

.interest-list li {
  color: white;
  padding: 12px 20px;
  font-size: 1.5rem;
  display: flex;
  align-items: left;
  gap: 10px;
  transition: all 0.3s ease;
}

.interest-list li:hover {
  color: #df21df;
  transform: scale(1.05);
}

.interest-list i {
  font-size: 1.5rem;
}






/* Portfolio Section */
#portfolio {
    padding: 20px;
    background: #0f0f0f;
    text-align: center;
    color: white;
    margin-bottom: 5px;
}

#portfolio h2 {
    font-size: 4rem;
    margin-bottom: 30px;
}
#portfolio h2 span {
    color: #df21df;
}

.portfolio-filters {
    margin-bottom: 40px;
}
.filter-btn {
    padding: 10px 20px;
    margin: 0 5px 10px;
    background: #1a1a1a;
    border: 1px solid #df21df;
    color: #df21df;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
}
.filter-btn.active,
.filter-btn:hover {
    background: #df21df;
    color: #0f0f0f;
}

.portfolio-items {
  display: flex;
  flex-wrap: wrap;
  gap: 50px; /* This adds spacing between .item blocks */
  justify-content: center;
  align-items: center;
}

.item {
  background: #1b1b1b;
  border: 1px solid #333;
  min-width: 290px;
  padding: 25px;
  border-radius: 10px;
  transition: transform 0.3s ease;
  margin: 10px; /* Add spacing between items */
  align-items: center;
}
.item img {
  width: auto;
  max-height: 180px;
  border-radius: 8px;
}
.item h4 {
  margin-top: 10px;
  color: white;
  font-size: 1.5rem;
}
.item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px #df21df;
}
.isotope-container {
  padding: 20px;
}












