/* ============================================
   Sajib Hossain Portfolio – style.css
   ============================================ */

/* ============================================
   Self-hosted Poppins (400 / 600 / 700)
   ============================================ */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/poppins-latin-400-normal.woff2') format('woff2'),
       url('fonts/poppins-latin-400-normal.woff') format('woff');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/poppins-latin-600-normal.woff2') format('woff2'),
       url('fonts/poppins-latin-600-normal.woff') format('woff');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/poppins-latin-700-normal.woff2') format('woff2'),
       url('fonts/poppins-latin-700-normal.woff') format('woff');
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 2000;
  background: var(--purple);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  transition: top .2s ease;
}
.skip-link:focus {
  top: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --purple-bg: #ede9fe;
  --page-bg: #eeeaf8;
  --dark: #0f0f1a;
  --gray: #5a606e;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

.icon-svg {
  width: 1em;
  height: 1em;
  display: inline-block;
  fill: currentColor;
  vertical-align: -0.125em;
  flex-shrink: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--page-bg);
  min-height: 100vh;
  overflow-x: hidden;
}

#home, #about, #services, #projects, #contact {
  scroll-margin-top: 100px;
}

/* ============================================
   MINIMAL GRID + UTILITY LAYER
   (replaces Bootstrap 4 — only what this page uses)
   ============================================ */

/* Base element resets Bootstrap used to provide */
a { color: inherit; text-decoration: none; background-color: transparent; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
ul { list-style: none; margin: 0; padding: 0; }
img { vertical-align: middle; border-style: none; }

.img-fluid { max-width: 100%; height: auto; display: block; }

/* Containers */
.container, .container-fluid {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }

/* Grid */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.col-12, .col-md-6, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7 {
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
}
@media (min-width: 992px) {
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4 { flex: 0 0 33.33333%; max-width: 33.33333%; }
  .col-lg-5 { flex: 0 0 41.66667%; max-width: 41.66667%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-7 { flex: 0 0 58.33333%; max-width: 58.33333%; }
}

/* Flex utilities */
.d-flex { display: flex; }
.d-inline-flex { display: inline-flex; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-100 { width: 100%; }

.d-none { display: none !important; }
.d-block { display: block !important; }

@media (min-width: 992px) {
  .justify-content-lg-end { justify-content: flex-end; }
  .justify-content-lg-start { justify-content: flex-start; }
  .d-lg-none { display: none !important; }
  .d-lg-block { display: block !important; }
  .d-lg-flex { display: flex !important; }
}

/* Spacing utilities (Bootstrap's default spacer scale) */
.mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mr-2 { margin-right: .5rem; }
.mr-3 { margin-right: 1rem; }
.mr-4 { margin-right: 1.5rem; }
.ml-1 { margin-left: .25rem; }
.ml-2 { margin-left: .5rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }

@media (min-width: 992px) {
  .mb-lg-0 { margin-bottom: 0; }
  .mt-lg-0 { margin-top: 0; }
  .ml-lg-3 { margin-left: 1rem; }
  .px-lg-5 { padding-left: 3rem; padding-right: 3rem; }
}

/* Base button/form resets (visual styling stays in the .btn-*/.form-control-custom classes) */
.btn {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  text-decoration: none;
}
.form-control {
  display: block;
  width: 100%;
  line-height: 1.5;
  background-clip: padding-box;
}

/* Navbar structure */
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.navbar > .container,
.navbar > .container-fluid {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  display: inline-flex;
  align-items: center;
  font-size: 1.25rem;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
}
.nav-link {
  display: block;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
  display: none;
}
.navbar-collapse.show {
  display: block;
  animation: navCollapseIn .18s ease;
}
@keyframes navCollapseIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (min-width: 992px) {
  .navbar-expand-lg { flex-wrap: nowrap; justify-content: flex-start; }
  .navbar-expand-lg .navbar-toggler { display: none; }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-nav { flex-direction: row; }
}

/* ─── SIDEBAR ─────────────────────────────── */
.sidebar-icons {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}
.sidebar-pill {
  background: var(--white);
  border-radius: 50px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  box-shadow: 0 4px 24px rgba(124,58,237,0.08);
}
.sidebar-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--gray);
  font-size: 15px;
  text-decoration: none;
  transition: all .2s;
}
.sidebar-icon.active {
  background: var(--purple);
  color: var(--white);
}
.sidebar-icon:hover:not(.active) { color: var(--purple); }

/* ─── NAVBAR ──────────────────────────────── */
.custom-navbar {
  background: var(--page-bg);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all .3s ease;
}
.custom-navbar.scrolled {
  padding: 12px 0;
  background: rgba(238, 234, 248, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(124,58,237,0.1);
}
.navbar-toggler {
  border: 1px solid rgba(124,58,237,0.3) !important;
  border-radius: 8px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.navbar-toggler-icon {
  width: 22px;
  height: 22px;
  color: var(--purple);
}
.navbar-toggler:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}
.logo-box {
  width: 46px; height: 46px;
  background: var(--white);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800;
  color: var(--purple);
  box-shadow: 0 2px 12px rgba(124,58,237,0.12);
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-weight: 700; font-size: 15px; color: var(--dark); }
.logo-role { font-size: 11px; color: var(--gray); font-weight: 400; }

.custom-navbar .nav-link {
  color: var(--dark) !important;
  font-weight: 500;
  font-size: 15px;
  padding: 6px 18px !important;
  position: relative;
}
.active-link .nav-link { color: var(--purple) !important; }
.nav-dot {
    display: none;
    width: calc(100% - 40px);
    height: 3px;
    background: var(--purple);
    border-radius: 50%;
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
}

  .active-link .nav-dot { display: block; }
.btn-connect {
  background: var(--purple);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  transition: all .2s;
}
.btn-connect:hover { background: #6d28d9; color: var(--white); text-decoration: none; }

/* ─── HERO ────────────────────────────────── */
.hero-section {
  padding: 20px 0 60px;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
}
.hero-row { min-height: 80vh; }

/* Left */
.hero-greeting {
  font-size: 22px;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 4px;
}
.hero-name {
  line-height: 1.0;
  margin-bottom: 20px;
}
.name-black {
  font-size: 82px;
  font-weight: 700;
  color: var(--dark);
  display: block;
}
.name-purple {
  font-size: 82px;
  font-weight: 700;
  color: var(--purple);
  display: block;
  position: relative;
}
.name-underline {
  display: block;
  width: 220px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg width='220' height='8' viewBox='0 0 220 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6 Q55 2 110 5 Q165 8 218 3' stroke='%237c3aed' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center/cover;
  margin-top: -6px;
  margin-left: 4px;
}

.hero-tagline {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.tagline-bar {
  width: 4px;
  min-height: 52px;
  background: var(--purple);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
}
.hero-tagline p {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  line-height: 1.5;
}
.hero-sub {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-left: 18px;
  margin-bottom: 0;
}

/* Buttons */
.btn-primary-custom {
  background: var(--purple);
  color: var(--white);
  border-radius: 50px;
  padding: 13px 28px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  display: inline-flex; align-items: center;
  transition: all .25s;
  text-decoration: none;
}
.btn-primary-custom:hover { background: #6d28d9; color: var(--white); text-decoration: none; }
.btn-outline-custom {
  background: transparent;
  color: var(--dark);
  border: 2px solid #d1d5db;
  border-radius: 50px;
  padding: 11px 26px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex; align-items: center;
  transition: all .25s;
  text-decoration: none;
}
.btn-outline-custom:hover { border-color: var(--purple); color: var(--purple); text-decoration: none; }

/* Stats */
.hero-stats { gap: 0; }
.hero-stats-mobile {
  gap: 14px 20px;
  margin-top: 32px;
  position: relative;
  z-index: 5;
}
.hero-stats-mobile .stat-item {
  background: var(--white);
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.06);
  margin-right: 0 !important;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stat-icon-wrap {
  width: 42px; height: 42px;
  background: var(--purple-bg);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
  font-size: 16px;
  flex-shrink: 0;
}
.stat-info { display: flex; flex-direction: column; }
.stat-number { font-size: 22px; font-weight: 800; color: var(--dark); line-height: 1.1; }
.stat-label { font-size: 11px; color: var(--gray); font-weight: 500; }

/* ─── PHOTO AREA ──────────────────────────── */
.hero-photo-col { position: relative; }

.photo-wrapper {
  position: relative;
  width: 500px;
  height: 560px;
}

/* Dots grid */
.dots-grid {
  position: absolute;
  top: 10px;
  right: -10px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, #b8a9e8 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  z-index: 1;
}

/* Blob */
.photo-blob {
  position: absolute;
  width: 440px;
  height: 500px;
  background: linear-gradient(145deg, #c4b5fd 0%, #ddd6fe 50%, #ede9fe 100%);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%;
  top: 30px;
  right: 0;
  z-index: 2;
  animation: morphBlob 12s ease-in-out infinite alternate;
}

@keyframes morphBlob {
  0% {
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%;
    transform: rotate(0deg);
  }
  35% {
    border-radius: 45% 55% 60% 40% / 55% 45% 50% 50%;
    transform: rotate(3deg) scale(1.02);
  }
  70% {
    border-radius: 55% 45% 45% 55% / 40% 55% 45% 60%;
    transform: rotate(-2deg);
  }
  100% {
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%;
    transform: rotate(0deg);
  }
}

/* Photo card */
.photo-card {
  position: absolute;
  width: 390px;
  height: 480px;
  background: var(--white);
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  overflow: hidden;
  top: 40px;
  right: 20px;
  z-index: 3;
  box-shadow: 0 20px 60px rgba(124,58,237,0.15);
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Freelance badge */
.freelance-badge {
  position: absolute;
  bottom: 30px;
  right: -10px;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(124,58,237,0.12);
  z-index: 10;
  min-width: 200px;
  animation: floatFreelance 6s ease-in-out infinite;
}
@keyframes floatFreelance {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ─── GEOMETRIC ANIMATIONS ─────────────────── */
.geo-elem {
  position: absolute;
  z-index: 12;
  pointer-events: none;
  user-select: none;
}

/* 1. 3D Isometric Cube */
.geo-cube {
  top: 25px;
  left: -20px;
  width: 44px;
  height: 44px;
  perspective: 600px;
}
.cube-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-22deg) rotateY(38deg);
  animation: floatAndRotateCube 10s ease-in-out infinite alternate;
}
.cube-face {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(167, 139, 250, 0.85);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.35) 0%, rgba(237, 233, 254, 0.25) 100%);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  box-shadow: inset 0 0 10px rgba(124, 58, 237, 0.2);
}
.cube-front  { transform: translateZ(22px); }
.cube-back   { transform: rotateY(180deg) translateZ(22px); }
.cube-right  { transform: rotateY(90deg) translateZ(22px); }
.cube-left   { transform: rotateY(-90deg) translateZ(22px); }
.cube-top    { transform: rotateX(90deg) translateZ(22px); }
.cube-bottom { transform: rotateX(-90deg) translateZ(22px); }

@keyframes floatAndRotateCube {
  0% {
    transform: translateY(0px) rotateX(-22deg) rotateY(38deg) rotateZ(0deg);
  }
  50% {
    transform: translateY(-14px) rotateX(-10deg) rotateY(120deg) rotateZ(8deg);
  }
  100% {
    transform: translateY(-4px) rotateX(-35deg) rotateY(210deg) rotateZ(-6deg);
  }
}

/* 2. 3D Gradient Ring */
.geo-ring {
  bottom: 80px;
  left: -28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 5px solid transparent;
  border-top: 5px solid var(--purple);
  border-right: 5px solid var(--purple-light);
  border-bottom: 5px solid rgba(124, 58, 237, 0.25);
  box-shadow: 0 0 18px rgba(124, 58, 237, 0.25);
  animation: floatRing 6.5s ease-in-out infinite;
}
@keyframes floatRing {
  0% {
    transform: translateY(0) rotate(0deg) rotateX(25deg);
  }
  50% {
    transform: translateY(-12px) rotate(180deg) rotateX(45deg);
  }
  100% {
    transform: translateY(0) rotate(360deg) rotateX(25deg);
  }
}

/* 3. Diamond Polygon */
.geo-diamond {
  top: 45px;
  right: -24px;
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 6px 14px rgba(124, 58, 237, 0.35));
  animation: floatDiamond 5.5s ease-in-out infinite 0.6s;
}
.geo-diamond svg {
  width: 100%;
  height: 100%;
  display: block;
}
@keyframes floatDiamond {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-10px) rotate(12deg) scale(1.08);
  }
}

/* 4. Floating Code Pill */
.geo-code-badge {
  top: 155px;
  left: -42px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(124, 58, 237, 0.22);
  border-radius: 30px;
  padding: 7px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.14);
  animation: floatCodeBadge 7.5s ease-in-out infinite 1.2s;
}
.geo-code-icon {
  color: var(--purple);
  font-weight: 800;
  font-size: 13px;
  font-family: monospace;
}
.geo-code-text {
  color: var(--dark);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .02em;
}
@keyframes floatCodeBadge {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-9px) translateX(4px);
  }
}

/* 5 & 6. Floating Crosses */
.geo-cross {
  font-family: Arial, sans-serif;
  line-height: 1;
}
.geo-cross-1 {
  top: -10px;
  left: 170px;
  font-size: 26px;
  font-weight: 300;
  color: var(--purple-light);
  opacity: 0.85;
  animation: spinCross 9s linear infinite;
}
.geo-cross-2 {
  bottom: 15px;
  left: 150px;
  font-size: 20px;
  font-weight: 400;
  color: #c4b5fd;
  opacity: 0.75;
  animation: spinCross 12s linear infinite reverse;
}
@keyframes spinCross {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.15); }
  100% { transform: rotate(360deg) scale(1); }
}

.badge-star {
  width: 44px; height: 44px;
  background: var(--purple-bg);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
  font-size: 18px;
  flex-shrink: 0;
}
.badge-text { display: flex; flex-direction: column; }
.badge-label { font-size: 11px; color: var(--gray); font-weight: 500; }
.badge-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--purple);
  display: flex; align-items: center; gap: 6px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
}


/* @media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1320px;
    }
} */

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 991px) {
  .active-link .nav-dot{display: none;}
  .sidebar-icons { display: none; }
  .name-black, .name-purple { font-size: 56px; }
  .photo-wrapper { width: 360px; height: 420px; }
  .photo-blob { width: 320px; height: 370px; }
  .photo-card { width: 280px; height: 360px; right: 10px; top: 30px; }
  .freelance-badge { right: 0; bottom: 10px; }
  .geo-cube { top: 15px; left: -10px; transform: scale(0.85); }
  .geo-ring { bottom: 60px; left: -15px; transform: scale(0.85); }
  .geo-diamond { top: 30px; right: -10px; transform: scale(0.85); }
  .geo-code-badge { top: 130px; left: -25px; transform: scale(0.85); }
}
@media (max-width: 767px) {
  .name-black, .name-purple { font-size: 48px; }
  .hero-tagline p { font-size: 15px; }
  .photo-wrapper { width: 300px; height: 360px; }
  .photo-blob { width: 270px; height: 320px; top: 20px; right: 0; }
  .photo-card { width: 240px; height: 300px; right: 10px; top: 25px; }
  .freelance-badge { min-width: 170px; right: 0; }
  .stat-item { margin-right: 16px !important; }
  .geo-cube { top: 10px; left: -5px; transform: scale(0.7); }
  .geo-ring { bottom: 40px; left: -10px; transform: scale(0.7); }
  .geo-diamond { top: 20px; right: -5px; transform: scale(0.7); }
  .geo-code-badge { top: 100px; left: -15px; transform: scale(0.8); }
  .geo-cross-1, .geo-cross-2 { display: none; }
}

@media (max-width: 575px) {
  .hero-section { padding: 10px 0 40px; }
  .name-black, .name-purple { font-size: 52px; }
  .name-underline { width: 160px; height: 6px; }
  .hero-greeting { font-size: 20px; }
  .hero-tagline p { font-size: 16px; }
  .hero-sub { margin-left: 0; font-size: 14px; }
  .tagline-bar { min-height: 40px; }
  .btn-primary-custom, .btn-outline-custom { padding: 11px 20px; font-size: 14px; width: 100%; justify-content: center; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn-primary-custom, .hero-buttons .btn-outline-custom { margin-right: 0 !important; }
  .hero-stats { justify-content: space-between; }
  .stat-item { margin-right: 0 !important; }
  .stat-number { font-size: 18px; }
  .photo-wrapper { width: 260px; height: 320px; }
  .photo-blob { width: 230px; height: 280px; }
  .photo-card { width: 200px; height: 260px; }
  .freelance-badge { padding: 10px 14px; min-width: 150px; }
  .badge-value { font-size: 13px; }
}

/* ============================================
   SHARED SECTION HELPERS
   ============================================ */
.section-pad { padding: 50px 0; }
.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--purple);
  display: inline-block;
}
.section-heading {
  font-size: 40px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 560px;
}
.reveal { opacity: 0; transform: translateY(28px); transition: all .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ─── ABOUT ───────────────────────────────── */
.about-section { background: var(--page-bg); position: relative; }

/* Experience Box */
.experience-box {
  background: linear-gradient(135deg, var(--purple) 0%, #6d28d9 100%);
  border-radius: 24px;
  padding: 32px 28px;
  color: var(--white);
  box-shadow: 0 20px 45px rgba(124, 58, 237, 0.22);
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.experience-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 55px rgba(124, 58, 237, 0.28);
}
.exp-decor-circle {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}
.exp-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  letter-spacing: .02em;
}
.exp-badge-pill svg {
  color: #fbbf24;
  font-size: 13px;
}
.experience-box .exp-number {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.experience-box .exp-label {
  font-size: 14.5px;
  font-weight: 500;
  opacity: .92;
  margin: 6px 0 24px;
  line-height: 1.5;
}

.exp-stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.14);
  border-radius: 16px;
  padding: 14px 18px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.exp-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
.exp-stat-num {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}
.exp-stat-lbl {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 3px;
}
.exp-stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
}

/* Technologies Card */
.tech-stack-card {
  background: var(--white);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform .35s ease, box-shadow .35s ease;
}
.tech-stack-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(124, 58, 237, 0.1);
}
.tech-stack-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.tech-stack-title {
  font-size: 13px;
  font-weight: 800;
  color: #475569;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.tech-stack-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.tech-badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f4f2fb;
  color: #334155;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 50px;
  border: 1px solid rgba(124, 58, 237, 0.08);
  transition: all .25s ease;
  cursor: default;
}
.tech-badge:hover {
  background: var(--white);
  color: var(--purple);
  border-color: rgba(124, 58, 237, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.12);
}
.tech-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}
.tech-wp { background: #21759b; }
.tech-php { background: #777bb4; }
.tech-laravel { background: #ff2d20; }
.tech-js { background: #f7df1e; }
.tech-react { background: #61dafb; }
.tech-vue { background: #42b883; }
.tech-node { background: #68a063; }
.tech-woo { background: #96588a; }
.tech-api { background: #8b5cf6; }
.tech-html { background: #e34f26; }

/* My Approach Card */
.approach-card {
  background: var(--white);
  border-radius: 24px;
  padding: 34px 30px;
  height: 100%;
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}
.approach-header {
  margin-bottom: 24px;
}
.approach-header h3 {
  font-weight: 800;
  color: var(--dark);
  font-size: 22px;
  margin-bottom: 6px;
}
.approach-subtitle {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

.approach-steps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}
.approach-step-item {
  display: flex;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fdfdfe;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all .25s ease;
  position: relative;
}
.approach-step-item:hover {
  background: #f7f5fd;
  border-color: rgba(124, 58, 237, 0.18);
  transform: translateX(4px);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.08);
}
.approach-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.approach-step-num {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--purple-bg);
  color: var(--purple);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}
.approach-step-item:hover .approach-step-num {
  background: var(--purple);
  color: #ffffff;
  transform: scale(1.08);
}
.approach-step-line {
  flex-grow: 1;
  width: 2px;
  background: #e9e3f7;
  margin-top: 8px;
  border-radius: 2px;
}
.approach-step-content {
  flex: 1;
}
.approach-step-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}
.approach-icon-wrap {
  color: var(--purple);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.approach-title {
  font-weight: 700;
  color: var(--dark);
  font-size: 15.5px;
}
.approach-text {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* ─── SERVICES ────────────────────────────── */
.services-section { background: var(--white); }
.service-card {
  background: var(--page-bg);
  border-radius: 22px;
  padding: 32px 26px;
  height: 100%;
  transition: all .3s cubic-bezier(.2,.7,.3,1);
  position: relative;
}
.service-card.active,
.service-card:hover {
  transform: translateY(-8px);
  background: var(--white);
  box-shadow: 0 24px 50px rgba(124,58,237,0.14);
}
.service-index { font-size: 26px; font-weight: 800; color: var(--purple); }
.service-icon-wrap {
  width: 52px; height: 52px;
  background: var(--purple-bg);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
  font-size: 20px;
  margin: 16px 0 20px;
  transition: all .3s;
}
.service-card.active .service-icon-wrap ,
.service-card:hover .service-icon-wrap {
  background: var(--purple);
  color: var(--white);
  transform: rotate(-6deg) scale(1.05);
}
.service-title { font-weight: 700; font-size: 17px; color: var(--dark); margin-bottom: 10px; }
.service-text { font-size: 13.5px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.service-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
  transition: all .3s;
}

.service-card.active .service-arrow,
.service-card:hover .service-arrow { background: var(--purple); color: var(--white); transform: translateX(6px); }

/* ─── PROJECTS ────────────────────────────── */
.projects-section { background: var(--page-bg); position: relative; }

.project-filter-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 32px 0 42px;
}

.filter-btn {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--dark);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all .25s ease;
  cursor: pointer;
  outline: none;
}
.filter-btn:hover {
  background: #fbf9ff;
  color: var(--purple);
  border-color: rgba(124, 58, 237, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
}
.filter-btn.active {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.35);
  transform: translateY(-2px);
}

.project-card {
  background: var(--white);
  border-radius: 20px;
  padding: 16px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.16, 1, .3, 1), box-shadow .35s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.12);
}

.project-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 210px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #ede9fe 0%, #f5f3ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-thumb a.project-thumb-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.project-thumb img.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}
.project-card:hover .project-thumb img.project-img {
  transform: scale(1.05);
}

.project-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 26, 0.38);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s ease;
  backdrop-filter: blur(2px);
}
.project-card:hover .project-thumb-overlay {
  opacity: 1;
}
.project-preview-pill {
  background: var(--white);
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transform: translateY(6px);
  transition: transform .3s ease;
}
.project-card:hover .project-preview-pill {
  transform: translateY(0);
}

.project-like-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 4;
  background: var(--white);
  border-radius: 8px;
  padding: 7px 11px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 14px;
  line-height: 1;
  transition: transform .2s cubic-bezier(.34, 1.56, .64, 1), background .2s, color .2s, box-shadow .2s;
  outline: none;
}
.project-like-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.25);
}
.project-like-btn:active {
  transform: scale(0.92);
}
.project-like-btn.liked {
  background: var(--purple);
  color: var(--white);
}
.project-like-btn.liked svg {
  animation: heartPop .4s cubic-bezier(.175, .885, .32, 1.275);
}

@keyframes heartPop {
  0% { transform: scale(0.8); }
  50% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.project-body {
  padding: 16px 4px 4px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
  color: #8c93a4;
  font-weight: 500;
}
.project-cat {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  text-transform: capitalize;
}
.project-likes-count {
  font-size: 13px;
  font-weight: 500;
  color: #8c93a4;
}
.project-title {
  font-weight: 800;
  font-size: 18px;
  color: var(--dark);
  margin: 0;
  line-height: 1.35;
  transition: color .2s;
}
.project-title a {
  color: inherit;
  text-decoration: none;
}
.project-title a:hover,
.project-card:hover .project-title {
  color: var(--purple);
}

/* Skeleton Loading state */
.project-skeleton-card {
  background: var(--white);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.skeleton-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 210px;
  border-radius: 14px;
  background: linear-gradient(90deg, #ede9fe 25%, #e2daf8 50%, #ede9fe 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
}
.skeleton-meta {
  display: flex;
  justify-content: space-between;
  margin: 16px 4px 10px;
}
.skeleton-pill-sm {
  width: 90px;
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(90deg, #ede9fe 25%, #e2daf8 50%, #ede9fe 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
}
.skeleton-title-bar {
  width: 80%;
  height: 20px;
  border-radius: 6px;
  margin: 0 4px;
  background: linear-gradient(90deg, #ede9fe 25%, #e2daf8 50%, #ede9fe 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
}

@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.project-load-more-wrap {
  text-align: center;
  margin-top: 40px;
}
.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--dark);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all .25s ease;
}
.btn-load-more:hover {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
  transform: translateY(-2px);
}
.btn-load-more:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.btn-load-more .spinner {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin .6s linear infinite;
  display: inline-block;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─── CONTACT ─────────────────────────────── */
.contact-section { background: var(--white); }
.contact-panel {
  background: var(--purple);
  border-radius: 24px;
  padding: 44px;
  height: 100%;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-panel .dots-decor {
  position: absolute;
  top: -10px; right: -10px;
  width: 140px; height: 140px;
  background-image: radial-gradient(circle, rgba(255,255,255,.45) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}
.contact-panel h3 { font-weight: 800; font-size: 24px; margin-bottom: 30px; position: relative; z-index: 2; }
.contact-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 12px;
  color: var(--white);
  text-decoration: none;
  transition: all .25s;
  position: relative; z-index: 2;
}
.contact-item:hover { background: rgba(255,255,255,.22); color: var(--white); transform: translateX(4px); }
.contact-item-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.18);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-status { position: relative; z-index: 2; margin-top: 24px; }
.contact-status .avail { font-weight: 700; font-size: 15px; }
.contact-status .note { font-size: 13px; opacity: .85; }

.contact-form-panel {
  background: var(--page-bg);
  border-radius: 24px;
  padding: 44px;
}
.form-label-sm { font-weight: 600; font-size: 13px; color: var(--dark); margin-bottom: 6px; }
.form-control-custom {
  border: 1px solid #e2dbf7;
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 14px;
  background: var(--white);
  height: auto;
}
.form-control-custom:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
  outline: none;
}

/* Honeypot - visually hidden, still reachable/fillable by bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Inline field validation */
.field-error {
  display: none;
  color: #b3261e;
  font-size: 12.5px;
  font-weight: 600;
  margin-top: 6px;
}
.field-error.is-visible { display: block; }

.form-control-custom.is-invalid {
  border-color: #e3796f;
  background: #fff6f5;
}
.form-control-custom.is-valid {
  border-color: #9ad8ae;
}

#captchaQuestion {
  color: var(--purple);
  font-weight: 800;
}

/* Contact form success / error notification */
.form-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 4px;
}
.form-alert-success {
  background: #e9f9ee;
  color: #1c7c3f;
  border: 1px solid #b9edc9;
}
.form-alert-error {
  background: #fdecec;
  color: #b3261e;
  border: 1px solid #f6c4c2;
}

/* Submit button loading state */
.btn-primary-custom:disabled,
.btn-primary-custom.is-loading {
  opacity: .75;
  cursor: not-allowed;
}

/* ─── FINAL CTA ───────────────────────────── */
.final-cta-section { padding: 0 0 50px; }
.final-cta-box {
  background: var(--purple);
  border-radius: 30px;
  padding: 70px 30px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  margin-top: -50px;
}
.final-cta-box .dots-decor {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.3) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: .5;
}

.cta-geo-shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.cta-geo-ring {
  bottom: -25px;
  left: 25px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.12);
  border-top-color: rgba(255, 255, 255, 0.5);
  animation: floatRing 9s ease-in-out infinite;
}
.cta-geo-diamond {
  top: -15px;
  right: 70px;
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  transform: rotate(45deg);
  animation: floatDiamond 7s ease-in-out infinite alternate;
}

.final-cta-box h2 { font-weight: 800; font-size: 34px; position: relative; z-index: 2; }
.final-cta-box p { opacity: .9; max-width: 480px; margin: 14px auto 28px; position: relative; z-index: 2; font-size: 15px; }
.btn-white-custom {
  background: var(--white);
  color: var(--purple) !important;
  border-radius: 50px;
  padding: 13px 28px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex; align-items: center;
  position: relative; z-index: 2;
  text-decoration: none;
}
.btn-white-custom:hover { background: #f4f1ff; text-decoration: none; }

/* ─── FOOTER ──────────────────────────────── */
.site-footer { background: var(--purple-bg); padding: 56px 0 24px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 26px;justify-content: center; }
.footer-links a { color: var(--gray); font-weight: 500; font-size: 14px; text-decoration: none; }
.footer-links a:hover { color: var(--purple); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
  box-shadow: 0 4px 20px rgba(124,58,237,0.1);
  transition: all .25s;
  text-decoration: none;
}
.footer-social a:hover { background: var(--purple); color: var(--white); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid #ddd3f7;
  margin-top: 32px;
  padding-top: 20px;
  font-size: 13px;
  color: var(--gray);
  text-align: center;
}

/* ─── RESPONSIVE (added sections) ─────────── */

/* Tablet / collapsed navbar */
@media (max-width: 991px) {
  .section-pad { padding: 30px 0; }
  .section-heading { font-size: 30px; }

  .navbar-collapse {
    background: var(--white);
    border-radius: 20px;
    margin-top: 14px;
    padding: 18px 20px;
    box-shadow: 0 12px 40px rgba(124,58,237,0.12);
  }
  .navbar-nav { margin-bottom: 12px; }
  .custom-navbar .nav-link { padding: 10px 0 !important; }
  .nav-dot { display: none; }
  .active-link .nav-link { font-weight: 700; }
  .btn-connect { display: inline-flex; width: 100%; justify-content: center; }

  .service-card { padding: 28px 22px; }
  .project-body { padding: 24px; }
  .contact-form-panel {margin-bottom: 30px;}
}

/* Phones */
@media (max-width: 767px) {
  .contact-panel, .contact-form-panel, .approach-card { padding: 28px; }
  .final-cta-box { padding: 50px 20px; }
  .final-cta-box h2 { font-size: 26px; }

  .section-heading { font-size: 26px; }
  .section-desc { font-size: 14px; }

  .experience-box .exp-number { font-size: 34px; }
  .project-thumb {  }
  .project-title { font-size: 18px; }

  .footer-links { gap: 16px; }
  .site-footer .col-lg-4 { justify-content: center !important; }
  .site-footer .row { text-align: center; }
  .footer-social { justify-content: center; margin-top: 10px; }
}

/* Small phones */
@media (max-width: 575px) {
  .section-pad { padding: 20px 0; }
  .section-label { font-size: 12px; }
  .section-heading { font-size: 22px; }

  .tech-badge { font-size: 12px; padding: 8px 14px; }
  .approach-card, .contact-panel, .contact-form-panel { padding: 22px; }
  .experience-box { padding: 26px; }

  .filter-btn { font-size: 12px; padding: 8px 16px; margin: 0 6px 10px 0; }

  .project-body { padding: 20px; }
  .project-title { font-size: 17px; }

  .final-cta-box { padding: 40px 18px; border-radius: 22px; }
  .final-cta-box h2 { font-size: 22px; }
  .final-cta-box p { font-size: 14px; }
  .btn-white-custom { width: 100%; justify-content: center; }

  .contact-form-panel .btn-primary-custom { justify-content: center; }
}
