.phone-green  * { margin: 0; padding: 0; box-sizing: border-box; }
    /* ===================================================
     LOAD ANIMATION KEYFRAMES (Directional)
  =================================================== */

  /* From top */
  @keyframes slideInTop {
    0%   { opacity: 0; transform: translateY(-40px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  /* From bottom */
  @keyframes slideInBottom {
    0%   { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  /* From left */
  @keyframes slideInLeft {
    0%   { opacity: 0; transform: translateX(-60px); }
    100% { opacity: 1; transform: translateX(0); }
  }
  /* From right */
  @keyframes slideInRight {
    0%   { opacity: 0; transform: translateX(60px); }
    100% { opacity: 1; transform: translateX(0); }
  }
  /* Scale-up fade (for icons) */
  @keyframes popIn {
    0%   { opacity: 0; transform: scale(0.4); }
    70%  { transform: scale(1.12); }
    100% { opacity: 1; transform: scale(1); }
  }
  /* Float bob (already used) */
  @keyframes floatBob {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
  }
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
  }


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

  .custom-hero {
    background: #f5f5f0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    padding: 60px 20px 40px;
    position: relative;
    overflow: hidden;
  }

  /* Decorative shapes */
  .custom-hero::before {
    content: '';
    position: absolute;
    top: 80px; right: 80px;
    width: 0; height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 30px solid #4dd9c0;
    opacity: 0.7;
    animation: slideInTop 0.8s 0.9s cubic-bezier(0.22,1,0.36,1) both;
  }
  .deco-plus {
    position: absolute;
    color: #4dd9c0;
    font-size: 22px; font-weight: 300; opacity: 0.8;
    animation: popIn 0.6s cubic-bezier(0.22,1,0.36,1) both;
  }
  .deco-plus.p1 { top: 150px; left: 55%; animation-delay: 1s; }
  .deco-plus.p2 { top: 270px; right: 120px; animation-delay: 1.1s; }
  .deco-plus.p3 { bottom: 120px; right: 30px; font-size: 28px; animation-delay: 1.2s; }

  .hero-inner {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  /* LEFT column – slides in from left */
  .hero-left {
    position: relative;
    width: 50%; height: 420px;
    flex-shrink: 0;
    animation: slideInLeft 0.75s 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero-avatar-circle {
    width: 330px; height: 330px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    display: flex; align-items: flex-end; justify-content: center;
  }
  .hero-left img {
    width: 71%;
    height: 98%;
    object-fit: cover; 
    object-position: top;
  }

  /* Floating icons – pop in with staggered delays */
  .float-icon {
    position: absolute;
    width: 58px; height: 58px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    /* layered: popIn first, then floatBob */
    animation: popIn 0.55s cubic-bezier(0.22,1,0.36,1) both,
               floatBob 3s ease-in-out infinite;
  }
  .float-icon img { width: 38px; height: 38px; }

  .icon-fb  { top:30px;  left:164px;   animation-delay: 0.55s, 0.55s; background:#1877F2; border-radius:50%; width:60px; height:60px; }
  .icon-wa  { top:10px;  right:170px;  animation-delay: 0.65s, 0.65s; background:#25D366; border-radius:50%; width:60px; height:60px; }
  .icon-sc  { top:80px;  right:60px;  animation-delay: 0.72s, 0.72s; background:gray; }
  .icon-ga  { top:200px; right:30px;  animation-delay: 0.78s, 0.78s; background:white; }
  .icon-pi  { bottom:40px; right:60px;animation-delay: 0.84s, 0.84s; background:#E60023; }
  .icon-ig  { top:134px; left:40px;   animation-delay: 0.90s, 0.90s; background:transparent; }
  .icon-tw  { bottom:100px; left:30px;animation-delay: 0.60s, 0.60s; background:#111; width:50px; height:50px; }
  .icon-sh  { bottom:20px; left:90px; animation-delay: 0.96s, 0.96s; background:transparent; width:65px; height:65px; }

  /* RIGHT column – slides in from right */
  .hero-right {
    flex: 1;
    width:50%;
    animation: slideInRight 0.75s 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  /* Stagger the children within hero-right using bottom direction */
  .hero-right h1 {
    font-size: 56px; font-weight: 800;
    color: #2c2c2c; line-height: 1.1;
    margin-bottom: 8px;
    animation: slideInBottom 0.6s 0.55s cubic-bezier(0.22,1,0.36,1) both;
  }
  .hero-label {
    font-size: 22px; font-weight: 700;
    color: #2c2c2c; margin-bottom: 4px;
    animation: slideInBottom 0.6s 0.65s cubic-bezier(0.22,1,0.36,1) both;
  }
  .typed-wrapper {
    font-size: 26px; font-weight: 700;
    color: #ff6b35; min-height: 40px;
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 2px;
    animation: slideInBottom 0.6s 0.72s cubic-bezier(0.22,1,0.36,1) both;
  }
  #typed-text { display: inline; }
  .typed-cursor {
    display: inline-block; width: 3px; height: 1.1em;
    background: #ff6b35; margin-left: 2px;
    vertical-align: middle;
    animation: blink 0.7s step-end infinite;
  }
  .hero-desc {
    font-size: 15px; color: #555;
    line-height: 1.75; margin-bottom: 30px;
    animation: slideInBottom 0.6s 0.80s cubic-bezier(0.22,1,0.36,1) both;
  }
  .hero-desc strong { color: #2c2c2c; font-weight: 600; }

  .hire-btn {
    display: inline-block;
    padding: 14px 36px;
    border: 2px solid #ff6b35; border-radius: 50px;
    color: #ff6b35; font-size: 15px; font-weight: 600;
    text-decoration: none; cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    animation: slideInBottom 0.6s 0.90s cubic-bezier(0.22,1,0.36,1) both;
  }
  .hire-btn:hover {
    background: #ff6b35; color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,107,53,0.35);
  }

  /* ===================================================
     RESPONSIVE
  =================================================== */
  @media (max-width: 768px) {
    .hero-inner { flex-direction: column; text-align: center; }
    .hero-left  { width: 300px; height: 300px; }
    .hero-avatar-circle { width: 220px; height: 220px; }
    .hero-right h1 { font-size: 38px; }
    .float-icon { width: 44px; height: 44px; }
    .float-icon img { width: 28px; height: 28px; }

    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 66px; left: 0; right: 0;
      background: rgba(245,245,240,0.97);
      backdrop-filter: blur(14px);
      padding: 16px 24px 24px;
      gap: 4px;
      border-bottom: 1px solid rgba(0,0,0,0.07);
    }
    .nav-links.open { display: flex; }
    .nav-hamburger { display: flex; }
  }

  /* ===== SERVICES SECTION ===== */
  .custom-services {
    background: #fff;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
  }

  /* World map background */
  .custom-services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='500' viewBox='0 0 900 500'%3E%3Cellipse cx='450' cy='250' rx='420' ry='200' fill='none' stroke='%23e8e8f0' stroke-width='1'/%3E%3Cellipse cx='450' cy='250' rx='340' ry='200' fill='none' stroke='%23e8e8f0' stroke-width='1'/%3E%3Cellipse cx='450' cy='250' rx='260' ry='200' fill='none' stroke='%23e8e8f0' stroke-width='1'/%3E%3Cline x1='50' y1='250' x2='850' y2='250' stroke='%23e8e8f0' stroke-width='1'/%3E%3Cline x1='450' y1='50' x2='450' y2='450' stroke='%23e8e8f0' stroke-width='1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.5;
    pointer-events: none;
  }

  .services-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px 60px;
    position: relative;
    z-index: 1;
  }

  /* Left column spans 2 rows */
  .services-intro {
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .services-tag {
    font-size: 13px;
    font-weight: 700;
    color: #fd8051 !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
  }

  .services-intro h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.25;
    margin-bottom: 18px;
  }

  .services-intro p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    font-weight: 600;
    margin-bottom: 30px;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    background: #ff6b35;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-icon svg { fill: white; }

  .contact-item span {
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c;
  }

  /* Service cards */
  .service-card {
    padding: 10px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .service-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .service-icon-wrap {
    width: 60px;
    height: 60px;
    background: #f0eeff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .service-card:hover .service-icon-wrap {
    transform: scale(1.08);
    background: #e6e0ff;
  }

  .service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
  }

  .service-card p em {
    font-style: italic;
  }

  @media (max-width: 900px) {
    .services-inner {
      grid-template-columns: 1fr 1fr;
    }
    .services-intro { grid-column: 1 / 3; grid-row: auto; }
  }

  @media (max-width: 580px) {
    .services-inner {
      grid-template-columns: 1fr;
    }
    .services-intro { grid-column: 1; }
  }

  /* ===== ABOUT ME SECTION ===== */
  .custom-about {
    background: #f5f5f0;
    padding: 90px 20px;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
  }

  .about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
  }

  .about-left {
    position: relative;
    width: 510px;
    height: 480px;
    flex-shrink: 0;
  }

  /* Diamond shape helper */
  .diamond-shape {
    position: absolute;
    transform: rotate(45deg);
    border-radius: 10px;
    overflow: hidden;
  }

  /* Background colored diamonds */
  .d-orange { width: 220px; height: 220px; top: 20px;  left: 110px; background: linear-gradient(135deg, #ff8c00, #ffa940); z-index: 1; }
  .d-red    { width: 200px; height: 200px; top: 130px; left: 190px; background: linear-gradient(135deg, #b71c1c, #7f0000); z-index: 2; }
  .d-blue   { width: 190px; height: 190px; top: 170px; left: 10px;  background: linear-gradient(135deg, #1a237e, #0d1547); z-index: 2; }
  .d-yellow { width: 160px; height: 160px; top: 50px;  left: 20px;  background: linear-gradient(135deg, #f9a825, #e65100); z-index: 1; }

  /* Main photo diamond */
  .d-photo {
    width: 300px;
    height: 300px;
    top: 60px;
    left: 70px;
    z-index: 5;
    background: #c8956c;
    border-radius: 12px;
  }

  .d-photo-inner {
    position: absolute;
    inset: 0;
    transform: rotate(-45deg) scale(1.42) translateY(0px);
    overflow: hidden;
    border-radius: 0;
  }
/*
  .d-photo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
*/
    .d-photo-inner img {
        width: 190px;
        object-fit: cover;
        margin-top: 41px;
        margin-left: 51px;
    }
    

  /* Person SVG placeholder */
  .person-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* RIGHT */
  .about-right { flex: 1; max-width: 580px; }

  .about-tag {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #ff6b35;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .about-bio {
    font-size: 15px;
    color: #444;
    line-height: 1.9;
    margin-bottom: 36px;
  }

  .about-contacts {
    display: flex;
    gap: 60px;
    margin-bottom: 36px;
    flex-wrap: wrap;
  }

  .about-contact-item label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 5px;
  }

  .about-contact-item span {
    font-size: 14px;
    color: #333;
  }

  .connect-btn {
    display: inline-block;
    padding: 16px 50px;
    background: linear-gradient(135deg, #ff6b35, #ff9a42);
    border-radius: 50px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 6px 22px rgba(255,107,53,0.38);
  }

  .connect-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255,107,53,0.48);
  }

  .about-left, .about-right {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .about-left  { transform: translateX(-40px); }
  .about-right { transform: translateX(40px); }
  .about-left.visible, .about-right.visible { opacity: 1; transform: translateX(0); }

  @media (max-width: 900px) {
    .about-inner { flex-direction: column; gap: 40px; text-align: center; }
    .about-left { width: 300px; height: 340px; margin: 0 auto; }
    .d-photo { width: 220px; height: 220px; top: 40px; left: 40px; }
    .about-contacts { justify-content: center; }
  }

  /* ===== SKILLS SECTION ===== */
  /* ===== SKILLS SECTION ===== */
.custom-skills {
  background: #fff;
  padding: 90px 20px;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}
.skills-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* LEFT */
.skills-left {
  flex-shrink: 0;
  width: 480px;
  height: 520px;
  position: relative;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.skills-left.visible { opacity: 1; transform: translateX(0); }

/* Shared phone shell */
.phone-shell {
  position: absolute;
}
.phone-shell img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Phone 1 – green, back-left */
.phone-green {
  width: 200px; height: 380px;
  top: 40px; left: 60px;
  z-index: 1;
  transform: rotate(-2deg);
  opacity: 0.92;
}

/* Phone 2 – dark, center-front */
.phone-dark {
  width: 220px; height: 420px;
  top: 20px; left: 120px;
  z-index: 3;
}

/* Teal circle accent */
.teal-blob {
    position: absolute;
    width: 180px;
    height: 180px;
    background: #4dd9c0;
    border-radius: 50%;
    top: 76px;
    left: 213px;
    z-index: 2;
    opacity: 0.55;
}

/* Floating project card */
.project-card {
  position: absolute;
  bottom: 172px;
  right: 5px;
  width: 160px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 16px 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.14);
  z-index: 5;
  animation: floatBob 3s ease-in-out infinite;
}
.project-card .pj-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #ff6b35, #ff9a42);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.project-card .pj-name  { font-size: 9px; color: #aaa; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 2px; }
.project-card .pj-title { font-size: 13px; font-weight: 700; color: #1a1a2e; line-height: 1.3; margin-bottom: 6px; }
.project-card .pj-date  { font-size: 10px; color: #aaa; }

/* RIGHT */
.skills-right {
  flex: 1;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.skills-right.visible { opacity: 1; transform: translateX(0); }
.skills-right h2 { font-size: 40px; font-weight: 800; color: #ff6b35; margin-bottom: 36px; }

.skill-item { margin-bottom: 28px; }
.skill-label { font-size: 16px; font-weight: 600; color: #2c2c2c; margin-bottom: 10px; }
.skill-track { background: #e8e8e8; border-radius: 50px; height: 10px; overflow: hidden; }
.skill-fill {
  height: 100%; border-radius: 50px;
  background: linear-gradient(90deg, #ff6b35, #ff9a42);
  width: 0;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}

@media (max-width: 900px) {
  .skills-inner { flex-direction: column; gap: 50px; }
  .skills-left { width: 100%; max-width: 420px; height: 400px; margin: 0 auto; }
  .phone-green { width: 160px; height: 300px; }
  .phone-dark  { width: 175px; height: 340px; left: 90px; }
  .skills-right { width: 100%; }
}
  /*
  .custom-skills {
    background: #fff;
    padding: 90px 20px;
    font-family: 'Poppins', sans-serif;
  }

  .skills-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
  }

  .skills-left {
    flex-shrink: 0;
    width: 420px;
    position: relative;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .skills-left.visible { opacity: 1; transform: translateX(0); }

  .phone-mockup {
    position: relative;
    width: 220px;
    margin: 0 auto;
    z-index: 3;
  }

  .phone-frame {
    background: #1a1a2e;
    border-radius: 36px;
    padding: 14px 10px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.25), 0 0 0 2px #333;
    position: relative;
    z-index: 3;
  }

  .phone-notch {
    width: 70px;
    height: 16px;
    background: #1a1a2e;
    border-radius: 0 0 12px 12px;
    margin: 0 auto 8px;
  }

  .phone-screen {
    background: linear-gradient(160deg, #2d1b69 0%, #1a3a6e 100%);
    border-radius: 24px;
    overflow: hidden;
    height: 380px;
  }

  .phone-header {
    background: rgba(255,255,255,0.08);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .phone-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #ffa040);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
  }

  .phone-header-text { color: #fff; }
  .phone-header-text .name { font-size: 11px; font-weight: 700; }
  .phone-header-text .loc  { font-size: 9px; color: rgba(255,255,255,0.5); }

  .phone-stats {
    display: flex;
    justify-content: space-around;
    padding: 10px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .phone-stat { text-align: center; }
  .phone-stat .val { font-size: 13px; font-weight: 700; color: #fff; }
  .phone-stat .lbl { font-size: 8px; color: rgba(255,255,255,0.5); }

  .phone-chart {
    padding: 10px 12px;
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 90px;
  }

  .chart-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    animation: barGrow 1s ease forwards;
    transform-origin: bottom;
  }

  @keyframes barGrow {
    from { transform: scaleY(0); }
    to   { transform: scaleY(1); }
  }

  .phone-ring-row {
    display: flex;
    justify-content: space-around;
    padding: 8px;
  }

  .ring-item { text-align: center; }
  .ring-item .ring-num { font-size: 10px; font-weight: 700; color: #fff; }
  .ring-item .ring-lbl { font-size: 7px; color: rgba(255,255,255,0.5); }

  .ring-circle {
    width: 42px; height: 42px;
    border-radius: 50%;
    margin: 0 auto 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 700; color: #fff;
    position: relative;
  }
  .back-card {
    position: absolute;
    top: 40px; left: -30px;
    width: 160px;
    background: linear-gradient(135deg, #43a047, #1b5e20);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    z-index: 2;
  }

  .back-card .bc-name { font-size: 10px; font-weight: 700; color: #fff; }
  .back-card .bc-sub  { font-size: 8px; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
  .back-card .bc-stars { color: #ffd700; font-size: 10px; }

  .project-card {
    position: absolute;
    bottom: 30px; right: -20px;
    width: 150px;
    background: #fff;
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    z-index: 4;
    animation: floatBob 3s ease-in-out infinite;
  }

  .project-card .pj-icon {
    width: 30px; height: 30px;
    background: linear-gradient(135deg, #ff6b35, #ffa040);
    border-radius: 8px;
    margin-bottom: 6px;
    display: flex; align-items: center; justify-content: center;
  }

  .project-card .pj-title { font-size: 10px; font-weight: 700; color: #333; }
  .project-card .pj-sub   { font-size: 9px; color: #888; margin-bottom: 4px; }
  .project-card .pj-date  { font-size: 8px; color: #aaa; }

  .teal-blob {
    position: absolute;
    top: -10px; right: 10px;
    width: 120px; height: 120px;
    background: #4dd9c0;
    border-radius: 50%;
    opacity: 0.5;
    z-index: 1;
  }

  .skills-right {
    flex: 1;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .skills-right.visible { opacity: 1; transform: translateX(0); }

  .skills-right h2 {
    font-size: 40px;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 36px;
  }

  .skill-item {
    margin-bottom: 28px;
  }

  .skill-label {
    font-size: 16px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 10px;
  }

  .skill-track {
    background: #e8e8e8;
    border-radius: 50px;
    height: 10px;
    overflow: hidden;
  }

  .skill-fill {
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(90deg, #ff6b35, #ff9a42);
    width: 0;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  }

  @media (max-width: 900px) {
    .skills-inner { flex-direction: column; gap: 50px; }
    .skills-left { width: 100%; max-width: 380px; margin: 0 auto; }
    .skills-right { width: 100%; }
  }
  */

  /* ===== STATS SECTION ===== */
  .custom-stats {
    background: #fff;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    text-align: center;
  }

  .custom-stats::before {
    content: '';
    position: absolute;
    top: 22px; right: 60px;
    width: 0; height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 26px solid #4dd9c0;
    opacity: 0.75;
  }

  .stats-deco { position: absolute; font-weight: 700; }
  .stats-deco.sd1 { top: 68px; right: 145px; color: #4dd9c0; font-size: 22px; }
  .stats-deco.sd2 { top: 63px; right: 72px;  color: #5b4fcf; font-size: 20px; }

  .stats-title {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 50px;
  }

  .stats-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 0 auto;
    flex-wrap: wrap;
  }

  .stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 28px 28px;
    flex: 1;
    min-width: 200px;
    max-width: 240px;
    box-shadow: 0 4px 22px rgba(0,0,0,0.07);
    border: 1px solid #efefef;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
  }

  .stat-card.visible { opacity: 1; transform: translateY(0); }

  .stat-card:hover {
    box-shadow: 0 14px 38px rgba(255,107,53,0.16);
    transform: translateY(-5px);
  }

  .stat-number {
    display: block;
    font-size: 54px;
    font-weight: 800;
    color: #ff6b35;
    line-height: 1;
    margin-bottom: 16px;
  }

  .stat-label {
    font-size: 15px;
    font-weight: 600;
    color: #2c2c2c;
  }

  @media (max-width: 700px) {
    .stats-grid { gap: 14px; }
    .stat-card { min-width: 140px; padding: 28px 14px 22px; }
    .stat-number { font-size: 38px; }
    .stats-title { font-size: 24px; }
  }

  /* ===== CREATIVE WORKS / PORTFOLIO SECTION ===== */
  .custom-portfolio {
    background: #f5f5f0;
    padding: 80px 20px 90px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
  }

  .portfolio-title {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 44px;
  }

  /* Carousel wrapper */
  .carousel-outer {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 36px;
  }

  /* Clips the track; arrows live outside it so they are never cut off */
  .carousel-viewport { overflow: hidden; }

  .carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    touch-action: pan-y; /* horizontal drags reach our pointer handlers */
    cursor: grab;
  }

  /* Each slide: shows 3 at a time with center one full, sides partial */
  .carousel-slide {
    flex: 0 0 calc(100% / 3);
    padding: 0 12px;
    box-sizing: border-box;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  .carousel-slide .slide-inner {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 320px;
    position: relative;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }

  .carousel-slide .slide-inner:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,0.15);
    transform: translateY(-4px);
  }

  .carousel-slide .slide-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
  }

  /* Placeholder screens for demo */
  .slide-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .sp-header {
    padding: 10px 14px;
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .sp-dot { width: 10px; height: 10px; border-radius: 50%; }
  .sp-url { flex: 1; background: #e8e8e8; height: 16px; border-radius: 4px; }

  .sp-body { flex: 1; padding: 10px 14px; overflow: hidden; }

  .sp-row {
    height: 10px;
    background: #eee;
    border-radius: 4px;
    margin-bottom: 8px;
  }

  .sp-row.dark { background: #1a237e; height: 28px; }
  .sp-row.orange { background: #ff6b35; }
  .sp-row.green  { background: #43a047; }
  .sp-row.short  { width: 60%; }
  .sp-row.medium { width: 80%; }

  .sp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 8px;
    color: #555;
    margin-top: 6px;
  }
  .sp-table th {
    background: #f0f0f0;
    padding: 4px 6px;
    text-align: left;
    font-weight: 600;
    border: 1px solid #ddd;
  }
  .sp-table td {
    padding: 3px 6px;
    border: 1px solid #eee;
  }
  .sp-badge {
    display: inline-block;
    padding: 1px 5px;
    border-radius: 10px;
    font-size: 7px;
    font-weight: 600;
  }
  .sp-badge.green  { background: #e8f5e9; color: #2e7d32; }
  .sp-badge.blue   { background: #e3f2fd; color: #1565c0; }
  .sp-badge.orange { background: #fff3e0; color: #e65100; }

  /* GTM slide styles */
  .sp-gtm-header {
    background: #fff;
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    color: #333;
    font-weight: 600;
  }

  .gtm-icon {
    width: 22px; height: 22px;
    background: linear-gradient(135deg, #4285F4, #34A853);
    border-radius: 4px;
    flex-shrink: 0;
  }

  .sp-tag-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    padding: 8px 12px 0;
  }

  .sp-tag {
    background: #f0f4ff;
    border: 1px solid #c5cff5;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 7px;
    color: #3949ab;
    font-weight: 600;
  }

  /* Analytics slide */
  .sp-analytics {
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .sp-analytics-header {
    padding: 10px 14px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .live-dot {
    width: 8px; height: 8px;
    background: #43a047;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
  }

  .sp-metrics {
    display: flex;
    gap: 0;
    padding: 10px 14px;
    border-bottom: 1px solid #eee;
  }

  .sp-metric { flex: 1; }
  .sp-metric .m-val { font-size: 14px; font-weight: 700; color: #1a1a2e; }
  .sp-metric .m-chg { font-size: 8px; color: #43a047; }
  .sp-metric .m-lbl { font-size: 7px; color: #999; }

  .sp-chart-area {
    flex: 1;
    padding: 10px 14px;
    position: relative;
  }

  .sparkline {
    width: 100%;
    height: 80px;
  }

  /* Arrow buttons */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 10;
    transition: background 0.2s, box-shadow 0.2s;
    font-size: 16px;
    color: #333;
  }

  .carousel-btn:hover { background: #ff6b35; color: #fff; box-shadow: 0 6px 18px rgba(255,107,53,0.35); }
  .carousel-btn.prev { left: -20px; }
  .carousel-btn.next { right: -20px; }

  /* Dots */
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
  }

  .c-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    border: none;
    padding: 0;
  }

  .c-dot.active { background: #ff6b35; transform: scale(1.3); }

  /* Hire button */
  .portfolio-hire-btn {
    display: inline-block;
    padding: 18px 60px;
    background: linear-gradient(135deg, #ff6b35, #ff9a42);
    border-radius: 50px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 8px 26px rgba(255,107,53,0.38);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }

  .portfolio-hire-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(255,107,53,0.48);
  }

  @media (max-width: 700px) {
    .carousel-slide { flex: 0 0 85%; }
    .carousel-btn.prev { left: 0; }
    .carousel-btn.next { right: 0; }
  }

  /* Lightbox (native <dialog>) */
  .work-lightbox {
    width: 100%; height: 100%; max-width: none; max-height: none;
    margin: 0; padding: 0; border: 0;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    color: #eee;
    touch-action: pan-y;
    user-select: none;
  }
  .work-lightbox[open] { display: flex; align-items: center; justify-content: center; }
  .work-lightbox::backdrop { background: rgba(0,0,0,0.8); }
  /* 80%-wide stage; every image fills its full width (tall ones scroll inside it) */
  .lb-stage { width: 80%; max-height: 90vh; overflow-y: auto; }
  .work-lightbox img {
    display: block;
    width: 100%; height: auto;
    cursor: grab;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  }
  .work-lightbox .carousel-btn.prev { left: 16px; }
  .work-lightbox .carousel-btn.next { right: 16px; }
  .lb-close {
    position: absolute; top: 8px; right: 16px;
    background: none; border: 0; color: #eee;
    font-size: 40px; line-height: 1; cursor: pointer;
  }
  .lb-close:hover { color: #ff6b35; }
  .lb-counter { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); font-size: 14px; }
  .lb-title { position: absolute; bottom: 16px; left: 0; right: 0; text-align: center; font-size: 14px; padding: 0 60px; }
  body:has(.work-lightbox[open]) { overflow: hidden; }

  /* ===== WHY CHOOSE ME SECTION ===== */
  .custom-why {
    background: #fff;
    padding: 85px 20px 90px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
  }

  .why-title {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 52px;
  }

  .why-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
    text-align: left;
  }

  /* Left: text content */
  .why-left {
    flex: 1;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .why-left.visible { opacity: 1; transform: translateX(0); }

  .why-left p {
    font-size: 15px;
    color: #555;
    line-height: 1.85;
    margin-bottom: 22px;
  }

  .why-left p strong {
    color: #1a1a2e;
    font-weight: 700;
  }

  /* Right: feature cards */
  .why-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .why-right.visible { opacity: 1; transform: translateX(0); }

  .why-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: default;
  }

  .why-card:hover {
    box-shadow: 0 8px 28px rgba(255,107,53,0.13);
    transform: translateY(-3px);
  }

  .why-card-icon {
    width: 50px;
    height: 50px;
    background: #fff3ee;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .why-card-icon svg {
    width: 26px;
    height: 26px;
    fill: #ff6b35;
  }

  .why-card-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
  }

  .why-card-text p {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
    margin: 0;
  }

  /* CTA button */
  .why-cta-wrap {
    text-align: center;
    margin-top: 52px;
  }

  .why-cta-btn {
    display: inline-block;
    padding: 18px 52px;
    background: linear-gradient(135deg, #ff6b35, #ff9a42);
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 8px 26px rgba(255,107,53,0.38);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }

  .why-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(255,107,53,0.48);
  }

  @media (max-width: 850px) {
    .why-inner { flex-direction: column; gap: 36px; }
    .why-left, .why-right { width: 100%; }
  }

  /* ===== TESTIMONIALS SECTION ===== */
  .custom-testimonials {
    background: #f5f5f0;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
  }

  .testimonials-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
  }

  /* LEFT: Label + heading + bubble icons */
  .testi-left {
    width: 320px;
    flex-shrink: 0;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .testi-left.visible { opacity: 1; transform: translateX(0); }

  .testi-tag {
    font-size: 12px;
    font-weight: 700;
    color: #ff6b35;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
  }

  .testi-left h2 {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 14px;
  }

  .testi-left p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
  }

  /* Big quotation-mark accent behind the heading */
  .testi-quote-deco {
    position: absolute;
    top: -52px;
    right: -4px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 190px;
    font-weight: 700;
    line-height: 1;
    color: #ff6b35;
    opacity: 0.10;
    pointer-events: none;
    user-select: none;
  }

  /* Rating summary card */
  .testi-summary {
    margin-top: 26px;
    padding: 18px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(26, 26, 46, 0.06);
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .testi-summary-score { display: flex; flex-direction: column; align-items: flex-start; }
  .testi-summary-number { font-size: 38px; font-weight: 800; color: #1a1a2e; line-height: 1; letter-spacing: -1px; }
  .testi-summary-stars { color: #f5a623; font-size: 14px; letter-spacing: 1px; margin-top: 4px; }
  .testi-summary-stars span { color: #e3e3e3; }
  .testi-summary-meta { display: flex; flex-direction: column; gap: 7px; padding-left: 18px; border-left: 1px solid #eee; }
  .testi-avatars { display: flex; }
  .testi-avatar-mini {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  }
  .testi-avatar-mini:first-child { margin-left: 0; }
  .testi-summary-label { font-size: 12px; color: #777; white-space: nowrap; }

  /* Small CTA under the summary */
  .testi-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 22px;
    font-size: 14px;
    font-weight: 600;
    color: #ff6b35;
    text-decoration: none;
  }
  .testi-cta span { transition: transform 0.25s ease; }
  .testi-cta:hover span { transform: translateX(4px); }
  .testi-stars-empty { color: #e3e3e3; }

  /* RIGHT: Carousel */
  .testi-right {
    flex: 1;
    min-width: 0; /* let the carousel shrink to the column instead of growing to its slides' min-content */
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .testi-right.visible { opacity: 1; transform: translateX(0); }

  .testi-carousel-wrap {
    overflow: hidden;
    position: relative;
  }

  .testi-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .testi-slide {
    flex: 0 0 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .testi-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px 44px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    text-align: center;
  }

  .testi-quote {
    font-size: 15px;
    color: #444;
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 30px;
  }

  .testi-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }

  .testi-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: linear-gradient(135deg, #c8956c, #a0714f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    font-weight: 700;
  }

  .testi-author-info .name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: left;
  }

  .testi-author-info .role {
    font-size: 13px;
    color: #ff6b35;
    font-weight: 600;
    text-align: left;
  }

  /* Stars */
  .testi-stars {
    color: #ff6b35;
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 2px;
  }

  /* Nav arrows */
  .testi-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px; height: 36px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    color: #555;
    z-index: 5;
    transition: background 0.2s, color 0.2s;
  }
  .testi-nav:hover { background: #ff6b35; color: #fff; }
  .testi-nav.t-prev { left: -18px; }
  .testi-nav.t-next { right: -18px; }

  /* Dots */
  .testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
  }

  .t-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
  }
  .t-dot.active { background: #ff6b35; transform: scale(1.35); }

  @media (max-width: 850px) {
    .testimonials-inner { flex-direction: column; gap: 36px; }
    .testi-left { width: 100%; }
    .testi-right { width: 100%; } /* column layout is align-items:center, so give the carousel the full width */
    .testi-summary { flex-wrap: wrap; }
    .testi-summary-label { white-space: normal; }
    .testi-card { padding: 28px 22px; }
    .testi-nav.t-prev { left: 0; }
    .testi-nav.t-next { right: 0; }
  }

  /* ===== CONTACT SECTION ===== */
  .custom-contact {
    background: #fff;
    padding: 90px 20px;
    font-family: 'Poppins', sans-serif;
  }

  .contact-inner {
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
  }

  /* LEFT: blob image */
  .contact-left {
    flex-shrink: 0;
    width: 50%;
    position: relative;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .contact-left.visible { opacity: 1; transform: translateX(0); }

  .blob-container {
    position: relative;
    width: 100%;
    height: 400px;
  }

  /* Decorative ring blobs behind image */
  .blob-ring {
    position: absolute;
    border-radius: 50%;
    border: 18px solid transparent;
  }
  .blob-ring-1 {
    width: 280px; height: 280px;
    top: 50px; left: 30px;
    border-color: #4dd9c0;
    opacity: 0.5;
  }
  .blob-ring-2 {
    width: 220px; height: 220px;
    top: 90px; left: 10px;
    border-color: #a8e6cf;
    opacity: 0.4;
  }
  .blob-ring-3 {
    width: 180px; height: 300px;
    top: 30px; left: 160px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    border-color: #4dd9c0;
    opacity: 0.3;
  }

  /* Main blob photo */
  .blob-main {
    position: absolute;
    top: 30px; left: 40px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 3;
    background: linear-gradient(135deg, #dde8f0, #c8dce8);
  }

  .blob-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  /* Small secondary blob */
  .blob-secondary {
    position: absolute;
    bottom: 10px; right: 20px;
    width: 170px; height: 170px;
    border-radius: 50% 60% 40% 50% / 50% 40% 60% 50%;
    overflow: hidden;
    z-index: 3;
    background: linear-gradient(135deg, #b8cfe0, #9ab8cc);
  }

  .blob-secondary img {
    width: 100%; height: 100%;
    object-fit: cover;
  }

  /* RIGHT: Form */
  .contact-right {
    flex: 1;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .contact-right.visible { opacity: 1; transform: translateX(0); }

  .contact-right h2 {
    font-size: 32px;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 28px;
  }

  .contact-form .form-group {
    margin-bottom: 20px;
  }

  .contact-form label {
    display: block;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin-bottom: 7px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #fff;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255,107,53,0.12);
  }

  .contact-form textarea {
    height: 160px;
    resize: vertical;
  }

  .contact-submit {
    display: inline-block;
    padding: 15px 50px;
    background: linear-gradient(135deg, #ff6b35, #ff9a42);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 22px rgba(255,107,53,0.35);
  }

  .contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255,107,53,0.48);
  }

  /* Success message */
  .form-success {
    display: none;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 16px;
    text-align: center;
  }

  @media (max-width: 900px) {
    .contact-inner { flex-direction: column; gap: 40px; }
    .contact-left { width: 100%; max-width: 340px; margin: 0 auto; }
    .blob-container { width: 320px; height: 340px; }
  }

  /* ===== FOOTER ===== */
  .custom-footer {
    background: #12121e;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    padding: 70px 20px 0;
    position: relative;
    overflow: hidden;
  }

  /* Top gradient accent line */
  .custom-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ffa040, #4dd9c0, #5b4fcf, #ff6b35);
    background-size: 300% 100%;
    animation: gradientShift 4s linear infinite;
  }

  @keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
  }

  /* Decorative background glow */
  .custom-footer::after {
    content: '';
    position: absolute;
    top: -120px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(255,107,53,0.07) 0%, transparent 70%);
    pointer-events: none;
  }

  .footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 1;
  }

  /* Column 1: Brand */
  .footer-brand {}

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    text-decoration: none;
  }

  .footer-logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, #ff6b35, #ff9a42);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .footer-logo-text .brand-top {
    font-size: 13px;
    font-weight: 700;
    color: #ff6b35;
    line-height: 1;
    display: block;
  }
  .footer-logo-text .brand-bot {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    display: block;
  }

  .footer-brand p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin-bottom: 26px;
  }

  /* Social icons */
  .footer-socials {
    display: flex;
    gap: 10px;
  }

  .footer-social-btn {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
  }

  .footer-social-btn:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(255,107,53,0.4);
  }

  .footer-social-btn svg {
    width: 17px; height: 17px;
    fill: rgba(255,255,255,0.7);
    transition: fill 0.2s;
  }

  .footer-social-btn:hover svg { fill: #fff; }

  /* Column 2 & 3: Nav links */
  .footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
  }

  .footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 32px; height: 2px;
    background: #ff6b35;
    border-radius: 2px;
  }

  .footer-col ul {
    list-style: none;
    padding: 0; margin: 0;
  }

  .footer-col ul li {
    margin-bottom: 12px;
  }

  .footer-col ul li a {
    font-size: 13.5px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .footer-col ul li a::before {
    content: '›';
    color: #ff6b35;
    font-size: 16px;
    transition: transform 0.2s;
  }

  .footer-col ul li a:hover {
    color: #fff;
    padding-left: 4px;
  }

  /* Column 4: Contact info */
  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
  }

  .footer-contact-icon {
    width: 38px; height: 38px;
    background: rgba(255,107,53,0.12);
    border: 1px solid rgba(255,107,53,0.25);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
  }

  .footer-contact-item:hover .footer-contact-icon {
    background: #ff6b35;
  }

  .footer-contact-icon svg {
    width: 17px; height: 17px;
    fill: #ff6b35;
    transition: fill 0.3s;
  }

  .footer-contact-item:hover .footer-contact-icon svg { fill: #fff; }

  .footer-contact-text .fc-label {
    font-size: 12px;
    font-weight: 600;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 2px;
  }

  .footer-contact-text .fc-value {
    font-size: 13.5px;
    color: rgba(255,255,255,0.7);
  }

  /* Bottom bar */
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
  }

  .footer-bottom p strong {
    color: rgba(255,255,255,0.6);
  }

  .footer-back-top {
    width: 38px; height: 38px;
    background: rgba(255,107,53,0.15);
    border: 1px solid rgba(255,107,53,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    color: #ff6b35;
    text-decoration: none;
  }

  .footer-back-top:hover {
    background: #ff6b35;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(255,107,53,0.4);
  }

  @media (max-width: 900px) {
    .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  }
  @media (max-width: 580px) {
    .footer-main { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
  }

  /* ===== TOP NAVBAR ===== */
  .custom-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    transition: box-shadow 0.3s ease, background 0.3s ease;
    font-family: 'Poppins', sans-serif;
  }

  .custom-nav.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.99);
  }

  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Logo */
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
  }

  .nav-logo-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, #ff6b35, #ff9a42);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .nav-logo-text .nl-top {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #ff6b35;
    line-height: 1;
  }

  .nav-logo-text .nl-bot {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.1;
  }

  /* Nav links */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0; padding: 0;
  }

  .nav-links a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%; right: 50%;
    height: 2px;
    background: #ff6b35;
    border-radius: 2px;
    transition: left 0.25s ease, right 0.25s ease;
  }

  .nav-links a:hover::after,
  .nav-links a.active::after {
    left: 16px;
    right: 16px;
  }

  .nav-links a.active,
  .nav-links a:hover { color: #ff6b35; }

  /* CTA button in nav */
  .nav-cta {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #ff6b35, #ff9a42);
    color: #fff !important;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 14px rgba(255,107,53,0.3);
  }

  .nav-cta::after { display: none !important; }

  .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255,107,53,0.45) !important;
    color: #fff !important;
  }

  /* Hamburger for mobile */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }

  .nav-hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: #2c2c2c;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* Push body content below fixed nav */
  body { padding-top: 68px; }

  @media (max-width: 768px) {
    .nav-links {
      display: none;
      position: absolute;
      top: 68px; left: 0; right: 0;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(12px);
      flex-direction: column;
      gap: 0;
      padding: 12px 16px 20px;
      border-bottom: 1px solid rgba(0,0,0,0.07);
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 12px 16px; border-radius: 8px; }
    .nav-hamburger { display: flex; }
    .nav-cta { width: calc(100% - 32px); text-align: center; margin: 8px 16px 4px; }
  }