/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* =========================
   ROOT VARIABLES
========================= */
:root {
  --bg: #ffffff;
  --bg-2: #ecebe8;
  --text: #101722;
  --muted: #8f918f;
  --line: #252b35;
  --accent: #ff7b22;
  --dark: #0b1420;
  --white: #ffffff;
  --header-h: 104px;
  --qiro: #14637b;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Body base style */
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* Remove default underline */
a {
  text-decoration: none;
}



/* =========================================
   QIRO TECH SERVICE HERO
========================================= */
/* ===== UI/UX HERO SECTION ===== */
.uiux-hero-section {
  min-height: 280px;
  margin-top: 60px;
  padding: 30px 40px 20px;
  margin-bottom: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  font-family: 'Outfit', sans-serif;
}

.uiux-hero-inner {
  width: 100%;
  max-width: 1680px;
}

.uiux-hero-kicker {
  margin: 0 0 18px;
  color: #14637b;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
}

.uiux-hero-title {
  margin: 0;
  color: #081826;
  font-size: clamp(85px, 12vw, 155px);
  line-height: .88;
  letter-spacing: -8px;
  font-weight: 500;
}

.uiux-hero-text {
  margin: 34px 0 0;
  color: #18232e;
  font-size: clamp(24px, 1.9vw, 38px);
  line-height: 1.12;
  font-weight: 300;
}

.uiux-hero-text span {
  color: #7f8a93;
}

/* ==========================================================
   UI/UX HERO SECTION - RESPONSIVE
   (Paste below your existing CSS)
========================================================== */

/* ==========================
   LAPTOP (1200px)
========================== */
@media (max-width:1200px) {

  .uiux-hero-section {
    min-height: 250px;
    padding: 28px 32px 20px;
    margin-top: 50px;
  }

  .uiux-hero-title {
    font-size: clamp(68px, 9vw, 120px);
    letter-spacing: -5px;
  }

  .uiux-hero-text {
    margin-top: 28px;
    font-size: 20px;
    line-height: 1.35;
  }

}


/* ==========================
   TABLET (992px)
========================== */
@media (max-width:992px) {

  .uiux-hero-section {
    min-height: auto;
    padding: 28px;
    margin-top: 45px;
  }

  .uiux-hero-kicker {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .uiux-hero-title {
    font-size: 60px;
    letter-spacing: -3px;
    line-height: .95;
  }

  .uiux-hero-text {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.45;
  }

}


/* ==========================
   MOBILE (768px)
========================== */
@media (max-width:768px) {

  .uiux-hero-section {
    padding: 24px 20px;
    margin-top: 40px;
  }

  .uiux-hero-kicker {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .uiux-hero-title {
    font-size: 46px;
    line-height: 1;
    letter-spacing: -2px;
  }

  .uiux-hero-text {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.5;
  }

}


/* ==========================
   SMALL MOBILE (576px)
========================== */
@media (max-width:576px) {

  .uiux-hero-section {
    padding: 20px 16px;
    margin-top: 30px;
  }

  .uiux-hero-kicker {
    font-size: 14px;
  }

  .uiux-hero-title {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .uiux-hero-text {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.55;
  }

}


/* ==========================
   EXTRA SMALL (400px)
========================== */
@media (max-width:400px) {

  .uiux-hero-section {
    padding: 50px 14px 25px;
    margin-top: 50px;
  }

  .uiux-hero-kicker {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .uiux-hero-title {
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0;
  }

  .uiux-hero-text {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.6;
  }

}


/* ===== UI/UX PURPOSE SECTION ===== */
.uiux-purpose-section {
  position: relative;
  min-height: 100vh;
  background: #f7f9fc;
  overflow: hidden;
  padding: 100px 46px 58px;
  font-family: 'Outfit', sans-serif;
}

/* GLOW */
.uiux-purpose-glow {
  position: absolute;
  left: 4%;
  bottom: -8%;

  width: 980px;
  height: 420px;

  border-radius: 50%;

  background:
    radial-gradient(ellipse at center,
      rgba(20, 99, 123, .58) 0%,
      rgba(20, 99, 123, .26) 28%,
      rgba(96, 176, 198, .14) 52%,
      rgba(255, 255, 255, .04) 70%,
      transparent 82%);

  filter: blur(78px);

  transform: rotate(16deg);

  pointer-events: none;
}

.uiux-purpose-pill {
  position: relative;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;
  padding: 0 16px;

  border: 1.4px solid #91a0aa;

  border-radius: 999px;

  color: #6c7982;

  font-size: 16px;
  font-weight: 300;

  margin-bottom: 28px;

  background: rgba(255, 255, 255, .45);

  backdrop-filter: blur(12px);
}

.uiux-purpose-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.1fr .9fr;

  gap: 38px;

  min-height: calc(100vh - 160px);
}

.uiux-purpose-left {
  align-self: start;
  max-width: 1180px;
}

.uiux-purpose-title {
  margin: 0;

  color: #081826;

  font-size: clamp(72px, 7vw, 142px);

  line-height: .92;

  letter-spacing: -4px;

  font-weight: 300;
}

.uiux-purpose-title span {
  font-weight: 600;
  color: #14637b;
}

.uiux-purpose-right {
  align-self: end;
  justify-self: end;

  max-width: 430px;

  padding-bottom: 120px;
}

.uiux-purpose-right p {
  margin: 0;

  color: #2f3c47;

  font-size: clamp(22px, 1.38vw, 30px);

  line-height: 1.12;

  font-weight: 300;
}

/* ==========================================================
   UI/UX PURPOSE SECTION - RESPONSIVE
   (Paste below your existing CSS)
========================================================== */

/* ==========================
   LAPTOP (1200px)
========================== */
@media (max-width:1200px) {

  .uiux-purpose-section {
    padding: 90px 36px 50px;
  }

  .uiux-purpose-grid {
    gap: 30px;
  }

  .uiux-purpose-title {
    font-size: clamp(60px, 6vw, 105px);
    letter-spacing: -3px;
  }

  .uiux-purpose-right {
    max-width: 400px;
    padding-bottom: 80px;
  }

  .uiux-purpose-right p {
    font-size: 20px;
    line-height: 1.35;
  }

  .uiux-purpose-glow {
    width: 760px;
    height: 320px;
  }

}


/* ==========================
   TABLET (992px)
========================== */
@media (max-width:992px) {

  .uiux-purpose-section {
    min-height: auto;
    padding: 80px 28px;
  }

  .uiux-purpose-grid {
    grid-template-columns: 1fr;
    gap: 45px;
    min-height: auto;
  }

  .uiux-purpose-pill {
    min-height: 38px;
    font-size: 14px;
  }

  .uiux-purpose-title {
    font-size: 60px;
    letter-spacing: -2px;
  }

  .uiux-purpose-right {
    max-width: 100%;
    justify-self: start;
    align-self: start;
    padding-bottom: 0;
  }

  .uiux-purpose-right p {
    font-size: 18px;
    line-height: 1.5;
  }

  .uiux-purpose-glow {
    width: 550px;
    height: 240px;
    left: -10%;
    bottom: -10%;
  }

}


/* ==========================
   MOBILE (768px)
========================== */
@media (max-width:768px) {

  .uiux-purpose-section {
    padding: 70px 20px;
  }

  .uiux-purpose-pill {
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
    margin-bottom: 22px;
  }

  .uiux-purpose-grid {
    gap: 35px;
  }

  .uiux-purpose-title {
    font-size: 46px;
    line-height: 1;
    letter-spacing: -1px;
  }

  .uiux-purpose-right {
    max-width: 100%;
  }

  .uiux-purpose-right p {
    font-size: 16px;
    line-height: 1.6;
  }

  .uiux-purpose-glow {
    width: 360px;
    height: 160px;
    filter: blur(50px);
  }

}


/* ==========================
   SMALL MOBILE (576px)
========================== */
@media (max-width:576px) {

  .uiux-purpose-section {
    padding: 60px 16px;
  }

  .uiux-purpose-pill {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .uiux-purpose-title {
    font-size: 36px;
  }

  .uiux-purpose-right p {
    font-size: 15px;
  }

  .uiux-purpose-glow {
    width: 260px;
    height: 120px;
  }

}


/* ==========================
   EXTRA SMALL (400px)
========================== */
@media (max-width:400px) {

  .uiux-purpose-section {
    padding: 50px 14px;
  }

  .uiux-purpose-pill {
    min-height: 32px;
    font-size: 11px;
  }

  .uiux-purpose-title {
    font-size: 30px;
    letter-spacing: 0;
  }

  .uiux-purpose-right p {
    font-size: 14px;
    line-height: 1.6;
  }

  .uiux-purpose-glow {
    width: 200px;
    height: 90px;
    filter: blur(35px);
  }

}

/* =========================================
   QIRO PROCESS SECTION
========================================= */

.qiro-process-section {
  position: relative;
  overflow: hidden;

  background: #f7f9fc;

  padding: 40px 46px 90px;

  font-family: 'Outfit', sans-serif;
}

/* =========================================
   BACKGROUND GLOW
========================================= */

.qiro-process-glow {
  position: absolute;

  right: -180px;
  bottom: -180px;

  width: 900px;
  height: 420px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(20, 99, 123, .22) 0%,
      rgba(20, 99, 123, .10) 28%,
      rgba(20, 99, 123, .04) 52%,
      transparent 74%);

  filter: blur(90px);

  pointer-events: none;
}

/* =========================================
   TOP AREA
========================================= */

.qiro-process-top {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.1fr .9fr;

  gap: 40px;

  align-items: start;

  margin-bottom: 54px;
}

/* PILL */

.qiro-process-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 40px;

  padding: 0 16px;

  border: 1.4px solid #90a1ab;

  border-radius: 999px;

  color: #6d7983;

  font-size: 15px;
  font-weight: 300;

  background: rgba(255, 255, 255, .55);

  backdrop-filter: blur(10px);

  margin-bottom: 24px;
}

/* TITLE */

.qiro-process-title {
  margin: 0;

  color: #081826;

  font-size: clamp(58px, 6vw, 118px);

  line-height: .92;

  letter-spacing: -4px;

  font-weight: 300;
}

.qiro-process-title span {
  color: #000000;
  font-weight: 600;
}

/* RIGHT TEXT */

.qiro-process-right {
  display: flex;
  justify-content: flex-end;

  padding-top: 18px;
}

.qiro-process-right p {
  margin: 0;

  max-width: 520px;

  color: #52606a;

  font-size: clamp(20px, 1.3vw, 28px);

  line-height: 1.2;

  font-weight: 300;
}

/* =========================================
   GRID
========================================= */

.qiro-process-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 24px;
}

/* =========================================
   CARD
========================================= */

.qiro-process-card {
  position: relative;

  overflow: hidden;

  min-height: 460px;

  border-radius: 34px;

  padding: 34px 28px;

  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, .92) 0%,
      rgba(255, 255, 255, .72) 100%);

  border: 1px solid rgba(20, 99, 123, .08);

  backdrop-filter: blur(16px);

  transition:
    transform .45s ease,
    border-color .45s ease,
    box-shadow .45s ease,
    background .45s ease;
}

/* =========================================
   PROFESSIONAL HOVER
========================================= */

.qiro-process-card:hover {
  transform: translateY(-10px);

  border-color: rgba(20, 99, 123, .22);

  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, .98) 0%,
      rgba(243, 249, 252, .94) 100%);

  box-shadow:
    0 18px 40px rgba(20, 99, 123, .08),
    0 6px 16px rgba(20, 99, 123, .06);
}

/* =========================================
   TOP BORDER ANIMATION
========================================= */

.qiro-process-card::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 0%;
  height: 3px;

  background:
    linear-gradient(90deg,
      #14637b,
      #58a7bf);

  transition: width .6s cubic-bezier(.22, 1, .36, 1);
}

.qiro-process-card:hover::before {
  width: 100%;
}

/* =========================================
   SOFT GLOW EFFECT
========================================= */

.qiro-process-card::after {
  content: "";

  position: absolute;

  width: 240px;
  height: 240px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(20, 99, 123, .12) 0%,
      rgba(20, 99, 123, .04) 45%,
      transparent 72%);

  top: -120px;
  right: -120px;

  opacity: 0;

  transition:
    opacity .5s ease,
    transform .8s ease;

  transform: scale(.7);
}

.qiro-process-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* =========================================
   STEP
========================================= */

.qiro-process-step {
  color: #14637b;

  font-size: 14px;
  font-weight: 500;

  letter-spacing: 1.6px;

  margin-bottom: 42px;

  transition: .4s ease;
}

/* =========================================
   ICON
========================================= */

.qiro-process-icon {
  position: relative;

  width: 68px;
  height: 68px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 38px;

  background:
    linear-gradient(180deg,
      rgba(20, 99, 123, .12),
      rgba(20, 99, 123, .04));

  border: 1px solid rgba(20, 99, 123, .12);

  color: #14637b;

  font-size: 24px;

  transition:
    transform .45s ease,
    background .45s ease,
    color .45s ease,
    border-color .45s ease,
    box-shadow .45s ease;
}

/* ICON ROTATING RING */

.qiro-process-icon::before {
  content: "";

  position: absolute;

  inset: -10px;

  border-radius: 50%;

  border: 1px dashed rgba(20, 99, 123, .18);

  animation: rotateRing 14s linear infinite;
}

/* ICON HOVER */

.qiro-process-card:hover .qiro-process-icon {
  transform: rotate(8deg) scale(1.06);

  background: #14637b;

  color: #ffffff;

  border-color: #14637b;

  box-shadow:
    0 10px 28px rgba(20, 99, 123, .24);
}

/* =========================================
   HEADING
========================================= */

.qiro-process-card h3 {
  margin: 0 0 16px;

  color: #081826;

  font-size: clamp(26px, 1.8vw, 38px);

  line-height: 1.05;

  letter-spacing: -1px;

  font-weight: 400;

  transition: .4s ease;
}

/* =========================================
   PARAGRAPH
========================================= */

.qiro-process-card p {
  margin: 0;

  color: #67737d;

  font-size: 17px;

  line-height: 1.55;

  font-weight: 300;

  transition: .4s ease;
}

/* =========================================
   HOVER TEXT
========================================= */

.qiro-process-card:hover h3 {
  color: #14637b;
}

.qiro-process-card:hover p {
  color: #42515c;
}

/* =========================================
   FLOATING ANIMATION
========================================= */

.qiro-process-card {
  animation: floatCard 5s ease-in-out infinite;
}

.qiro-process-card:nth-child(2) {
  animation-delay: .8s;
}

.qiro-process-card:nth-child(3) {
  animation-delay: 1.4s;
}

.qiro-process-card:nth-child(4) {
  animation-delay: 2s;
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes floatCard {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0px);
  }

}

@keyframes rotateRing {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}

/* ==========================================================
   QIRO PROCESS SECTION - RESPONSIVE
   (Paste below your existing CSS)
========================================================== */

/* ==========================
   LAPTOP (1200px)
========================== */
@media (max-width:1200px) {

  .qiro-process-section {
    padding: 40px 36px 80px;
  }

  .qiro-process-top {
    gap: 30px;
    margin-bottom: 50px;
  }

  .qiro-process-title {
    font-size: clamp(50px, 6vw, 90px);
    letter-spacing: -3px;
  }

  .qiro-process-right p {
    font-size: 18px;
    line-height: 1.4;
  }

  .qiro-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .qiro-process-card {
    min-height: 420px;
    padding: 30px 24px;
  }

  .qiro-process-glow {
    width: 700px;
    height: 320px;
  }

}


/* ==========================
   TABLET (992px)
========================== */
@media (max-width:992px) {

  .qiro-process-section {
    padding: 70px 28px;
  }

  .qiro-process-top {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

  .qiro-process-right {
    justify-content: flex-start;
    padding-top: 0;
  }

  .qiro-process-right p {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.5;
  }

  .qiro-process-title {
    font-size: 60px;
    letter-spacing: -2px;
  }

  .qiro-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .qiro-process-card {
    min-height: 390px;
    border-radius: 28px;
    padding: 28px 22px;
  }

  .qiro-process-icon {
    width: 60px;
    height: 60px;
    font-size: 22px;
    margin-bottom: 28px;
  }

  .qiro-process-step {
    margin-bottom: 28px;
  }

  .qiro-process-card h3 {
    font-size: 24px;
  }

  .qiro-process-card p {
    font-size: 16px;
  }

  .qiro-process-glow {
    width: 520px;
    height: 220px;
    right: -140px;
    bottom: -100px;
  }

}


/* ==========================
   MOBILE (768px)
========================== */
@media (max-width:768px) {

  .qiro-process-section {
    padding: 60px 20px;
  }

  .qiro-process-pill {
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
    margin-bottom: 18px;
  }

  .qiro-process-title {
    font-size: 46px;
    line-height: 1;
    letter-spacing: -1px;
  }

  .qiro-process-right p {
    font-size: 16px;
    line-height: 1.6;
  }

  .qiro-process-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .qiro-process-card {
    min-height: auto;
    padding: 24px;
    border-radius: 22px;
    animation: none;
  }

  .qiro-process-icon {
    width: 56px;
    height: 56px;
    font-size: 20px;
    margin-bottom: 20px;
  }

  .qiro-process-icon::before {
    inset: -8px;
  }

  .qiro-process-step {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .qiro-process-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .qiro-process-card p {
    font-size: 15px;
    line-height: 1.6;
  }

  .qiro-process-glow {
    width: 360px;
    height: 160px;
    right: -120px;
    bottom: -80px;
    filter: blur(50px);
  }

}


/* ==========================
   SMALL MOBILE (576px)
========================== */
@media (max-width:576px) {

  .qiro-process-section {
    padding: 50px 16px;
  }

  .qiro-process-pill {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .qiro-process-title {
    font-size: 36px;
  }

  .qiro-process-right p {
    font-size: 15px;
  }

  .qiro-process-card {
    padding: 20px;
    border-radius: 18px;
  }

  .qiro-process-icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .qiro-process-card h3 {
    font-size: 20px;
  }

  .qiro-process-card p {
    font-size: 14px;
  }

  .qiro-process-glow {
    width: 260px;
    height: 120px;
  }

}


/* ==========================
   EXTRA SMALL (400px)
========================== */
@media (max-width:400px) {

  .qiro-process-section {
    padding: 45px 14px;
  }

  .qiro-process-pill {
    min-height: 32px;
    font-size: 11px;
  }

  .qiro-process-title {
    font-size: 30px;
    letter-spacing: 0;
  }

  .qiro-process-right p {
    font-size: 14px;
  }

  .qiro-process-card {
    padding: 18px;
    border-radius: 16px;
  }

  .qiro-process-icon {
    width: 46px;
    height: 46px;
    font-size: 16px;
    margin-bottom: 16px;
  }

  .qiro-process-step {
    font-size: 11px;
    margin-bottom: 14px;
  }

  .qiro-process-card h3 {
    font-size: 18px;
  }

  .qiro-process-card p {
    font-size: 13px;
    line-height: 1.6;
  }

  .qiro-process-glow {
    width: 200px;
    height: 90px;
    filter: blur(35px);
  }

}