/* =========================
   RESET + LAYOUT FIXES
========================= */
:root {
  --nav-height: 90px;
  --hero-bottom-padding: 140px;
}

* { box-sizing: border-box; }
html, body {

  margin: 0;
  padding: 0;
  overflow-x: hidden; /* prevent horizontal scroll caused by pseudo elements */
  background: #060b0c;
  color: #fff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* ensure fixed nav doesn't cover content */
body {   padding-top: 0;  }

/* ================================
   NAVBAR
================================ */
.custom-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #0042b7, #3b5df5, #75b7ff);
  backdrop-filter: blur(6px);
  padding: 18px 0;
  box-shadow: 0 3px 15px rgba(0,0,0,0.28);
  z-index: 1100;
  transition: background 0.3s ease, padding 0.3s ease;
}
.custom-nav.scrolled { padding: 10px 0; background: rgba(0, 40, 120, 0.82); }

.nav-logo {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
  border: 2px solid rgba(255,255,255,0.6);
  box-shadow: 0 0 8px rgba(255,255,255,0.4);
}
.brand-text {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 0 8px rgba(255,255,255,0.55);
}
.nav-link {
  position: relative;
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffffd9 !important;
  padding: 10px 8px;
  margin: 0 10px;
  transition: all 0.35s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #00ffe7, #ffffff, #00aaff);
  box-shadow: 0 0 12px rgba(255,255,255,0.85);
  border-radius: 5px;
  transition: width 0.35s ease;
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: #fff !important; transform: translateY(-3px) scale(1.03); }

/* ================================
   HERO
================================ */
.hero {
  position: relative;
  background: #0d1f22;
    min-height: calc(100vh - var(--nav-height)); /* full viewport height */
  padding-top: var(--nav-height); 
  /* min-height: calc(100vh - var(--nav-height)); */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 0 5% var(--hero-bottom-padding);


  padding-bottom: var(--hero-bottom-padding);
  overflow: visible;
}

/* animated gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(42,245,203,0.12), rgba(214,185,141,0.08), rgba(106,78,57,0.06));
  background-size: 400% 400%;
  animation: gradientShift 18s ease infinite;
  z-index: 1;
  pointer-events: none;
}

/* TEXT */
.hero-content {
  position: relative;
  z-index: 3;
  width: 50%;
  max-width: 600px;
  color: #fff;
  text-align: left;
  padding-left: 30px;
}
.title { font-size: 2.6rem; font-weight: 700; margin-bottom: 14px; animation: fadeSlide 4s ease-in-out infinite; }
.title .highlight { color: #2af5cb; animation: pulse 2s ease-in-out infinite; display:inline-block; }
.subtitle { font-size: 1.15rem; color: #e9f0f0; margin-bottom: 22px; }
.hero-btn {
  display:inline-block; padding:12px 30px; border-radius:50px;
  background:#2af5cb; color:#000; font-weight:700; text-decoration:none;
  transition: all .35s ease; z-index:4;
}
.hero-btn:hover { background:#fff; color:#2af5cb; box-shadow:0 0 14px #2af5cb; }

/* HERO IMAGE */
.hero-image {
  position: relative;
  z-index: 3;
  width: 380px;
  height: 380px;
  flex: 0 0 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  animation: zoomInOut 4s ease-in-out infinite;
  display:block;
}

/* DOTTED / DASHED SURROUND RINGS */
.hero-image {
  position: relative;
  z-index: 3;
}

/* Outer dashed ring */
.hero-image::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(42,245,203,0.95) 0deg 6deg,
    rgba(255,255,255,0.06) 6deg 12deg
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 6px), black calc(100% - 6px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 6px), black calc(100% - 6px));
  opacity: 0.95;
  transform-origin: 50% 50%;
  animation: rotateRing 8s linear infinite;
}

/* Inner dotted ring */
.hero-image::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(214,185,141,0.95) 0deg 4deg,
    rgba(255,255,255,0.06) 4deg 8deg
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), black calc(100% - 3px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), black calc(100% - 3px));
  opacity: 0.95;
  transform-origin: 50% 50%;
  animation: rotateRingReverse 12s linear infinite;
}

/* dots and inner decorations */
.hero-image .outer-dots, .hero-image .inner-dots { position:absolute; inset:0; pointer-events:none; }
.hero-image .outer-dots::before, .hero-image .outer-dots::after,
.hero-image .inner-dots::before, .hero-image .inner-dots::after { content:""; position:absolute; border-radius:50%; }
.hero-image .outer-dots::before { width:10px;height:10px;background:#2af5cb; left:10%; top:30%; }
.hero-image .outer-dots::after  { width:10px;height:10px;background:#d6b98d; right:8%; bottom:40%; }
.hero-image .inner-dots::before { width:6px;height:6px;background:#6a4e39; left:30%; top:40%; }
.hero-image .inner-dots::after  { width:6px;height:6px;background:#2af5cb; right:30%; bottom:30%; }

/* ------------------ decorative animations ------------------ */
@keyframes zoomInOut { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes rotateRing { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes rotateRingReverse { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }
@keyframes gradientShift { 0%{background-position:0% 50%}50%{background-position:100% 50%}100%{background-position:0% 50%} }
@keyframes fadeSlide { 0%,100%{opacity:0; transform:translateY(-8px)} 20%,80%{opacity:1; transform:translateY(0)} }
@keyframes pulse { 0%,100%{text-shadow:0 0 8px #2af5cb} 50%{text-shadow:0 0 20px #2af5cb} }

/* ------------------ floating shapes, blobs, stars ------------------ */
.floating-shapes { position:absolute; inset:0; pointer-events:none; z-index:0; }
.floating-shapes .shape { position:absolute; border-radius:50%; opacity:0.45; }
.floating-shapes .circle { width:70px; height:70px; background:rgba(42,245,203,0.2); top:12%; left:12%; animation:float1 12s infinite; }
.floating-shapes .triangle { top:30%; right:12%; width:0; height:0; border-left:18px solid transparent; border-right:18px solid transparent; border-bottom:36px solid rgba(214,185,141,0.12); animation:float2 16s infinite; }
.floating-shapes .square { width:50px;height:50px; background:rgba(106,78,57,0.12); bottom:18%; left:30%; animation:float3 18s infinite; }

@keyframes float1 { 0%{transform:translateY(0)}50%{transform:translateY(-30px)}100%{transform:translateY(0)} }
@keyframes float2 { 0%{transform:translateY(0)}50%{transform:translateY(30px)}100%{transform:translateY(0)} }
@keyframes float3 { 0%{transform:translateY(0)}50%{transform:translateY(-24px)}100%{transform:translateY(0)} }

/* blobs */
.blob { position:absolute; border-radius:50%; background:radial-gradient(circle at center, rgba(42,245,203,0.18), transparent 70%); width:220px;height:220px; left: -40px; bottom: 20px; z-index:0; opacity:0.9; filter:blur(10px); transform:scale(1); animation:blobFloat 22s infinite; }
.blob.b2 { right: -40px; top: 40px; background: radial-gradient(circle at center, rgba(214,185,141,0.12), transparent 70%); width:200px;height:200px; animation-duration:26s; }
.blob.b3 { left: 60%; top: -40px; background: radial-gradient(circle at center, rgba(106,78,57,0.10), transparent 70%); width:300px;height:300px; animation-duration:32s; }
@keyframes blobFloat { 0%{transform:translate(0,0)}25%{transform:translate(30px,-20px)}50%{transform:translate(-40px,30px)}75%{transform:translate(20px,-40px)}100%{transform:translate(0,0)} }

/* stars (tiny) */
.hero-stars { position:absolute; inset:0; z-index:0; pointer-events:none; }
.hero-stars div { position:absolute; width:3px;height:3px;border-radius:50%; background:#fff; opacity:0.65; animation:twinkle 3s infinite alternate; }
.hero-stars div:nth-child(1){top:20%;left:15%;}
.hero-stars div:nth-child(2){top:50%;left:80%;}
.hero-stars div:nth-child(3){top:70%;left:40%;}
.hero-stars div:nth-child(4){top:10%;left:60%;}
.hero-stars div:nth-child(5){top:85%;left:25%;}
@keyframes twinkle { 0%{opacity:0.25;transform:scale(0.85)} 50%{opacity:1;transform:scale(1.2)} 100%{opacity:0.25;transform:scale(0.85)} }

/* hero wave (centered to avoid overflow) */
.hero::after {
  content:"";
  position:absolute;
  bottom:-18px;
  left:50%;
  transform:translateX(-50%);
  width:140%;
  height:200px;
  background: rgba(42,245,203,0.12);
  border-radius:45% 55% 55% 45% / 50% 50% 50% 50%;
  z-index:0;
  animation:wave 10s ease-in-out infinite;
}
@keyframes wave { 0%{transform:translateX(-50%) rotate(0deg)} 50%{transform:translateX(-55%) rotate(4deg)} 100%{transform:translateX(-50%) rotate(0deg)} }

/* ------------------ SERVICES SECTION styles ------------------ */
.services-section {
  position: relative;
  z-index: 20;
  padding: 60px 5%;
  background: transparent;
  color: #fff;
}
.services-section h2 { font-size: 2rem; margin-bottom: 8px; color: #fff; }
.service-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.04); transition: transform .3s ease, box-shadow .3s ease; }
.service-card img { display:block; margin: 0 auto 14px auto; filter: none; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 10px 30px rgba(0,0,0,0.45); }

/* fallback placeholder look for missing images */
.img-fallback {
  width: 60px; height: 60px; display:block; border-radius:8px; margin:0 auto 12px auto;
  background: linear-gradient(135deg,#2af5cb,#d6b98d); display:flex; align-items:center; justify-content:center; color:#072; font-weight:700;
}

/* responsiveeeeee */
/* ===== MOBILE: STACK HERO (image above text) + KEEP IMAGE PERFECT CIRCLE ===== */
@media (max-width: 991px) {

  /* undo any "force row" rules and make hero stacked */
.hero {
    display: flex !important;
    flex-direction: column !important;   /* stack on mobile */
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;

    /* 🔑 FIX: reserve space for fixed navbar */
    padding-top: calc(var(--nav-height) + 20px) !important;

    padding-left: 4% !important;
    padding-right: 4% !important;
    padding-bottom: var(--hero-bottom-padding) !important;

        min-height: calc(100vh - var(--nav-height)) !important;
    text-align: center !important;
  }

  /* hero text: full width and centered */
  .hero-content {
    width: 100% !important;
    max-width: 720px !important;
    padding-left: 0 !important;
    margin: 0 auto 6px auto !important;
    text-align: center !important;
  }

  /* hero image: fixed circle, centered, responsive */
  .hero-image {
    width: min(300px, 86vw) !important;   /* responsive size that fits almost any phone */
    height: auto !important;
    aspect-ratio: 1 / 1 !important;       /* keep square ratio */
    max-width: 300px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    margin: 0 auto !important;
    flex: 0 0 auto !important;
  }

  .hero-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;        /* force perfect circle */
    display: block !important;
  }

  /* scale down the dotted rings so they don't cover the photo on small screens */
  .hero-image::before {
    inset: -12px !important;
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), black calc(100% - 5px)) !important;
    mask: radial-gradient(farthest-side, transparent calc(100% - 5px), black calc(100% - 5px)) !important;
  }
  .hero-image::after {
    inset: -8px !important;
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), black calc(100% - 3px)) !important;
    mask: radial-gradient(farthest-side, transparent calc(100% - 3px), black calc(100% - 3px)) !important;
  }

  /* reduce decorations to avoid overflow/clutter */
  .floating-shapes .circle { width: 50px !important; height: 50px !important; left: 6% !important; top: 6% !important; }
  .floating-shapes .triangle { right: 8% !important; border-left: 14px solid transparent !important; border-right: 14px solid transparent !important; border-bottom: 28px solid rgba(214,185,141,0.12) !important; }
  .floating-shapes .square { width: 36px !important; height: 36px !important; bottom: 14% !important; left: 28% !important; }
  .blob, .blob.b2, .blob.b3 { display: none !important; }

  /* Services spacing */
  .services-section { padding: 36px 4% !important; }

  /* font scaling for a tidy mobile look */
  .title { font-size: clamp(1.6rem, 6vw, 2.2rem) !important; }
  .subtitle { font-size: clamp(0.95rem, 3.2vw, 1.1rem) !important; margin-bottom: 16px !important; }
  .hero-btn { padding: 10px 20px !important; font-size: 0.95rem !important; }
}




/* about */


/* ============================
   SIMPLE ABOUT SECTION
============================ */
.about-section {
  padding: 80px 5%;
  background: #0d1f22; /* matches your hero */
  color: #fff;
  position: relative;
  z-index: 50;
}

.about-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #2af5cb;
  letter-spacing: 1px;
}

/* layout: image left, text right */
.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* profile image */
.about-img img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(42,245,203,0.4);
  box-shadow: 0 0 20px rgba(42,245,203,0.35);
  transition: transform .4s ease;
}
.about-img img:hover {
  transform: scale(1.05);
}

/* text */
.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #fff;
}
.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

/* animation */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* responsive */
@media (max-width: 991px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .about-img img {
    width: 200px;
    height: 200px;
  }
}

/* Remove big gap between hero & about */
.hero {
  padding-bottom: 20px !important;
}
.about-section {
  margin-top: -20px !important;
}
/* animation about */
/* =========================
   ABOUT: Animated background + particles
   Paste at end of css/styles.css
========================= */

/* animated gradient layer behind about */
.about-section {
  position: relative;
  overflow: hidden; /* keep particles inside */
}

/* animated gradient pseudo */
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0; /* behind content */
  background: linear-gradient(120deg,
    rgba(42,245,203,0.06) 0%,
    rgba(214,185,141,0.03) 30%,
    rgba(106,78,57,0.02) 60%,
    rgba(42,245,203,0.04) 100%);
  background-size: 300% 300%;
  animation: aboutGradient 12s ease infinite;
  pointer-events: none;
  filter: blur(6px) saturate(1.05);
  opacity: 0.95;
}

/* floating micro-particles (soft) */
.about-section::after {
  content:"";
  position:absolute;
  inset: -10% -5% -10% -5%;
  z-index: 0;
  background-image:
     radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
     radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px, 40px 40px;
  animation: particlesMove 22s linear infinite;
  opacity: 0.6;
  pointer-events: none;
}

/* keep content above background layers */
.about-container, .about-wrapper, .about-title, .about-text, .about-img { position: relative; z-index: 2; }

/* subtle glow behind the image to emphasize */
.about-img::before {
  content: "";
  position: absolute;
  inset: -10px -10px auto -10px;
  height: 120%;
  width: 120%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(42,245,203,0.12), transparent 30%, rgba(214,185,141,0.04) 60%);
  z-index: 1;
  filter: blur(14px);
  pointer-events: none;
}

/* parallax-ready helpers (initial transform) */
.about-img, .about-text {
  transform: translateY(0);
  will-change: transform;
  transition: transform 0.12s linear;
}

/* animation keyframes */
@keyframes aboutGradient {
  0% { background-position: 0% 40%; }
  50% { background-position: 100% 60%; }
  100% { background-position: 0% 40%; }
}
@keyframes particlesMove {
  0% { background-position: 0% 0%, 0% 0%; }
  50% { background-position: 50% 30%, 30% 50%; }
  100% { background-position: 0% 0%, 0% 0%; }
}

/* small polish: stronger reveal for content when in-view */
[data-animate] { opacity: 0; transform: translateY(12px); transition: opacity .7s ease, transform .7s ease; }
[data-animate].in-view { opacity: 1; transform: translateY(0); }

/* ensure background layers don't interfere on very small screens */
@media (max-width: 480px) {
  .about-section::before { filter: blur(8px); }
  .about-section::after  { opacity: 0.35; background-size: 36px 36px, 60px 60px; }
  .about-img::before { filter: blur(8px); opacity: 0.9; }
}




/* about text  */


/* ===== Attractive About text styling ===== */
.about-text { 
  color: #eaf6f5;
  line-height: 1.55;
  max-width: 680px;
}

/* Name + accent */
.about-name {
  font-size: 1.75rem;
  margin: 0 0 8px 0;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #ffffff;
}
.name-highlight {
  color: #2af5cb;
  background: linear-gradient(90deg, rgba(42,245,203,0.06), rgba(214,185,141,0.03));
  padding: 2px 8px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(42,245,203,0.04);
}

/* short intro */
.about-lead {
  margin: 0 0 14px 0;
  color: rgba(234,246,245,0.95);
  font-weight: 600;
}

/* body paragraphs */
.about-body p {
  margin: 0 0 12px 0;
  color: rgba(234,246,245,0.88);
  font-size: 1.02rem;
}

/* inline pills for skills */
.pill {
  display: inline-block;
  margin: 0 6px 0 0;
  padding: 4px 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(42,245,203,0.08), rgba(214,185,141,0.03));
  color: #dffbf6;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid rgba(42,245,203,0.06);
  box-shadow: 0 6px 18px rgba(42,245,203,0.03);
}

/* emphasized words (gold) */
.emphasize {
  color: #d6b98d;
  font-weight: 700;
  padding: 0 4px;
}

/* small inline heart/travel icon (CSS only) */


/* CTA row */
.about-cta {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-outline {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  color: #2af5cb;
  border: 1px solid rgba(42,245,203,0.22);
  text-decoration: none;
  font-weight: 700;
  transition: all .25s ease;
  background: transparent;
}
.btn-outline:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(42,245,203,0.06);
  background: rgba(42,245,203,0.03);
}

.small-note {
  color: rgba(234,246,245,0.7);
  font-size: 0.92rem;
}

/* subtle entrance animation for about-text only (complements data-animate reveal) */
.about-text { transform: translateY(6px); transition: transform .6s cubic-bezier(.2,.9,.2,1), opacity .6s; }
.about-text.in-view { transform: translateY(0); opacity: 1; }

/* responsiveness */
@media (max-width: 991px) {
  .about-name { font-size: 1.5rem; }
  .about-img img { width: 180px; height: 180px; }
  .about-text { padding: 0 12px; text-align: center; }
  .pill { font-size: 0.86rem; padding: 4px 8px; }
  .about-cta { justify-content: center; }
}
 /* end about text */


 /* rotating words */
 /* Rotating word – bigger, bold, uppercase */
.rotating-word {
  margin-left: 12px;
  font-weight: 900;
  font-size: 1.25rem;   /* Bigger size */
  letter-spacing: 1.5px;
  color: #2af5cb;
  opacity: 1;
  transition: opacity .35s ease;
  display: inline-block;
  text-transform: uppercase;
}

/* mobile alignment */
@media (max-width: 991px) {
  .rotating-word {
    display: block;
    margin-left: 0;
    margin-top: 6px;
    font-size: 1.15rem;
  }
}
/* mobileeeeeeeee */

/* ===== MOBILE ABOUT SECTION UPGRADE ===== */
@media (max-width: 991px) {

  /* better spacing */
  .about-section {
    padding: 60px 20px !important;
  }

  /* center everything */
  .about-wrapper {
    flex-direction: column !important;
    text-align: center !important;
    gap: 20px !important;
  }

  /* image styling on mobile */
  .about-img img {
    width: 180px !important;
    height: 180px !important;
    border-radius: 50%;
    border: 3px solid rgba(42,245,203,0.3);
    box-shadow: 0 0 25px rgba(42,245,203,0.25);
    animation: floatMobile 6s ease-in-out infinite;
  }

  @keyframes floatMobile {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  /* name + rotating text */
  .about-name {
    font-size: 1.6rem !important;
    line-height: 1.4;
    margin-top: 10px;
  }

  .rotating-word {
    display: block !important;
    margin-top: 6px !important;
    margin-left: 0 !important;
    font-size: 1.1rem !important;
    letter-spacing: 1.2px;
  }

  /* body text improvements */
  .about-text p {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
    color: #eefaff;
  }

  .pill {
    margin: 4px auto;
    font-size: 0.82rem !important;
    padding: 4px 10px !important;
  }

  .about-cta {
    justify-content: center !important;
    gap: 12px;
    flex-direction: column;
  }

  .btn-outline {
    width: fit-content;
    padding: 10px 24px !important;
  }
}


@media (max-width: 991px) {
  .rotating-word {
    animation: wordPulse 2.2s ease-in-out infinite;
  }

  @keyframes wordPulse {
    0%,100% { opacity: 0.9; text-shadow: 0 0 6px rgba(42,245,203,0.4); }
    50% { opacity: 1; text-shadow: 0 0 14px rgba(42,245,203,0.65); }
  }
}


[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: all .7s ease;
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/*  service section */
/* ======================================================
   SERVICES — COMPLETE STYLES
   Drop this at the end of styles.css (or use as a file)
   - Scoped to #services-provide
   - Responsive: 3 / 2 / 1 column grid
   - Uses .sp-card, .sp-icon, data-animate .in-view
   - Strong contrast + hover, focus states
   ====================================================== */

/* Section wrapper */
#services-provide {
  padding: 72px 5%;
  position: relative;
  z-index: 60;
  background: transparent;
  color: #fff;
  font-family: inherit;
}

/* Header */
#services-provide .sp-header {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}
#services-provide h2 {
  margin: 0;
  font-size: 2.4rem;
  color: #2af5cb;        /* teal accent */
  font-weight: 800;
  letter-spacing: 0.5px;
}
#services-provide .sp-sub {
  margin-top: 8px;
  font-size: 1.03rem;
  color: rgba(255,255,255,0.82);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid layout */
.sp-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  margin-top: 18px;
}

/* Card base (glass-like) */
.sp-card {
  position: relative;
  z-index: 61;
  background: rgba(255,255,255,0.98);       /* bright surface for readability */
  border-radius: 14px;
  padding: 26px 22px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: transform .42s cubic-bezier(.2,.9,.2,1), box-shadow .42s, border-color .35s;
  border: 1px solid rgba(6,12,16,0.06);
  box-shadow: 0 12px 40px rgba(3,9,18,0.06);
  color: #0d1f22; /* dark text for high contrast on white card */
}

/* Top gradient accent line */
.sp-card::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 12px;
  right: 12px;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(90deg,#2af5cb,#d6b98d);
  transform: translateY(-12px);
  transition: transform .35s ease;
  z-index: 62;
}

/* Icon container (SVG strokes inherit currentColor) */
.sp-icon {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin: 0 auto 6px auto;
  background: rgba(42,245,203,0.06);
  border: 1px solid rgba(42,245,203,0.12);
  color: #14c9a9;
  transition: transform .36s ease, box-shadow .36s ease;
  z-index: 63;
}

/* If the icon is replaced by a fallback tile */
.sp-fallback {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(90deg, rgba(42,245,203,0.08), rgba(214,185,141,0.02));
  color:#0d1f22; font-weight:700; letter-spacing:0.8px;
}

/* Title & description */
.sp-card h4 {
  margin: 6px 0 6px 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0d1f22;
}
.sp-card p {
  margin: 0;
  color: rgba(13,31,34,0.85);
  font-size: 0.96rem;
  line-height: 1.55;
}

/* Hover & focus interactions */
.sp-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 28px 64px rgba(42,245,203,0.08);
  border-color: rgba(42,245,203,0.2);
}
.sp-card:hover .sp-icon { transform: translateY(-8px) scale(1.03); box-shadow: 0 16px 46px rgba(42,245,203,0.06); }
.sp-card:focus-within, .sp-card:focus {
  outline: 3px solid rgba(42,245,203,0.06);
  outline-offset: 6px;
}

/* CTA area */
.sp-cta {
  margin-top: 30px;
  text-align: center;
  z-index: 61;
}
.sp-cta .btn-outline {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid rgba(42,245,203,0.18);
  background: transparent;
  color: #14c9a9;
  text-decoration: none;
  font-weight: 800;
}
.sp-cta .small-note {
  margin-top: 8px;
  color: rgba(13,31,34,0.6);
  display:block;
}

/* Reveal animation helper (works with IntersectionObserver adding .in-view) */
[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.9,.2,1);
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}
/* Responsive: 1 column mobile, icon TOP and text BELOW (stacked) */
@media (max-width: 576px) {
  .sp-grid {
    grid-template-columns: 1fr;
  }

  .sp-card {
    min-height: auto;
    padding: 18px;
    text-align: center;        /* center everything */
    flex-direction: column;     /* stack icon → title → text */
    gap: 14px;
    align-items: center;
  }

  .sp-icon,
  .sp-fallback {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    margin: 0 auto;            /* center icon */
  }

  .sp-card h4 {
    font-size: 1.05rem;
    text-align: center;
  }

  .sp-card p {
    font-size: .95rem;
    text-align: center;
    line-height: 1.45;
  }

  #services-provide h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  #services-provide .sp-sub {
    text-align: center;
  }

  .sp-cta {
    text-align: center;
  }
}











/* =====================================================
   FINAL VIEWPORT & BUG FIX (DESKTOP + MOBILE)
   SAFE OVERRIDES — NO DESIGN CHANGE
===================================================== */

/* ===============================
   DESKTOP + LAPTOP (DEFAULT)
=============================== */

/* Normalize hero height & navbar offset */
.hero {
  min-height: calc(100vh - var(--nav-height));
  padding-top: var(--nav-height);
  padding-bottom: var(--hero-bottom-padding);
}

/* Remove unsafe negative gap hacks */
.about-section {
  margin-top: 0 !important;
}

/* ===============================
   MOBILE ONLY
=============================== */
@media (max-width: 991px) {

  /* Each section takes full viewport */
  .hero,
  .about-section,
  #services-provide,
  .skills-section {
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* Hero stays navbar-safe */
  .hero {
    padding-top: var(--nav-height) !important;
  }
}

/* animation scrollllllllll */
/* =====================================================
   MOBILE-FIRST WOW SCROLL ANIMATIONS (FINAL)
   - Smooth
   - No duplicates
   - No flicker
   - Works scroll up + down
===================================================== */

/* Smooth native scrolling */
html {
  scroll-behavior: smooth;
}

/* ======================
   SCROLL INDICATOR
====================== */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  z-index: 10;
  opacity: 0.8;
}

.scroll-indicator span {
  width: 6px;
  height: 6px;
  background: #2af5cb;
  border-radius: 50%;
  margin-top: 8px;
  animation: scrollDot 2.2s infinite;
}

@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translateY(18px); opacity: 0; }
}

/* ======================
   REVEAL (MOBILE-FIRST)
====================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(.22,1,.36,1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Slightly stronger effect on desktop */
@media (min-width: 992px) {
  .reveal {
    transform: translateY(60px);
  }
}

/* ======================
   STAGGER EFFECT (WOW)
====================== */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(.22,1,.36,1);
}

.reveal-stagger.active > * {
  opacity: 1;
  transform: translateY(0);
}

/* ======================
   TOUCH FEEDBACK (MOBILE)
====================== */
.sp-card,
.skill-box,
.btn-outline,
.hero-btn {
  transition: transform .25s ease, box-shadow .25s ease;
}

.sp-card:active,
.skill-box:active,
.btn-outline:active,
.hero-btn:active {
  transform: scale(0.96);
  box-shadow: 0 12px 30px rgba(42,245,203,0.25);
}

/* ======================
   PARALLAX (LIGHT & SAFE)
====================== */
.parallax {
  will-change: transform;
}

/* ======================
   ACCESSIBILITY
====================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}




/* nav active */
/* =========================
   ACTIVE NAV LINK STYLE
========================= */
.nav-link.active {
  color: #2af5cb !important;
  text-shadow: 0 0 10px rgba(42,245,203,0.8);
}

.nav-link.active::after {
  width: 100%;
}

/* full view port */
/* =====================================================
   HERO VIEWPORT FIX — SAFE ADD ONLY
   (Desktop + Mobile | No override of old design)
===================================================== */

/* Ensure no global spacing issues */
html, body {
  margin: 0;
  padding: 0;
}

/* Hero exact viewport height (modern browsers) */
.hero {
  height: 100dvh; /* dynamic viewport height */
  overflow: hidden;
}

/* Fallback for older browsers */
@supports not (height: 100dvh) {
  .hero {
    height: 100vh;
  }
}

/* Ensure hero content stays inside viewport */
.hero > * {
  max-height: 100%;
}

/* Remove accidental top gaps in next sections */
.about-section,
.services-provide,
.skills-section {
  margin-top: 0 !important;
}

/* Scroll offset fix for fixed navbar */
section {
  scroll-margin-top: var(--nav-height, 0px);
}

/* Mobile safe-area fix (iOS) */
.scroll-indicator {
  bottom: max(20px, env(safe-area-inset-bottom));
}










/* =====================================================
   FINAL WHITE SPACE KILL SWITCH (MOBILE SAFE)
   ADD-ONLY — DOES NOT CHANGE DESIGN
===================================================== */

/* 1️⃣ Prevent hero from increasing document height */
.hero {
  overflow: hidden !important;
}

/* 2️⃣ Kill top & bottom margins that cause gaps */
section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* 3️⃣ Ensure hero decorative elements NEVER add height */
.hero .blob,
.hero .scroll-indicator,
.hero img,
.hero svg {
  max-height: 100%;
}

/* 4️⃣ Force body to not exceed viewport on load */
html,
body {
  height: auto !important;
  min-height: 0 !important;
  overflow-x: hidden;
}

/* 5️⃣ Prevent mobile-only phantom spacing */
main,
.wrapper,
.page,
#root {
  min-height: 0 !important;
}




/* Projects */
/* =========================
   PROJECTS SECTION
========================= */
.projects-section {
  padding: 80px 0;
}

.projects-header h2 {
  font-size: 2.2rem;
}

.projects-sub {
  max-width: 620px;
  margin: 10px auto 0;
  opacity: 0.8;
}

/* GRID */
.projects-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

/* CARD */
.project-card {
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .5s cubic-bezier(.22,1,.36,1),
              box-shadow .5s ease;
}

.project-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.25);
}

/* MEDIA */
.project-media {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.project-media img,
.project-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* VIDEO AUTO PLAY ON HOVER (DESKTOP) */
.project-media.video video {
  pointer-events: none;
}

/* BADGE */
.project-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 0.7rem;
  border-radius: 12px;
  color: #fff;
}

.project-badge.live {
  background: #16a34a;
}

.project-badge.demo {
  background: #2563eb;
}

/* CONTENT */
.project-content {
  padding: 20px;
}

.project-content h3 {
  margin-bottom: 8px;
}

.project-content p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* TECH STACK */
.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
  padding: 0;
  list-style: none;
}

.project-tech li {
  background: rgba(42,245,203,0.15);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
}

/* LINKS */
.project-links {
  margin-top: 12px;
  display: flex;
  gap: 12px;
}

/* EXPERIENCE */
.experience-section {
  padding: 80px 0;
}

.timeline {
  max-width: 720px;
  margin: 50px auto 0;
  display: grid;
  gap: 28px;
}

.timeline-item {
  padding-left: 20px;
  border-left: 3px solid rgba(42,245,203,0.4);
}

.timeline-year {
  font-size: 0.85rem;
  color: #2af5cb;
  font-weight: 600;
}

.timeline-item h4 {
  margin: 6px 0;
}




/* WHY CHOOSE ME */
.why-section {
  padding: 80px 0;
}

.why-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.why-card {
  padding: 22px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  transition: transform .4s ease, box-shadow .4s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* CONTACT */
.contact-section {
  padding: 90px 0;
}

.contact-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-note {
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ===============================
   PROJECTS WOW SECTION
================================= */

.projects-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(120deg, #020617, #020617, #020617);
  overflow: hidden;
}

/* Animated background glow */
.projects-section::before,
.projects-section::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.25;
  animation: floatGlow 10s infinite alternate ease-in-out;
}

.projects-section::before {
  background: #38bdf8;
  top: -120px;
  left: -120px;
}

.projects-section::after {
  background: #22c55e;
  bottom: -120px;
  right: -120px;
}

@keyframes floatGlow {
  from { transform: translateY(0px); }
  to { transform: translateY(60px); }
}

/* Header */
.projects-header h2 {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 800;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.projects-sub {
  max-width: 600px;
  margin: 10px auto 50px;
  color: #94a3b8;
  font-size: 1.05rem;
}

/* Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Card */
.project-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1),
              box-shadow 0.6s ease;
}

/* Glow border on hover */
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(56,189,248,0.4), transparent);
  opacity: 0;
  transition: opacity 0.6s;
}

.project-card:hover::before {
  opacity: 1;
}

.project-card:hover {
  transform: translateY(-16px) scale(1.02);
  box-shadow: 0 35px 80px rgba(0,0,0,0.6);
}

/* Media */
.project-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-card:hover img {
  transform: scale(1.1);
}

/* Badge */
.project-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  color: #020617;
}

.project-badge.live {
  background: #22c55e;
}

.project-badge.demo {
  background: #38bdf8;
}

/* Content */
.project-content {
  padding: 24px;
  color: #e5e7eb;
}

.project-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.project-content p {
  font-size: 0.95rem;
  color: #cbd5f5;
  margin-bottom: 18px;
}

/* Tech */
.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.project-tech li {
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

/* Button */
.btn-primary {
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  border: none;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  color: #020617;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(56,189,248,0.5);
}
.reveal-item {
  opacity: 0;
  transform: translateY(50px) scale(0.96);
  transition: all 0.8s cubic-bezier(.2,.8,.2,1);
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* experience */
/* ===============================
   EXPERIENCE SECTION WOW
================================= */

.experience-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(120deg, #020617, #020617);
  overflow: hidden;
}

/* Floating glow background */
.experience-section::before,
.experience-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.25;
  animation: expGlow 10s ease-in-out infinite alternate;
}

.experience-section::before {
  background: #38bdf8;
  top: -120px;
  left: -120px;
}

.experience-section::after {
  background: #22c55e;
  bottom: -120px;
  right: -120px;
}

@keyframes expGlow {
  from { transform: translateY(0); }
  to { transform: translateY(60px); }
}

/* Header */
.experience-section .section-header h2 {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 800;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.experience-section .section-header p {
  color: #94a3b8;
  max-width: 600px;
  margin: 12px auto 60px;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: auto;
  padding-left: 30px;
}

/* Vertical glowing line */
.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #38bdf8, #22c55e);
  border-radius: 2px;
}

/* Timeline Item */
.timeline-item {
  position: relative;
  margin-bottom: 50px;
  padding: 28px 30px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1),
              box-shadow 0.6s ease;
}

/* Dot */
.timeline-item::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 34px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 0 6px rgba(56,189,248,0.25);
}

/* Hover lift */
.timeline-item:hover {
  transform: translateX(10px) translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
}

/* Year badge */
.timeline-year {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  color: #020617;
}

/* Text */
.timeline-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #e5e7eb;
  margin-bottom: 10px;
}

.timeline-item p {
  font-size: 0.95rem;
  color: #cbd5f5;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .timeline {
    padding-left: 20px;
  }

  .timeline-item::before {
    left: -30px;
  }
}
.exp-hidden {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: all 0.8s cubic-bezier(.2,.8,.2,1);
}

.exp-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* why choose me */
/* =========================
   WHY CHOOSE ME – PREMIUM
========================= */
.why-section {
  padding: 80px 0;
}

/* Grid already OK – enhancing cards */
.why-card {
  position: relative;
  padding: 26px 24px;
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
  border: 1px solid rgba(255,255,255,0.08);
  transition:
    transform .45s cubic-bezier(.22,1,.36,1),
    box-shadow .45s ease,
    border-color .45s ease;
  overflow: hidden;
}

/* Hover / tap effect */
.why-card:hover,
.why-card:active {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(42,245,203,0.25);
  border-color: rgba(42,245,203,0.5);
}

/* Glow sweep (subtle wow) */
.why-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at top right,
    rgba(42,245,203,0.25),
    transparent 60%
  );
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}

.why-card:hover::after {
  opacity: 1;
}

/* Number badge (optional) */
.why-index {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #2af5cb;
  margin-bottom: 8px;
  opacity: 0.8;
}

/* Headings */
.why-card h4 {
  margin-bottom: 8px;
}

/* Mobile tap feedback */
@media (max-width: 991px) {
  .why-card:active {
    transform: scale(0.97);
  }
}
/* =========================
   WHY CHOOSE ME – PREMIUM
========================= */
.why-section {
  padding: 80px 0;
}

.why-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

/* Card */
.why-card {
  position: relative;
  padding: 28px 24px;
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
  border: 1px solid rgba(255,255,255,0.08);
  transition:
    transform .45s cubic-bezier(.22,1,.36,1),
    box-shadow .45s ease,
    border-color .45s ease;
  overflow: hidden;
}

/* Hover & tap */
.why-card:hover,
.why-card:active {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(42,245,203,0.25);
  border-color: rgba(42,245,203,0.5);
}

/* Soft glow sweep */
.why-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at top right,
    rgba(42,245,203,0.25),
    transparent 60%
  );
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}

.why-card:hover::after {
  opacity: 1;
}

/* Index */
.why-index {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #2af5cb;
  margin-bottom: 10px;
  opacity: 0.85;
}

/* Text */
.why-card h4 {
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Mobile tap feedback */
@media (max-width: 991px) {
  .why-card:active {
    transform: scale(0.97);
  }
}
/* =========================
   CONTACT SECTION – PREMIUM
========================= */
.contact-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Soft background glow */
.contact-section::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at center,
    rgba(42,245,203,0.12),
    transparent 60%
  );
  pointer-events: none;
}

/* Heading */
.contact-section h2 {
  font-size: 2.3rem;
  margin-bottom: 12px;
}

/* Paragraph */
.contact-section p {
  max-width: 620px;
  margin: 0 auto;
  opacity: 0.85;
  font-size: 1.05rem;
}

/* Buttons */
.contact-actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Button polish */
.contact-actions a {
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition:
    transform .35s cubic-bezier(.22,1,.36,1),
    box-shadow .35s ease;
}

/* Hover & tap */
.contact-actions a:hover,
.contact-actions a:active {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(42,245,203,0.35);
}

/* Footer note */
.contact-note {
  margin-top: 28px;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .contact-section {
    padding: 80px 0;
  }

  .contact-section h2 {
    font-size: 1.9rem;
  }
}
@keyframes pulseOnce {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.pulse-once a {
  animation: pulseOnce .6s ease;
}

/* =========================
   FOOTER – PREMIUM CLEAN
========================= */
.site-footer {
  padding: 80px 0 30px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.02),
    rgba(0,0,0,0.35)
  );
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

/* Brand */
.footer-brand h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* Links */
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  opacity: 0.8;
  transition: opacity .3s ease, color .3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: #2af5cb;
}

/* Contact */
.footer-contact p {
  font-size: 0.9rem;
  opacity: 0.85;
}

.footer-contact a {
  color: #2af5cb;
}

/* Bottom */
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Mobile spacing */
@media (max-width: 991px) {
  .site-footer {
    padding: 60px 0 24px;
  }
}
/* ===============================
   WHY CHOOSE ME – WOW SECTION
================================= */

.why-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top left, #020617, #020617);
  overflow: hidden;
  padding: 100px 0;
}

/* Animated gradient orbs */
.why-section::before,
.why-section::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.28;
  animation: whyFloat 10s ease-in-out infinite alternate;
}

.why-section::before {
  background: #38bdf8;
  top: -120px;
  left: -120px;
}

.why-section::after {
  background: #22c55e;
  bottom: -120px;
  right: -120px;
}

@keyframes whyFloat {
  from { transform: translateY(0); }
  to { transform: translateY(60px); }
}

/* Header */
.why-section .section-header h2 {
  font-size: clamp(2.6rem, 5vw, 3.3rem);
  font-weight: 900;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-section .section-header p {
  color: #94a3b8;
  margin: 12px auto 60px;
  max-width: 520px;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card */
.why-card {
  position: relative;
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1),
              box-shadow 0.7s ease;
  overflow: hidden;
}

/* Hover glow line */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(56,189,248,0.45), transparent);
  opacity: 0;
  transition: opacity 0.6s;
}

.why-card:hover::before {
  opacity: 1;
}

/* Lift */
.why-card:hover {
  transform: translateY(-16px) scale(1.03);
  box-shadow: 0 40px 90px rgba(0,0,0,0.6);
}

/* Index number */
.why-index {
  display: inline-block;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text */
.why-card h4 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #e5e7eb;
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5f5;
}

/* Responsive center alignment */
@media (max-width: 991px) {
  .why-section {
    padding: 80px 0;
  }
}
.why-hidden {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: all 0.9s cubic-bezier(.2,.8,.2,1);
}

.why-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.why-stat {
  display: inline-block;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #e5e7eb;
}
/* ===============================
   WHY CHOOSE ME – FINAL
================================= */

.why-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top left, #020617, #020617);
  overflow: hidden;
  padding: 100px 0;
}

/* Floating glow orbs */
.why-section::before,
.why-section::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.28;
  animation: whyFloat 10s ease-in-out infinite alternate;
}

.why-section::before {
  background: #38bdf8;
  top: -120px;
  left: -120px;
}

.why-section::after {
  background: #22c55e;
  bottom: -120px;
  right: -120px;
}

@keyframes whyFloat {
  from { transform: translateY(0); }
  to { transform: translateY(60px); }
}

/* Header */
.why-section .section-header h2 {
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 900;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-section .section-header p {
  color: #94a3b8;
  margin: 12px auto 24px;
  max-width: 520px;
}

/* Stat pill */
.why-stat {
  display: inline-block;
  padding: 10px 22px;
  font-size: 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #e5e7eb;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Cards */
.why-card {
  position: relative;
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1),
              box-shadow 0.7s ease;
  overflow: hidden;
}

/* Hover glow */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(56,189,248,0.45), transparent);
  opacity: 0;
  transition: opacity 0.6s;
}

.why-card:hover::before {
  opacity: 1;
}

/* Lift */
.why-card:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow: 0 40px 90px rgba(0,0,0,0.6);
}

/* Index number */
.why-index {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 16px;
  display: inline-block;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text */
.why-card h4 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #e5e7eb;
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5f5;
}

/* Mobile spacing */
@media (max-width: 991px) {
  .why-section {
    padding: 80px 0;
  }
}
.why-hidden {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: all 0.9s cubic-bezier(.2,.8,.2,1);
}

.why-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* ===============================
   CONTACT / CTA – WOW SECTION
================================= */

.contact-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top right, #020617, #020617);
  overflow: hidden;
  padding: 100px 0;
}

/* Animated glow orbs */
.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(180px);
  opacity: 0.3;
  animation: contactFloat 10s ease-in-out infinite alternate;
}

.contact-section::before {
  background: #38bdf8;
  top: -140px;
  left: -140px;
}

.contact-section::after {
  background: #22c55e;
  bottom: -140px;
  right: -140px;
}

@keyframes contactFloat {
  from { transform: translateY(0); }
  to { transform: translateY(70px); }
}

/* Headline */
.contact-section h2 {
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  font-weight: 900;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description */
.contact-section p {
  max-width: 620px;
  margin: 18px auto;
  font-size: 1.05rem;
  color: #cbd5f5;
  line-height: 1.6;
}

/* Availability badge */
.contact-badge {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 40px;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #e5e7eb;
  font-size: 0.9rem;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
}

/* Actions */
.contact-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 40px 0;
}

/* Primary CTA */
.contact-actions .btn-primary {
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  color: #020617;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Outline CTA */
.contact-actions .btn-outline {
  padding: 14px 32px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.25);
  color: #e5e7eb;
  font-weight: 700;
  background: transparent;
  transition: transform 0.4s ease, background 0.4s ease;
}

/* Hover effects */
.contact-actions a:hover {
  transform: translateY(-6px);
}

.contact-actions .btn-primary:hover {
  box-shadow: 0 25px 70px rgba(56,189,248,0.6);
}

.contact-actions .btn-outline:hover {
  background: rgba(255,255,255,0.08);
}

/* Footer note */
.contact-note {
  margin-top: 40px;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* Mobile */
@media (max-width: 991px) {
  .contact-actions {
    flex-direction: column;
    gap: 18px;
  }
}
.contact-hidden {
  opacity: 0;
  transform: scale(0.97);
  transition: all 1s cubic-bezier(.2,.8,.2,1);
}

.contact-visible {
  opacity: 1;
  transform: scale(1);
}





/* =====================================================
   SERVICES = WHY-CHOOSE-ME STYLE (DARK WOW)
   FINAL OVERRIDE — PASTE AT END
===================================================== */

section#services-provide.services-provide {
  position: relative !important;
  min-height: 100vh;
  padding: 100px 5% !important;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top left, #020617, #020617) !important;
  color: #e5e7eb !important;
  overflow: hidden;
  z-index: 1;
}

/* SAME GLOW ORBS AS WHY CHOOSE ME */
section#services-provide.services-provide::before,
section#services-provide.services-provide::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.28;
  animation: sectionFloat 10s ease-in-out infinite alternate;
  z-index: 0;
}

section#services-provide.services-provide::before {
  background: #38bdf8;
  top: -120px;
  left: -120px;
}

section#services-provide.services-provide::after {
  background: #22c55e;
  bottom: -120px;
  right: -120px;
}

@keyframes sectionFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(60px); }
}

/* CONTENT ABOVE GLOW */
section#services-provide.services-provide .container {
  position: relative;
  z-index: 2;
}

/* HEADER (MATCH WHY SECTION) */
section#services-provide.services-provide h2 {
  font-size: clamp(2.6rem, 5vw, 3.3rem);
  font-weight: 900;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

section#services-provide.services-provide .sp-sub {
  max-width: 640px;
  margin: 16px auto 60px;
  font-size: 1.05rem;
  color: #94a3b8 !important;
}

/* GRID — FORCE 3 PER ROW */
section#services-provide.services-provide .sp-grid {
  display: grid;
  gap: 30px;
}

@media (min-width: 1024px) {
  section#services-provide.services-provide .sp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  section#services-provide.services-provide .sp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  section#services-provide.services-provide .sp-grid {
    grid-template-columns: 1fr;
  }
}

/* CARDS — SAME GLASS STYLE AS WHY */
section#services-provide.services-provide .sp-card {
  position: relative;
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.06) !important;
  border-radius: 22px;
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1),
              box-shadow 0.7s ease;
  overflow: hidden;
}

/* HOVER GLOW */
section#services-provide.services-provide .sp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(56,189,248,0.45),
    transparent
  );
  opacity: 0;
  transition: opacity 0.6s;
}

section#services-provide.services-provide .sp-card:hover::before {
  opacity: 1;
}

section#services-provide.services-provide .sp-card:hover {
  transform: translateY(-16px) scale(1.03);
  box-shadow: 0 40px 90px rgba(0,0,0,0.6);
}

/* ICON — MATCH WHY */
section#services-provide.services-provide .sp-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.6s ease, color 0.6s ease;
}

section#services-provide.services-provide .sp-card:hover .sp-icon {
  transform: rotate(-6deg) scale(1.1);
  color: #22c55e;
}

/* TEXT */
section#services-provide.services-provide h4 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #e5e7eb !important;
}

section#services-provide.services-provide p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5f5 !important;
}

/* CTA */
section#services-provide.services-provide .sp-cta {
  margin-top: 70px;
}

section#services-provide.services-provide .btn-outline {
  padding: 14px 34px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.25);
  color: #e5e7eb;
  font-weight: 800;
  background: transparent;
  transition: transform 0.4s ease, background 0.4s ease;
}

section#services-provide.services-provide .btn-outline:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

section#services-provide.services-provide .small-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: #94a3b8;
}



/* =====================================================
   FOOTER – PREMIUM DARK STYLE
===================================================== */

.site-footer {
  position: relative;
  background: radial-gradient(circle at top left, #020617, #020617);
  padding: 90px 5% 40px;
  color: #cbd5f5;
  overflow: hidden;
}

/* Glow orbs */
.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.25;
  animation: footerFloat 10s ease-in-out infinite alternate;
  z-index: 0;
}

.site-footer::before {
  background: #38bdf8;
  top: -140px;
  left: -140px;
}

.site-footer::after {
  background: #22c55e;
  bottom: -140px;
  right: -140px;
}

@keyframes footerFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(60px); }
}

/* Layout */
.site-footer .container {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

/* Brand */
.footer-brand h3 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #94a3b8;
}

/* Headings */
.site-footer h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #e5e7eb;
}

/* Links */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a,
.footer-social a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-social a:hover {
  color: #38bdf8;
}

/* Social */
.social-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* Mobile */
@media (max-width: 991px) {
  .site-footer {
    padding: 70px 6% 35px;
  }

  .social-icons {
    flex-direction: row;
    gap: 20px;
  }
}
/* ===============================
   SIMPLE PROFESSIONAL FOOTER
================================ */

.simple-footer {
  background: #020617;
  padding: 60px 20px 40px;
  text-align: center;
  color: #cbd5f5;
}

.footer-name {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-tagline {
  max-width: 520px;
  margin: 0 auto 25px;
  font-size: 0.95rem;
  color: #94a3b8;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 30px;
}

.footer-socials a {
  color: #e5e7eb;
  font-size: 0.9rem;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.footer-socials a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #38bdf8;
  transition: width 0.3s ease;
}

.footer-socials a:hover {
  color: #38bdf8;
}

.footer-socials a:hover::after {
  width: 100%;
}

.footer-copy {
  font-size: 0.8rem;
  color: #64748b;
}
.footer-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.footer-visible {
  opacity: 1;
  transform: translateY(0);
}
/* ===============================
   CONTACT ACTION BUTTONS
================================ */

/* Layout */
.contact-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 30px;
}

/* Remove underline */
.contact-actions a {
  text-decoration: none;
}

/* Base button */
.contact-actions .btn-primary {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: all 0.35s ease;
  opacity: 0;
  transform: translateY(20px);
}

/* Email button */
.btn-email {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
}

/* WhatsApp button */
.btn-whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
}

/* Hover animation */
.btn-email:hover,
.btn-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
  opacity: 0.95;
}

/* Reveal animation */
.contact-actions.active .btn-primary {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger effect */
.contact-actions.active .btn-primary:nth-child(1) {
  transition-delay: 0.1s;
}
.contact-actions.active .btn-primary:nth-child(2) {
  transition-delay: 0.25s;
}

/* Mobile */
@media (max-width: 640px) {
  .contact-actions {
    flex-direction: column;
  }
}

/* mood  */
/* =====================================================
   LIGHT MODE OVERRIDES (RESET YOUR DARK DESIGN)
===================================================== */

/* BODY */
body.light-mode {
  background: #ffffff;
  color: #0f172a;
}

/* =====================
   SECTIONS (ALL)
===================== */
body.light-mode .hero,
body.light-mode .about-section,
body.light-mode #services-provide,
body.light-mode .skills-section,
body.light-mode .projects-section,
body.light-mode .experience-section,
body.light-mode .why-section,
body.light-mode .contact-section,
body.light-mode .simple-footer {
  background: #ffffff !important;
  color: #0f172a;
}

/* =====================
   TEXT FIXES
===================== */
body.light-mode h1,
body.light-mode h2,
body.light-mode h3,
body.light-mode h4,
body.light-mode h5 {
  color: #020617 !important;
}

body.light-mode p,
body.light-mode span,
body.light-mode .subtitle,
body.light-mode .projects-sub,
body.light-mode .sp-sub,
body.light-mode .contact-note,
body.light-mode .small-note {
  color: #475569 !important;
}

/* =====================
   CARDS (ALL TYPES)
===================== */
body.light-mode .sp-card,
body.light-mode .project-card,
body.light-mode .why-card,
body.light-mode .timeline-item,
body.light-mode .skill-box {
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Card text */
body.light-mode .sp-card p,
body.light-mode .project-card p,
body.light-mode .why-card p,
body.light-mode .timeline-item p {
  color: #475569 !important;
}

/* =====================
   ABOUT SECTION FIXES
===================== */
body.light-mode .about-text,
body.light-mode .about-body p,
body.light-mode .about-lead,
body.light-mode .small-note {
  color: #475569 !important;
}

body.light-mode .pill {
  background: #f1f5f9;
  color: #0f172a;
  border-color: #e5e7eb;
}

/* =====================
   SKILLS SECTION FIX
===================== */
body.light-mode .skills-section {
  background: #ffffff !important;
}

body.light-mode .skill-box {
  background: #ffffff !important;
}

body.light-mode .skills-section p {
  color: #475569 !important;
}

/* =====================
   CONTACT
===================== */
body.light-mode .contact-badge {
  background: #e5fbe8;
  color: #166534;
}

/* =====================
   BUTTONS (keep colors)
===================== */
body.light-mode .btn-outline {
  color: #2563eb;
  border-color: #2563eb;
}

body.light-mode .btn-email {
  background: #2563eb;
  color: #fff;
}

body.light-mode .btn-whatsapp {
  background: #16a34a;
  color: #fff;
}

/* =====================
   IMPORTANT: NAVBAR UNTOUCHED
===================== */
/* No navbar overrides on purpose */
/* =====================================================
   FORCE FIX: SERVICES CARD TEXT – LIGHT MODE
===================================================== */

/* Entire service card text */
body.light-mode .services-provide .sp-card {
  color: #0f172a !important;
}

/* Card headings */
body.light-mode .services-provide .sp-card h4,
body.light-mode .services-provide .sp-card h3 {
  color: #020617 !important;
}

/* Card descriptions */
body.light-mode .services-provide .sp-card p {
  color: #475569 !important;
}

/* If spans or lists are inside cards */
body.light-mode .services-provide .sp-card span,
body.light-mode .services-provide .sp-card li {
  color: #475569 !important;
}
/* =====================================================
   FINAL FIX: SERVICES TEXT VISIBILITY (LIGHT MODE)
===================================================== */

/* Force services section text colors */
body.light-mode #services-provide,
body.light-mode .services-provide {
  color: #0f172a !important;
}

/* Card container */
body.light-mode #services-provide .sp-card {
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid #e5e7eb !important;
}

/* Card headings (Web Dev, Backend, etc.) */
body.light-mode #services-provide .sp-card h4 {
  color: #020617 !important;
  font-weight: 600;
}

/* Card descriptions (your problem text) */
body.light-mode #services-provide .sp-card p {
  color: #334155 !important;   /* darker gray for readability */
  opacity: 1 !important;
}

/* If text is wrapped in span or small */
body.light-mode #services-provide .sp-card span,
body.light-mode #services-provide .sp-card small {
  color: #334155 !important;
}

/* SVG icons (keep visible) */
body.light-mode #services-provide .sp-icon {
  color: #2563eb;
}

body.light-mode #services-provide .sp-icon svg {
  stroke: currentColor;
}
/* =====================================================
   FIX: SERVICES CTA TEXT (LIGHT MODE)
===================================================== */

/* CTA wrapper */
body.light-mode #services-provide .sp-cta {
  color: #0f172a !important;
}

/* CTA button text */
body.light-mode #services-provide .sp-cta a,
body.light-mode #services-provide .sp-cta .btn-outline {
  color: #2563eb !important;
  border-color: #2563eb !important;
}

/* CTA description text */
body.light-mode #services-provide .sp-cta p,
body.light-mode #services-provide .sp-cta .small-note {
  color: #475569 !important;
  opacity: 1 !important;
}
/* =====================================================
   FIX: PROJECTS SECTION (LIGHT MODE)
===================================================== */

/* Section background */
body.light-mode #projects,
body.light-mode .projects-section {
  background: #ffffff !important;
  color: #0f172a !important;
}

/* Section heading + subtitle */
body.light-mode #projects h2,
body.light-mode .projects-section h2 {
  color: #020617 !important;
}

body.light-mode .projects-sub {
  color: #475569 !important;
}

/* Project cards */
body.light-mode .project-card {
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Card title */
body.light-mode .project-card h3 {
  color: #020617 !important;
}

/* Card description */
body.light-mode .project-card p {
  color: #475569 !important;
  opacity: 1 !important;
}

/* Tech stack pills */
body.light-mode .project-tech li {
  background: #f1f5f9 !important;
  color: #0f172a !important;
  border: 1px solid #e5e7eb;
}

/* Badges (LIVE / DEMO) */
body.light-mode .project-badge {
  background: #2563eb !important;
  color: #ffffff !important;
}

/* Project buttons */
body.light-mode .project-links a,
body.light-mode .project-links .btn-primary,
body.light-mode .project-links .btn-outline {
  color: #ffffff !important;
}

body.light-mode .project-links .btn-outline {
  background: transparent !important;
  color: #2563eb !important;
  border-color: #2563eb !important;
}
/* =====================================================
   FORCE FOOTER FIX – LIGHT MODE (NO MORE ISSUES)
===================================================== */

body.light-mode footer,
body.light-mode .site-footer,
body.light-mode .simple-footer {
  background-color: #ffffff !important;
  color: #0f172a !important;
}

/* ALL footer text */
body.light-mode footer *,
body.light-mode .site-footer *,
body.light-mode .simple-footer * {
  color: #0f172a !important;
}

/* Brand title */
body.light-mode .footer-brand h3 {
  color: #020617 !important;
}

/* Brand description */
body.light-mode .footer-brand p {
  color: #475569 !important;
}

/* Social links */
body.light-mode .footer-social a {
  color: #2563eb !important;
}

/* Hover */
body.light-mode .footer-social a:hover {
  color: #1d4ed8 !important;
}

/* Copyright */
body.light-mode .footer-bottom,
body.light-mode .footer-bottom p {
  color: #475569 !important;
}

/* theme */
/* =========================================
   NAVBAR LAYOUT (LEFT / CENTER / RIGHT)
========================================= */

.navbar {
  display: flex;
  align-items: center;
}

/* Brand always left */
.navbar-brand {
  margin-right: auto;
}

/* Center nav links */
.navbar-collapse {
  justify-content: center;
}

/* Right side buttons container (theme + menu) */
.navbar-toggler,
#theme-toggle {
  margin-left: 8px;
}

/* Push buttons to extreme right */
.navbar-toggler:last-child {
  margin-left: auto;
}

/* =========================================
   THEME TOGGLE = SAME AS MENU BUTTON
========================================= */

#theme-toggle.navbar-toggler {
  width: 42px;
  height: 42px;
  padding: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 0.375rem;

  color: #ffffff;
  cursor: pointer;

  /* IMPORTANT: remove Bootstrap icon bg */
  background-image: none !important;
}

/* Icon inside theme toggle */
#theme-toggle .theme-icon {
  font-size: 1.25rem;
  line-height: 1;
  display: block;
  transition: transform 0.4s ease;
}

/* Hover effect */
#theme-toggle:hover {
  background-color: rgba(255,255,255,0.1);
}

/* =========================================
   LIGHT MODE STYLING
========================================= */

body.light-mode #theme-toggle {
  color: #020617;
  border-color: rgba(0,0,0,0.25);
}

body.light-mode #theme-toggle:hover {
  background-color: rgba(0,0,0,0.08);
}

/* Icon animation */
body.light-mode #theme-toggle .theme-icon {
  transform: rotate(180deg) scale(1.1);
}

/* =========================================
   FOCUS CLEANUP
========================================= */

#theme-toggle:focus,
.navbar-toggler:focus {
  box-shadow: none;
}

/* =========================================
   MOBILE BEHAVIOR
========================================= */

@media (max-width: 991px) {
  /* Keep buttons right on mobile */
  #theme-toggle {
    margin-left: auto;
    margin-right: 8px;
  }

  .navbar-toggler {
    margin-left: 0;
  }

  /* Center links only when expanded */
  .navbar-collapse {
    justify-content: flex-start;
  }
}



/* =========================================
   FIX NAVBAR ORDER — DESKTOP ONLY
========================================= */

/* Base navbar flex */
.navbar {
  display: flex;
  align-items: center;
}

/* Brand always first */
.navbar-brand {
  order: 1;
}

/* Nav links always center */
.navbar-collapse {
  order: 2;
  flex-grow: 1;
  justify-content: center;
}

/* Theme toggle AFTER nav links */
#theme-toggle {
  order: 3;
}

/* Menu button LAST */
.navbar-toggler {
  order: 4;
}

/* =========================================
   MOBILE (KEEP CURRENT WORKING BEHAVIOR)
========================================= */

@media (max-width: 991px) {
  .navbar-brand {
    order: 1;
  }

  #theme-toggle {
    order: 3;
    margin-left: auto;
  }

  .navbar-toggler {
    order: 4;
  }

  .navbar-collapse {
    order: 2;
    justify-content: flex-start;
  }
}






/* newwwwwwwwwwwwwwwwww  */
/* =========================================
   COMMON BUTTON ANIMATION (THEME + MENU)
========================================= */

#theme-toggle,
.navbar-toggler {
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

/* Hover animation (desktop) */
#theme-toggle:hover,
.navbar-toggler:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* Click animation (press effect) */
#theme-toggle:active,
.navbar-toggler:active {
  transform: scale(0.95);
}

/* Remove default Bootstrap focus glow */
#theme-toggle:focus,
.navbar-toggler:focus {
  box-shadow: none;
}

/* =========================================
   THEME ICON ANIMATION (MOON / SUN)
========================================= */

#theme-toggle .theme-icon {
  display: inline-block;
  transition:
    transform 0.5s ease,
    opacity 0.25s ease;
}

/* Rotate + scale on light mode */
body.light-mode #theme-toggle .theme-icon {
  transform: rotate(180deg) scale(1.15);
}

/* =========================================
   MENU ICON (HAMBURGER) ANIMATION
========================================= */

/* Animate hamburger icon */
.navbar-toggler-icon {
  transition:
    transform 0.35s ease,
    opacity 0.25s ease;
}

/* Subtle rotate on hover */
.navbar-toggler:hover .navbar-toggler-icon {
  transform: rotate(90deg);
}

/* =========================================
   MOBILE — NO OVER-ANIMATION
========================================= */
@media (max-width: 991px) {
  #theme-toggle:hover,
  .navbar-toggler:hover {
    transform: none;
    box-shadow: none;
  }
}




#theme-toggle {
  transition: transform 0.25s ease;
}
body.light-mode #theme-toggle {
  transform: rotate(180deg);
}




/* changing theme  */
/* =========================================
   WOW THEME TRANSITION (NO JUMP)
========================================= */

/* Smooth color transitions only */
body,
section,
header,
footer,
.navbar,
.sp-card,
.project-card,
.why-card,
.timeline-item,
.skill-box {
  transition:
    background-color 0.5s ease,
    color 0.5s ease,
    border-color 0.5s ease,
    box-shadow 0.5s ease;
}

/* =========================================
   FADE + BLUR OVERLAY (NO LAYOUT SHIFT)
========================================= */

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.12),
    rgba(255,255,255,0.05),
    transparent 60%
  );
  opacity: 0;
  backdrop-filter: blur(0px);
  transition:
    opacity 0.45s ease,
    backdrop-filter 0.45s ease;
  z-index: 9999;
}

/* Light mode sweep */
body.light-mode::after {
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.08),
    rgba(0,0,0,0.04),
    transparent 60%
  );
}

/* Trigger animation */
body.theme-switching::after {
  opacity: 1;
  backdrop-filter: blur(6px);
}

/* new fixes every section */
.title {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
}

.subtitle {
  margin-top: 10px;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: #7ef9d9; /* softer highlight */
  letter-spacing: 0.4px;
}

.subtitle .dot {
  margin: 0 8px;
  opacity: 0.6;
}
 .subtitle {
  margin-top: 10px;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: #7ef9d9;
}

.cursor {
  margin-left: 4px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}


/* ===========================
   HERO CONTENT
=========================== */

.hero-content {
  max-width: 560px;
}

/* Main title */
.hero-title {
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-title .highlight {
  color: #7ef9d9;
}

/* Typewriter role */
.hero-role {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 500;
  color: #7ef9d9;
  letter-spacing: 0.4px;
  margin-bottom: 18px;
}

/* Cursor */
.cursor {
  margin-left: 4px;
  font-weight: 400;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Description */
.hero-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Primary button */
.hero-btn.primary {
  background: #7ef9d9;
  color: #062c2a;
}

.hero-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(126,249,217,0.35);
}

/* Secondary button */
.hero-btn.secondary {
  background: transparent;
  border: 1px solid rgba(126,249,217,0.6);
  color: #7ef9d9;
}

.hero-btn.secondary:hover {
  background: rgba(126,249,217,0.08);
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 991px) {
  .hero-content {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }
}




/*  */
/* =========================================
   FINAL MOBILE HERO FIX (NO CUTOFF)
========================================= */

@media (max-width: 991px) {

  /* Hero container */
  .hero {
    min-height: auto;
    padding: 88px 16px 40px; /* reduced bottom */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
  }

  /* Content first */
  .hero-content {
    text-align: center;
    max-width: 100%;
    z-index: 2;
  }

  /* Title */
  .hero-title {
    font-size: 2.05rem;
    line-height: 1.25;
    margin-bottom: 6px;
  }

  /* Role */
  .hero-role {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }

  /* Description */
  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 20px;
    opacity: 0.9;
  }

  /* Buttons */
  .hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 26px;
  }

  .hero-btn {
    min-width: 140px;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  /* Image BELOW buttons */
  .hero-image {
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
  }

  .hero-image img {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    object-fit: cover;
  }

  /* Decorative dots scale down */
  .outer-dots,
  .inner-dots {
    transform: scale(0.85);
  }

  /* Scroll indicator BELOW everything */
  .scroll-indicator {
    position: relative;
    margin-top: 16px;
    bottom: auto;
  }

  /* Reduce background noise */
  .floating-shapes,
  .hero-stars {
    opacity: 0.18;
  }
}
/* =========================================
   ABOUT SECTION — MOBILE POLISH
========================================= */
@media (max-width: 991px) {

  /* Limit text width for better reading */
  .about-content,
  .about-text,
  .hero-desc {
    max-width: 92%;
    margin-left: auto;
    margin-right: auto;
  }

  /* Improve paragraph readability */
  .about-text p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 14px;
  }

  /* Headings spacing */
  .about-content h2,
  .about-content h3 {
    margin-bottom: 10px;
  }

  /* CTA button spacing */
  .about-content .btn,
  .about-content .about-btn {
    margin-top: 18px;
    padding: 12px 22px;
    font-size: 0.95rem;
  }
}




/* =========================================
   ABOUT SECTION — MOBILE FIX (FINAL)
========================================= */

@media (max-width: 991px) {

  /* Section spacing */
  .about-section {
    padding: 70px 16px;
  }

  /* Stack image & text cleanly */
  .about-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }

  /* Image first */
  .about-img {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .about-img img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
  }

  /* Text container */
  .about-text {
    max-width: 92%;
    text-align: center;
  }

  /* Name & role */
  .about-name {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .rotating-word {
    display: block;
    margin-top: 6px;
    font-size: 1rem;
  }

  /* Lead paragraph */
  .about-lead {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  /* Body text */
  .about-body p {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 12px;
  }

  /* Pills wrap nicely */
  .pill {
    display: inline-block;
    margin: 4px 4px;
    font-size: 0.8rem;
  }

  /* CTA alignment */
  .about-cta {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .about-cta .btn-outline {
    width: 100%;
    max-width: 260px;
    padding: 12px 0;
    text-align: center;
  }

  .small-note {
    font-size: 0.8rem;
    opacity: 0.8;
  }
}

/* =========================================
   ABOUT — INLINE READ MORE (MOBILE)
========================================= */
@media (max-width: 768px) {

  /* Preview line */
  .about-preview {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
  }

  /* Inline read more */
  .about-readmore {
    background: none;
    border: none;
    padding: 0;
    margin-left: 6px;
    color: #7ef9d9;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
  }

  /* Collapse body */
  .about-collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
  }

  .about-collapsible.expanded {
    max-height: 1200px;
  }
}


/* =========================================
   ABOUT — READ MORE / LESS (FINAL)
========================================= */

/* Desktop: hide read more completely */
@media (min-width: 769px) {
  .about-readmore {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {

  /* Text width fix */
  .about-text {
    max-width: 95%;
    margin: 0 auto;
    text-align: left;
  }

  /* Preview line */
  .about-preview {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 10px;
  }

  /* Inline button */
  .about-readmore {
    background: none;
    border: none;
    padding: 0;
    margin-left: 6px;
    color: #7ef9d9;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
  }

  /* Collapsible content */
  .about-collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .about-collapsible.expanded {
    max-height: 800px;
  }

  /* Body text */
  .about-body p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 14px;
  }
}




/* ===============================
   COMPACT SKILLS – ONE VIEWPORT
================================ */

.skills-compact {
  min-height: 100vh;            /* ONE VIEWPORT */
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, #020617, #0f172a);
  color: #fff;
}

.skills-header {
  text-align: center;
  margin-bottom: 40px;
}

.skills-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #5eead4;
}

.skills-header p {
  opacity: 0.75;
  max-width: 520px;
  margin: 10px auto 0;
}

/* Grid */
.skills-grid {
  max-width: 820px;
  margin: 0 auto;
}

/* Skill row */
.skill-row {
  margin-bottom: 18px;
}

/* BIG BOLD SKILL NAME */
.skill-name {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: .4px;
}

/* Progress bar */
.skill-bar {
  height: 12px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  overflow: hidden;
}

.skill-bar span {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  width: 0;
  padding-right: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #020617;
  background: linear-gradient(90deg, #38bdf8, #a855f7);
  border-radius: 10px;
  transition: width 1.2s ease;
}

/* Activated */
.skill-row.active .skill-bar span {
  width: var(--level);
}

/* MOBILE */
@media (max-width: 768px) {
  .skills-header h2 {
    font-size: 2rem;
  }

  .skill-name {
    font-size: 1rem;
  }

  .skills-grid {
    padding: 0 10px;
  }
}
/* ===============================
   TWO-COLUMN SKILLS (ONE VIEWPORT)
================================ */

.skills-compact {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, #020617, #0f172a);
  color: #fff;
}

.skills-header {
  text-align: center;
  margin-bottom: 40px;
}

.skills-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #5eead4;
}

.skills-header p {
  opacity: 0.75;
  max-width: 520px;
  margin: 10px auto 0;
}

/* TWO COLUMN GRID */
.skills-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 980px;
  margin: 0 auto;
}

/* Column */
.skills-col {
  display: flex;
  flex-direction: column;
}

/* Skill row */
.skill-row {
  margin-bottom: 18px;
}

/* Big bold name */
.skill-name {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.4px;
}

/* Progress bar */
.skill-bar {
  height: 12px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  overflow: hidden;
}

.skill-bar span {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  width: 0;
  padding-right: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #020617;
  background: linear-gradient(90deg, #38bdf8, #a855f7);
  border-radius: 10px;
  transition: width 1.2s ease;
}

/* Activated */
.skill-row.active .skill-bar span {
  width: var(--level);
}

/* MOBILE: stack columns */
@media (max-width: 768px) {
  .skills-compact {
    min-height: auto;
    padding: 80px 0;
  }

  .skills-grid-2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .skills-header h2 {
    font-size: 2rem;
  }

  .skill-name {
    font-size: 1rem;
  }
}

/* skills light dark mood */
/* ===============================
   FIX SKILLS SECTION LIGHT MODE
================================ */

/* Default (Dark Mode) – keep as-is */
.skills-compact {
  background: linear-gradient(120deg, #020617, #0f172a);
  color: #ffffff;
}

/* LIGHT MODE OVERRIDES */
body.light-mode .skills-compact {
  background: #ffffff;
  color: #020617;
}

/* Text */
body.light-mode .skills-header p {
  color: #334155;
}

/* Skill names */
body.light-mode .skill-name {
  color: #020617;
}

/* Progress bar background */
body.light-mode .skill-bar {
  background: #e5e7eb;
}

/* Progress fill stays colorful */
body.light-mode .skill-bar span {
  color: #ffffff;
}


/* =====================================
   EXPERIENCE – MOBILE ALIGNMENT FIX
===================================== */
/* =====================================
   EXPERIENCE – REDUCE GAP BETWEEN ITEMS
===================================== */

/* Reduce space between timeline items */
.timeline-item {
  margin-bottom: 0px !important;
}

/* Optional: slightly tighten text spacing inside */
.timeline-item p {
  margin-top: 0px;
  margin-bottom: 0;
}









/* servicesssssssssssss */
/* =====================================
   SERVICES TOGGLE (PRIMARY / SECONDARY)
===================================== */

.service-toggle {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.toggle-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background: linear-gradient(90deg, #38bdf8, #a855f7);
  color: #020617;
  border-color: transparent;
}

/* Panels */
.service-panel {
  display: none;
  animation: fadeUp 0.35s ease;
}

.service-panel.active {
  display: block;
}

/* Secondary list */
.secondary-list {
  max-width: 640px;
  margin: 30px auto 0;
  padding: 0;
  list-style: none;
}

.secondary-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  opacity: 0.9;
}

/* Light mode */
body.light-mode .toggle-btn {
  border-color: #e5e7eb;
}

body.light-mode .toggle-btn.active {
  color: #ffffff;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .service-toggle {
    flex-direction: column;
    align-items: center;
  }
}
/* =====================================
   SERVICES TOGGLE – OVERRIDE CSS
===================================== */

.service-toggle {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 30px 0 40px;
}

.toggle-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.toggle-btn.active {
  background: linear-gradient(90deg, #38bdf8, #a855f7);
  color: #020617;
  border-color: transparent;
}

/* Panels */
.service-panel {
  display: none;
}

.service-panel.active {
  display: block;
  animation: fadeUp 0.35s ease;
}

/* Secondary list */
.secondary-list {
  max-width: 620px;
  margin: 30px auto 0;
  padding: 0;
  list-style: none;
}

.secondary-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  opacity: 0.9;
}

/* Light mode */
body.light-mode .toggle-btn {
  border-color: #e5e7eb;
}

body.light-mode .toggle-btn.active {
  color: #ffffff;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .service-toggle {
    flex-direction: column;
    align-items: center;
  }
}
/* =====================================
   SERVICE PANEL TOGGLE (STABLE VERSION)
===================================== */

.service-panel {
  display: none;
}

.service-panel.active {
  display: block;
  animation: fadeUp 0.25s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================================
   HARD FIX: SERVICE TOGGLE VISIBILITY
========================================= */

/* Toggle must always stay in normal flow */
.service-toggle {
  position: relative !important;
  z-index: 10;
  margin-bottom: 40px;
}

/* Panels MUST NOT overlap or float */
.service-panel {
  display: none;
  position: static !important;
  width: 100%;
  clear: both;
}

/* Active panel */
.service-panel.active {
  display: block;
}

/* Force spacing so panel never touches toggle */
#service-primary,
#service-secondary {
  margin-top: 20px;
}

/* Kill any inherited transforms/animations */
.service-panel * {
  transform: none !important;
}

/* Optional subtle fade (safe) */
.service-panel.active {
  animation: serviceFade 0.25s ease;
}

@keyframes serviceFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}





/* =====================================
   SERVICES – SPACING CLEANUP (ALL VIEWS)
===================================== */

/* Reduce space after section header */
.services-provide .sp-header {
  margin-bottom: 12px !important;
}

/* Reduce toggle spacing */
.service-toggle {
  margin: 8px 0 20px !important;
}

/* Remove unnecessary top spacing on panels */
.service-panel {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Tighten grid spacing (desktop) */
.sp-grid {
  margin-top: 0 !important;
  gap: 20px !important;
}

/* Reduce space before CTA */
.sp-cta {
  margin-top: 28px !important;
}

/* =====================================
   MOBILE OPTIMIZATION
===================================== */
@media (max-width: 768px) {

  /* Reduce overall section padding */
  .services-provide {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  /* Tighten header */
  .services-provide .sp-header h2 {
    margin-bottom: 6px !important;
  }

  .services-provide .sp-sub {
    margin-bottom: 10px !important;
    font-size: 0.95rem;
  }

  /* Tighten toggle on mobile */
  .service-toggle {
    margin: 6px 0 16px !important;
  }

  /* Reduce card padding */
  .sp-card {
    padding: 18px !important;
  }

  /* Reduce grid gap on mobile */
  .sp-grid {
    gap: 16px !important;
  }
}
/* =====================================
   FORCE SERVICE TOGGLE – MOBILE ONLY
===================================== */

@media (max-width: 768px) {

  /* Force container */
  .services-provide .service-toggle {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
  }

  /* Force buttons */
  .services-provide .service-toggle .toggle-btn {
    flex: 1 1 0 !important;
    max-width: 160px !important;
    padding: 8px 12px !important;
    font-size: 0.8rem !important;
    white-space: nowrap !important;
    text-align: center !important;
  }
}



/* card design */
/* =====================================
   PRIMARY SERVICE CARDS – DESIGN UPGRADE
===================================== */

.sp-grid {
  gap: 24px;
}

/* Card base */
.sp-card {
  background: var(--card-bg, rgba(255,255,255,0.03));
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Hover effect (desktop only) */
@media (hover: hover) {
  .sp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  }
}

/* Icon container */
.sp-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #38bdf8, #a855f7);
  box-shadow: 0 12px 30px rgba(56,189,248,0.35);
}

/* Icon itself */
.sp-icon i {
  font-size: 1.8rem;
  color: #020617;
}

/* Card title */
.sp-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Card text */
.sp-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* =====================================
   LIGHT MODE SUPPORT (AUTO)
===================================== */
body.light-mode .sp-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
}

body.light-mode .sp-card p {
  color: #334155;
}

body.light-mode .sp-icon {
  box-shadow: 0 10px 24px rgba(56,189,248,0.25);
}

/* =====================================
   MOBILE OPTIMIZATION
===================================== */
@media (max-width: 768px) {

  .sp-card {
    padding: 22px 18px;
  }

  .sp-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
  }

  .sp-icon i {
    font-size: 1.6rem;
  }

  .sp-card h4 {
    font-size: 1.05rem;
  }

  .sp-card p {
    font-size: 0.9rem;
  }
}

/* =====================================
   DARK MODE – SERVICE ICON COLOR FIX
===================================== */

body:not(.light-mode) .sp-icon {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

body:not(.light-mode) .sp-icon i {
  color: #e5e7eb; /* light icon */
}


/* =====================================
   SERVICE CARDS – SIZE NORMALIZATION
===================================== */

/* Grid spacing */
.sp-grid {
  gap: 20px !important;
}

/* Card sizing */
.sp-card {
  padding: 22px 20px !important;
  min-height: 230px;              /* keeps all cards equal */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* Icon container */
.sp-icon {
  width: 56px !important;
  height: 56px !important;
  margin-bottom: 14px !important;
}

/* Icon size */
.sp-icon i {
  font-size: 1.5rem !important;
}

/* Title */
.sp-card h4 {
  font-size: 1.05rem !important;
  margin-bottom: 8px !important;
  text-align: center;
}

/* Description */
.sp-card p {
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
  text-align: center;
  max-width: 95%;
}

/* =====================================
   LIGHT MODE SUPPORT
===================================== */
body.light-mode .sp-card {
  background: #ffffff !important;
}

/* =====================================
   MOBILE OPTIMIZATION
===================================== */
@media (max-width: 768px) {

  .sp-grid {
    gap: 16px !important;
  }

  .sp-card {
    min-height: unset;          /* allow natural height on mobile */
    padding: 18px 16px !important;
  }

  .sp-icon {
    width: 52px !important;
    height: 52px !important;
  }

  .sp-icon i {
    font-size: 1.4rem !important;
  }

  .sp-card h4 {
    font-size: 1rem !important;
  }

  .sp-card p {
    font-size: 0.88rem !important;
  }
}
/* skills  */
/* ===============================
   SKILLS TABS
=============================== */
.skills-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 28px;
  flex-wrap: wrap;
}

.skill-tab {
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  background: transparent;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.skill-tab.active {
  background: linear-gradient(90deg, #38bdf8, #a855f7);
  color: #020617;
  box-shadow: 0 8px 24px rgba(56,189,248,0.35);
}

/* ===============================
   PANELS
=============================== */
.skills-panel {
  display: none;
  animation: fadeUp 0.4s ease forwards;
}

.skills-panel.active {
  display: block;
}

/* ===============================
   SKILL BAR ANIMATION
=============================== */
.skill-bar span {
  width: var(--level);
  animation: growBar 0.8s ease forwards;
}

@keyframes growBar {
  from { width: 0; }
  to { width: var(--level); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===============================
   MOBILE
=============================== */
@media (max-width: 768px) {
  .skills-tabs {
    gap: 8px;
  }
  .skill-tab {
    font-size: 0.8rem;
    padding: 7px 14px;
  }
}
/* ==============================
   PROJECT VIDEO CARD
============================== */

.project-video .project-media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.project-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2,6,23,0.2),
    rgba(2,6,23,0.65)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-direction: column;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.play-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* Hover effects */
.project-video:hover .project-video-el {
  transform: scale(1.05);
}

.project-video:hover .video-overlay {
  opacity: 0;
}

/* Mobile safe */
@media (max-width: 768px) {
  .video-overlay {
    opacity: 1;
  }
}
/* ===============================
   AUTO PLAY PROJECT VIDEO
=============================== */

.project-media.video {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.auto-play-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* When visible */
.auto-play-video.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Badge stays visible */
.project-badge.demo {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .auto-play-video {
    border-radius: 12px;
  }
}




/* ===============================
   VIDEO THUMBNAIL
=============================== */

.clickable-video {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}

.clickable-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2,6,23,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: background 0.3s ease;
}

.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  color: #020617;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: transform 0.3s ease;
}

.clickable-video:hover .play-btn {
  transform: scale(1.1);
}

/* ===============================
   FULLSCREEN MODAL
=============================== */

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
}

.video-modal video {
  width: 100%;
  border-radius: 12px;
  outline: none;
}

/* Close button */
.video-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #020617;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

/* Mobile safe */
@media (max-width: 768px) {
  .video-modal-content {
    width: 95%;
  }
}


/* ===============================
   VIDEO AS THUMBNAIL – FIX
=============================== */

.thumb-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay ALWAYS visible */
.video-overlay {
  opacity: 1 !important;
  pointer-events: none;
}

/* Prevent thumbnail hiding on hover */
.clickable-video:hover .thumb-video {
  opacity: 1 !important;
}
/* ===============================
   VIDEO MODAL – CLOSE BUTTON
=============================== */

.video-modal-content {
  position: relative;
}

/* Close button */
.video-close {
  position: absolute;
  top: 12px;
  right: 12px;

  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;

  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 500;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  z-index: 5;

  backdrop-filter: blur(6px);
  transition: 
    background 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

/* Hover (desktop only) */
@media (hover: hover) {
  .video-close:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  }
}

/* Active click */
.video-close:active {
  transform: scale(0.92);
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .video-close {
    width: 34px;
    height: 34px;
    font-size: 1.3rem;
  }
}
/* =====================================
   FIX: CLICK ISSUE – TRAVEL PROJECT ONLY
===================================== */

/* Ensure travel project content is clickable */
.project-links.travel {
  position: relative;
  z-index: 20;
}

/* Re-enable pointer events ONLY for travel button */
.project-links.travel,
.project-links.travel * {
  pointer-events: auto;
}

/* Make sure no overlay blocks this specific button */
.project-links.travel::before,
.project-links.travel::after {
  pointer-events: none;
}

/* ===============================
   FIX MOBILE CLICK AREA – CONTACT BUTTONS
================================ */

/* Make full button clickable */
.contact-actions a {
  display: inline-flex;          /* ensures full area clickable */
  align-items: center;
  justify-content: center;

  text-decoration: none;
  position: relative;
  z-index: 10;                   /* above animations */
  pointer-events: auto;
}

/* Stack buttons nicely on mobile */
@media (max-width: 768px) {
  .contact-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .contact-actions a {
    padding: 14px 18px;          /* bigger tap target */
    font-size: 1rem;
    border-radius: 12px;
  }
}




/* blog posts  */
