/* =========================================================
   1. VARIABLES & RESET
========================================================= */
:root{
  /* -- Brand colors: White + Electric Blue are the two main colors -- */
  --blue:#3B82F6;
  --blue-dark:#2563EB;
  --blue-soft:#EAF2FF;
  --white:#FFFFFF;

  /* -- Supporting neutrals (text / backgrounds, not "main" brand colors) -- */
  --ink:#111A2E;
  --slate:#64748B;
  --border:#E7ECF5;
  --ice:#F6F9FF;
  --whatsapp:#25D366;

  /* -- Fonts -- */
  --font-display:'Space Grotesk',sans-serif;
  --font-body:'Inter',sans-serif;
  --font-mono:'JetBrains Mono',monospace;
}

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

html{ 
  scroll-behavior:smooth; 
}

body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  overflow-x:hidden;
}


html {
  overflow-x: hidden;
}


a{ 
  text-decoration:none; color:inherit; 
}

ul{ list-style:none; }
img{ max-width:100%; display:block; }


/* =========================================================
   2. UTILITIES
========================================================= */

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}


.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Respect users who have motion sensitivity settings turned on */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}



.block-tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.03em;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border: 1px solid #CFE2FF;
  padding: 5px 10px 5px 8px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.block-tag .plus {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}


.sec-head {
  max-width: 620px;
  margin-bottom: 45px;
}

.sec-head .block-tag {
  margin-bottom: 16px;
}

.sec-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 38px);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.sec-head p {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.6;
}

.sec-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sec-head.center .block-tag {
  margin-left: auto;
  margin-right: auto;
}


.btn-primary {
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(59, 130, 246, 0.4);
}

.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 9px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.btn-outline:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
}


/* =========================================================
   Header
========================================================= */

header {
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 100;
}

.nav-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 25px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 15px;
  /* box-shadow: 0 12px 30px rgba(17, 26, 46, 0.08); */
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
}

.logo-role {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--blue);
}

/* Desktop nav links */
.nav-links {
  display: flex;
  gap: 26px;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--blue-dark);
}


/* .nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--blue);
  transition: 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
} */



/* "Let's Talk" button in the pill (desktop only) */
.nav-cta {
  background: var(--blue);
  color: #FFFFFF;
  padding: 10px 22px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
}

.desktop-only {
  display: inline-flex;
}

/* Hamburger button: hidden on desktop, shown on mobile (see media query) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  margin: 0 auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* When the hamburger has the "active" class, turn the 3 lines into an X */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile dropdown menu card: hidden by default, shown with JS */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(17, 26, 46, 0.1);

  /* Closed state: collapsed, invisible, slid up slightly, not clickable */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;

  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              transform 0.35s ease,
              padding 0.4s ease,
              margin 0.4s ease;
}

/* Open state: added by JS */
.mobile-menu.open {
  max-height: 420px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  padding-top: 28px;
  padding-bottom: 28px;
  margin-top: 10px;
}


.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}


.mobile-menu a {
  font-size: 16px;
  font-weight: 700;
}

.mobile-cta {
  width: 100%;
  max-width: 220px;
  text-align: center;
}

/* Mobile responsive: switch from links+button to hamburger */
@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .desktop-only {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 600px) {
  nav {
    padding: 10px 16px;
  }
  
}





/* =========================================================
   HERO SECTION
========================================================= */

.hero {
  padding: 145px 0 90px;
  background: linear-gradient(180deg, var(--ice) 0%, var(--white) 78%);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}



.projects-page-hero {
  padding-top: 145px;
}

/* -- Eyebrow pill ("Available for new WordPress projects") -- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border: 1px solid #CFE2FF;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}


/* -- Heading -- */
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: var(--blue);
}


/* -- Intro paragraph -- */
.hero .intro {
  color: var(--slate);
  font-size: 17px;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 14px;
}

.hero .intro strong {
  color: var(--ink);
}


/* -- Call-to-action buttons -- */
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}



/* =========================================================
   HERO STATS COUNTER STYLES
========================================================= */

.hero-stats {
  display: flex;
  gap: 20px;
  margin-top: 32px;
}

.stat-box {
  padding: 16px 20px;
  /* border: 1px solid var(--border); */
  border-radius: 10px;
  background: var(--white);
  /* box-shadow: 0 8px 20px -14px rgba(145, 180, 255, 0.375); */
}

/* ---- 3. The big number (e.g. "50+") ---- */
.stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  color: var(--blue);
  line-height: 1.1;
  margin-bottom: 4px;
}

/* ---- 4. The small label under the number ---- */
.stat-name {
  font-size: 13.5px;
  color: var(--slate);
  font-weight: 500;
}


/* =========================================================
   5. RESPONSIVE (MOBILE)
========================================================= */
@media (max-width: 600px) {
  .hero-stats {
    gap: 12px;
  }

  .stat-box {
    padding: 12px 14px;
    flex: 1;
  }

  .stat-value {
    font-size: 21px;
  }

  .stat-name {
    font-size: 11.5px;
  }
}






/* =========================================================
   HERO IMAGE — NEW ANIMATION STYLE
========================================================= */

.hero-image {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  animation: heroFloat 3.5s ease-in-out infinite;
}

/* Idle floating motion, runs forever */
@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Pause the float while hovering so it doesn't fight the hover effect */
.hero-image:hover {
  animation-play-state: paused;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 3 / 3.6;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 30px 60px -20px rgba(17, 26, 46, 0.22);
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  animation: heroReveal 1s cubic-bezier(0.65, 0, 0.35, 1) 0.2s forwards;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Wipe reveal: photo uncovers from left to right on page load */
@keyframes heroReveal {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

.hero-image:hover img {
  transform: scale(1.04);
  box-shadow: 0 40px 70px -20px rgba(17, 26, 46, 0.3);
}

.hero-image::before,
.hero-image::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 3px solid var(--blue);
  z-index: 3;
  opacity: 1;
  transform: scale(1);
  animation: bracketIn 0.5s ease forwards;
  transition: transform 0.35s ease;
}

/* Once entrance animation ends, JS adds this class — releases the
   animation's hold on "transform" so hover can control it normally */
.hero-image.settled::before,
.hero-image.settled::after {
  animation: none;
}

.hero-image::before {
  top: -10px;
  left: -10px;
  border-right: none;
  border-bottom: none;
  border-radius: 8px 0 0 0;
  animation-delay: 0.9s;
}

.hero-image::after {
  bottom: -10px;
  right: -10px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 8px 0;
  animation-delay: 1.05s;
}

@keyframes bracketIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


.hero-image:hover::before {
  transform: scale(1.15) translate(-4px, -4px);
}

.hero-image:hover::after {
  transform: scale(1.15) translate(4px, 4px);
}

@media (prefers-reduced-motion: reduce) {
  .hero-image {
    animation: none;
  }
  .hero-image img {
    opacity: 1;
    clip-path: none;
    animation: none;
  }
  .hero-image::before,
  .hero-image::after {
    opacity: 1;
    animation: none;
  }
}

/* =========================================================
   MOBILE MEDIA QUERY
========================================================= */
@media (max-width: 640px) {

  .hero {
    padding: 130px 0 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  /* Photo first, smaller and centered */
  .hero-image {
    max-width: 350px;
  }

  .hero-image img {
    border-radius: 16px;
  }

  .hero-image::before,
  .hero-image::after {
    width: 20px;
    height: 20px;
  }

  /* Eyebrow pill centered */
  .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  
  .hero h1 {
    font-size: clamp(35px, 8vw, 38px);
    line-height: 1.18;
  }

  .hero .intro {
    margin-left: auto;
    margin-right: auto;
    font-size: 15.5px;
  }

  /* Buttons stack full-width and centered */
  .hero-ctas {
    justify-content: center;
    width: 100%;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}





/* =========================================================
   SKILLS MARQUEE STYLES
========================================================= */

/* ---- 1. Outer strip ---- */
.skills-marquee {
  background: var(--ink);
  padding: 15px 0;
  overflow: hidden;
  position: relative;
}



/* ---- 3. The moving track (holds both groups side by side) ---- */
.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 60s linear infinite;
}

.skills-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-right: 10px;
}


.marquee-dot {
  font-size: 13px;
  color: var(--blue-soft);
  opacity: 0.5;
  flex-shrink: 0; 
}

/* ---- 5. Individual skill pill ---- */
.skill-pill {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--blue-soft);
  padding: 5px 18px;
}


/* =========================================================
   6. THE SCROLL ANIMATION
========================================================= */
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Respect users who've asked their device to reduce motion */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}


/* =========================================================
   7. RESPONSIVE (MOBILE)
========================================================= */
@media (max-width: 600px) {
  .skills-marquee {
    padding: 15px 0;
  }

  .skills-marquee::before,
  .skills-marquee::after {
    width: 50px;
  }

  .skill-pill {
    font-size: 16px;
    padding: 3px 10px;
  }

  .marquee-track {
    animation-duration: 80s;  /* a bit faster on smaller screens */
  }
}







/* =========================================================
   SERVICES SECTION
========================================================= */

.services {
  padding: 80px 0;
  background: linear-gradient(360deg, var(--ice) 0%, var(--white) 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}


.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -22px rgba(17, 26, 46, 0.18);
  border-color: #CFE2FF;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.service-card:hover .service-icon {
  background: var(--blue);
  transform: scale(1.06);
}

.service-icon svg {
  stroke: var(--blue);
  transition: stroke 0.25s ease;
}

.service-card:hover .service-icon svg {
  stroke: var(--white);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 18.5px;
  color: var(--ink);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 22px;
}

/* Divider line before the button */
.service-card hr {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 18px;
}

/* Button replacing the old price tag — links to the contact form */
.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-dark);
  text-decoration: none;
}

.service-btn svg {
  transition: transform 0.25s ease;
}

.service-btn:hover {
  color: var(--blue);
}

.service-btn:hover svg {
  transform: translateX(4px);
}


/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 920px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}







/* =========================================================
   ABOUT ME SECTION
========================================================= */

.about {
  padding: 80px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.80fr 1.20fr;
  gap: 60px;
  align-items: start;
}

.about-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
}

.photo-card {
  background: var(--ice);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 55px;
}


.about-copy p {
  color: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.about-copy strong {
  color: var(--ink);
}



/* Photo Styling with Glass Effect */
.profile-photo {
  width: 100%;
  aspect-ratio: 7 / 7;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);

}


/* .photo-caption {
  margin-top: 14px;
  text-align: center;
} */

.photo-caption b {
  display: block;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 4px;
}

.photo-caption span {
  color: var(--slate);
  font-size: 13px;
  font-family: var(--font-mono);
}


.skills-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px 0;
}

.skill-tag {
  background: #F6F9FF;
  border: 1px solid #CFE2FF;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 5px;
  font-family: var(--font-mono);
  font-size: 13px;
  /* font-weight: 500; */
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.skill-tag .percent {
  color: var(--slate);
  font-size: 11.5px;
  margin-left: 4px;
  opacity: 0.8;
}

/* Hover Effect */
.skill-tag:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.skill-tag:hover, .skill-tag:hover .percent {
  color: var(--blue);
}


/* About Grid Mobile Optimization */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .photo-card {
    max-width: 350px;
    margin: 0 auto;
  }

  .about-heading {
    font-size: clamp(30px, 5vw, 30px);
  }

  .about-copy {
    font-size: 15.5px;
  }

  .resume-btn {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}







/* =========================================================
   PROJECTS / CASE STUDIES SECTION
========================================================= */

.projects {
  padding: 90px 0;
  background: var(--white);
}

.projects-all-page {
  padding: 70px 0;
}


/* -- Category filter tabs -- */
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 9px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-btn:hover {
  border-color: var(--blue);
  color: var(--blue-dark);
}

.filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}


/* -- Project grid: 3 columns -- */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Hidden by the filter script */
.proj-card.hidden {
  display: none;
}

.proj-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.proj-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 50px -24px rgba(27, 41, 72, 0.18);
}


.proj-shot {
  aspect-ratio: 3 / 3.6;
  position: relative;
  background: var(--ice);
  overflow: hidden;
}



.proj-shot img {
  width: 100%;
  height: auto; 
  object-fit: unset;
  object-position: top center;
  transition: transform 6s cubic-bezier(0.35, 0.46, 0.45, 0.70);
}



.proj-card:hover .proj-shot img {
  transform: translateY(calc(-100% + 480px)); 
}


/* .proj-card:hover .proj-shot img {
  transform: scale(1.04);
} */


/* -- Card info -- */
.proj-info {
  padding: 20px 22px 22px;
}

.proj-info .block-tag {
  margin-bottom: 12px;
}

.proj-info h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 8px;
}

.proj-info p {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 14px;
}

.proj-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.proj-tags span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  padding: 4px 9px;
  border-radius: 4px;
}


/* -- Visit live site -- */
.proj-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--blue-dark);
  text-decoration: none;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  width: 100%;
}

.proj-btn svg {
  transition: transform 0.25s ease;
}

.proj-btn:hover {
  color: var(--blue);
}

.proj-btn:hover svg {
  transform: translate(2px, -2px);
}


.view-all-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}



/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 920px) {
  .proj-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .proj-grid {
    grid-template-columns: 1fr;
  }

  .filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .filter-btn {
    flex-shrink: 0;
  }
}






/* =========================================================
   EXPERIENCE SECTION
========================================================= */

.experience {
  padding: 90px 0;
  background: var(--ice);
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}


/* -- Card -- */
.exp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 30px;
}

.exp-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.exp-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue-soft);
  border: 1.5px dashed var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.exp-head h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
}


.exp-card hr {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 25px;
}


/* -- Timeline list -- */
.exp-list {
  position: relative;
}
 
.exp-item {
  position: relative;
  padding-left: 22px;
  padding-bottom: 30px;
  transition: transform 0.2s ease;
}
 
.exp-item:last-child {
  padding-bottom: 0;
}
 
.exp-item:hover {
  transform: translateX(4px);
}

/* Dot */
.exp-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue);
  z-index: 2;
}

/* Connecting line down to the next dot */
.exp-item::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 15px;
  width: 2px;
  height: calc(100% - 10px);
  background: var(--border);
}

.exp-item:last-child::after {
  display: none;
}

/* Current / ongoing entry: filled dot with a soft pulsing ring */
.exp-item.current::before {
  background: var(--blue);
  border-color: var(--blue);
  animation: expPulse 2s infinite;
}

@keyframes expPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(59, 130, 246, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .exp-item.current::before {
    animation: none;
  }
}

.exp-year {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--blue-dark);
  margin-bottom: 6px;
}

.exp-item h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 4px;
}

.exp-sub {
  display: block;
  font-size: 14px;
  color: var(--slate);
}


/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 800px) {
  .exp-grid {
    grid-template-columns: 1fr;
  }
}






/* =========================================================
   PRICING SECTION — DARK (ink background)
========================================================= */

/* .pricing {
  padding: 90px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.16), transparent 70%);
  pointer-events: none;
}

.pricing .wrap {
  position: relative;
  z-index: 1;
}

.pricing .sec-head h2 {
  color: var(--white);
}

.pricing .sec-head p {
  color: #94A3B8;
}

.pricing .block-tag {
  background: rgba(59, 130, 246, 0.14);
  border-color: rgba(59, 130, 246, 0.35);
  color: #93C5FD;
}

.accent-italic {
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}


.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}


.pricing-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 36px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 48px -26px #172A4C;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--white);
  margin-bottom: 10px;
}

.pricing-desc {
  color: #94A3B8;
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 24px;
  min-height: 42px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  color: var(--white);
  margin-bottom: 26px;
}

.pricing-amount .currency {
  font-size: 20px;
  vertical-align: top;
  position: relative;
  top: 6px;
  margin-right: 2px;
}

.pricing-amount .per {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: #64748B;
  margin-left: 4px;
}

.pricing-features {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #E2E8F0;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-features li:first-child {
  border-top: none;
}

.pricing-features li svg {
  color: var(--blue);
  flex-shrink: 0;
}

.pricing-btn {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--white);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  padding: 13px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.pricing-btn:hover {
  border-color: var(--blue);
  background: rgba(59, 130, 246, 0.1);
} */


/* =========================================================
   FEATURED CARD — brighter + glowing, to stand out on dark bg
========================================================= */
/* .pricing-card.featured {
  background: radial-gradient(circle at 30% 0%, rgba(59, 130, 246, 0.16), rgba(255, 255, 255, 0.04) 60%);
  border: 1px solid rgba(59, 130, 246, 0.5);
  transform: scale(1.04);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.15), 0 30px 60px -20px rgba(59, 130, 246, 0.25);
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
  background: radial-gradient(circle at 30% 0%, rgba(59, 130, 246, 0.22), rgba(255, 255, 255, 0.05) 60%);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  box-shadow: 0 8px 18px rgba(59, 130, 246, 0.5);
}

.pricing-btn.primary {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.pricing-btn.primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}



@media (max-width: 920px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
    order: -1;
  }

  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }
} */







/* =========================================================
   TESTIMONIALS SECTION
========================================================= */

.testimonials {
  padding: 90px 0;
  background: var(--white);
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}


/* -- Card: gradient border only appears on hover -- */

.t-card {
  --card-bg: #f7faff;

  background-image:
    linear-gradient(var(--card-bg), var(--card-bg)),
    linear-gradient(135deg, var(--border), var(--border));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 1.5px solid transparent;
  border-radius: 16px;
  padding: 22px;
  transition: background-image 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.t-card:hover {
  /* background-image:
    linear-gradient(var(--blue-soft), var(--blue-soft)),
    linear-gradient(135deg, var(--blue), var(--blue-dark), var(--blue)); */
    border: 1px solid #b5d1ff;
}

/* .t-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
} */


.t-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}


.t-quote-icon {
  color: #e7e7e7; /* soft, faded tone that sits quietly on the blue-soft card */
}

.t-platform {
  /* width: 26px;
  height: 26px; */
  padding: 4px;
  border-radius: 2px;
  background: #3b83f68a;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}


/* -- Quote -- */
.t-card .quote {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  /* flex-grow: 1; */
  margin-bottom: 20px;
}



/* -- Footer: avatar + name + role (left), rating (right) -- */
.t-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(59, 130, 246, 0.15);
  margin-top: auto;
}

.t-person {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--white);
  flex-shrink: 0;
}

.t-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-id {
  min-width: 0;
}

.t-id b {
  display: block;
  font-size: 16px;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.t-id span {
  display: block;
  font-size: 13px;
  color: var(--slate);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.t-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}


.t-rating svg {
  width: 15px;
  height: 15px;
}

.t-rating span {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}


/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 920px) {
  .t-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .t-grid {
    grid-template-columns: 1fr;
  }
}







/* =========================================================
   CONTACT SECTION
========================================================= */

.contact {
  padding: 90px 0;
  background: var(--white);
}


.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}

.contact-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 36px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}


.contact-heading .accent {
  color: var(--blue);
  
}


.contact-left .block-tag {
  margin-bottom: 16px;
}

.contact-left p {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 420px;
}


/* -- Email / Phone / Location items -- */
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: inherit;
  text-decoration: none;
}

.contact-item.no-link {
  cursor: default;
}

.contact-item .ic {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--ice);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-item:hover .ic {
  background: var(--blue-soft);
  border-color: var(--blue);
}


.contact-item-text {
  display: flex;
  flex-direction: column;
}

.contact-item-text .label {
  font-size: 13px;
  color: var(--slate);
  margin-bottom: 2px;
}

.contact-item-text .value {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.2s ease;
}

.contact-item:hover .contact-item-text .value {
  color: var(--blue-dark);
}




/* -- Social icons row -- */
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--ice);
  border: 1px solid var(--border);
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

/* .social-icon:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-3px);
} */
.social-icon:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18), 0 0 22px rgba(59, 130, 246, 0.55);
}

.behance-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
}


/* -- Contact form card -- */
.contact-form {
  background: var(--ice);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
}

/* Required field marker */
.req {
  color: #EF4444;
  font-weight: 700;
}

::placeholder {
  color: var(--slate);
  opacity: 0.8;
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

/* .submit-btn {
  width: 100%;
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 14px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.submit-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
} */



.submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 14px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  margin-top: 6px;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
 
 
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(59, 130, 246, 0.4);
}
 
.submit-btn svg {
  transition: transform 0.3s ease;
}
 
.submit-btn:hover svg {
  transform: translate(3px, -3px) rotate(-3deg);
}
 
.submit-btn:active {
  transform: translateY(0);
}
 
.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}



.form-note {
  font-size: 12px;
  color: var(--slate);
  text-align: center;
  margin-top: 12px;
}


/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 920px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}







/* =========================================================
   FLOATING WHATSAPP BUTTON
========================================================= */

.float-wa {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform 0.2s ease;
}

.float-wa:hover {
  transform: scale(1.08);
}

@media (max-width: 600px) {
  .float-wa {
    bottom: 18px;
    right: 18px;
    width: 50px;
    height: 50px;
  }
}







/* =========================================================
   FOOTER
========================================================= */

footer {
  background: var(--ink);
  padding: 0;
  overflow: hidden;
}


/* -- Brand block: name + role, like the header logo -- */
.footer-brand {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 25px;
  color: var(--white);
}

.footer-brand-role {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #93C5FD;
  margin-top: 2px;
}


/* -- 4-column grid -- */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, auto); 
  justify-content: space-between; 
  gap: 40px; 
  padding: 60px 0 50px;
}


.footer-about {
  max-width: 300px;
}


.footer-about p {
  color: #94A3B8;
  font-size: 15px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #93C5FD;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  color: #94A3B8;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Dark-footer variant of .social-icon, with a soft glow on hover */
footer .social-icon {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94A3B8;
}

footer .social-icon:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18), 0 0 22px rgba(59, 130, 246, 0.55);
}


/* -- Bottom bar -- */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  color: #64748B;
  font-size: 13px;
}

/* -- Back to top link -- */
.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #94A3B8;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.back-to-top:hover {
  color: var(--blue);
  transform: translateY(-2px);
}


.footer-legal {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-legal a {
  color: var(--blue);
  font-size: 13px;
}

.footer-legal a:hover {
  color: var(--blue-dark);
  text-decoration: underline;
}

.footer-legal span {
  color: #475569;
  font-size: 12px;
}


/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 920px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}