/* =============================================
   GLOBAL STYLES & VARIABLES
   ============================================= */

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cabin:ital,wght@0,400..700;1,400..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Libre+Franklin:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Shadows+Into+Light&family=Shadows+Into+Light+Two&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

:root {
  --primary-color: #38b6ff;
  --secondary-color: #38b6ff;
  --accent-color: #38b6ff;
  --text-color: #000000;
  --light-text: #000000;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  /*font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;*/
  color: var(--text-color);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   SCROLL PROGRESS BAR
   ============================================= */

.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color),
    var(--light-text)
  );
  width: 0%;
  z-index: 1000;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
  }
}

/* =============================================
   NAVIGATION
   ============================================= */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 16px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  width: 30%;
}
.nav-logo img {
  width: 53%;
}

/* .nav-logo a {
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-color);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
} */

.logo-text {
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  transition: var(--transition);
  border-radius: 2px;
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 20px 0px;
  /* background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%); */
  background-image: url(./assets/image/Banner/Banner-Img.jpg);
  position: relative;
  overflow: hidden;
  /*background-repeat: no-repeat;*/
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgb(56 182 255 / 12%) 0%,
    transparent 70%
  );
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgb(218 232 243) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -50px;
  left: -100px;
  animation: float 8s ease-in-out infinite 1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
}

.hero-text {
  animation: slideInLeft 0.8s ease-out;
}

.hero-title {
  font-size: 85px;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -4px;
}

/* .gradient-text {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color),
    var(--accent-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
} */
.gradient-text {
  color: #38b6ff !important;
}
.gradient-text2 {
  color: #38b6ff;
}

@keyframes gradientShift {
  0%,
  100% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(10deg);
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--light-text);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--light-text);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  box-shadow: 0px 5px 15px rgba(56, 182, 255, 0.313);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0px 5px 15px rgb(56 182 255 / 67%);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.social-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
}

.social-icon:hover {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  transform: translateY(-5px) scale(1.1);
  border-color: var(--primary-color);
}

.hero-image {
  animation: slideInRight 0.8s ease-out;
  position: relative;
}

.image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-image {
  width: 100%;
  /* max-width: 400px;
  border-radius: 20px; */
  /* object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); */
  animation: imageFloat 3s ease-in-out infinite;
  /* border: 3px solid var(--bg-white); */
}
img.profile-image.loaded {
  width: 65%;
  z-index: 9;
}

.image-border {
  position: absolute;
  width: 440px;
  height: 500px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  opacity: 0.3;
  animation: borderRotate 20s linear infinite;
}

button.back-to-top {
  background: #38b6ff !important;
  box-shadow: #38b6ff75 0px 5px 20px !important;
}
button.back-to-top:hover {
  background: #38b6ff !important;
  box-shadow: #38b6ff75 0px 5px 20px !important;
}

@keyframes imageFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes borderRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: bounce 2s infinite;
}

.hero-scroll span {
  color: var(--light-text);
  font-size: 0.9rem;
  font-weight: 600;
}

.scroll-indicator {
  width: 30px;
  height: 50px;
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes scrollBounce {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}

/* =============================================
   ABOUT SECTION
   ============================================= */

.about {
  padding: 50px 20px;
  background: var(--bg-white);
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 2rem;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
}

.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  margin: 1rem auto 0;
  border-radius: 2px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.about-text {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--light-text);
  margin-bottom: 2rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 15px;
  border: 2px solid var(--border-color);
  transition: var(--transition);
}

.stat-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgb(56 182 255 / 22%);
}

.stat-item h3 {
  font-size: 2.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--light-text);
  font-weight: 600;
}

/* =============================================
   SKILLS SECTION
   ============================================= */

.skills {
  padding: 50px 20px;
  background: linear-gradient(135deg, var(--bg-light) 0%, #f3f4f6 100%);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.skill-category {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  animation: fadeInUp 0.8s ease-out;
  border: 2px solid transparent;
}

.skill-category:hover {
  border-color: var(--primary-color);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(56, 182, 255, 0.322);
}

.skill-category h3 {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--text-color);
  text-align: center;
}

.skill-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 1.5rem;
}

.skill-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.skill-icon:hover {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  transform: translateY(-8px) scale(1.05);
  border-color: white;
}

.skill-icon i {
  font-size: 2.5rem;
  transition: var(--transition);
  animation: iconFloat 2s ease-in-out infinite;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0) rotateZ(0deg);
  }
  50% {
    transform: translateY(-10px) rotateZ(5deg);
  }
}

.skill-icon:nth-child(1) i {
  animation-delay: 0s;
}

.skill-icon:nth-child(2) i {
  animation-delay: 0.2s;
}

.skill-icon:nth-child(3) i {
  animation-delay: 0.4s;
}

.skill-icon:nth-child(4) i {
  animation-delay: 0.6s;
}

.skill-icon:nth-child(5) i {
  animation-delay: 0.8s;
}

.skill-icon:nth-child(6) i {
  animation-delay: 1s;
}

.skill-icon p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-color);
}

.skill-icon:hover p {
  color: white;
}

/* =============================================
   PROJECTS SECTION
   ============================================= */

.projects {
  padding: 50px 20px;
  background: var(--bg-white);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.project-card {
  background: var(--bg-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  animation: fadeInUp 0.8s ease-out;
  border: 1px solid var(--border-color);
}

.project-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 10px 30px rgba(56, 182, 255, 0.322);
}

.project-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.project-overlay a i {
  font-size: 13px;
  margin-right: 6px;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-link {
  background: var(--primary-color);
  color: white;
  width: 130px;
  height: 50px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
  transform: scale(0.5);
}

.project-card:hover .project-link {
  transform: scale(1);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.project-info {
  padding: 2rem;
}

.project-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--text-color);
}

.project-info p {
  color: var(--light-text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.project-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.project-tags span {
  background: var(--bg-light);
  color: var(--primary-color);
  padding: 0.4rem 0.6rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
}

.project-tags span:hover {
  background: var(--primary-color);
  color: white;
}

/* =============================================
   CONTACT SECTION
   ============================================= */

.contact {
  padding: 50px 20px;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  animation: fadeInUp 0.8s ease-out;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.contact-info p {
  color: var(--light-text);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.contact-method i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.contact-method a,
.contact-method p {
  color: var(--light-text);
  text-decoration: none;
  transition: var(--transition);
  margin: 0;
}

.contact-method a:hover {
  color: var(--primary-color);
}

.contact-form {
  animation: fadeInUp 0.8s ease-out 0.2s both;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-white);
  color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: #000;
  color: white;
  padding: 4rem 20px 2rem;
  border-top: 2px solid var(--primary-color);
}
.footer-logo img {
  width: 70%;
  margin-bottom: 10px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section {
  animation: fadeInUp 0.8s ease-out;
}

.footer-section h4 {
  font-size: 1.3rem;
  margin-bottom: 28px;
  color: #fff;
}

.footer-section p {
  color: #fff;
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-section a {
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-section a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
  border: 2px solid transparent;
}
.footer-social a:hover i {
  color: #fff;
}

.footer-social a:hover {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: translateY(-5px) scale(1.1);
  border-color: white;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #fff;
}

.heart {
  display: inline-block;
  animation: heartbeat 1.2s ease-in-out infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.3);
  }
  50% {
    transform: scale(1);
  }
}

/* =============================================
   UTILITY ANIMATIONS
   ============================================= */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 1rem 0;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-image {
    display: none;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  @keyframes imageFloat {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
}

@media (max-width: 480px) {
  .nav-logo {
    width: 40%;
  }
  .nav-logo img {
    width: 100%;
  }
  .hero-title {
    font-size: 34px;
    letter-spacing: -2px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .nav-menu {
    gap: 1rem;
  }

  .social-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-scroll {
    display: none;
  }

  .section-title {
    font-size: 1.8rem;
  }

  /*.skill-icons {*/
  /*  grid-template-columns: repeat(3, 1fr);*/
  /*}*/

  .stats {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    font-size: 0.9rem;
  }
}

/* =============================================
   PRINT STYLES
   ============================================= */

@media print {
  .navbar,
  .hero-scroll,
  .contact-form {
    display: none;
  }
}
