/* Reset & Box model */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
* {
  margin: 0; padding: 0; box-sizing: border-box;
}
body {
  font-family: poppins, sans-serif;
  background:linear-gradient(    to right,
  #262e3c 0%,    /* Blue-gray */
  #1C3D5A 50%,   /* Dark sapphire */
  #0f3665 100%     );
  color: var(--white);
  scroll-behavior: smooth;
   line-height: 1.6;
}
/* Color Palette */
:root {
  --dark-bg: #0a1f44;
  --mid-bg: #1f326b;
  --light-bg: #3e5c8c;
  --accent: #54a0ff;
  --white: #ffffff;
}
.navbar {
            background: linear-gradient(135deg, #0a1f4479 0%, #3e5c8c 100%);
            padding: 1rem 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
                 box-shadow: 0 0px 10px rgb(13, 28, 95);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
         
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            transition: transform 0.3s ease;
             background: linear-gradient(90deg, #440ab197, #00a09b, #12a944);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;

        }

        .nav-logo:hover {
            transform: scale(1.05);
            color: white;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            font-weight: bold;
        }

        .nav-link:hover {
         color: yellow;
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }

        .nav-link.active {
            background: rgba(255, 255, 255, 0.3);
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            width: 30px;
            height: 25px;
            justify-content: space-between;
        }

        .hamburger span {
            width: 100%;
            height: 3px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
    /* Mobile Menu */
    .nav-links.mobile-menu {
      position: fixed;
      top: 80px;
      right: -100%;
      width: 320px;
      height: calc(100vh - 80px);
      background: rgba(10, 31, 68, 0.95);
      backdrop-filter: blur(25px);
      border-left: 1px solid rgba(255, 255, 255, 0.1);
      flex-direction: column;
      gap: 1rem;
      padding: 2rem;
      transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }

    .nav-links.mobile-menu.show {
      right: 0;
    }

    .nav-links.mobile-menu .nav-item {
      width: 100%;
      text-align: center;
      padding: 1rem;
      border-radius: 12px;
      font-size: 1.1rem;
      opacity: 0;
      transform: translateX(50px);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.mobile-menu.show .nav-item {
      opacity: 1;
      transform: translateX(0);
    }

    .nav-links.mobile-menu.show .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.mobile-menu.show .nav-item:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.mobile-menu.show .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.mobile-menu.show .nav-item:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.mobile-menu.show .nav-item:nth-child(5) { transition-delay: 0.5s; }

/* Sections */
main section {
  padding: 6rem 2rem 4rem;
}
.section-title {
  text-align: center; margin-bottom: 2rem;
  font-size: 2rem;     background: linear-gradient(90deg, #3dd74797, #0de1be, #361491);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
}
/* Home / Hero */
.hero {
  text-align: center;
   min-height: 100vh;
  display: flex;
   flex-direction: column;
    align-items: center;
  justify-content: center;
   padding-top: 5rem;
}
.hero-img {
  margin-top: 20px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(102,126,234,0.5);
  box-shadow: 0 0 30px rgba(102,126,234,0.3);
  transition: all 0.3s ease;
  object-fit: cover;
}

.hero-img:hover {
         transform: scale(1.05);
            border-color: #64ffda;
            box-shadow: 0 0 10px rgba(64, 27, 196, 0.829);

}
/* Typewriter Animation for Hero Name */
        .hero-name {
          font-size: 2.5rem; 
          margin: 0rem 0 0.5rem;
          background: linear-gradient(90deg, #440ab197, #00a09b, #0aa55a);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          color: transparent;
          overflow: hidden;
          border-right: 3px solid #54a0ff;
          white-space: nowrap;
          animation: typewriter 3s steps(35,end) 0.3s 1 normal both,
                     cursor-blink 1s step-end infinite;
          position: relative;
        }

        /* Typewriter effect */
        @keyframes typewriter {
          0% { 
            width: 0; 
          }
          100% { 
            width:   29%; 
          }
        }

        /* Blinking cursor effect */
        @keyframes cursor-blink {
          0%, 50% { 
            border-color: #54a0ff; 
          }
          51%, 100% { 
            border-color: transparent; 
          }
        }
.hero-role {
  color: var(--light-bg); margin-bottom: 2rem;
}
.stats {
  display: flex; gap: 1rem; margin-bottom: 2rem;
}
.stat a {
  display: block; text-decoration: none; color: var(--white);
  text-align: center; transition: transform 0.3s;
}
.stat a:hover {
  transform: scale(1.1);
}
.stat h2 {
  font-size: 1.8rem; margin-bottom: 0.3rem;
}
.stat p {
  font-size: 0.9rem; color: var(--light-bg);
}
    .btn {
              box-shadow: 0 0px 10px rgba(102, 126, 234, 0.4);
            display: inline-block;
            padding: 12px 25px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 30px;
        }

        .btn:hover {
           background: linear-gradient(135deg, #0629c3, #306f99);
            transform: translateY(-3px);
            box-shadow: 0 0px 10px rgba(102, 126, 234, 0.4);
        }

        .btn-sci {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            margin-top: 2rem;
        }

 .sci {
            display: flex;
            gap: 1rem;
        }

        .sci a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            color: #fff;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .sci a:hover {
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-color: transparent;
            transform: translateY(-3px) scale(1.1);
                 box-shadow: 0 0px 10px rgba(102, 126, 234, 0.4);
        }
/* Services */
.services .service-list {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 2rem;
}
.service-item {
  background: var(--mid-bg); padding: 2rem; text-align: center;
  border-radius: 8px;
  box-shadow: 0 0px 10px rgb(55, 54, 136);
  transition: transform 0.3s;
}
.service-item:hover {
  transform: translateY(-8px);
  background:linear-gradient(135deg, #667eea 50%, #341e4a 100%);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
.languages-section {
    padding: 80px 0;
    position: relative;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, #3dd74797, #0de1be, #361491);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #54a0ff, #667eea);
    border-radius: 2px;
}

/* Languages Grid */
.languages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

/* Language Box */
.language-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(50px);
}

/* Animation Class */
.language-box.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Shimmer Effect */
.language-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent
    );
    transition: left 0.6s ease;
}

/* Hover Effects */
.language-box:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25) 0%, rgba(118, 75, 162, 0.25) 100%);
}

.language-box:hover::before {
    left: 100%;
}

/* Language Icon */
.language-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.language-icon img {
    width: 60px;
    height: 60px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Icon Rotation and Glow on Hover */
.language-box:hover .language-icon {
    background: rgba(102, 126, 234, 0.2);
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.language-box:hover .language-icon img {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(102, 126, 234, 0.5));
}

/* Language Title */
.language-box h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.language-box:hover h3 {
    background: linear-gradient(135deg, #54a0ff, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
}

/* Language Description */
.language-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
    transition: all 0.3s ease;
}

.language-box:hover p {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}


/* Portfolio */
.portfolio-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 1.5rem;
}
.project {
   overflow: hidden;
  transition: transform 0.3s; box-shadow: 0 1px 10px rgb(31, 112, 150); background: rgba(255,255,255,0.3); /* transparan */
  backdrop-filter: blur(80px);        /* blur background di belakang box */
  -webkit-backdrop-filter: blur(80px);
  border-radius: 12px; 
  border: 2px solid rgba(31, 148, 156, 0.534);
}
.project img {
  width: 100%; display: block;
}
.project p {
  padding: 0.5rem; text-align: center;
}
.project:hover {
  transform: scale(1.05);
}
/* About */
.about .bio-content {
  display: grid; grid-template-columns: 200px 1fr; gap: 2rem;
  align-items: center;
}
.bio-img img {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(102,126,234,0.5);
  box-shadow: 0 0 30px rgba(102,126,234,0.3);
  transition: all 0.3s ease;
  object-fit: cover;
}
.bio-img img:hover{
   transform: scale(1.05) rotate(2deg);
}
/* Contact */
.contact .contact-content {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  justify-content: space-between;
  gap: 10rem; /* Space between columns */
  max-width: 1000px; /* Limit overall width */
  margin: 0 auto; /* Center the content */
  align-items: flex-start; /* Align items to the top */
}

.contact-info {
  flex: 1; /* Allow contact info to grow */
  min-width: 300px; /* Minimum width for contact info */

  padding: 2rem ;
  border-radius: 12px;
 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover {
  transform: translateY(-5px);
}

.contact-info h3 {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-info p {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--white);
  transition: color 0.3s ease;
}

.contact-info p i {
  font-size: 1.5rem;
  margin-right: 10px;
  color: white;
  border-radius: 50%;
  transition:  0.3s ease;
}
#wa{
  background: #25D366;
  padding: 8px;
}
#wa:hover{

      background: rgb(255, 255, 255);
    color: black;
    box-shadow: 0 0 10px rgb(255, 255, 255);
    transform: translateY(-3px);
}
#ig{
  background: #d32183;
  padding: 8px;
}
#ig:hover{
    background: rgb(255, 255, 255);
    color: black;
    box-shadow: 0 0 10px rgb(255, 255, 255);
    transform: translateY(-3px);
}
#tt{
  background: #000000;
  padding: 8px;
}
#tt:hover{
      background: rgb(255, 255, 255);
    color: black;
    box-shadow: 0 0 10px rgb(255, 255, 255);
    transform: translateY(-3px);
}
#gh{
  background: #000000;
  padding: 8px;
}
#gh:hover
{
     background: rgb(255, 255, 255);
    color: black;
    box-shadow: 0 0 10px rgb(255, 255, 255);
    transform: translateY(-3px);;
}
#tw {
  background: #000000;
  padding: 8px;
}
#tw:hover {
      background: rgb(255, 255, 255);
    color: black;
    box-shadow: 0 0 10px rgb(255, 255, 255);
    transform: translateY(-3px);
}
#mail {
  background: #ffbf00;
  padding: 8px;
}
#mail:hover {
    background: rgb(255, 255, 255);
    color: black;
    box-shadow: 0 0 10px rgb(255, 255, 255);
    transform: translateY(-3px);
}

.contact-info p a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info p a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.contact-form-box {
  flex: 2; /* Allow form to take more space */
  min-width: 350px; /* Minimum width for the form box */
  background: var(--mid-bg);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* Existing form styles (ensure they apply to .contact-form inside .contact-form-box) */
.contact-form .form-group {
  margin-bottom: 1.5rem; /* Increased margin for better spacing */
}

.contact-form label {
  display: block;
  margin-bottom: 0.6rem; /* Increased margin */
  font-weight: 600;
  color: var(--white);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem; /* Increased padding */
  border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border */
  border-radius: 8px; /* More rounded corners */
  background: rgba(255, 255, 255, 0.05); /* Slightly transparent background */
  color: var(--white);
  font-size: 1rem;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background-color: rgba(255, 255, 255, 0.1);
}

.contact-form button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form button:hover {
  background: linear-gradient(135deg, #0629c3, #306f99); /* Darker gradient on hover */
  transform: translateY(-3px);
  box-shadow: 0 0 10px rgb(8, 116, 239);
}
.section-title {
  font-size: 2.8rem; /* Slightly larger titles */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 10px;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

/* Scroll Animasi */
.scroll-animate {
  opacity: 0; transform: translateY(30px);
  transition: all 0.6s ease-out;
}
.scroll-animate.visible {
  opacity: 1; transform: translateY(0);
}

/* Responsive */
   @media screen and (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.3);
                padding: 2rem 0;
                gap: 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-item {
                margin: 1rem 0;
            }

            .nav-link {
                font-size: 1.1rem;
                padding: 1rem 2rem;
                border-radius: 0;
                display: block;
                width: 100%;
            }

            .nav-link:hover {
                background: rgba(255, 255, 255, 0.1);
                transform: none;
                padding-left: 3rem;
            }
                 @keyframes typewriter {
          0% { 
            width: 0; 
          }
          100% { 
            width:   100%; 
          }
        }

        /* Blinking cursor effect */
        @keyframes cursor-blink {
          0%, 50% { 
            border-color: #54a0ff; 
          }
          51%, 100% { 
            border-color: transparent; 
          }
        }
            /* Home Section Mobile */
            .home {
                flex-direction: column;
                text-align: center;
                padding: 2rem 5%;
                gap: 2rem;
            }

            .home-info {
                padding-right: 0;
                order: 2;
            }

            .home-info h1 {
                font-size: 2.5rem;
            }

            .home-info h2 {
                font-size: 1.4rem;
            }

            .home-info p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .btn-sci {
                justify-content: center;
                flex-wrap: wrap;
                gap: 1.5rem;
            }

            .home-image {
                padding-left: 0;
                order: 1;
            }

            .img-box {
                width: 250px;
                height: 250px;
            }
              .contact .contact-content {
    flex-direction: column; /* Stack columns vertically on smaller screens */
    gap: 2rem;
  }

  .contact-info,
  .contact-form-box {
    min-width: unset; /* Remove min-width constraint */
    width: 100%; /* Take full width */
  }
}
        
/* Hover universal */
button:hover, 
.service-item:hover, 
.project:hover, 
.contact-form input:hover, 
.contact-form textarea:hover,
.socials img:hover,
.hero-img:hover {
  transform: scale(1.05) translateY(-4px);
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}
#particles-js {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}
footer {
    background-color: #212a4d;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: end;
    padding: 20px;
    animation: fadeInUp 1s ease-out 2s both;
    flex-wrap: wrap;
}

.footer-tt {
    margin-left: 20px;
    background: linear-gradient(90deg, #440ab197, #00a09b, #12a944);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    transition: transform 0.3s ease;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
}

.footer-tt:hover {
    transform: scale(1.05);
    color: blue;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-right: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.social-links a {
    text-decoration: none;
    display: inline-flex;
    padding: 8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    font-size: clamp(16px, 3vw, 20px);
    color: #ffffff;
    margin: 10px 8px 0px 8px;
    transition: .5s;
    animation: scaleIn 0.5s ease-out calc(2.2s + var(--social-delay, 0s)) both;
    min-width: 40px;
    min-height: 40px;
    justify-content: center;
    align-items: center;
}

.social-links a:nth-child(1) {
    --social-delay: 0s;
}

.social-links a:nth-child(2) {
    --social-delay: 0.1s;
}

.social-links a:nth-child(3) {
    --social-delay: 0.2s;
}

.social-links a:hover {
    background: rgb(255, 255, 255);
    color: black;
    box-shadow: 0 0 10px rgb(255, 255, 255);
    transform: translateY(-3px);
}

.social-icon:hover {
    background-color: white;
}
        .copyright {
            font-size: 0.9rem;
            color: #aaa;
            animation: fadeInUp 1s ease-out 2.3s both;
        }
        @media (max-width: 1100px) {
            footer {
                flex-direction: column;
                text-align: center;
                padding: 20px 15px;
                gap: 15px;
            }
            
            .footer-tt {
                margin-left: 0;
                margin-bottom: 10px;
            }
            
            .social-links {
                justify-content: center;
                margin-right: 0;
                margin-bottom: 0;
            }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            
            .subtitle {
                font-size: 1rem;
            }
            
            .profile-image {
                width: 180px;
                height: 180px;
                margin-top: -90px;
            }
            
            .info-card {
                min-width: 100%;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            footer {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        gap: 20px;
    }
    
    .footer-tt {
        margin-left: 0;
        margin-bottom: 10px;
        order: 1;
    }
    
    .social-links {
        justify-content: center;
        margin-right: 0;
        margin-bottom: 0;
        gap: 10px;
        order: 2;
    }
    
    .social-links a {
        margin: 5px;
        font-size: 18px;
        padding: 10px;
    }
         @keyframes typewriter {
          0% { 
            width: 0; 
          }
          100% { 
            width:   100%; 
          }
        }

        /* Blinking cursor effect */
        @keyframes cursor-blink {
          0%, 50% { 
            border-color: #54a0ff; 
          }
          51%, 100% { 
            border-color: transparent; 
          }
  }
}

@media (max-width: 480px) {
    footer {
        padding: 15px 10px;
    }
    
    .footer-tt {
        font-size: 1.2rem;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .social-links a {
        font-size: 16px;
        padding: 8px;
        margin: 3px;
        min-width: 36px;
        min-height: 36px;
    }
         @keyframes typewriter {
          0% { 
            width: 0; 
          }
          100% { 
            width:   115%; 
          }
        }

        /* Blinking cursor effect */
        @keyframes cursor-blink {
          0%, 50% { 
            border-color: #54a0ff; 
          }
          51%, 100% { 
            border-color: transparent; 
          }
  }
}


@media (max-width: 380px) {
    footer {
        padding: 10px;
    }
    
    .footer-tt {
        font-size: 1rem;
    }
    
    .social-links a {
        font-size: 14px;
        padding: 6px;
        min-width: 32px;
        min-height: 32px;
    }
         @keyframes typewriter {
          0% { 
            width: 0; 
          }
          100% { 
            width:   120%; 
          }
        }

        /* Blinking cursor effect */
        @keyframes cursor-blink {
          0%, 50% { 
            border-color: #54a0ff; 
          }
          51%, 100% { 
            border-color: transparent; 
          }
  }
}
        
