/* ===== PORTFOLIO CSS - MODERN BLACK/WHITE WITH NEON EFFECTS ===== */

/* ===== ROOT VARIABLES ===== */
:root {
  --primary-white: #ffffff;
  --primary-black: #000000;
  --soft-black: #0a0a0a;
  --dark-gray: #1a1a1a;
  --medium-gray: #2a2a2a;
  --light-gray: #3a3a3a;
  --neon-white: #ffffff;
  --neon-glow: rgba(255, 255, 255, 0.8);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-primary: "Syne", sans-serif;
  --font-secondary: "Space Grotesk", sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
  --border-radius: 12px;
  --navbar-height: 50px;

  /* ===== SECTION PADDING VARIABLES ===== */
  --hero-padding: 120px 0;
  --about-padding: 120px 0;
  --portfolio-padding: 120px 0;
  --experience-padding: 300px 0 100px;
  --testimonials-padding: 120px 0 60px;
  --hire-padding: 120px 0;
  --footer-padding: 120px 0;
}

/* ===== RESPONSIVE SECTION PADDING ===== */
/* Large Desktop - 1200px+ */
@media (max-width: 1200px) {
  :root {
    --hero-padding: 100px 0;
    --about-padding: 100px 0;
    --portfolio-padding: 100px 0;
    --experience-padding: 250px 0 80px;
    --testimonials-padding: 100px 0 10px;
    --hire-padding: 100px 0;
    --footer-padding: 100px 0;
  }
}

/* Tablet - 991px and below */
@media (max-width: 991px) {
  :root {
    --hero-padding: 80px 0;
    --about-padding: 80px 0;
    --portfolio-padding: 80px 0;
    --experience-padding: 200px 0 60px;
    --testimonials-padding: 80px 0 10px;
    --hire-padding: 80px 0;
    --footer-padding: 80px 0;
  }
}

/* Mobile Large - 768px and below */
@media (max-width: 768px) {
  :root {
    --hero-padding: 60px 0;
    --about-padding: 60px 0;
    --portfolio-padding: 60px 0;
    --experience-padding: 180px 0 40px;
    --testimonials-padding: 60px 0 10px;
    --hire-padding: 60px 0;
    --footer-padding: 60px 0;
  }
}

/* Mobile Medium - 576px and below */
@media (max-width: 576px) {
  :root {
    --hero-padding: 50px 0;
    --about-padding: 50px 0;
    --portfolio-padding: 50px 0;
    --experience-padding: 140px 0 20px;
    --testimonials-padding: 50px 0 0;
    --hire-padding: 50px 0;
    --footer-padding: 50px 0;
  }
}

/* Mobile Small - 480px and below */
@media (max-width: 480px) {
  :root {
    --hero-padding: 40px 0;
    --about-padding: 40px 0;
    --portfolio-padding: 40px 0;
    --experience-padding: 120px 0 10px;
    --testimonials-padding: 40px 0 10px;
    --hire-padding: 40px 0;
    --footer-padding: 40px 0;
  }
}

/* Mobile Extra Small - 375px and below */
@media (max-width: 375px) {
  :root {
    --hero-padding: 35px 0;
    --about-padding: 25px 0;
    --portfolio-padding: 35px 0;
    --experience-padding: 120px 0 5px;
    --testimonials-padding: 30px 0 10px;
    --hire-padding: 35px 0;
    --footer-padding: 35px 0;
  }
}

/* ===== GENERAL STYLES ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-secondary);
  background: var(--primary-black);
  color: var(--primary-white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  padding-top: var(--navbar-height);
}

body.menu-open {
  overflow: hidden;
}

.wrapp {
  width: 100%;
  min-height: 100vh;
  position: relative;
  z-index: 10;
}

.content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ===== GALAXY BACKGROUND ===== */
.galaxy-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: radial-gradient(
    ellipse at center,
    var(--soft-black) 0%,
    var(--primary-black) 70%
  );
  overflow: hidden;
}

.stars {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
}

.stars::before,
.stars::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
}

.stars::before {
  background-image: radial-gradient(
      1px 1px at 20px 30px,
      var(--primary-white),
      transparent
    ),
    radial-gradient(1px 1px at 40px 70px, var(--primary-white), transparent),
    radial-gradient(1px 1px at 90px 40px, var(--primary-white), transparent),
    radial-gradient(1px 1px at 130px 80px, var(--primary-white), transparent),
    radial-gradient(1px 1px at 160px 30px, var(--primary-white), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: twinkle 4s linear infinite;
}

.stars::after {
  background-image: radial-gradient(
      1px 1px at 40px 60px,
      var(--primary-white),
      transparent
    ),
    radial-gradient(1px 1px at 80px 10px, var(--primary-white), transparent),
    radial-gradient(1px 1px at 120px 50px, var(--primary-white), transparent),
    radial-gradient(1px 1px at 180px 90px, var(--primary-white), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: twinkle 6s linear infinite reverse;
}

.moving-stars {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  background-image: radial-gradient(
      2px 2px at 30px 40px,
      rgba(255, 255, 255, 0.8),
      transparent
    ),
    radial-gradient(2px 2px at 70px 80px, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(
      1px 1px at 110px 20px,
      rgba(255, 255, 255, 0.9),
      transparent
    ),
    radial-gradient(
      1px 1px at 150px 60px,
      rgba(255, 255, 255, 0.7),
      transparent
    );
  background-repeat: repeat;
  background-size: 300px 200px;
  animation: movingStars 20s linear infinite;
}

/* ===== SHOOTING STARS ===== */
.shooting-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--primary-white);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.shooting-star::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, var(--primary-white), transparent);
  transform: translate(-50%, -50%);
  border-radius: 100px;
}

.shooting-star.type-1::before {
  width: 80px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.shooting-star.type-2::before {
  width: 120px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.3),
    transparent
  );
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.shooting-star.type-3::before {
  width: 60px;
  background: linear-gradient(
    90deg,
    var(--primary-white),
    rgba(255, 255, 255, 0.5),
    transparent
  );
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.9);
}

/* Shooting star animations from different angles */
@keyframes shootFromTopLeft {
  0% {
    transform: translate(-100px, -100px) rotate(45deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(calc(100vw + 100px), calc(100vh + 100px)) rotate(45deg);
    opacity: 0;
  }
}

@keyframes shootFromTopRight {
  0% {
    transform: translate(100px, -100px) rotate(135deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(calc(-100vw - 100px), calc(100vh + 100px))
      rotate(135deg);
    opacity: 0;
  }
}

@keyframes shootFromLeft {
  0% {
    transform: translate(-100px, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(calc(100vw + 100px), 0) rotate(0deg);
    opacity: 0;
  }
}

@keyframes shootFromRight {
  0% {
    transform: translate(100px, 0) rotate(180deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(calc(-100vw - 100px), 0) rotate(180deg);
    opacity: 0;
  }
}

@keyframes shootFromBottomLeft {
  0% {
    transform: translate(-100px, 100px) rotate(-45deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(calc(100vw + 100px), calc(-100vh - 100px))
      rotate(-45deg);
    opacity: 0;
  }
}

@keyframes shootFromBottomRight {
  0% {
    transform: translate(100px, 100px) rotate(-135deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(calc(-100vw - 100px), calc(-100vh - 100px))
      rotate(-135deg);
    opacity: 0;
  }
}

/* Animation classes for shooting stars */
.shooting-star.shoot-from-top-left {
  animation: shootFromTopLeft 3s linear forwards;
}

.shooting-star.shoot-from-top-right {
  animation: shootFromTopRight 3s linear forwards;
}

.shooting-star.shoot-from-left {
  animation: shootFromLeft 2.5s linear forwards;
}

.shooting-star.shoot-from-right {
  animation: shootFromRight 2.5s linear forwards;
}

.shooting-star.shoot-from-bottom-left {
  animation: shootFromBottomLeft 3s linear forwards;
}

.shooting-star.shoot-from-bottom-right {
  animation: shootFromBottomRight 3s linear forwards;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

@keyframes movingStars {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-200px);
  }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 25px; /* Margin from top */
  left: 50%;
  transform: translateX(-50%);
  width: 85%; /* Better centered spacing */
  max-width: 900px;
  height: var(--navbar-height);
  background: rgba(255, 255, 255, 0.12); /* Enhanced glass morphic background */
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px); /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  z-index: 100000; /* Above loader */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  padding: 0 35px;
  /* Enhanced neon glow effect */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.2),
    0 0 80px rgba(255, 255, 255, 0.08), 0 0 120px rgba(255, 255, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(25px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.2),
    0 0 80px rgba(255, 255, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.navbar.hidden {
  transform: translateX(-50%) translateY(-100px);
  opacity: 0;
}

.navbar.mobile-mode {
  width: 95%;
  padding: 0 20px;
  top: 15px;
}

.nav-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  position: relative;
}

.nav-logo {
  display: none;
}

.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: center;
  width: 100%;
}

.nav-link {
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-white);
  text-decoration: none;
  position: relative;
  transition: var(--transition);
  padding: 10px 16px;
  border-radius: 20px;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: var(--transition);
  z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-white);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* ===== HAMBURGER MENU (TOP LEFT) ===== */
.hamburger {
  position: fixed;
  top: 25px;
  left: 25px;
  z-index: 100001; /* Above loader and navbar */
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: none; /* Hidden by default, shown in media queries */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* Glass morphic background matching navbar */
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  /* Neon glow effect matching navbar */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.15),
    0 0 80px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.hamburger .bar {
  width: 20px;
  height: 2px;
  background: var(--primary-white);
  margin: 2px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 255, 255, 0.2),
    0 0 100px rgba(255, 255, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(255, 255, 255, 0.15);
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Show hamburger on tablet and mobile */
@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .navbar {
    display: none; /* Completely hide navbar on mobile/tablet */
  }
}

/* Tablet optimizations */
@media (max-width: 768px) {
  .navbar {
    display: none; /* Keep navbar hidden on tablet */
  }

  .hamburger {
    top: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
  }
}

/* Mobile optimizations */
@media (max-width: 480px) {
  .navbar {
    display: none; /* Keep navbar hidden on mobile */
  }

  .hamburger {
    top: 15px;
    left: 15px;
    width: 42px;
    height: 42px;
  }
}

/* ===== SIDEBAR NAVIGATION ===== */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(30px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100002; /* Above loader, navbar, and hamburger */
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
}

.sidebar.active {
  right: 0;
}

.sidebar-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--primary-white);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.sidebar-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-nav .nav-link {
  font-size: 18px;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: var(--transition);
}

.sidebar-nav .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.sidebar-nav .nav-link::before {
  display: none;
}

/* Overlay for sidebar */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100001; /* Above loader, below sidebar */
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.sidebar-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ===== SCROLL TO TOP WIDGET ===== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  backdrop-filter: blur(20px);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-to-top:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.scroll-to-top::before {
  content: "↑";
  color: var(--primary-white);
  font-size: 20px;
  font-weight: bold;
}

/* ===== SCROLL WIDGET TOOLTIP ===== */
.scroll-tooltip {
  position: absolute;
  bottom: 60px;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  color: var(--primary-white);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-family: var(--font-secondary);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  pointer-events: none;
  z-index: 1001;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.scroll-tooltip::before {
  content: "";
  position: absolute;
  top: 100%;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid rgba(0, 0, 0, 0.9);
}

.scroll-to-top:hover .scroll-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* Hide tooltip when popup is active */
.scroll-nav-popup.active ~ .scroll-to-top .scroll-tooltip {
  opacity: 0;
  pointer-events: none;
}

/* Navigation popup for scroll widget */
.scroll-nav-popup {
  position: fixed;
  bottom: 90px;
  right: 30px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  backdrop-filter: blur(20px);
  padding: 15px;
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
}

.scroll-nav-popup.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}

.scroll-nav-popup .nav-link {
  display: block;
  margin-bottom: 8px;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--primary-white);
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
}

.scroll-nav-popup .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: var(--hero-padding);
  overflow: hidden;
  margin-top: -var(--navbar-height);
  padding-top: calc(120px + var(--navbar-height));
  margin-left: 40px;
  margin-right: 40px;
}

.hero-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 0.9;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.title-line {
  display: block;
  position: relative;
  will-change: transform;
}

.title-line.stroke {
  color: transparent;
  -webkit-text-stroke: 2px var(--primary-white);
  text-shadow: 0 0 20px var(--neon-glow);
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.5;
  will-change: transform;
}

.hero-cta {
  display: none;
}

.hero-image {
  position: relative;
  height: 70vh;
  min-height: 600px;
  will-change: transform;
  cursor: pointer;
}

.image-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: none;
  background: transparent;
  backdrop-filter: none;
  transition: var(--transition);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: var(--transition);
  will-change: transform;
}

/* Ensure image shows properly on desktop */
@media (min-width: 992px) {
  .image-container img {
    object-fit: cover;
    object-position: center top;
  }
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent);
  transition: var(--transition);
}

.image-container:hover {
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.image-container:hover img {
  transform: scale(1.05);
}

.image-container:hover .image-overlay {
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent);
}

.image-container::after {
  content: "Click to view";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: var(--primary-white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-family: var(--font-secondary);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 10;
}

.image-container:hover::after {
  opacity: 1;
}

/* Responsive styles for click indicator */
@media (max-width: 768px) {
  .image-container::after {
    font-size: 12px;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .image-container::after {
    font-size: 11px;
    padding: 5px 10px;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: float 3s ease-in-out infinite;
  will-change: transform;
}

.scroll-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary-white), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes scrollLine {
  0% {
    height: 0;
  }
  50% {
    height: 40px;
  }
  100% {
    height: 0;
  }
}

/* ===== HERO RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  .hero {
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-container {
    gap: 40px;
  }

  .hero-image {
    height: 60vh;
    min-height: 500px;
  }
}

@media (max-width: 991px) {
  .hero {
    margin-left: 0;
    margin-right: 0;
    padding: 60px 15px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-image {
    order: 1;
    height: 50vh;
    min-height: 400px;
    width: 100%;
    margin: 0;
  }

  .image-container img {
    object-fit: contain;
    object-position: center;
  }

  .hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .hero {
    margin-left: 0;
    margin-right: 0;
    padding: 40px 10px;
    min-height: 90vh;
  }

  .hero-container {
    gap: 25px;
  }

  .hero-image {
    height: 45vh;
    min-height: 350px;
  }

  .image-container img {
    object-fit: contain;
    object-position: center;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    line-height: 1;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.4;
  }

  .scroll-indicator {
    bottom: 20px;
  }

  .scroll-text {
    font-size: 12px;
  }

  .scroll-line {
    height: 30px;
  }
}

@media (max-width: 576px) {
  .hero {
    margin-left: 0;
    margin-right: 0;
    padding: 30px 5px;
    min-height: 85vh;
  }

  .hero-container {
    gap: 20px;
  }

  .hero-image {
    height: 40vh;
    min-height: 300px;
  }

  .image-container img {
    object-fit: contain;
    object-position: center;
  }

  .hero-title {
    font-size: clamp(1.8rem, 5.5vw, 3rem);
    margin-bottom: 12px;
  }

  .title-line.stroke {
    -webkit-text-stroke: 1.5px var(--primary-white);
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .scroll-indicator {
    bottom: 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    margin-left: 0;
    margin-right: 0;
    padding: 25px 10px;
    min-height: 80vh;
  }

  .hero-container {
    gap: 15px;
  }

  .hero-image {
    height: 35vh;
    min-height: 250px;
  }

  .image-container img {
    object-fit: contain;
    object-position: center;
  }

  .hero-title {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 13px;
    margin-bottom: 15px;
    padding: 0 5px;
  }

  .scroll-indicator {
    bottom: 10px;
  }

  .scroll-text {
    font-size: 10px;
  }

  .scroll-line {
    height: 25px;
  }
}

@media (max-width: 375px) {
  .hero {
    padding: 20px 5px;
    min-height: 75vh;
  }

  .hero-image {
    height: 30vh;
    min-height: 220px;
  }

  .image-container img {
    object-fit: contain;
    object-position: center;
  }

  .hero-title {
    font-size: clamp(1.4rem, 4.5vw, 2.2rem);
  }

  .hero-subtitle {
    font-size: 12px;
  }
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-family: var(--font-primary);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 80px;
  position: relative;
  line-height: 0.9;
}

.section-title .stroke {
  color: transparent;
  -webkit-text-stroke: 2px var(--primary-white);
  text-shadow: 0 0 20px var(--neon-glow);
}

.section-title__square {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  z-index: -1;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  will-change: transform;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
  padding: var(--portfolio-padding);
  position: relative;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.portfolio-item {
  position: relative;
  will-change: transform;
}

.portfolio-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(20px);
  cursor: pointer;
  will-change: transform;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  will-change: transform;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-card:hover .card-overlay {
  opacity: 1;
}

.portfolio-card:hover .card-image img {
  transform: scale(1.1);
}

.overlay-content {
  text-align: center;
  padding: 20px;
}

.overlay-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--primary-white);
}

.overlay-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.view-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid var(--primary-white);
  border-radius: var(--border-radius);
  color: var(--primary-white);
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.view-btn:hover {
  background: var(--primary-white);
  color: var(--primary-black);
  box-shadow: 0 0 20px var(--neon-glow);
}

.btn-arrow {
  transition: var(--transition);
}

.view-btn:hover .btn-arrow {
  transform: translateX(5px);
}

.card-info {
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-num {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
}

.project-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-white);
  text-align: right;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: var(--about-padding);
  position: relative;
}

.about-container {
  display: block;
  text-align: center;
}

.about-content .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.about-text {
  max-width: 600px;
  margin: 0 auto;
  will-change: transform;
}

.about-intro {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 20px;
  color: var(--primary-white);
  font-weight: 500;
}

.about-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.skill-item {
  padding: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  will-change: transform;
}

.skill-item:hover {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.skill-name {
  display: block;
  font-weight: 600;
  color: var(--primary-white);
  margin-bottom: 5px;
}

.skill-tech {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== ABOUT SECTION & HEADINGS RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  .about-container {
    gap: 60px;
  }

  .section-title {
    font-size: clamp(2.8rem, 5.5vw, 4rem);
    margin-bottom: 70px;
  }

  .hire-title {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  }

  .footer-title {
    font-size: clamp(2.3rem, 4.5vw, 3.5rem);
  }
}

@media (max-width: 991px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-content .section-title {
    text-align: center;
    margin-bottom: 30px;
  }

  .about-text {
    max-width: 700px;
    margin: 0 auto;
  }

  .about-intro {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .about-description {
    font-size: 15px;
    margin-bottom: 35px;
  }

  .skills-grid {
    gap: 18px;
    max-width: 600px;
    margin: 0 auto;
  }

  .skill-item {
    padding: 18px;
  }

  .skill-name {
    margin-bottom: 4px;
  }

  .skill-tech {
    font-size: 13px;
  }

  /* All headings responsive for tablet */
  .section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 60px;
  }

  .section-title__square {
    width: 100px;
    height: 100px;
  }

  .hire-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 18px;
  }

  .hire-subtitle {
    font-size: 20px;
    margin-bottom: 50px;
  }

  .footer-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 25px;
  }

  .footer-subtitle {
    font-size: 16px;
    margin-bottom: 35px;
  }

  .slide-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .hire-feature h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .hire-feature p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .about-container {
    gap: 30px;
  }

  .about-text {
    max-width: 600px;
  }

  .about-intro {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .about-description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .skills-grid {
    gap: 15px;
  }

  .skill-item {
    padding: 15px;
  }

  .skill-name {
    font-size: 15px;
    margin-bottom: 3px;
  }

  .skill-tech {
    font-size: 12px;
  }

  /* All headings responsive for mobile */
  .section-title {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    margin-bottom: 50px;
  }

  .section-title__square {
    width: 80px;
    height: 80px;
  }

  .hire-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    margin-bottom: 15px;
  }

  .hire-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .hire-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }

  .hire-feature {
    padding: 25px 20px;
  }

  .hire-feature-icon {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .footer-title {
    font-size: clamp(2rem, 3.8vw, 2.8rem);
    margin-bottom: 20px;
  }

  .footer-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .contact-link {
    font-size: 20px;
  }

  .footer-text {
    font-size: 1.5rem;
  }

  .slide-info h3 {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .company {
    font-size: 14px;
  }

  .period {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .description {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .about-container {
    gap: 25px;
  }

  .about-intro {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .about-description {
    font-size: 13px;
    margin-bottom: 25px;
  }

  .skills-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 400px;
  }

  .skill-item {
    padding: 12px;
    text-align: center;
  }

  .skill-name {
    font-size: 14px;
  }

  .skill-tech {
    font-size: 11px;
  }

  /* All headings responsive for small mobile */
  .section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 40px;
  }

  .section-title__square {
    width: 60px;
    height: 60px;
  }

  .hire-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 12px;
  }

  .hire-subtitle {
    font-size: 16px;
    margin-bottom: 35px;
  }

  .hire-features {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 35px;
  }

  .hire-feature {
    padding: 20px 15px;
  }

  .hire-feature-icon {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .hire-feature h4 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .hire-feature p {
    font-size: 13px;
  }

  .hire-cta {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hire-btn {
    width: 100%;
    max-width: 300px;
    padding: 15px 30px;
    font-size: 14px;
  }

  .footer-title {
    font-size: clamp(1.7rem, 3.5vw, 2.3rem);
    margin-bottom: 15px;
  }

  .footer-subtitle {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-social {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .social-link::after {
    display: none;
  }

  .contact-link {
    font-size: 18px;
  }

  .footer-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .about-intro {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .about-description {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .skill-item {
    padding: 10px;
  }

  .skill-name {
    font-size: 13px;
  }

  .skill-tech {
    font-size: 10px;
  }

  /* All headings responsive for very small mobile */
  .section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    margin-bottom: 35px;
  }

  .section-title__square {
    width: 50px;
    height: 50px;
  }

  .hire-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    margin-bottom: 10px;
  }

  .hire-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .hire-feature {
    padding: 15px 12px;
  }

  .hire-feature-icon {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .hire-feature h4 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .hire-feature p {
    font-size: 12px;
  }

  .hire-btn {
    padding: 12px 25px;
    font-size: 13px;
  }

  .footer-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 12px;
  }

  .footer-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .contact-link {
    font-size: 16px;
  }

  .footer-text {
    font-size: 1rem;
  }

  .slide-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .company {
    font-size: 13px;
  }

  .period {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .description {
    font-size: 13px;
  }
}

@media (max-width: 375px) {
  .about-intro {
    font-size: 15px;
  }

  .about-description {
    font-size: 11px;
  }

  .skill-item {
    padding: 8px;
  }

  .skill-name {
    font-size: 12px;
  }

  .skill-tech {
    font-size: 9px;
  }

  /* All headings responsive for smallest screens */
  .section-title {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    margin-bottom: 30px;
  }

  .section-title__square {
    width: 40px;
    height: 40px;
  }

  .hire-title {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    margin-bottom: 8px;
  }

  .hire-subtitle {
    font-size: 13px;
    margin-bottom: 25px;
  }

  .hire-feature {
    padding: 12px 10px;
  }

  .hire-feature-icon {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .hire-feature h4 {
    font-size: 13px;
    margin-bottom: 5px;
  }

  .hire-feature p {
    font-size: 11px;
  }

  .hire-btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  .footer-title {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin-bottom: 10px;
  }

  .footer-subtitle {
    font-size: 12px;
    margin-bottom: 18px;
  }

  .contact-link {
    font-size: 14px;
  }

  .footer-text {
    font-size: 0.9rem;
  }
}

/* ===== EXPERIENCE SLIDER SECTION ===== */
.experience-section {
  padding: var(--experience-padding);
  position: relative;
}

.experience-slider {
  max-width: 800px;
  margin: 0 auto;
}

.slider-container {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  backdrop-filter: blur(20px);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100px);
  transition: var(--transition);
  padding: 40px;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
}

.slide-content {
  display: flex;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.slide-number {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.2);
  min-width: 80px;
}

.slide-info h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--primary-white);
}

.company {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
}

.period {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 15px;
}

.description {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}

.slider-nav {
  display: flex;
  gap: 15px;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--primary-white);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-primary);
  font-weight: 600;
  backdrop-filter: blur(10px);
  font-size: 14px;
}

.nav-btn:hover,
.nav-btn.active {
  border-color: var(--primary-white);
  background: var(--primary-white);
  color: var(--primary-black);
}

.slider-progress {
  display: none;
}

/* ===== EXPERIENCE SECTION RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  .experience-slider {
    max-width: 700px;
  }

  .slider-container {
    height: 280px;
  }

  .slide {
    padding: 35px;
  }

  .slide-content {
    gap: 35px;
  }

  .slide-number {
    font-size: 2.5rem;
    min-width: 70px;
  }
}

@media (max-width: 991px) {
  .experience-slider {
    max-width: 600px;
  }

  .slider-container {
    height: 250px;
  }

  .slide {
    padding: 30px;
  }

  .slide-content {
    gap: 30px;
  }

  .slide-number {
    font-size: 2.2rem;
    min-width: 60px;
  }

  .nav-btn {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }

  /* Experience text smaller for tablet */
  .slide-info h3 {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .company {
    font-size: 14px;
  }

  .period {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .description {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .experience-slider {
    max-width: 100%;
  }

  .slider-container {
    height: 220px;
  }

  .slide {
    padding: 25px;
  }

  .slide-content {
    gap: 25px;
  }

  .slide-number {
    font-size: 2rem;
    min-width: 50px;
  }

  .slider-controls {
    margin-top: 25px;
    gap: 15px;
  }

  .slider-nav {
    gap: 12px;
  }

  .nav-btn {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }

  /* Experience text smaller for mobile */
  .slide-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .company {
    font-size: 13px;
  }

  .period {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .description {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .slider-container {
    height: 260px;
  }

  .slide {
    padding: 20px;
  }

  .slide-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .slide-number {
    font-size: 1.8rem;
    min-width: auto;
  }

  .slider-controls {
    margin-top: 20px;
    gap: 12px;
  }

  .slider-nav {
    gap: 10px;
  }

  .nav-btn {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .slider-container {
    height: 240px;
  }

  .slide {
    padding: 18px;
  }

  .slide-content {
    gap: 12px;
  }

  .slide-number {
    font-size: 1.6rem;
  }

  .nav-btn {
    width: 28px;
    height: 28px;
    font-size: 9px;
  }
}

@media (max-width: 375px) {
  .slider-container {
    height: 220px;
  }

  .slide {
    padding: 15px;
  }

  .slide-content {
    gap: 10px;
  }

  .slide-number {
    font-size: 1.4rem;
  }

  .nav-btn {
    width: 25px;
    height: 25px;
    font-size: 8px;
  }
}

/* ===== FOOTER ===== */
.footer {
  padding: var(--footer-padding);
  position: relative;
  border-top: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 0.9;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.footer-title .stroke {
  color: transparent;
  -webkit-text-stroke: 2px var(--primary-white);
  text-shadow: 0 0 20px var(--neon-glow);
}

.footer-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.5;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-link {
  position: relative;
  font-size: 24px;
  color: var(--primary-white);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  width: fit-content;
}

.contact-link:hover {
  color: var(--neon-white);
  text-shadow: 0 0 10px var(--neon-glow);
}

.link-underline {
  height: 2px;
  width: 0;
  background: var(--primary-white);
  box-shadow: 0 0 10px var(--neon-glow);
  transition: var(--transition);
  margin-top: 5px;
}

.contact-link:hover .link-underline {
  width: 100%;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}

.social-link {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  will-change: transform;
}

.social-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: var(--transition);
  transform: translateY(-50%);
}

.social-link:hover {
  color: var(--primary-white);
  text-shadow: 0 0 10px var(--neon-glow);
}

.social-link:hover::after {
  width: 40px;
  box-shadow: 0 0 10px var(--neon-glow);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
}

.footer-text {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.footer-text span {
  display: inline-block;
  transition: var(--transition);
  will-change: transform;
}

.footer-text span:hover {
  color: var(--neon-white);
  text-shadow: 0 0 10px var(--neon-glow);
}

/* ===== FOOTER RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  .footer-container {
    gap: 50px;
    margin-bottom: 50px;
  }

  .footer-subtitle {
    font-size: 16px;
    margin-bottom: 35px;
  }

  .contact-link {
    font-size: 22px;
  }

  .social-link {
    font-size: 15px;
  }

  .footer-text {
    font-size: 1.8rem;
  }

  .footer-bottom {
    padding-top: 35px;
  }
}

@media (max-width: 991px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
    text-align: center;
  }

  .footer-social {
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }

  .social-link::after {
    display: none;
  }

  .footer-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .contact-link {
    font-size: 20px;
  }

  .contact-info {
    align-items: center;
    gap: 18px;
  }

  .footer-text {
    font-size: 1.6rem;
  }

  .footer-bottom {
    padding-top: 30px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 20px;
  }

  .footer-container {
    gap: 35px;
    margin-bottom: 35px;
  }

  .footer-title {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    margin-bottom: 25px;
  }

  .footer-subtitle {
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.4;
  }

  .contact-link {
    font-size: 17px;
    word-break: break-word;
  }

  .contact-info {
    gap: 15px;
  }

  .footer-social {
    gap: 20px;
    justify-content: center;
  }

  .social-link {
    font-size: 14px;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: var(--transition);
  }

  .social-link:hover {
    border-color: var(--primary-white);
    background: rgba(255, 255, 255, 0.1);
  }

  .social-link::after {
    display: none;
  }

  .footer-text {
    font-size: 1.2rem;
    letter-spacing: 0.12em;
  }

  .footer-bottom {
    padding-top: 25px;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 50px 15px;
  }

  .footer-container {
    gap: 30px;
    margin-bottom: 30px;
  }

  .footer-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
  }

  .footer-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.4;
  }

  .contact-link {
    font-size: 15px;
    word-break: break-all;
  }

  .contact-info {
    gap: 12px;
  }

  .footer-social {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .social-link {
    font-size: 13px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: var(--transition);
  }

  .social-link:hover {
    border-color: var(--primary-white);
    background: rgba(255, 255, 255, 0.1);
  }

  .social-link::after {
    display: none;
  }

  .footer-text {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  .footer-bottom {
    padding-top: 20px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 12px;
  }

  .footer-container {
    gap: 25px;
    margin-bottom: 25px;
  }

  .footer-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin-bottom: 18px;
  }

  .footer-subtitle {
    font-size: 12px;
    margin-bottom: 18px;
    line-height: 1.3;
  }

  .contact-link {
    font-size: 14px;
    word-break: break-all;
  }

  .contact-info {
    gap: 10px;
  }

  .footer-social {
    gap: 12px;
    justify-content: center;
  }

  .social-link {
    font-size: 12px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
  }

  .footer-text {
    font-size: 0.9rem;
    letter-spacing: 0.06em;
  }

  .footer-bottom {
    padding-top: 18px;
  }
}

@media (max-width: 375px) {
  .footer {
    padding: 35px 15px;
  }

  .footer-container {
    gap: 20px;
    margin-bottom: 20px;
  }

  .footer-title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 15px;
  }

  .footer-subtitle {
    font-size: 11px;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .contact-link {
    font-size: 13px;
    word-break: break-all;
  }

  .contact-info {
    gap: 8px;
  }

  .footer-social {
    gap: 10px;
    justify-content: center;
  }

  .social-link {
    font-size: 11px;
    padding: 5px 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
  }

  .footer-text {
    font-size: 0.8rem;
    letter-spacing: 0.04em;
  }

  .footer-bottom {
    padding-top: 15px;
  }
}

/* ===== HERO IMAGE MODAL ===== */
.hero-image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.hero-image-modal.active {
  opacity: 1;
  pointer-events: all;
}

.hero-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: transparent;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  overflow: visible;
  transform: scale(0.8);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-modal.active .hero-modal-content {
  transform: scale(1);
}

.hero-modal-image {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-modal-image img {
  max-width: 80vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
}

/* For large and extra large devices - maintain original image size */
@media (min-width: 1200px) {
  .hero-modal-content {
    max-width: none;
    max-height: none;
  }

  .hero-modal-image img {
    max-width: 600px;
    max-height: 600px;
    width: 600px;
    height: 600px;
    object-fit: cover;
  }
}

@media (min-width: 1400px) {
  .hero-modal-image img {
    max-width: 700px;
    max-height: 700px;
    width: 700px;
    height: 700px;
  }
}

/* Hero Image Modal Responsive */
@media (max-width: 991px) {
  .hero-modal-content {
    max-width: 95vw;
    max-height: 95vh;
  }

  .hero-modal-image img {
    max-width: 85vw;
    max-height: 85vh;
  }
}

@media (max-width: 768px) {
  .hero-modal-content {
    max-width: 98vw;
    max-height: 98vh;
    border-radius: 0;
  }

  .hero-modal-image img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 0;
  }
}

@media (max-width: 576px) {
  .hero-modal-image img {
    max-width: 95vw;
    max-height: 95vh;
  }
}

/* ===== PROJECT MODAL ===== */
.project-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.project-modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  max-width: 900px;
  width: 90%;
  max-height: 80vh;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transform: scale(0.8);
  transition: var(--transition);
}

.project-modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-white);
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.modal-close:hover {
  background: var(--primary-white);
  color: var(--primary-black);
  box-shadow: 0 0 20px var(--neon-glow);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

.modal-image {
  height: 400px;
  overflow: hidden;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-info h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary-white);
}

.modal-info p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.modal-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.tech-tag {
  padding: 5px 15px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.modal-links {
  display: flex;
  gap: 15px;
}

.modal-link {
  position: relative;
  padding: 12px 25px;
  border: 1px solid var(--primary-white);
  border-radius: var(--border-radius);
  color: var(--primary-white);
  text-decoration: none;
  transition: var(--transition);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.modal-link:hover {
  background: var(--primary-white);
  color: var(--primary-black);
  box-shadow: 0 0 20px var(--neon-glow);
}

.modal-link.secondary {
  background: transparent;
}

/* ===== SECTION SPACING ===== */
.portfolio-section,
.experience-section,
.testimonials-section,
.hire-section {
  margin-bottom: 60px;
}

.about-section {
  margin-bottom: 100px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: var(--testimonials-padding);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 40px;
  backdrop-filter: blur(20px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.testimonial-quote {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 60px;
  color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: var(--font-primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary-white);
}

.author-info h4 {
  color: var(--primary-white);
  font-size: 16px;
  margin-bottom: 5px;
}

.author-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.testimonial-rating {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}

.star {
  color: #ffd700;
  font-size: 16px;
}

/* ===== TESTIMONIALS RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
  }

  .testimonial-card {
    padding: 35px;
  }

  .testimonial-quote {
    font-size: 17px;
    margin-bottom: 25px;
  }

  .author-avatar {
    width: 45px;
    height: 45px;
  }

  .author-info h4 {
    font-size: 15px;
  }

  .author-info p {
    font-size: 13px;
  }

  .star {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 45px;
  }

  .testimonial-card {
    padding: 30px;
  }

  .testimonial-quote {
    font-size: 16px;
    margin-bottom: 22px;
  }

  .testimonial-quote::before {
    font-size: 50px;
    top: -15px;
    left: -8px;
  }

  .testimonial-author {
    gap: 12px;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .author-info h4 {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .author-info p {
    font-size: 12px;
  }

  .testimonial-rating {
    gap: 4px;
    margin-top: 8px;
  }

  .star {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
  }

  .testimonial-card {
    padding: 25px;
  }

  .testimonial-quote {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .testimonial-quote::before {
    font-size: 45px;
    top: -12px;
    left: -6px;
  }

  .testimonial-author {
    gap: 10px;
  }

  .author-avatar {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .author-info h4 {
    font-size: 13px;
  }

  .author-info p {
    font-size: 11px;
  }

  .star {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 35px;
  }

  .testimonial-card {
    padding: 22px;
    max-width: 100%;
  }

  .testimonial-quote {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 18px;
  }

  .testimonial-quote::before {
    font-size: 40px;
    top: -10px;
    left: -5px;
  }

  .testimonial-author {
    gap: 8px;
  }

  .author-avatar {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }

  .author-info h4 {
    font-size: 12px;
  }

  .author-info p {
    font-size: 10px;
  }

  .testimonial-rating {
    gap: 3px;
    margin-top: 6px;
  }

  .star {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .testimonials-grid {
    gap: 18px;
    margin-top: 30px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-quote {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .testimonial-quote::before {
    font-size: 35px;
    top: -8px;
    left: -4px;
  }

  .author-avatar {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }

  .author-info h4 {
    font-size: 11px;
  }

  .author-info p {
    font-size: 9px;
  }

  .star {
    font-size: 11px;
  }
}

@media (max-width: 375px) {
  .testimonials-grid {
    gap: 15px;
    margin-top: 25px;
  }

  .testimonial-card {
    padding: 18px;
  }

  .testimonial-quote {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .testimonial-quote::before {
    font-size: 30px;
    top: -6px;
    left: -3px;
  }

  .author-avatar {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }

  .author-info h4 {
    font-size: 10px;
  }

  .author-info p {
    font-size: 8px;
  }

  .star {
    font-size: 10px;
  }
}

/* ===== HIRE ME SECTION ===== */
.hire-section {
  margin-top: 150px;
  padding: var(--hire-padding);
  position: relative;
  /* background: linear-gradient(135deg, var(--glass-bg), rgba(255, 255, 255, 0.02)); */
  /* border-top: 1px solid var(--glass-border); */
  /* border-bottom: 1px solid var(--glass-border); */
  /* backdrop-filter: blur(30px); */
  overflow: hidden;
}

.hire-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  /* background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%); */
  animation: rotate 20s linear infinite;
  z-index: 1;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hire-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hire-title {
  font-family: var(--font-primary);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.9;
  background: linear-gradient(
    135deg,
    var(--primary-white),
    rgba(255, 255, 255, 0.7)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hire-title .stroke {
  color: transparent;
  -webkit-text-stroke: 2px var(--primary-white);
  text-shadow: 0 0 30px var(--neon-glow);
  -webkit-text-fill-color: transparent;
}

.hire-subtitle {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 60px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.hire-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.hire-feature {
  padding: 30px 25px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.hire-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: var(--transition);
}

.hire-feature:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.hire-feature:hover::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
}

.hire-feature-icon {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary-white);
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.hire-feature h4 {
  font-size: 18px;
  color: var(--primary-white);
  margin-bottom: 12px;
  font-weight: 600;
  font-family: var(--font-primary);
}

.hire-feature p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  font-weight: 300;
}

.hire-cta {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.hire-btn {
  position: relative;
  padding: 18px 35px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hire-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s;
}

.hire-btn:hover::before {
  left: 100%;
}

.hire-btn.primary {
  background: linear-gradient(
    135deg,
    var(--primary-white),
    rgba(255, 255, 255, 0.9)
  );
  color: var(--primary-black);
  border: 2px solid var(--primary-white);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.hire-btn.primary:hover {
  background: transparent;
  color: var(--primary-white);
  box-shadow: 0 0 40px var(--neon-glow);
  transform: translateY(-3px);
}

.hire-btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hire-btn.secondary:hover {
  background: var(--primary-white);
  color: var(--primary-black);
  box-shadow: 0 0 40px var(--neon-glow);
  transform: translateY(-3px);
  border-color: var(--primary-white);
}

/* ===== CUSTOM SITE LOADER ===== */
.site-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-black);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  pointer-events: auto;
}

.site-loader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Loader Background - Similar to main galaxy */
.loader-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    var(--soft-black) 0%,
    var(--primary-black) 70%
  );
  overflow: hidden;
}

.loader-stars {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
}

.loader-stars::before,
.loader-stars::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
}

.loader-stars::before {
  background-image: radial-gradient(
      1px 1px at 25% 30%,
      var(--primary-white),
      transparent
    ),
    radial-gradient(1px 1px at 70% 20%, var(--primary-white), transparent),
    radial-gradient(1px 1px at 20% 80%, var(--primary-white), transparent),
    radial-gradient(1px 1px at 80% 60%, var(--primary-white), transparent),
    radial-gradient(1px 1px at 15% 50%, var(--primary-white), transparent);
  background-repeat: repeat;
  background-size: 200px 150px;
  animation: loaderTwinkle 3s linear infinite;
}

.loader-stars::after {
  background-image: radial-gradient(
      1px 1px at 60% 40%,
      var(--primary-white),
      transparent
    ),
    radial-gradient(1px 1px at 30% 70%, var(--primary-white), transparent),
    radial-gradient(1px 1px at 90% 30%, var(--primary-white), transparent),
    radial-gradient(1px 1px at 40% 90%, var(--primary-white), transparent);
  background-repeat: repeat;
  background-size: 180px 120px;
  animation: loaderTwinkle 4s linear infinite reverse;
}

.loader-moving-stars {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  background-image: radial-gradient(
      2px 2px at 30% 40%,
      rgba(255, 255, 255, 0.6),
      transparent
    ),
    radial-gradient(1px 1px at 70% 80%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 20% 20%, rgba(255, 255, 255, 0.7), transparent);
  background-repeat: repeat;
  background-size: 250px 180px;
  animation: loaderMovingStars 15s linear infinite;
}

/* Loader Content */
.loader-content {
  position: relative;
  z-index: 10001;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

/* Loader Logo */
.loader-logo {
  margin-bottom: 40px;
  animation: logoFloat 3s ease-in-out infinite;
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-white);
  letter-spacing: 0.2em;
  position: relative;
  display: inline-block;
  animation: logoGlow 2s ease-in-out infinite alternate;
}

.logo-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-white),
    transparent
  );
  margin: 15px auto 0;
  animation: lineExpand 2s ease-in-out infinite alternate;
}

/* Orbital Animation */
.loader-animation {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 40px;
}

.orbit-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.orbit-1 {
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbitRotate 3s linear infinite;
  border-color: rgba(255, 255, 255, 0.2);
}

.orbit-2 {
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbitRotate 5s linear infinite reverse;
  border-color: rgba(255, 255, 255, 0.15);
}

.orbit-3 {
  width: 180px;
  height: 180px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbitRotate 7s linear infinite;
  border-color: rgba(255, 255, 255, 0.1);
}

.planet {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--primary-white);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  animation: planetPulse 1.5s ease-in-out infinite alternate;
}

.orbit-2 .planet {
  width: 6px;
  height: 6px;
  top: -3px;
  animation-duration: 1.8s;
}

.orbit-3 .planet {
  width: 4px;
  height: 4px;
  top: -2px;
  animation-duration: 2.2s;
}

.center-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: radial-gradient(
    circle,
    var(--primary-white),
    rgba(255, 255, 255, 0.3)
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
    0 0 40px rgba(255, 255, 255, 0.4), 0 0 60px rgba(255, 255, 255, 0.2);
  animation: coreGlow 2s ease-in-out infinite alternate;
}

/* Loading Text */
.loader-text {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.loading-word {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--primary-white);
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.loading-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 6px;
  height: 6px;
  background: var(--primary-white);
  border-radius: 50%;
  animation: dotBounce 1.4s ease-in-out infinite;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

/* Progress Bar */
.loader-progress {
  position: relative;
}

.progress-bar-bg {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
  overflow: hidden;
  margin-bottom: 15px;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-white),
    rgba(255, 255, 255, 0.8),
    var(--primary-white)
  );
  width: 0%;
  border-radius: 1px;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.progress-percentage {
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  color: var(--primary-white);
  opacity: 0.7;
  letter-spacing: 0.05em;
}

/* Main Content Hidden State */
.main-content {
  transition: opacity 0.8s ease;
}

.main-content.loading {
  opacity: 0;
  pointer-events: none;
}

/* Keyframe Animations */
@keyframes loaderTwinkle {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

@keyframes loaderMovingStars {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-100px) translateY(-50px);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes logoGlow {
  0% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }
  100% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6),
      0 0 30px rgba(255, 255, 255, 0.4), 0 0 40px rgba(255, 255, 255, 0.2);
  }
}

@keyframes lineExpand {
  0% {
    width: 60px;
    opacity: 0.5;
  }
  100% {
    width: 120px;
    opacity: 1;
  }
}

@keyframes orbitRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes planetPulse {
  0% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transform: translateX(-50%) scale(1);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 1);
    transform: translateX(-50%) scale(1.2);
  }
}

@keyframes coreGlow {
  0% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
      0 0 40px rgba(255, 255, 255, 0.4), 0 0 60px rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 30px rgba(255, 255, 255, 1),
      0 0 60px rgba(255, 255, 255, 0.6), 0 0 90px rgba(255, 255, 255, 0.3);
  }
}

@keyframes dotBounce {
  0%,
  80%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  40% {
    transform: scale(1.3);
    opacity: 1;
  }
}

/* Responsive Design for Loader */
@media (max-width: 768px) {
  /* Hamburger Menu - Show on mobile */
  .hamburger {
    display: flex !important;
  }

  .nav-menu {
    display: none;
  }

  /* Loader responsive styles */
  .loader-content {
    max-width: 300px;
  }

  .logo-text {
    font-size: 2rem;
  }

  .loader-animation {
    width: 150px;
    height: 150px;
  }

  .orbit-1 {
    width: 45px;
    height: 45px;
  }

  .orbit-2 {
    width: 90px;
    height: 90px;
  }

  .orbit-3 {
    width: 135px;
    height: 135px;
  }

  .center-core {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 480px) {
  /* Ensure hamburger is visible on small mobile */
  .hamburger {
    display: flex !important;
    top: 15px;
    left: 15px;
  }

  /* Loader responsive styles */
  .logo-text {
    font-size: 1.5rem;
    letter-spacing: 0.15em;
  }

  .loader-animation {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
  }

  .orbit-1 {
    width: 35px;
    height: 35px;
  }

  .orbit-2 {
    width: 70px;
    height: 70px;
  }

  .orbit-3 {
    width: 105px;
    height: 105px;
  }

  .loading-word {
    font-size: 1rem;
  }

  .progress-percentage {
    font-size: 0.8rem;
  }
}

/* ===== PORTFOLIO & MODAL RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
  }

  .modal-content {
    max-width: 800px;
  }

  .modal-image {
    height: 350px;
  }

  .modal-info {
    padding: 35px;
  }
}

@media (max-width: 991px) {
  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
  }

  .card-image {
    height: 220px;
  }

  .card-info {
    padding: 20px;
  }

  .overlay-content {
    padding: 15px;
  }

  .overlay-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .overlay-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .view-btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .project-num {
    font-size: 16px;
  }

  .project-title {
    font-size: 16px;
  }

  /* Modal responsive for tablet */
  .modal-content {
    max-width: 700px;
    width: 95%;
    max-height: 85vh;
  }

  .modal-body {
    grid-template-columns: 1fr;
  }

  .modal-image {
    height: 280px;
  }

  .modal-info {
    padding: 30px;
  }

  .modal-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .modal-info p {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .modal-tech {
    margin-bottom: 25px;
  }

  .tech-tag {
    font-size: 13px;
    padding: 4px 12px;
  }

  .modal-link {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
  }

  .card-image {
    height: 200px;
  }

  .card-info {
    padding: 18px;
  }

  .overlay-content {
    padding: 12px;
  }

  .overlay-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .overlay-content p {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .view-btn {
    padding: 6px 14px;
    font-size: 13px;
    gap: 8px;
  }

  .project-num {
    font-size: 15px;
  }

  .project-title {
    font-size: 15px;
  }

  /* Modal responsive for mobile */
  .modal-content {
    max-width: 500px;
    width: 95%;
    max-height: 90vh;
  }

  .modal-image {
    height: 220px;
  }

  .modal-info {
    padding: 25px;
  }

  .modal-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .modal-info p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .modal-tech {
    margin-bottom: 20px;
  }

  .tech-tag {
    font-size: 12px;
    padding: 3px 10px;
  }

  .modal-links {
    flex-direction: column;
    gap: 10px;
  }

  .modal-link {
    padding: 8px 16px;
    font-size: 13px;
    text-align: center;
  }

  .modal-close {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .portfolio-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .card-image {
    height: 180px;
  }

  .card-info {
    padding: 15px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .overlay-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .overlay-content p {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .view-btn {
    padding: 5px 12px;
    font-size: 12px;
  }

  .project-num,
  .project-title {
    font-size: 14px;
  }

  /* Modal responsive for small mobile */
  .modal-content {
    max-width: 350px;
    width: 90%;
  }

  .modal-image {
    height: 180px;
  }

  .modal-info {
    padding: 20px;
  }

  .modal-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .modal-info p {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .modal-tech {
    margin-bottom: 15px;
  }

  .tech-tag {
    font-size: 11px;
    padding: 2px 8px;
  }

  .modal-link {
    padding: 6px 12px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    gap: 15px;
  }

  .portfolio-card {
    max-width: 350px;
  }

  .card-image {
    height: 160px;
  }

  .card-info {
    padding: 12px;
  }

  .overlay-content {
    padding: 10px;
  }

  .overlay-content h3 {
    font-size: 15px;
  }

  .overlay-content p {
    font-size: 11px;
  }

  .view-btn {
    padding: 4px 10px;
    font-size: 11px;
  }

  .project-num,
  .project-title {
    font-size: 13px;
  }

  /* Modal responsive for very small mobile */
  .modal-content {
    max-width: 300px;
    width: 85%;
  }

  .modal-image {
    height: 150px;
  }

  .modal-info {
    padding: 15px;
  }

  .modal-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .modal-info p {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .modal-tech {
    margin-bottom: 12px;
  }

  .tech-tag {
    font-size: 10px;
    padding: 2px 6px;
  }

  .modal-link {
    padding: 5px 10px;
    font-size: 11px;
  }

  .modal-close {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  .portfolio-card {
    max-width: 320px;
  }

  .card-image {
    height: 140px;
  }

  .card-info {
    padding: 10px;
  }

  .project-num,
  .project-title {
    font-size: 12px;
  }

  /* Modal responsive for smallest screens */
  .modal-content {
    max-width: 280px;
    width: 80%;
  }

  .modal-image {
    height: 130px;
  }

  .modal-info {
    padding: 12px;
  }

  .modal-info h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .modal-info p {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .tech-tag {
    font-size: 9px;
    padding: 1px 5px;
  }

  .modal-link {
    padding: 4px 8px;
    font-size: 10px;
  }
}

/* ===== ABOUT SECTION & HEADINGS RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  .about-container {
    gap: 60px;
  }

  .section-title {
    font-size: clamp(2.8rem, 5.5vw, 4rem);
    margin-bottom: 70px;
  }

  .hire-title {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  }

  .footer-title {
    font-size: clamp(2.3rem, 4.5vw, 3.5rem);
  }
}

@media (max-width: 991px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-content .section-title {
    text-align: center;
    margin-bottom: 30px;
  }

  .about-text {
    max-width: 700px;
    margin: 0 auto;
  }

  .about-intro {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .about-description {
    font-size: 15px;
    margin-bottom: 35px;
  }

  .skills-grid {
    gap: 18px;
    max-width: 600px;
    margin: 0 auto;
  }

  .skill-item {
    padding: 18px;
  }

  .skill-name {
    margin-bottom: 4px;
  }

  .skill-tech {
    font-size: 13px;
  }

  /* All headings responsive for tablet */
  .section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 60px;
  }

  .section-title__square {
    width: 100px;
    height: 100px;
  }

  .hire-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 18px;
  }

  .hire-subtitle {
    font-size: 20px;
    margin-bottom: 50px;
  }

  .footer-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 25px;
  }

  .footer-subtitle {
    font-size: 16px;
    margin-bottom: 35px;
  }

  .slide-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .hire-feature h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .hire-feature p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .about-container {
    gap: 30px;
  }

  .about-text {
    max-width: 600px;
  }

  .about-intro {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .about-description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .skills-grid {
    gap: 15px;
  }

  .skill-item {
    padding: 15px;
  }

  .skill-name {
    font-size: 15px;
    margin-bottom: 3px;
  }

  .skill-tech {
    font-size: 12px;
  }

  /* All headings responsive for mobile */
  .section-title {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    margin-bottom: 50px;
  }

  .section-title__square {
    width: 80px;
    height: 80px;
  }

  .hire-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    margin-bottom: 15px;
  }

  .hire-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .hire-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }

  .hire-feature {
    padding: 25px 20px;
  }

  .hire-feature-icon {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .footer-title {
    font-size: clamp(2rem, 3.8vw, 2.8rem);
    margin-bottom: 20px;
  }

  .footer-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .contact-link {
    font-size: 20px;
  }

  .footer-text {
    font-size: 1.5rem;
  }

  .slide-info h3 {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .company {
    font-size: 14px;
  }

  .period {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .description {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .about-container {
    gap: 25px;
  }

  .about-intro {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .about-description {
    font-size: 13px;
    margin-bottom: 25px;
  }

  .skills-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 400px;
  }

  .skill-item {
    padding: 12px;
    text-align: center;
  }

  .skill-name {
    font-size: 14px;
  }

  .skill-tech {
    font-size: 11px;
  }

  /* All headings responsive for small mobile */
  .section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 40px;
  }

  .section-title__square {
    width: 60px;
    height: 60px;
  }

  .hire-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 12px;
  }

  .hire-subtitle {
    font-size: 16px;
    margin-bottom: 35px;
  }

  .hire-features {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 35px;
  }

  .hire-feature {
    padding: 20px 15px;
  }

  .hire-feature-icon {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .hire-feature h4 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .hire-feature p {
    font-size: 13px;
  }

  .hire-cta {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hire-btn {
    width: 100%;
    max-width: 300px;
    padding: 15px 30px;
    font-size: 14px;
  }

  .footer-title {
    font-size: clamp(1.7rem, 3.5vw, 2.3rem);
    margin-bottom: 15px;
  }

  .footer-subtitle {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-social {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .social-link::after {
    display: none;
  }

  .contact-link {
    font-size: 18px;
  }

  .footer-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .about-intro {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .about-description {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .skill-item {
    padding: 10px;
  }

  .skill-name {
    font-size: 13px;
  }

  .skill-tech {
    font-size: 10px;
  }

  /* All headings responsive for very small mobile */
  .section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    margin-bottom: 35px;
  }

  .section-title__square {
    width: 50px;
    height: 50px;
  }

  .hire-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    margin-bottom: 10px;
  }

  .hire-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .hire-feature {
    padding: 15px 12px;
  }

  .hire-feature-icon {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .hire-feature h4 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .hire-feature p {
    font-size: 12px;
  }

  .hire-btn {
    padding: 12px 25px;
    font-size: 13px;
  }

  .footer-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 12px;
  }

  .footer-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .contact-link {
    font-size: 16px;
  }

  .footer-text {
    font-size: 1rem;
  }

  .slide-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .company {
    font-size: 13px;
  }

  .period {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .description {
    font-size: 13px;
  }
}

@media (max-width: 375px) {
  .about-intro {
    font-size: 15px;
  }

  .about-description {
    font-size: 11px;
  }

  .skill-item {
    padding: 8px;
  }

  .skill-name {
    font-size: 12px;
  }

  .skill-tech {
    font-size: 9px;
  }

  /* All headings responsive for smallest screens */
  .section-title {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    margin-bottom: 30px;
  }

  .section-title__square {
    width: 40px;
    height: 40px;
  }

  .hire-title {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    margin-bottom: 8px;
  }

  .hire-subtitle {
    font-size: 13px;
    margin-bottom: 25px;
  }

  .hire-feature {
    padding: 12px 10px;
  }

  .hire-feature-icon {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .hire-feature h4 {
    font-size: 13px;
    margin-bottom: 5px;
  }

  .hire-feature p {
    font-size: 11px;
  }

  .hire-btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  .footer-title {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin-bottom: 10px;
  }

  .footer-subtitle {
    font-size: 12px;
    margin-bottom: 18px;
  }

  .contact-link {
    font-size: 14px;
  }

  .footer-text {
    font-size: 0.7rem;
  }
}

/* ===== EXPERIENCE SLIDER SECTION ===== */
