@property --angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0deg;
}

@property --stop {
  syntax: "<percentage>";
  inherits: true;
  initial-value: -10%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Quicksand", sans-serif;
  background: linear-gradient(135deg, #5473ff 0%, #77000a 100%);
  overflow-x: hidden;
  color: white;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.balloon-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.balloon {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #ffd700;
  border-radius: 50%;
  animation: balloon-rise 5s ease-in forwards;
  opacity: 0;
}

@keyframes balloon-rise {
  0% {
    transform: translateY(100vh) scale(0.5);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-100vh) scale(1.5);
    opacity: 0;
  }
}

.loading-logo {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease-in-out infinite,
    bounce 2s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.loading-percentage {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 30px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.loading-text {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.8;
  animation: text-fade 2s ease-in-out infinite;
  margin-top: 20px;
}

@keyframes text-fade {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.progress-container {
  width: 300px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 30px;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s ease;
}

.snow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

.snow {
  position: absolute;
  top: -20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.5em;
  animation: fall 8s linear infinite,
    fluctuate 3s ease-in-out infinite alternate;
}

@keyframes fall {
  0% {
    top: -20px;
  }
  100% {
    top: 100vh;
  }
}

@keyframes fluctuate {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50px);
  }
}

.nav-blur {
  position: fixed;
  top: 50px;
  right: 50px;
  z-index: 1000;
  font-weight: 300;
}

.nav-blur ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.5em;
}

.nav-blur ul li a {
  color: #fff;
  text-decoration: none;
  display: block;
  transition: 1s;
  position: relative;
  width: fit-content;
  padding: 10px 20px;
}

.nav-blur ul li a::before {
  content: "";
  position: absolute;
  width: 120%;
  aspect-ratio: 1/1;
  background: rgba(255, 255, 0, 0.5);
  z-index: -1;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transform: translateX(-500px) scale(0);
  transition: 1s;
}

.nav-blur ul li:hover a {
  color: orangered;
  transform: translateX(-50px);
}

.nav-blur ul li:hover a::before {
  transform: translateX(0) scale(1);
}

.nav-blur ul:hover :not(li:hover) a {
  filter: blur(3px);
}

.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c);
  background-size: 400% 400%;
  animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-content {
  text-align: center;
  z-index: 2;
  animation: heroFadeIn 2s ease-out;
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  font-family: "Pirata One", system-ui;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-gradient {
  display: inline-block;
  padding: 15px 30px;
  position: relative;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: 1s;
  overflow: hidden;
}

.btn-gradient::before {
  content: "";
  position: absolute;
  background: conic-gradient(
    from var(--angle),
    navy 80%,
    turquoise 84%,
    green 88%,
    navy 92%
  );
  inset: 0;
  transition: --angle 1s;
  z-index: -2;
}

.btn-gradient::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 8px;
  z-index: -1;
}

.btn-gradient:hover::before {
  --angle: 360deg;
}

.btn-gradient:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.section {
  min-height: 100vh;
  padding: 100px 50px;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 50px;
  font-family: "Pirata One", system-ui;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(0, 0, 0, 0.1)
  );
  backdrop-filter: blur(15px);
  padding: 60px 20px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: center;
}

.photo-container {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

.photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    transparent calc(var(--stop) - 5%),
    white var(--stop),
    transparent calc(var(--stop) + 5%)
  );
  transition: --stop 1s;
  mix-blend-mode: overlay;
}

.photo:hover::before {
  --stop: 110%;
}

.about-text {
  font-size: 1.2rem;
  line-height: 1.8;
}

.skills {
  background: linear-gradient(
    135deg,
    rgba(30, 30, 47, 0.2),
    rgba(59, 59, 107, 0.15)
  );
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 80px 40px;
  border: 1px solid rgba(123, 123, 201, 0.2);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-top: 60px;
}

.skill-card {
  background: linear-gradient(
    145deg,
    rgba(30, 30, 47, 0.2),
    rgba(59, 59, 107, 0.15)
  );
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(123, 123, 201, 0.3);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.skill-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(123, 123, 201, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.skill-card:hover::before {
  left: 100%;
}

.skill-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 0 40px rgba(123, 123, 201, 0.4);
  border-color: rgba(123, 123, 201, 0.6);
}

.skill-icon {
  font-size: 3.5rem;
  margin-bottom: 25px;
  color: #ffd700;
  transition: all 0.5s ease;
}

.skill-card:hover .skill-icon {
  transform: scale(1.3) rotateY(360deg);
  color: #ff6b6b;
}

.skill-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.skill-card p {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Projects Section */
.projects {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.3),
    rgba(50, 50, 50, 0.4)
  );
  backdrop-filter: blur(12px);
  padding: 60px 20px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.project-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.project-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
}

.project-info {
  padding: 20px;
}

/* Gallery Section */
.gallery {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.25),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(10px);
  padding: 60px 20px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}

.gallery-grid {
  width: 70%;
  max-width: 800px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.25rem;
  transition: all 400ms;
  margin: 0 auto;
}

.card {
  flex: 1;
  height: 100%;
  transition: all 400ms;
  cursor: pointer;
}

.card > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card:nth-child(odd) {
  translate: 0 -20px;
}

.card:nth-child(even) {
  translate: 0 20px;
}

.gallery-grid:hover .card:not(:hover) {
  filter: grayscale(100%);
}

.card:hover {
  flex: 3;
}

/* Contact Section */
        .contact {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            color: white;
            font-size: 2.5rem;
            margin-bottom: 40px;
        }

        .contact-form {
            max-width: 800px;
            margin: 0 auto;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
            color: white;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        /* Animated Button Styles */
        .order {
            appearance: none;
            border: 0;
           background: #3182ce;
            position: relative;
            height: 63px;
            width: 240px;
            padding: 0;
            outline: none;
            cursor: pointer;
            border-radius: 32px;
            -webkit-mask-image: -webkit-radial-gradient(white, black);
            -webkit-tap-highlight-color: transparent;
            overflow: hidden;
            transition: transform 0.3s ease;
            margin: 20px auto 0;
            display: block;
        }

        .order span {
            --o: 1;
            position: absolute;
            left: 0;
            right: 0;
            text-align: center;
            top: 19px;
            line-height: 24px;
            color: var(--white);
            font-size: 16px;
            font-weight: 500;
            opacity: var(--o);
            transition: opacity 0.3s ease;
        }

        .order span.default {
            transition-delay: 0.3s;
        }

        .order span.success {
            --offset: 16px;
            --o: 0;
        }

        .order span.success svg {
            width: 12px;
            height: 10px;
            display: inline-block;
            vertical-align: top;
            fill: none;
            margin: 7px 0 0 4px;
            stroke: var(--green);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-dasharray: 16px;
            stroke-dashoffset: var(--offset);
            transition: stroke-dashoffset 0.3s ease;
        }

        .order:active {
            transform: scale(0.96);
        }

        .order .lines {
            opacity: 0;
            position: absolute;
            height: 3px;
            background: green;
            border-radius: 2px;
            width: 6px;
            top: 30px;
            left: 100%;
            box-shadow: 15px 0 0 var(--white), 30px 0 0 var(--white), 45px 0 0 var(--white), 60px 0 0 var(--white), 75px 0 0 var(--white), 90px 0 0 var(--white), 105px 0 0 var(--white), 120px 0 0 var(--white), 135px 0 0 var(--white), 150px 0 0 var(--white), 165px 0 0 var(--white), 180px 0 0 var(--white), 195px 0 0 var(--white), 210px 0 0 var(--white), 225px 0 0 var(--white), 240px 0 0 var(--white), 255px 0 0 var(--white), 270px 0 0 var(--white), 285px 0 0 var(--white), 300px 0 0 var(--white), 315px 0 0 var(--white), 330px 0 0 var(--white);
        }

        .order .back, .order .box {
            border-radius: 2px;
            background: #2f3542; 
            position: absolute;
        }

        .order .truck {
            width: 60px;
            height: 41px;
            left: 100%;
            z-index: 1;
            top: 11px;
            position: absolute;
            transform: translateX(24px);
        }

        .order .truck:before, .order .truck:after {
            --r: -90deg;
            content: '';
            height: 2px;
            width: 20px;
            right: 58px;
            position: absolute;
            display: block;
            background: Red;
            border-radius: 1px;
            transform-origin: 100% 50%;
            transform: rotate(var(--r));
        }

        .order .truck:before {
            top: 4px;
        }

        .order .truck:after {
            --r: 90deg;
            bottom: 4px;
        }

        .order .truck .back {
            left: 0;
            top: 0;
            width: 60px;
            height: 41px;
            z-index: 1;
        }

        .order .truck .front {
            overflow: hidden;
            position: absolute;
            border-radius: 2px 9px 9px 2px;
            width: 26px;
            height: 41px;
            left: 60px;
        }

        .order .truck .front:before, .order .truck .front:after {
            content: '';
            position: absolute;
            display: block;
        }

        .order .truck .front:before {
            height: 13px;
            width: 2px;
            left: 0;
            top: 14px;
            background: linear-gradient(var(--yellow), var(--grey-dark));
        }

        .order .truck .front:after {
            border-radius: 2px 9px 9px 2px;
            background: var(--primary);
            width: 24px;
            height: 41px;
            right: 0;
        }

        .order .truck .front .window {
            overflow: hidden;
            border-radius: 2px 8px 8px 2px;
            background: red;
            transform: perspective(4px) rotateY(3deg);
            width: 22px;
            height: 41px;
            position: absolute;
            left: 2px;
            top: 0;
            z-index: 1;
            transform-origin: 0 50%;
        }

        .order .truck .front .window:before, .order .truck .front .window:after {
            content: '';
            position: absolute;
            right: 0;
        }

        .order .truck .front .window:before {
            top: 0;
            bottom: 0;
            width: 14px;
            background: var(--dark);
        }

        .order .truck .front .window:after {
            width: 14px;
            top: 7px;
            height: 4px;
            position: absolute;
            background: rgba(255, 255, 255, 0.14);
            transform: skewY(14deg);
            box-shadow: 0 7px 0 rgba(255, 255, 255, 0.14);
        }

        .order .truck .light {
            width: 3px;
            height: 8px;
            left: 83px;
            transform-origin: 100% 50%;
            position: absolute;
            border-radius: 2px;
            transform: scaleX(0.8);
            background: white;
        }

        .order .truck .light:before {
            content: '';
            height: 4px;
            width: 7px;
            opacity: 0;
            transform: perspective(2px) rotateY(-15deg) scaleX(0.94);
            position: absolute;
            transform-origin: 0 50%;
            left: 3px;
            top: 50%;
            margin-top: -2px;
            background: linear-gradient(90deg, white, rgba(540, 220, 65, 0.7), rgba(240, 450, 915, 0));
        }

        .order .truck .light.top {
            top: 4px;
        }

        .order .truck .light.bottom {
            bottom: 4px;
        }

        .order .box {
            --start: var(--sand-light);
            --stop: var(--sand);
            width: 21px;
            height: 21px;
            right: 100%;
            top: 21px;
        }

        .order .box:before, .order .box:after {
            content: '';
            top: 10px;
            position: absolute;
            left: 0;
            right: 0;
        }

        .order .box:before {
            height: 3px;
            margin-top: -1px;
            background: rgba(0, 0, 0, 0.315);
        }

        .order .box:after {
            height: 1px;
            background: rgba(0, 0, 0, 0.15);
        }

        /* Animation States */
        .order.animate .default {
            --o: 0;
            transition-delay: 0s;
        }

        .order.animate .success {
            --offset: 0;
            --o: 1;
            transition-delay: 7s;
        }

        .order.animate .success svg {
            transition-delay: 7.3s;
        }

        .order.animate .truck {
            animation: truck 10s ease forwards;
        }

        .order.animate .truck:before {
            animation: door1 2.4s ease forwards 0.3s;
        }

        .order.animate .truck:after {
            animation: door2 2.4s ease forwards 0.6s;
        }

        .order.animate .truck .light:before, .order.animate .truck .light:after {
            animation: light 10s ease forwards;
        }

        .order.animate .box {
            animation: box 10s ease forwards;
        }

        .order.animate .lines {
            animation: lines 10s ease forwards;
        }

        /* Keyframe Animations */
        @keyframes truck {
            10%, 30% {
                transform: translateX(-164px);
            }
            40% {
                transform: translateX(-104px);
            }
            60% {
                transform: translateX(-224px);
            }
            75%, 100% {
                transform: translateX(24px);
            }
        }

        @keyframes lines {
            0%, 30% {
                opacity: 0;
                transform: scaleY(0.7) translateX(0);
            }
            35%, 65% {
                opacity: 1;
            }
            70% {
                opacity: 0;
            }
            100% {
                transform: scaleY(0.7) translateX(-400px);
            }
        }

        @keyframes light {
            0%, 30% {
                opacity: 0;
                transform: perspective(2px) rotateY(-15deg) scaleX(0.88);
            }
            40%, 100% {
                opacity: 1;
                transform: perspective(2px) rotateY(-15deg) scaleX(0.94);
            }
        }

        @keyframes door1 {
            30%, 50% {
                transform: rotate(32deg);
            }
        }

        @keyframes door2 {
            30%, 50% {
                transform: rotate(-32deg);
            }
        }

        @keyframes box {
            8%, 10% {
                transform: translateX(40px);
                opacity: 1;
            }
            25% {
                transform: translateX(112px);
                opacity: 1;
            }
            26% {
                transform: translateX(112px);
                opacity: 0;
            }
            27%, 100% {
                transform: translateX(0px);
                opacity: 0;
            }
        }

/* Footer */
.footer {
  background: linear-gradient(90deg, #434343 0%, #000000 100%);
  padding: 50px 0;
  color: white;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-section p {
  font-size: 1rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ffd700;
}

.social-links a {
  color: white;
  font-size: 1.5rem;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ffd700;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Scroll Animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Floating Balls */
.floating-elements {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-ball {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  animation: float 6s ease-in-out infinite;
}

.floating-ball:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-ball:nth-child(2) {
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.floating-ball:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .loading-logo {
    font-size: 2rem;
  }

  .loading-percentage {
    font-size: 3rem;
  }

  .progress-container {
    width: 250px;
  }

  .nav-blur {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section {
    padding: 50px 20px;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    display: flex;
    justify-content: center;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #764ba2, #667eea);
}
