:root {
  /* Elite Design System Tokens (V5) */
  --primary-blue: #2563eb;
  --primary-indigo: #4f46e5;
  --accent-cyan: #06b6d4;
  --accent-purple: #7c3aed;

  --text-main: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;

  --bg-main: #ffffff;
  --bg-surface: #f8fafc;
  --bg-glass: rgba(255, 255, 255, 0.85);

  --border-light: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(37, 99, 235, 0.16);

  --shadow-premium: 0 20px 50px -12px rgba(15, 23, 42, 0.1);
  --shadow-hover: 0 30px 60px -15px rgba(37, 99, 235, 0.15);

  --radius-xl: 32px;
  --radius-lg: 20px;
  --radius-md: 12px;

  --transition-premium: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  transition: var(--transition-premium);
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-main);
  color: var(--text-body);
  line-height: 1.6;
}

section {
  padding: 12rem 9%;
  position: relative;
}
html::-webkit-scrollbar {
  width: 0.8rem;
}
html::-webkit-scrollbar-track {
  background: rgb(235, 202, 245);
}
html::-webkit-scrollbar-thumb {
  background: #420177;
}

/* pre loader start */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background: #e6eff1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.loader-container.fade-out {
  top: -120%;
}
/* pre loader end */

/* navbar starts */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 8%;
  height: 7.5rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
section {
  min-height: auto;
  padding: 2rem 9%;
}
.heading {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: rgb(32, 32, 32);
  font-weight: 800;
  text-align: center;
}
.heading span {
  color: rgb(115, 3, 167);
}
header .logo {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  text-decoration: none;
  color: #0e2431;
  letter-spacing: -1px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
header .logo span {
  color: transparent;
  background: linear-gradient(135deg, #2506ad, #ff7b00);
  -webkit-background-clip: text;
  background-clip: text;
  margin-left: 2px;
  font-weight: 400;
}
header .logo i {
  font-size: 2.2rem;
}
header .logo:hover {
  opacity: 0.8;
}

header .navbar {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}
header .navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8fafc;
  padding: 0.6rem 1.2rem;
  border-radius: 5rem;
  border: 1px solid #e2e8f0;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.02);
}
header .navbar li {
  margin: 0 0.5rem;
}
header .navbar ul li a {
  font-size: 1.45rem;
  color: #4a5568;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02rem;
  transition: all 0.3s ease;
  padding: 0.8rem 1.6rem;
  border-radius: 5rem;
  display: inline-block;
}
header .navbar ul li a.active,
header .navbar ul li a:hover {
  color: #2506ad;
  background: #e0e7ff;
}

.mobile-only {
  display: none !important;
}

.header-right {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.btn-contact {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff !important;
  padding: 1rem 2.4rem !important;
  border-radius: 5rem !important;
  font-weight: 700 !important;
  font-size: 1.45rem !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
  display: inline-block;
  white-space: nowrap;
}
.btn-contact i {
  margin-left: 0.5rem;
  font-size: 1.2rem;
  transition: 0.3s ease;
}
.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
  background: linear-gradient(135deg, #1d4ed8, #4338ca);
}
.btn-contact:hover i {
  transform: translateX(4px);
}

/* navbar ends */

/* hamburger icon starts*/
#menu {
  font-size: 3rem;
  cursor: pointer;
  color: rgb(24, 2, 63);
  display: none;
}
@media (max-width: 991px) {
  header {
    padding: 1.5rem 5%;
  }
}
@media (max-width: 768px) {
  #menu {
    display: block;
  }
  .header-right {
    display: none;
  }
  .mobile-only {
    display: block !important;
  }
  header .navbar {
    position: fixed;
    top: 7.5rem;
    right: -120%;
    width: 280px;
    height: 100vh;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid rgba(226, 232, 240, 0.8);
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
  }
  header .navbar ul {
    flex-flow: column;
    padding: 2rem 1rem;
    align-items: flex-start;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
  }
  header .navbar ul li {
    text-align: left;
    width: 100%;
    margin: 0.5rem 0;
    border-radius: 0.5rem;
  }
  header .navbar ul li a {
    display: block;
    padding: 1.2rem 2rem;
    text-align: left;
    color: #1e293b;
    font-size: 1.6rem;
    font-weight: 700;
    width: 100%;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }
  header .navbar ul li a.active,
  header .navbar ul li a:hover {
    padding: 1.2rem 2rem;
    color: #2506ad;
    border-radius: 0;
    background: rgba(37, 6, 173, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }
  .fa-times {
    transform: rotate(90deg);
  }
  header .navbar.nav-toggle {
    right: 0;
  }
}
/* hamburger icon ends */

/* hero section starts*/
.home {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  min-height: 100vh;
  align-items: center;
}
.home #particles-js {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.home .content {
  flex: 1 1 40rem;
  padding-top: 1rem;
  z-index: 1;
}
@property --hero-ring-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.home .image {
  flex: 1 1 42rem;
  z-index: 1;
  position: relative;
  display: flex;
  justify-content: center;
  padding: 1.6rem;
  isolation: isolate;
  --hero-img-width: min(84%, 62rem);
  --hero-ring-angle: 0deg;
}
.home .image img {
  position: relative;
  z-index: 2;
  width: var(--hero-img-width);
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 0.45rem solid rgba(255, 255, 255, 0.75);
  box-shadow:
    0 2.2rem 4.5rem rgba(0, 32, 87, 0.2),
    0 0.8rem 1.8rem rgba(0, 0, 0, 0.18),
    inset 0 0 3rem rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.home .image img:hover {
  transform: translateY(-0.6rem) scale(1.015);
  box-shadow:
    0 2.8rem 5.5rem rgba(0, 32, 87, 0.28),
    0 1.2rem 2.6rem rgba(0, 0, 0, 0.22),
    inset 0 0 3.5rem rgba(255, 255, 255, 0.38);
}
.home .image::before,
.home .image::after {
  content: "";
  position: absolute;
  width: var(--hero-img-width);
  aspect-ratio: 1.55 / 1;
  border-radius: 50%;
  pointer-events: none;
}
.home .image::before {
  top: 50%;
  left: 50%;
  z-index: 4;
  padding: 0.45rem;
  background: conic-gradient(
    from var(--hero-ring-angle),
    #00d9ff,
    #2506ad,
    #ff7b00,
    #f000b8,
    #00d9ff
  );
  filter: drop-shadow(0 0 0.55rem rgba(0, 217, 255, 0.28));
  transform: translate(-50%, -50%);
  animation: hero-border-spin 6s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.home .image::after {
  top: 50%;
  left: 50%;
  z-index: 3;
  background: linear-gradient(
    110deg,
    transparent 0%,
    transparent 34%,
    rgba(255, 255, 255, 0.1) 42%,
    rgba(255, 255, 255, 0.72) 49%,
    rgba(255, 255, 255, 0.14) 57%,
    transparent 66%,
    transparent 100%
  );
  background-size: 240% 100%;
  background-position: 160% 0;
  mix-blend-mode: screen;
  opacity: 0.86;
  transform: translate(-50%, -50%);
  animation: hero-light-sweep 4.2s ease-in-out infinite;
}

@keyframes hero-border-spin {
  to {
    --hero-ring-angle: 360deg;
  }
}

@keyframes hero-light-sweep {
  0%,
  100% {
    background-position: 160% 0;
    opacity: 0;
  }
  18% {
    opacity: 0.82;
  }
  58% {
    background-position: -80% 0;
    opacity: 0.82;
  }
  76% {
    background-position: -80% 0;
    opacity: 0;
  }
}
.home .content h2 {
  font-size: clamp(2.8rem, 8vw, 6.2rem);
  font-weight: 800;
  color: #0b172a;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.home .content h2 span {
  color: #2563eb;
}
.home .content p {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: #475569;
  font-weight: 500;
  padding: 2.5rem 0;
  line-height: 1.6;
  max-width: 65rem;
}
.home .content p span {
  color: #2563eb;
  font-weight: 700;
}
.home .btn {
  margin-top: 2rem;
  display: inline-block;
  position: relative;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: var(--radius-button, 4em);
  transition: var(--transition-premium, 0.5s);
  color: #fff;
  background: var(--gradient-primary, #2563eb);
  box-shadow: var(--shadow-premium, 0px 5px 18px rgba(48, 68, 247, 0.6));
  font-family: "Nunito", sans-serif;
}
.home .btn span {
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
}
.home .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.home .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover, 0px 8px 25px rgba(48, 68, 247, 0.8));
}
.home .btn:hover i {
  transform: translateX(5px);
}
/* social icons start */
.socials {
  position: relative;
  margin-top: 8rem;
}
.socials .social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.socials .social-icons li {
  display: inline-block;
  margin-bottom: 14px;
}
.social-icons a {
  font-size: 2rem;
  display: inline-block;
  line-height: 44px;
  color: #00d9ff;
  background-color: #09011b;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
}
.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #fff;
  background-color: #0685da;
}
.social-icons a.github:hover {
  background-color: #0e0e0e;
}
.social-icons a.twitter:hover {
  background-color: #00aced;
}
.social-icons a.linkedin:hover {
  background-color: #007bb6;
}
.social-icons a.dev:hover {
  background-color: #070707;
}
.social-icons a.instagram:hover {
  background-color: #ee00da;
}
/* social icons end */

/* hero media queries starts*/
@media (max-width: 1100px) {
  .home {
    gap: 0;
  }
  .home .image {
    transform: translateX(-1rem);
    --hero-img-width: min(82%, 52rem);
  }
}
@media (max-width: 450px) {
  .home {
    align-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    min-height: auto;
    padding-top: 9rem;
  }
  .home .btn {
    margin: 2.5rem 0;
  }
  .socials {
    margin-top: 2rem;
  }
  .home .image {
    flex: 0 0 auto;
    width: 100%;
    min-height: 25rem;
    transform: none;
    order: -1;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem 0 0;
    --hero-img-width: min(92vw, 38rem);
  }
  .home .image img {
    margin-top: 0;
  }
  .home .content {
    width: 100%;
    flex: 0 0 auto;
    padding-top: 1rem;
  }
  .home .content p {
    font-size: 2rem;
  }
  .home .content p span {
    font-size: 2rem;
  }
  .home .content h2 {
    font-size: 3.5rem;
  }
  .home .content h2 span {
    font-size: 3.5rem;
  }
}
/* hero media queries ends*/
/* hero section end */
/* hero media queries ends*/
/* hero section end */

/* about section starts */
.about {
  background: #fdfdfd;
  position: relative;
}
.about::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(37, 6, 173, 0.03) 0%, transparent 20%),
              radial-gradient(circle at 90% 80%, rgba(255, 123, 0, 0.04) 0%, transparent 20%);
  z-index: 0;
}
.about .heading, .about .row {
  position: relative;
  z-index: 1;
}
.about .row {
  display: grid;
  grid-template-columns: minmax(28rem, 34rem) minmax(0, 1fr);
  align-items: center;
  gap: 4rem;
  max-width: 118rem;
  padding: 3.2rem;
  margin: 3rem auto 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 3rem;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.04);
}
.about .row .image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 100%;
}
.about .row .image::before {
  content: "";
  position: absolute;
  inset: 1.8rem;
  border-radius: 2.8rem;
  background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.16), transparent 44%);
  filter: blur(2.2rem);
  opacity: 0.85;
}
.about .row .image img {
  width: 100%;
  max-width: 31rem;
  aspect-ratio: 0.84;
  object-fit: cover;
  border-radius: 2.6rem;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: 4px solid #fff;
  position: relative;
  z-index: 2;
}
.about .row .image img:hover {
  transform: translateY(-1rem);
  box-shadow: 0 2.5rem 5rem rgba(0, 0, 0, 0.15);
}
.about .row .content {
  padding: 0.6rem 0;
}
.about .row .content h3 {
  color: #0b172a;
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.about .row .content .tag {
  display: inline-flex;
  align-items: center;
  font-size: 1.2rem;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
  font-weight: 800;
  padding: 0.6rem 1.4rem;
  border-radius: 5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.about .row .content > p {
  font-size: 1.6rem;
  max-width: 72rem;
  margin-top: 2.2rem;
  line-height: 1.7;
  color: #475569;
  text-transform: none;
}
.about .row .content .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2.2rem;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
}
.about .row .content .box-container .box {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}
.about .row .content .box-container .box p {
  text-transform: none;
  background: #fff;
  min-height: 6rem;
  padding: 1.35rem 1.5rem;
  border-radius: 1.4rem;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: #2d3748;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
  transition: 0.3s;
}
.about .row .content .box-container .box p:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-color: #cbd5e0;
}
.about .row .content .box-container .box p i {
  color: #2506ad;
  font-size: 1.8rem;
  margin-right: 1.2rem;
  width: 2rem;
  text-align: center;
}
.about .row .content .box-container .box p span {
  color: #718096;
  font-weight: 500;
  margin-right: 0.5rem;
}
/* about media queries starts*/
@media screen and (max-width: 900px) {
  .about .row {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    padding: 2.4rem 1.8rem;
    border-radius: 2.2rem;
  }
  .about .row::before {
    width: 100%;
    height: 24rem;
  }
  .about .row .image {
    margin-top: 0;
  }
  .about .row .image img {
    max-width: 34rem;
  }
  .about .row .content {
    padding: 0;
  }
  .about .row .content h3 {
    font-size: 2.8rem;
  }
  .about .row .content .box-container .box {
    grid-template-columns: 1fr;
  }
}
/* about media queries ends*/
/* about section ends */

/* skills section starts */
.skills {
  min-height: 90vh;
  background: linear-gradient(to bottom, #57059e, #4a00e0);
}
.skills h2 {
  color: #fff;
}
.skills .heading span {
  color: rgb(255, 230, 0);
}
.skills .container {
  background: rgba(0, 0, 22, 0.4);
  color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  width: 90%;
  margin: auto;
  margin-top: 2rem;
}
.skills .container .row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  flex-wrap: wrap;
  gap: 1.8rem;
}
.skills .container .bar {
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 22, 0.9);
  transition: 0.2s;
}
.skills .container .bar:hover {
  box-shadow: 0 8px 10px rgba(0, 2, 68, 0.8) !important;
  background-color: rgba(0, 0, 0, 0.9) !important;
}
.skills .container .bar .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.skills .container .bar .info i {
  font-size: 4rem;
}
.skills .container .bar .info span {
  font-size: 2rem;
  font-weight: 500;
  font-family: "Poppins";
  margin-left: 0.5rem;
}
/* skills media queries starts*/
@media screen and (max-width: 600px) {
  .skills .container {
    padding: 0;
    margin: 0;
  }
  .skills .container .row {
    grid-template-columns: repeat(2, 1fr);
    margin: 1rem;
    padding: 2rem 0.2rem 2rem 0.2rem;
    gap: 1rem;
  }
  .skills .container {
    margin-top: 5px;
    width: 100%;
  }
}
/* skills media queries ends*/
/* skills section ends */

/* education section starts */
.education {
  background: #f8fbff;
  min-height: 68vh;
  overflow: hidden;
  padding: 12rem 0 10rem;
}
.education .heading {
  color: #001f52;
}
.education .heading::after {
  content: "";
  display: block;
  width: 5.4rem;
  height: 0.35rem;
  border-radius: 999px;
  margin: 1rem auto 0;
  background: #22a652;
}
.education .qoute {
  font-size: 1.5rem;
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  max-width: 82rem;
  margin: 1.4rem auto 0;
  color: #64748b;
}
.education .box-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  width: 100%;
  margin-top: 6rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.education .box-container + .box-container {
  margin-top: 0.8rem;
}
.education .slider-track {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 2.4rem;
  width: max-content;
  padding: 1rem 2.4rem 2rem;
  animation: services-slide 115s linear infinite;
  will-change: transform;
}
.education .capability-slider-reverse .slider-track {
  animation-name: services-slide-reverse;
  animation-duration: 120s;
}
.education .box-container:hover .slider-track {
  animation-play-state: paused;
}
.education .box-container .box {
  display: flex;
  flex: 0 0 35rem;
  flex-direction: column;
  width: 35rem;
  min-height: 24rem;
  border: 0.1rem solid #dce6f3;
  border-radius: 1.6rem;
  box-shadow: 0 1.2rem 3rem rgba(15, 23, 42, 0.08);
  text-align: left;
  position: relative;
  margin-top: 0;
  overflow: hidden;
  transition: 0.3s ease;
  background: #ffffff;
}
.education .box-container .box:hover {
  transform: translateY(-0.35rem);
  box-shadow: 0 1.8rem 4rem rgba(15, 23, 42, 0.13);
}
.education .box-container .box .image {
  flex: 0 0 auto;
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 1;
  width: 100%;
  height: 10.5rem;
  border-radius: 0;
  padding: 0;
  background: #dbeafe;
  box-shadow: none;
}
.education .box-container .box img {
  object-fit: cover;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
  transition: transform 0.35s ease;
}
.education .box-container .box:hover img {
  transform: scale(1.06);
}
.education .box-container .box .content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  padding: 1.2rem 1.4rem 1.35rem;
  flex-wrap: nowrap;
  flex: 1 1 auto;
}
.education .box-container .box .content h3 {
  order: 1;
  font-size: 1.48rem;
  color: #012970;
  padding: 0;
  font-weight: 800;
  text-align: left;
  margin: 0;
}
.education .box-container .box .content p {
  order: 2;
  font-size: 1.02rem;
  margin: 0.55rem 0 0.85rem;
  text-align: left;
  color: #64748b;
  line-height: 1.35;
}
.education h4 {
  order: 3;
  font-size: 0.88rem;
  width: auto;
  color: #0b3a7a;
  background: #eef6ff;
  border: 0.1rem solid #d7e7fb;
  border-radius: 999px;
  text-align: left;
  margin: 0;
  padding: 0.48rem 0.72rem;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
}
.education h4::before {
  content: "Delivery: ";
  color: #18a058;
  letter-spacing: 0;
}

@keyframes services-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% + 100vw));
  }
}

@keyframes services-slide-reverse {
  from {
    transform: translateX(calc(-100% + 100vw));
  }
  to {
    transform: translateX(0);
  }
}

/* education media queries starts*/
@media screen and (max-width: 600px) {
  .education {
    padding-bottom: 4rem;
  }
  .education .box-container {
    margin-top: 2rem;
    mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  }
  .education .slider-track {
    gap: 1.4rem;
    padding-inline: 1.4rem;
    animation-duration: 90s;
  }
  .education .box-container .box {
    flex-direction: column;
    flex-basis: 25rem;
    width: 25rem;
    min-height: 23.5rem;
  }
  .education .box-container .box .image {
    left: auto;
    bottom: auto;
    width: 100%;
    height: 9.4rem;
  }
  .education .box-container .box img {
    width: 100%;
  }
  .education .box-container .box .content {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 1.05rem;
    flex-wrap: nowrap;
    flex: 0;
  }
  .education .box-container .box .content h3 {
    font-size: 1.24rem;
    margin-left: 0;
  }
  .education .box-container .box .content p {
    font-size: 0.95rem;
    line-height: 1.32;
  }
  .education h4 {
    font-size: 0.78rem;
  }
  .education .btns {
    margin-top: 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
    flex-wrap: wrap;
  }
}
/* education media queries ends*/
/* education section ends */

/* real projects section starts */
.client-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(59,130,246,0.10), transparent 32%),
    radial-gradient(circle at top right, rgba(124,58,237,0.08), transparent 35%),
    linear-gradient(180deg, #F8FBFF 0%, #EEF4FF 55%, #EAF1FF 100%);
}

.client-showcase-bg {
  position: absolute;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  pointer-events: none;
}

.client-showcase-bg-a {
  top: -12rem;
  left: -10rem;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.45), rgba(96, 165, 250, 0));
}

.client-showcase-bg-b {
  bottom: -14rem;
  right: -12rem;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.32), rgba(139, 92, 246, 0));
}

.client-showcase-head,
.client-showcase-grid {
  position: relative;
  z-index: 1;
}

.client-showcase-head {
  max-width: 90rem;
  margin: 0 auto;
  text-align: center;
}

.client-showcase-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.6rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: #2563EB;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}

.client-showcase-eyebrow::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #3B82F6, #8B5CF6);
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.35);
}

.client-showcase .qoute {
  max-width: 84rem;
  margin: 1.4rem auto 0;
}

.client-showcase-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.client-showcase-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 4rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: #475569;
  font-size: 1.28rem;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.client-showcase-trust i {
  color: #3B82F6;
}

.client-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 3.8rem;
}

.client-group {
  --group-accent: #3B82F6;
  --group-accent-soft: rgba(59, 130, 246, 0.14);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 2.2rem;
  border-radius: 2.4rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(248,250,252,0.92));
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: 0 14px 36px rgba(15,23,42,0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.client-group::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255,255,255,0.62), transparent 52%, rgba(255,255,255,0.28));
  pointer-events: none;
}

.client-group::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.45rem;
  height: 100%;
  background: linear-gradient(180deg, color-mix(in srgb, var(--group-accent) 72%, white), rgba(255,255,255,0));
  pointer-events: none;
}

.client-group:hover {
  transform: translateY(-0.7rem);
  border-color: rgba(59, 130, 246, 0.14);
  box-shadow: 0 22px 52px rgba(15,23,42,0.10), 0 0 0 1px rgba(96, 165, 250, 0.08);
}

.client-group.accent-blue,
.client-project-card.accent-blue {
  --group-accent: #06B6D4;
  --group-accent-soft: rgba(6, 182, 212, 0.16);
}

.client-group.accent-purple,
.client-project-card.accent-purple {
  --group-accent: #7C3AED;
  --group-accent-soft: rgba(124, 58, 237, 0.16);
}

.client-group.accent-rose,
.client-project-card.accent-rose {
  --group-accent: #F97316;
  --group-accent-soft: rgba(249, 115, 22, 0.16);
}

.client-group.accent-amber,
.client-project-card.accent-amber {
  --group-accent: #F59E0B;
  --group-accent-soft: rgba(245, 158, 11, 0.16);
}

.client-group.accent-green,
.client-project-card.accent-green {
  --group-accent: #10B981;
  --group-accent-soft: rgba(16, 185, 129, 0.16);
}

.client-project-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.25rem;
}

.client-project-industry {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-width: 0;
}

.client-group-head {
  display: flex;
  align-items: flex-start;
  gap: 1.3rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.client-group-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  flex: 0 0 4.8rem;
  border-radius: 1.7rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.92), var(--group-accent-soft));
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: 0 12px 24px rgba(15,23,42,0.06);
  color: var(--group-accent);
  font-size: 1.8rem;
}

.client-group-label {
  color: var(--group-accent);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.client-group-head h3 {
  margin-top: 0.6rem;
  color: #0B172A;
  font-size: 1.72rem;
  line-height: 1.42;
  max-width: 34rem;
}

.client-project-trust,
.client-card-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(15,23,42,0.06);
  color: #64748B;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.client-card-badge {
  color: var(--group-accent);
  background: color-mix(in srgb, white 78%, var(--group-accent) 22%);
}

.client-project-card {
  --group-accent: #3B82F6;
  --group-accent-soft: rgba(59, 130, 246, 0.14);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 27rem;
  padding: 1.8rem;
  border-radius: 2.2rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.98)),
    rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: 0 16px 34px rgba(15,23,42,0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.client-project-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 0.45rem;
  background: linear-gradient(90deg, var(--group-accent), color-mix(in srgb, var(--group-accent) 30%, white));
  opacity: 0.85;
}

.client-project-card::after {
  content: "";
  position: absolute;
  right: -2rem;
  top: -2rem;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--group-accent-soft), transparent 70%);
  filter: blur(12px);
  opacity: 0.6;
  pointer-events: none;
}

.client-project-card:hover {
  transform: translateY(-0.55rem);
  border-color: color-mix(in srgb, var(--group-accent) 28%, rgba(15,23,42,0.08));
  box-shadow: 0 22px 42px rgba(15,23,42,0.1), 0 0 0 1px color-mix(in srgb, var(--group-accent) 14%, white);
}

.client-browser {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4rem;
  padding: 0 1.1rem;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(241,245,249,0.92));
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.client-browser-dots {
  display: inline-flex;
  gap: 0.4rem;
}

.client-browser-dots i {
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.18);
}

.client-browser-dots i:first-child {
  background: rgba(239, 68, 68, 0.55);
}

.client-browser-dots i:nth-child(2) {
  background: rgba(245, 158, 11, 0.55);
}

.client-browser-dots i:last-child {
  background: rgba(16, 185, 129, 0.55);
}

.client-browser-url {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #334155;
  font-size: 1.15rem;
  font-weight: 800;
}

.client-browser-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--group-accent);
  font-size: 1.08rem;
  font-weight: 800;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(15,23,42,0.05);
}

.client-browser-status::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.client-project-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.45rem 0 1.2rem;
  flex: 1 1 auto;
}

.client-project-body h4 {
  color: #0B172A;
  font-size: 1.86rem;
  line-height: 1.24;
  letter-spacing: -0.02em;
}

.client-project-body p {
  color: #334155;
  font-size: 1.3rem;
  line-height: 1.78;
  text-transform: none;
}

.client-project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: auto;
}

.client-project-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.52rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,42,0.06);
  color: #475569;
  font-size: 1rem;
  font-weight: 700;
}

.client-project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  align-self: flex-start;
  min-height: 4.6rem;
  padding: 0 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563EB, #7C3AED);
  color: #fff;
  font-size: 1.22rem;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.client-project-link:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 18px 34px rgba(124, 58, 237, 0.20);
}

.client-project-link span {
  line-height: 1;
}

.client-project-link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  font-size: 1.05rem;
  background: rgba(255,255,255,0.16);
}

@media screen and (max-width: 1180px) {
  .client-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 760px) {
  .client-showcase {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .client-showcase-grid {
    grid-template-columns: 1fr;
  }

  .client-project-card {
    min-height: 0;
    padding: 1.5rem;
  }

  .client-project-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .client-project-body h4 {
    font-size: 1.72rem;
  }

  .client-project-link {
    align-self: stretch;
    justify-content: center;
  }
}
/* real projects section ends */

/* work section starts */
.work {
  /* background: #010124; */
  background: linear-gradient(to bottom, #000031, #00002c);
  min-height: auto;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.work h2 {
  color: #fff;
  padding: 1rem;
}
.work .heading span {
  color: rgb(255, 230, 0);
}
.work .box-container {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  width: 100%;
  margin: 1.6rem auto 2rem;
  overflow: hidden;
  min-height: 38rem;
  visibility: visible !important;
}
.work .project-slider {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.work .project-track {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 1.2rem;
  width: max-content;
  padding: 0.3rem 1.6rem 0.7rem;
  animation: projects-slide 80s linear infinite;
  will-change: transform;
}
.work .project-slider-reverse .project-track {
  animation-name: projects-slide-reverse;
  animation-duration: 86s;
}
.work .box-container:hover .project-track {
  animation-play-state: paused;
}
.work .project-load-error {
  width: min(68rem, calc(100% - 2rem));
  margin: 1rem auto;
  padding: 1.6rem 2rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.28);
  border-radius: 0.8rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 1.35rem;
  font-weight: 700;
}
@keyframes projects-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes projects-slide-reverse {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.work .box-container .box {
  flex: 0 0 25rem;
  width: 25rem;
  border-radius: 0.9rem;
  box-shadow: 0 0.9rem 2rem rgba(0, 0, 0, 0.18);
  position: relative;
  overflow: hidden;
  height: 12rem;
  background: #07111f;
}
.work .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.work .box-container .box .content {
  height: 100%;
  width: 100%;
  position: absolute;
  top: calc(100% - 4.2rem);
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
}
.work .box-container .box .content .tag {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 4.2rem;
  width: 100%;
  padding-left: 1rem;
  background: #ffd900;
}

.work .box-container .box .content .tag h3 {
  font-size: 1.12rem;
  line-height: 1.2;
  padding-right: 0.8rem;
}
.work .box-container .box:hover .content,
.work .box-container .box:focus-within .content {
  top: calc(100% - 4.2rem);
}
.work .desc {
  margin: 0.8rem;
  display: none;
  flex-direction: column;
  justify-content: center;
}
.work .desc p {
  font-size: 0.92rem;
  line-height: 1.32;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.work .box-container .box:hover .desc p {
  -webkit-line-clamp: initial;
}
.work .desc .btns {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 0.8rem;
  gap: 0.55rem;
}
.work .desc .btns .btn {
  line-height: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.9rem 0.85rem;
  border-radius: 0.5rem;
  font-size: 0.92rem;
  color: #fff;
  background: rgb(12, 12, 12);
  margin-right: 0;
}
.work .desc .btns .btn:hover {
  background: #310ae0f5;
}
.work .viewall {
  display: flex;
  justify-content: center;
  margin-top: 0.8rem;
}
.work .viewall .btn {
  position: relative;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 0.5em;
  transition: 0.5s;
  color: rgb(255, 255, 255);
  font-weight: 700;
  border: 2px solid #fff;
  box-shadow: 0px 5px 10px rgba(65, 84, 241, 0.4);
  text-align: center;
}
.work .viewall .btn span {
  font-weight: 600;
  font-size: 1.7rem;
  font-family: "Nunito", sans-serif;
}
.work .viewall .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.work .viewall .btn:hover {
  background: #fff;
  color: #000;
}
.work .viewall .btn:hover i {
  transform: translateX(5px);
}
@media screen and (max-width: 1280px) {
  .work .box-container {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .work .box-container .box {
    flex-basis: 23rem;
    width: 23rem;
  }
}
@media screen and (max-width: 760px) {
  .work .box-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    width: min(100%, 52rem);
    padding: 0 1.2rem;
    overflow: visible;
  }
  .work .project-slider {
    display: contents;
    overflow: visible;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .work .project-track {
    display: contents;
    width: auto;
    padding: 0;
    animation: none;
  }
  .work .project-duplicate {
    display: none;
  }
  .work .box-container .box {
    flex: none;
    width: 100%;
    height: 13rem;
  }
  .work .box-container .box:hover .content,
  .work .box-container .box:focus-within .content {
    top: calc(100% - 4.2rem);
  }
  .work .box-container .box .desc {
    display: none;
  }
}
@media screen and (max-width: 420px) {
  .work .heading {
    font-size: 2.35rem !important;
    line-height: 1.15;
    white-space: normal;
  }
}
@media screen and (max-width: 480px) {
  .work .box-container {
    width: 100%;
    gap: 0.85rem;
  }
  .work .box-container .box {
    height: 11.5rem;
  }
  .work .box-container .box .content .tag {
    height: 3.7rem;
    padding-left: 0.7rem;
  }
  .work .box-container .box .content {
    top: calc(100% - 3.7rem);
  }
  .work .box-container .box:hover .content,
  .work .box-container .box:focus-within .content {
    top: calc(100% - 3.7rem);
  }
  .work .box-container .box .content .tag h3 {
    font-size: 0.95rem;
  }
}
/* work section ends */

/* experience section starts */
.experience .timeline {
  position: relative;
  max-width: 1200px;
  margin: 4.5rem auto 0;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
.experience .timeline::after {
  content: "";
  position: absolute;
  width: 2px;
  background: #cbd5e1;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
  z-index: -2;
}
.experience .container {
  padding: 8px 45px;
  position: relative;
  background-color: inherit;
  width: 50%;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
/*circles on timeline*/
.experience .container::after {
  content: "\f0b1";
  position: absolute;
  width: 3.5rem;
  height: 3.5rem;
  right: -1.75rem;
  background-color: #fff;
  border: 2px solid #2506ad;
  top: 2rem;
  border-radius: 50%;
  z-index: 100;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2506ad;
  font-family: "Font Awesome\ 5 Free";
  box-shadow: 0 0.4rem 1rem rgba(37, 6, 173, 0.15);
  transition: 0.3s;
}
.experience .container:hover::after {
  background-color: #2506ad;
  color: #fff;
  transform: scale(1.1);
}
.experience .left {
  left: 0;
}
.experience .right {
  left: 50%;
}
.experience .right::after {
  left: -1.75rem;
}
/* hide old arrows for clean modern look */
.experience .left::before,
.experience .right::before {
  display: none;
}
.experience .content {
  background-color: #ffffff;
  position: relative;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1.5rem rgba(15, 23, 42, 0.05);
  border: 1px solid #e2e8f0;
  border-left: 0.5rem solid #2506ad;
  padding: 1.5rem 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.experience .content:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 1rem 2.5rem rgba(15, 23, 42, 0.1);
  border-color: #cbd5e0;
}
.experience .content .tag {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.experience .content .tag h2 {
  font-size: 1.6rem;
  color: #2506ad;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.experience .content .desc h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}
.experience .content .desc p {
  font-size: 1.25rem;
  color: #64748b;
  line-height: 1.5;
}
/* view all button */
.morebtn {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}
.morebtn .btn {
  position: relative;
  padding: 1.5rem 3.5rem;
  border-radius: 5rem;
  transition: 0.4s;
  color: #fff;
  background: linear-gradient(135deg, #2506ad, #011aff);
  box-shadow: 0px 8px 20px rgba(37, 6, 173, 0.3);
  text-align: center;
  font-family: "Nunito", sans-serif;
  overflow: hidden;
  z-index: 1;
}
.morebtn .btn::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, #ff7b00, #fc8c05);
  z-index: -1;
  transition: opacity 0.4s;
  opacity: 0;
}
.morebtn .btn span {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.05rem;
}
.morebtn .btn i {
  margin-left: 0.8rem;
  font-size: 1.3rem;
  transition: 0.4s;
}
.morebtn .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0px 12px 25px rgba(255, 123, 0, 0.3);
}
.morebtn .btn:hover::before {
  opacity: 1;
}
.morebtn .btn:hover i {
  transform: translateX(5px);
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  .experience {
    min-height: auto;
    overflow-x: hidden;
  }
  .experience .timeline {
    margin-top: 1.5rem;
    padding: 0 1.5rem;
  }
  .experience .timeline::after {
    left: 3rem;
  }
  .experience .container {
    width: 100%;
    left: 0 !important;
    padding: 1.5rem 0 1.5rem 4rem;
  }
  .experience .container::after {
    left: 1rem;
    right: auto;
    width: 3.6rem;
    height: 3.6rem;
    font-size: 1.4rem;
    top: 4rem;
  }
  .experience .left::after,
  .experience .right::after {
    left: 1rem;
  }
  .experience .content {
    width: 100%;
    padding: 2rem;
  }
  .experience .content .tag h2 {
    font-size: 1.6rem;
  }
  .experience .content .desc h3 {
    font-size: 1.4rem;
  }
  .experience .content .desc p {
    font-size: 1.3rem;
  }
  .morebtn {
    margin-top: 3rem;
  }
}
/* experience media queries ends */
/* experience section ends */

/* contact section starts */
.contact {
  background: #e5ecfb;
  min-height: 60vh;
}
.contact .container {
  max-width: 1050px;
  width: 100%;
  background: #fff;
  border-radius: 1.5rem;
  margin: 2rem auto;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
.contact .container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 3rem;
}
.contact .content .image-box {
  max-width: 36rem;
  width: 100%;
  margin-left: 0;
  flex: 0 0 36rem;
}
.contact .content .image-box img {
  width: 100%;
  height: auto;
  position: relative;
}
.contact .content form {
  width: 100%;
  margin-right: 0;
  flex: 1 1 auto;
}
.contact-direct-mail {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 1rem 1rem;
  padding: 1rem 1.2rem;
  border-radius: 0.8rem;
  background: #eef4ff;
  color: #011aff;
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: none;
}
.contact-direct-mail i {
  position: static;
  color: #011aff;
  transform: none;
  pointer-events: auto;
}
form .form-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-group .field {
  height: 50px;
  display: flex;
  position: relative;
  margin: 1rem;
  width: 100%;
}
form i {
  position: absolute;
  top: 50%;
  left: 18px;
  color: rgb(51, 51, 51);
  font-size: 17px;
  pointer-events: none;
  transform: translateY(-50%);
}
form .field input,
form .message textarea {
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 16px 0 48px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  border-radius: 1.8rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: #f8fbff;
}
.field input::placeholder,
.message textarea::placeholder {
  color: rgb(51, 51, 51);
}
.field input:focus,
.message textarea:focus {
  padding-left: 47px;
  border: 1px solid rgba(37, 99, 235, 0.35);
}
.field input:focus ~ i,
.message textarea:focus ~ i {
  color: rgb(115, 3, 167);
}
form .message {
  position: relative;
  margin: 1rem;
  width: 100%;
}
form .message i {
  top: 25px;
  font-size: 20px;
  left: 15px;
}
form .message textarea {
  min-height: 130px;
  max-height: 230px;
  max-width: 100%;
  min-width: 100%;
  padding: 12px 20px 0 48px;
}
form .message textarea::-webkit-scrollbar {
  width: 0px;
}
form .button-area {
  display: flex;
  float: right;
  flex-direction: row-reverse;
}

@media (max-width: 900px) {
  .contact .container .content {
    flex-direction: column;
    align-items: stretch;
  }

  .contact .content .image-box {
    max-width: 28rem;
    flex: 0 0 auto;
    margin: 0 auto;
  }
}
.button-area button {
  color: #fff;
  border: none;
  outline: none;
  font-size: 1.8rem;
  cursor: pointer;
  border-radius: 5px;
  padding: 13px 25px;
  background: #2506ad;
  box-shadow: 0px 5px 10px rgba(48, 68, 247, 0.6);
  transition: 0.3s ease;
  font-family: "Nunito", sans-serif;
}
.button-area button:hover {
  background: #421cecf5;
}
.button-area span {
  font-size: 17px;
  padding: 1rem;
  display: none;
}
.button-area button i {
  position: relative;
  top: 6px;
  left: 2px;
  font-size: 1.5rem;
  transition: 0.3s;
  color: #fff;
}
.button-area button:hover i {
  left: 8px;
}
/* contact section media queries starts */
@media (max-width: 900px) {
  .contact {
    min-height: 70vh;
  }
  .contact .container {
    margin: 3rem 0 2rem 0;
  }
  .contact .container .content {
    padding: 18px 12px;
  }
  .contact .content .image-box {
    display: none;
  }
  .contact .content form {
    width: 100%;
    margin-right: 2rem;
  }
}
/* contact section media queries ends */
/* contact section ends */

/* footer section starts */
.footer {
  position: relative;
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  padding: 8rem 9% 2rem;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(37, 6, 173, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.footer .box-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.footer .box-container .box {
  flex: 1 1 25rem;
  margin: 1rem 0;
}
.footer .box-container .box h3 {
  font-size: 2.4rem;
  color: #fff;
  padding-bottom: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  position: relative;
}
.footer .box-container .box h3::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0.8rem;
  width: 4rem; height: 3px;
  background: linear-gradient(90deg, #2506ad, #ff7b00);
  border-radius: 5px;
}
.footer .box-container .box p {
  font-size: 1.5rem;
  color: #94a3b8;
  padding: 0.8rem 0;
  line-height: 1.8;
  text-transform: none;
}
.footer .box-container .box p i {
  padding-right: 1.2rem;
  color: #ff7b00;
  font-size: 1.6rem;
}
.footer .box-container .box a {
  font-size: 1.5rem;
  color: #cbd5e1;
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.footer .box-container .box a i {
  margin-right: 1rem;
  color: #3b82f6;
  transition: 0.3s ease;
}
.footer .box-container .box a:hover {
  color: #fff;
  transform: translateX(8px);
}
.footer .box-container .box a:hover i {
  color: #ff7b00;
}
.footer .box-container .box .share {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem 0;
  gap: 1.5rem;
}
.footer .box-container .box .share a {
  height: 4.5rem;
  width: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.8rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
}
.footer .box-container .box .share a:hover {
  background: linear-gradient(135deg, #2506ad, #ff7b00);
  transform: translateY(-5px) rotate(360deg);
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(255, 123, 0, 0.2);
  color: #fff;
}
.footer .credit {
  padding: 2.5rem 0 1rem;
  margin-top: 3rem;
  text-align: center;
  font-size: 1.5rem;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}
.footer .credit a {
  color: #ff7b00;
  transition: 0.3s;
}
.footer .credit a:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(255,123,0,0.5);
}
.footer .fa {
  color: #ef4444;
  margin: 0 0.4rem;
  font-size: 1.6rem;
  animation: pound 1s infinite alternate ease-in-out;
}
@-webkit-keyframes pound {
  0% { transform: scale(1); }
  100% { transform: scale(1.2); }
}
@keyframes pound {
  0% { transform: scale(1); }
  100% { transform: scale(1.2); }
}
@media (max-width: 450px) {
  .footer {
    padding: 5rem 2rem 2rem;
  }
  .footer .box-container .box {
    margin: 1rem 0;
  }
}
/* footer section ends */

/* common media queries starts*/
@media (max-width: 450px) {
  html {
    font-size: 55%;
  }
  body {
    padding-right: 0;
    overflow-x: hidden;
  }
  section {
    padding: 3rem 2rem;
  }
  .heading {
    font-size: 2.8rem;
  }
  p {
    font-size: 1.5rem !important;
  }
  .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
/* common media queries ends*/

/* scroll top starts */
#scroll-top {
  position: fixed;
  top: -140%;
  right: 2rem;
  padding: 0;
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  background: linear-gradient(135deg, #2506ad, #ff7b00);
  color: #fff;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
  box-shadow: 0 8px 25px rgba(37, 6, 173, 0.4);
  cursor: pointer;
}
#scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(255, 123, 0, 0.5);
  background: linear-gradient(135deg, #ff7b00, #2506ad);
}
#scroll-top.active {
  top: calc(100% - 8rem);
}
/* scroll top ends */

/* ==================================================
   HOMEPAGE PREMIUM REFINEMENT
   ================================================== */

:root {
  --brand-bg-0: #07111f;
  --brand-bg-1: #0b172a;
  --brand-bg-2: #101c35;
  --brand-bg-3: #081120;
  --brand-surface: rgba(17, 28, 53, 0.72);
  --brand-surface-strong: rgba(11, 23, 42, 0.9);
  --brand-surface-soft: rgba(17, 28, 53, 0.56);
  --brand-border: rgba(148, 163, 184, 0.16);
  --brand-border-strong: rgba(96, 165, 250, 0.22);
  --brand-text: #f8fafc;
  --brand-body: #cbd5e1;
  --brand-muted: #94a3b8;
  --brand-blue: #2563eb;
  --brand-blue-2: #3b82f6;
  --brand-blue-3: #60a5fa;
  --brand-purple: #7c3aed;
  --brand-purple-2: #8b5cf6;
  --brand-cyan: #06b6d4;
  --brand-green: #10b981;
  --brand-shadow: 0 24px 80px rgba(2, 6, 23, 0.42);
}

body {
  background:
    radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.12), transparent 22%),
    radial-gradient(circle at 100% 10%, rgba(124, 58, 237, 0.11), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(6, 182, 212, 0.06), transparent 28%),
    linear-gradient(180deg, var(--brand-bg-0) 0%, var(--brand-bg-1) 34%, var(--brand-bg-2) 68%, var(--brand-bg-3) 100%);
  color: var(--brand-body);
  font-family: "Poppins", sans-serif;
}

html::-webkit-scrollbar-track {
  background: #0b1023;
}

html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--brand-blue-2), var(--brand-purple-2));
  border-radius: 999px;
}

*::selection {
  background: rgba(59, 130, 246, 0.36);
  color: #fff;
}

section {
  position: relative;
  padding: 7.5rem 9%;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 16rem;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(96, 165, 250, 0.05), transparent 60%);
  opacity: 0.22;
}

.heading {
  color: var(--brand-text);
  font-family: "Outfit", "Poppins", sans-serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.heading span {
  color: transparent;
  background: linear-gradient(120deg, var(--brand-blue-3), var(--brand-purple-2));
  -webkit-background-clip: text;
  background-clip: text;
}

.qoute {
  color: var(--brand-muted) !important;
}

header {
  height: 7rem;
  padding: 1.4rem 7%;
  background: rgba(5, 8, 22, 0.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  box-shadow: 0 10px 40px rgba(2, 6, 23, 0.18);
}

header .logo {
  color: var(--brand-text);
}

header .logo span {
  background: linear-gradient(135deg, var(--brand-blue-3), var(--brand-purple-2));
  -webkit-background-clip: text;
  background-clip: text;
}

header .navbar ul {
  background: rgba(15, 23, 42, 0.58);
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

header .navbar ul li a {
  color: var(--brand-body);
}

header .navbar ul li a.active,
header .navbar ul li a:hover {
  color: var(--brand-text);
  background: rgba(37, 99, 235, 0.2);
}

.btn-contact {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.22);
}

.btn-contact:hover {
  background: linear-gradient(135deg, var(--brand-blue-2), var(--brand-purple-2));
  box-shadow: 0 16px 36px rgba(59, 130, 246, 0.28);
}

.home {
  min-height: 100vh;
  padding-top: 11rem;
  background:
    radial-gradient(circle at 16% 20%, rgba(59, 130, 246, 0.16), transparent 22%),
    radial-gradient(circle at 84% 18%, rgba(124, 58, 237, 0.13), transparent 24%),
    radial-gradient(circle at 56% 74%, rgba(6, 182, 212, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.92), rgba(11, 23, 42, 0.74));
}

.home::before {
  background:
    linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(148, 163, 184, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 40%, black 42%, transparent 92%);
  opacity: 0.45;
}

.home .content {
  max-width: 62rem;
}

.home .content h2,
.home .content h2 span,
.home .content p,
.home .content p span {
  text-transform: none;
}

.home .content h2 {
  color: var(--brand-text);
  font-family: "Outfit", "Poppins", sans-serif;
  font-size: clamp(4.6rem, 7vw, 7.8rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.home .content h2 span {
  color: transparent;
  background: linear-gradient(125deg, var(--brand-blue-3), var(--brand-cyan), var(--brand-purple-2));
  -webkit-background-clip: text;
  background-clip: text;
}

.home .content p {
  margin-top: 2rem;
  color: var(--brand-body);
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  font-weight: 500;
  line-height: 1.55;
}

.home .content p span {
  color: var(--brand-blue-3);
}

.home .btn {
  margin-top: 3rem;
  padding: 1.7rem 3.2rem;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.24);
}

.home .btn:hover {
  background: linear-gradient(135deg, var(--brand-blue-2), var(--brand-purple-2));
}

.home .image {
  --hero-img-width: min(86%, 58rem);
}

.home .image img,
.home .image::before,
.home .image::after {
  border-radius: 3rem;
}

.home .image img {
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.55);
  box-shadow:
    0 30px 80px rgba(2, 6, 23, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home .image::before {
  padding: 0.2rem;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.95), rgba(124, 58, 237, 0.82));
  opacity: 0.9;
  filter: drop-shadow(0 0 2rem rgba(59, 130, 246, 0.24));
}

.home .image::after {
  background:
    linear-gradient(125deg, transparent 14%, rgba(255, 255, 255, 0.22) 38%, transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 42%);
  opacity: 0.8;
}

.social-icons a {
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.16);
  color: var(--brand-blue-3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
}

.about {
  background:
    radial-gradient(circle at 12% 26%, rgba(37, 99, 235, 0.07), transparent 18%),
    linear-gradient(180deg, rgba(11, 23, 42, 0.7), rgba(16, 28, 53, 0.58));
}

.about::before {
  background:
    radial-gradient(circle at 8% 20%, rgba(59, 130, 246, 0.08), transparent 20%),
    radial-gradient(circle at 90% 72%, rgba(124, 58, 237, 0.08), transparent 20%);
}

.about .row {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 251, 255, 0.9));
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.about .row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 36%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(96, 165, 250, 0.06), transparent 68%);
  pointer-events: none;
}

.about .row .image img {
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.1);
}

.about .row .content h3 {
  color: var(--light-heading);
  font-family: "Outfit", "Poppins", sans-serif;
}

.about .row .content .tag {
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: none;
  color: var(--light-blue);
}

.about .row .content > p {
  color: var(--light-body);
}

.about .row .content .box-container .box p {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--light-body);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.about .row .content .box-container .box p:hover {
  border-color: rgba(37, 99, 235, 0.14);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.about .row .content .box-container .box p i,
.about .row .content .box-container .box p span {
  color: var(--light-blue);
}

.skills {
  min-height: auto;
  background:
    radial-gradient(circle at 15% 18%, rgba(59, 130, 246, 0.1), transparent 22%),
    radial-gradient(circle at 85% 72%, rgba(124, 58, 237, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(11, 23, 42, 0.9), rgba(16, 28, 53, 0.88));
}

.skills h2 {
  color: var(--brand-text);
}

.skills .heading span {
  color: transparent;
  background: linear-gradient(120deg, var(--brand-blue-3), var(--brand-purple-2));
  -webkit-background-clip: text;
  background-clip: text;
}

.skills .container {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.68), rgba(11, 16, 35, 0.62));
  border: 1px solid var(--brand-border);
  border-radius: 2.4rem;
  padding: 2.4rem;
  box-shadow: var(--brand-shadow);
}

.skills .container .row {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.4rem;
}

.skills .container .bar {
  padding: 1.5rem 1rem 1.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: none;
}

.skills .container .bar:hover {
  transform: translateY(-0.4rem);
  border-color: rgba(96, 165, 250, 0.22);
  box-shadow: 0 20px 35px rgba(2, 6, 23, 0.22), 0 0 24px rgba(37, 99, 235, 0.1);
  background: rgba(255, 255, 255, 0.06) !important;
}

.skills .container .bar .info span {
  color: var(--brand-text);
  font-size: 1.65rem;
  font-weight: 600;
}

.education {
  background:
    radial-gradient(circle at 80% 14%, rgba(124, 58, 237, 0.08), transparent 18%),
    radial-gradient(circle at 18% 82%, rgba(37, 99, 235, 0.07), transparent 20%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.96), rgba(11, 23, 42, 0.94));
}

.education .heading,
.education .heading span {
  color: inherit;
}

.education .heading::after {
  background: linear-gradient(90deg, var(--brand-blue-3), var(--brand-cyan));
}

.education .box-container .box {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.82), rgba(11, 16, 35, 0.78));
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.26);
}

.education .box-container .box:hover {
  box-shadow: 0 26px 48px rgba(2, 6, 23, 0.3), 0 0 26px rgba(59, 130, 246, 0.08);
  border-color: rgba(96, 165, 250, 0.2);
}

.education .box-container .box .image {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.32), rgba(124, 58, 237, 0.26));
}

.education .box-container .box .image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5, 8, 22, 0.65) 100%);
}

.education .box-container .box .content h3 {
  color: var(--brand-text);
}

.education .box-container .box .content p {
  color: var(--brand-body);
}

.education h4 {
  background: rgba(37, 99, 235, 0.14);
  border-color: rgba(96, 165, 250, 0.16);
  color: #dbeafe;
}

.education h4::before {
  color: var(--brand-cyan);
}

.work {
  background:
    radial-gradient(circle at 18% 18%, rgba(37, 99, 235, 0.09), transparent 22%),
    radial-gradient(circle at 84% 12%, rgba(124, 58, 237, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(11, 23, 42, 0.94), rgba(7, 17, 31, 0.96));
}

.work h2 {
  color: var(--brand-text);
}

.work .heading span {
  color: transparent;
  background: linear-gradient(120deg, var(--brand-blue-3), var(--brand-purple-2));
  -webkit-background-clip: text;
  background-clip: text;
}

.work .box-container .box {
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 1.4rem;
  background: rgba(15, 23, 42, 0.68);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.26);
}

.work .box-container .box img {
  transition: transform 0.45s ease, filter 0.45s ease;
}

.work .box-container .box:hover img,
.work .box-container .box:focus-within img {
  transform: scale(1.08);
  filter: saturate(1.04);
}

.work .box-container .box .content {
  top: calc(100% - 4.8rem);
  background: linear-gradient(180deg, rgba(8, 17, 32, 0.7), rgba(5, 8, 22, 0.94));
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  backdrop-filter: blur(14px);
}

.work .box-container .box .content .tag {
  background: transparent;
  height: 4.8rem;
  padding: 0 1.4rem;
}

.work .box-container .box .content .tag h3 {
  color: var(--brand-text);
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}

.work .viewall .btn {
  border: 1px solid rgba(96, 165, 250, 0.24);
  background: rgba(37, 99, 235, 0.14);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.2);
}

.work .viewall .btn:hover {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
  color: #fff;
}

.experience {
  background:
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.08), transparent 18%),
    radial-gradient(circle at 12% 78%, rgba(59, 130, 246, 0.06), transparent 18%),
    linear-gradient(180deg, rgba(16, 28, 53, 0.92), rgba(11, 23, 42, 0.96));
}

.experience .heading {
  color: var(--brand-text);
}

.experience .timeline::after {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.2), rgba(124, 58, 237, 0.58), rgba(6, 182, 212, 0.2));
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.22);
}

.experience .container::after {
  background: rgba(8, 17, 32, 0.94);
  border-color: var(--brand-blue-3);
  color: var(--brand-blue-3);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.08), 0 0.4rem 1rem rgba(2, 6, 23, 0.24);
}

.experience .container:hover::after {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
  color: #fff;
}

.experience .content.experience-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 3.2rem;
  border-radius: 2.4rem;
  border-left: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.experience .content.experience-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.experience-indicator {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.experience-info h3 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.experience-info p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

@media (max-width: 600px) {
  .experience .content.experience-card {
    padding: 2.4rem;
    gap: 1.5rem;
  }
  .experience-indicator {
    width: 4rem;
    height: 4rem;
    font-size: 1.5rem;
  }
}

.morebtn .btn {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.22);
}

.morebtn .btn::before {
  background: linear-gradient(135deg, var(--brand-blue-2), var(--brand-cyan));
}

/* ==================================================
   CONTACT SECTION REDESIGN
   ================================================== */
.contact-us {
  padding: 10rem 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.05), transparent 25%),
    radial-gradient(circle at 90% 90%, rgba(124, 58, 237, 0.05), transparent 25%),
    #ffffff;
}

.contact-shell {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 4rem;
}

.multi-cta-head,
.service-overview-head,
.experience-head {
  text-align: center;
  margin-bottom: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.contact-info-panel {
  position: sticky;
  top: 10rem;
}

.contact-info-panel .image-box {
  width: 100%;
  margin-bottom: 3.2rem;
  border-radius: 2.4rem;
  overflow: hidden;
  background: #f8fbff;
  border: 1px solid rgba(37, 99, 235, 0.06);
}

.contact-info-panel .image-box img {
  width: 100%;
  display: block;
}

.contact-direct-links {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-direct-mail {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 1.8rem 2.4rem;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 1.6rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
}

.contact-direct-mail:hover {
  border-color: #2563eb;
  transform: translateX(0.6rem);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.08);
}

.contact-direct-mail i {
  width: 4rem;
  height: 4rem;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  font-size: 1.6rem;
}

.contact-direct-mail span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

/* Contact Form Panel */
.contact-form-panel {
  background: #fff;
  padding: 4.8rem;
  border-radius: 3rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  margin-bottom: 2.4rem;
}

.form-grid .field:last-child {
  grid-column: span 2;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
}

.field label {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  margin-left: 0.4rem;
}

.input-shell {
  position: relative;
  width: 100%;
}

.input-shell i {
  position: absolute;
  left: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #94a3b8;
  transition: all 0.3s ease;
  pointer-events: none;
}

.input-shell textarea ~ i {
  top: 2.2rem;
  transform: none;
}

.input-shell input,
.input-shell textarea {
  width: 100%;
  padding: 1.6rem 1.8rem 1.6rem 4.8rem;
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 1.2rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  transition: all 0.3s ease;
}

.input-shell textarea {
  min-height: 14rem;
  resize: vertical;
}

.input-shell input:focus,
.input-shell textarea:focus {
  background: #fff;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
  outline: none;
}

.input-shell input:focus ~ i,
.input-shell textarea:focus ~ i {
  color: #2563eb;
}

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 1.8rem;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  border: none;
  border-radius: 1.2rem;
  font-size: 1.6rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.2);
}

.btn-submit:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.3);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .contact-info-panel {
    position: static;
  }
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid .field:last-child {
    grid-column: span 1;
  }
  .contact-form-panel {
    padding: 3rem 2rem;
  }
}

.footer {
  background:
    radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #0b172a 0%, #07111f 100%);
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.footer::before {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.12), transparent 34%);
}

.footer .box-container .box h3::after {
  background: linear-gradient(90deg, var(--brand-blue-3), var(--brand-purple-2));
}

.footer .box-container .box p i,
.footer .box-container .box a:hover i,
.footer .credit a {
  color: var(--brand-blue-3);
}

.footer .box-container .box .share a:hover {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.2);
}

#scroll-top {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.24);
}

#scroll-top:hover {
  background: linear-gradient(135deg, var(--brand-blue-2), var(--brand-cyan));
}

@media (max-width: 1024px) {
  .skills .container .row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home .content h2 {
    font-size: clamp(4rem, 7vw, 6.2rem);
  }
}

@media (max-width: 768px) {
  header {
    background: rgba(5, 8, 22, 0.92);
  }

  header .navbar {
    background: rgba(8, 17, 32, 0.96);
    border-left: 1px solid rgba(148, 163, 184, 0.1);
    box-shadow: -16px 0 40px rgba(2, 6, 23, 0.32);
  }

  header .navbar ul li a {
    color: var(--brand-body);
  }

  .home {
    padding-top: 9rem;
  }

  .home .content {
    text-align: center;
  }

  .home .btn {
    width: auto;
  }

  .skills .container .row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact .content form {
    margin-right: 0;
  }
}

@media (max-width: 450px) {
  section {
    padding: 5rem 2rem;
  }

  .home .content h2 {
    font-size: 3.8rem;
  }

  .home .content p {
    font-size: 1.8rem;
  }

  .home .btn,
  .morebtn .btn,
  .button-area button {
    width: 100%;
    justify-content: center;
  }
}

/* ==================================================
   GENERATED SERVICE PAGE RECOVERY
   ================================================== */

body.service-page,
body.hub-page {
  background:
    radial-gradient(circle at 12% 0%, rgba(59, 130, 246, 0.14), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(124, 58, 237, 0.1), transparent 24%),
    linear-gradient(180deg, #eef6ff 0%, #deedff 42%, #edf5ff 100%);
  color: #42526b;
}

body.service-page .service-page-shell {
  width: min(1280px, calc(100% - 4.8rem));
  margin: 0 auto;
  padding: 12.8rem 0 8rem;
}

body.service-page .service-breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0 0 3.2rem;
  padding: 1.15rem 1.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(96, 165, 250, 0.18);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body.service-page .service-breadcrumb a,
body.service-page .service-breadcrumb span {
  font-size: 1.45rem;
  font-weight: 700;
  text-decoration: none;
}

body.service-page .service-breadcrumb a {
  color: #2563eb;
}

body.service-page .service-breadcrumb span {
  color: #6b7b93;
}

body.service-page .service-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(28rem, 0.9fr);
  align-items: start;
  gap: 3.2rem;
  padding: 3.8rem 4rem;
  margin-bottom: 3rem;
  border-radius: 3.2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 255, 0.84)),
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.12), transparent 34%);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow:
    0 28px 70px rgba(15, 23, 42, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

body.service-page .service-page-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 13rem;
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.08), rgba(37, 99, 235, 0)),
    linear-gradient(135deg, rgba(59, 130, 246, 0.12), transparent 72%);
  pointer-events: none;
}

body.service-page .service-page-hero > * {
  position: relative;
  z-index: 1;
}

body.service-page .service-hero-copy,
body.service-page .service-page-hero > h1:first-of-type {
  min-width: 0;
}

body.service-page .service-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.4rem;
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2563eb;
}

body.service-page .service-kicker::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  box-shadow: 0 0 0 0.4rem rgba(59, 130, 246, 0.12);
}

body.service-page .service-page-hero h1 {
  margin: 0;
  color: #12284a;
  font-family: "Outfit", "Poppins", sans-serif;
  font-size: clamp(4.2rem, 5.6vw, 7rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-transform: none;
}

body.service-page .service-hero-text,
body.service-page .service-page-hero > p:last-child {
  margin: 0;
  color: #54657f;
  font-size: clamp(1.95rem, 2.4vw, 2.6rem);
  line-height: 1.62;
  max-width: 60rem;
  text-transform: none;
}

body.service-page .service-hero-actions,
body.service-page .service-page-hero > a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2.4rem;
}

body.service-page .service-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: flex-start;
  align-self: end;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.service-page .service-trust-strip li {
  display: inline-flex;
  align-items: center;
  min-height: 4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(96, 165, 250, 0.16);
  color: #315072;
  font-size: 1.24rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

body.service-page .content-section {
  padding: 0;
  max-width: none;
}

body.service-page .content-section > .service-block + .service-block,
body.service-page .content-section > .cta-banner + .service-block,
body.service-page .content-section > .service-block + .cta-banner {
  margin-top: 2.6rem;
}

body.service-page .service-block,
body.service-page .service-panel,
body.service-page .faq-item,
body.service-page .author-block {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 250, 255, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 2.6rem;
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

body.service-page .service-block {
  padding: 3rem;
}

body.service-page .service-block::before,
body.service-page .service-panel::before,
body.service-page .faq-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 0.45rem;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.85), rgba(6, 182, 212, 0.55), rgba(245, 158, 11, 0.48));
  opacity: 0.9;
}

body.service-page .service-block h2,
body.service-page .service-panel h2,
body.service-page .service-block h3,
body.service-page .faq-question span {
  color: #12284a;
  font-family: "Outfit", "Poppins", sans-serif;
  letter-spacing: -0.03em;
  text-transform: none;
}

body.service-page .service-block p,
body.service-page .service-panel p,
body.service-page .service-block li,
body.service-page .faq-answer p,
body.service-page .related-services a {
  color: #54657f;
  line-height: 1.72;
  text-transform: none;
}

body.service-page .service-intro-grid,
body.service-page .service-split,
body.service-page .content-grid,
body.service-page .hub-grid {
  display: grid;
  gap: 2.2rem;
}

body.service-page .service-intro-grid,
body.service-page .service-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.service-page .content-grid,
body.service-page .hub-grid {
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  margin-top: 0;
}

body.service-page .service-intro-highlights,
body.service-page .service-panel {
  padding: 2.4rem;
}

body.service-page .highlight-list,
body.service-page .process-list,
body.service-page .related-services {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 1.6rem 0 0;
  list-style: none;
}

body.service-page .highlight-list li,
body.service-page .process-list li,
body.service-page .related-services li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: 1.6rem;
  background: rgba(239, 246, 255, 0.74);
  border: 1px solid rgba(96, 165, 250, 0.14);
}

body.service-page .process-list li {
  position: relative;
  min-height: 7.2rem;
  padding: 1.7rem 2rem 1.7rem 7rem;
}

body.service-page .process-list li::before {
  left: 1.8rem;
  top: 50%;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 1.4rem;
  transform: translateY(-50%);
  box-shadow: 0 12px 22px rgba(37, 99, 235, 0.2);
}

body.service-page .grid-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 26rem;
  padding: 2.5rem 2.4rem 2.2rem;
  border-radius: 2.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 250, 255, 0.92)),
    rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

body.service-page .grid-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.5rem;
  background: linear-gradient(180deg, #2563eb, #06b6d4);
}

body.service-page .grid-card::after {
  content: "";
  position: absolute;
  right: -2rem;
  top: -2rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

body.service-page .grid-card:hover,
body.service-page .service-panel:hover,
body.service-page .faq-item:hover {
  transform: translateY(-0.45rem);
  border-color: rgba(59, 130, 246, 0.24);
  box-shadow: 0 28px 58px rgba(15, 23, 42, 0.1);
}

body.service-page .grid-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 1.4rem;
  color: #12305b;
  font-family: "Outfit", "Poppins", sans-serif;
  font-size: clamp(2.2rem, 2.7vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-transform: none;
}

body.service-page .grid-card h3 a {
  color: inherit;
  text-decoration: none;
}

body.service-page .grid-card p {
  position: relative;
  z-index: 1;
  margin: auto 0 0;
  color: #5d708a;
  font-size: 1.62rem;
  line-height: 1.7;
  text-transform: none;
}

body.service-page .faq-list {
  display: grid;
  gap: 1.5rem;
}

body.service-page .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 2rem 2.2rem;
  background: transparent;
  border: 0;
  text-align: left;
}

body.service-page .faq-question i {
  color: #2563eb;
  font-size: 1.45rem;
}

body.service-page .faq-answer {
  padding: 0 2.2rem 2rem;
}

body.service-page .author-block {
  align-items: center;
  gap: 2.4rem;
}

body.service-page .author-block img {
  width: 8.8rem !important;
  height: 8.8rem !important;
  border: 3px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

body.service-page .author-block h4 {
  margin: 0 0 0.6rem;
  color: #12284a;
  font-family: "Outfit", "Poppins", sans-serif;
}

body.service-page .author-block p {
  margin: 0;
  color: #54657f;
  line-height: 1.7;
}

body.service-page .cta-banner {
  position: relative;
  padding: 3.6rem 3.6rem 3.4rem;
  border-radius: 3rem;
  background:
    linear-gradient(135deg, rgba(10, 76, 167, 0.96), rgba(24, 131, 206, 0.9) 58%, rgba(245, 158, 11, 0.72) 120%);
  border: 1px solid rgba(147, 197, 253, 0.2);
  box-shadow: 0 28px 56px rgba(37, 99, 235, 0.22);
  overflow: hidden;
}

body.service-page .cta-banner::before {
  content: "";
  position: absolute;
  inset: auto -8% -40% auto;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.24), transparent 68%);
  pointer-events: none;
}

body.service-page .cta-banner h2,
body.service-page .cta-banner p,
body.service-page .cta-banner .cta-kicker {
  position: relative;
  z-index: 1;
}

body.service-page .cta-banner h2 {
  color: #ffffff;
  font-family: "Outfit", "Poppins", sans-serif;
  text-transform: none;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

body.service-page .cta-banner p,
body.service-page .cta-banner .cta-kicker {
  color: rgba(255, 255, 255, 0.88);
}

body.service-page .cta-banner p {
  max-width: 78rem;
  margin-left: auto;
  margin-right: auto;
}

body.service-page .cta-grid-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 2.4rem;
}

body.service-page .cta-banner .service-trust-strip {
  justify-content: center;
}

body.service-page .cta-banner .service-trust-strip li {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.96);
}

body.service-page .btn-white,
body.service-page .cta-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 5.2rem;
  padding: 0 2.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.64);
  color: #12305b;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

body.service-page .btn-green,
body.service-page .cta-main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 5.2rem;
  padding: 0 2.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #06b6d4 58%, #f59e0b 120%);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 20px 34px rgba(37, 99, 235, 0.22);
}

body.service-page .btn-green:hover,
body.service-page .btn-white:hover {
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  body.service-page .service-page-shell {
    width: min(100%, calc(100% - 3.2rem));
    padding-top: 11.6rem;
  }

  body.service-page .service-page-hero,
  body.service-page .service-intro-grid,
  body.service-page .service-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body.service-page .service-page-shell {
    width: min(100%, calc(100% - 2rem));
    padding-top: 10.2rem;
    padding-bottom: 5rem;
  }

  body.service-page .service-page-hero,
  body.service-page .service-block,
  body.service-page .service-panel,
  body.service-page .cta-banner {
    padding: 2.4rem 2rem;
  }

  body.service-page .service-page-hero {
    gap: 2rem;
    border-radius: 2.4rem;
  }

  body.service-page .service-page-hero h1 {
    font-size: clamp(3.4rem, 8vw, 5.2rem);
  }

  body.service-page .service-hero-text {
    font-size: 1.72rem;
  }

  body.service-page .content-grid,
  body.service-page .hub-grid {
    grid-template-columns: 1fr;
  }

  body.service-page .grid-card {
    min-height: 22rem;
    padding: 2.1rem 1.8rem 2rem;
  }
}

/* ==================================================
   SITE CHROME SYNC
   ================================================== */

:root {
  --site-header-height: 7rem;
  --site-header-pad-x: 7%;
  --site-header-pad-x-tablet: 5%;
  --site-logo-size: 2.6rem;
  --site-logo-spacing: -1px;
  --site-nav-font: 1.45rem;
  --site-nav-pad-y: 0.8rem;
  --site-nav-pad-x: 1.6rem;
  --site-nav-shell-pad-y: 0.6rem;
  --site-nav-shell-pad-x: 1.2rem;
  --site-cta-height: 4.4rem;
  --site-cta-font: 1.32rem;
  --site-cta-pad-x: 2rem;
  --site-footer-title: 2.4rem;
}

header {
  height: var(--site-header-height);
  min-height: var(--site-header-height);
  padding: 1.4rem var(--site-header-pad-x);
}

header .logo {
  font-size: var(--site-logo-size);
  letter-spacing: var(--site-logo-spacing);
}

header .navbar ul {
  padding: var(--site-nav-shell-pad-y) var(--site-nav-shell-pad-x);
}

header .navbar ul li a {
  font-size: var(--site-nav-font);
  padding: var(--site-nav-pad-y) var(--site-nav-pad-x);
}

.btn-contact {
  min-height: var(--site-cta-height);
  padding: 0 var(--site-cta-pad-x) !important;
  font-size: var(--site-cta-font) !important;
}

.footer .box-container .box h3 {
  font-size: var(--site-footer-title);
}

@media (max-width: 991px) {
  header {
    padding: 1.4rem var(--site-header-pad-x-tablet);
  }
}

@media (max-width: 768px) {
  header .navbar {
    top: var(--site-header-height);
    height: calc(100svh - var(--site-header-height));
  }

  header .navbar ul li a {
    font-size: 1.6rem;
    font-weight: 700;
    padding: 1.2rem 2rem;
  }
}

/* ==================================================
   HOMEPAGE LIGHT PREMIUM REFINEMENT
   ================================================== */

:root {
  --light-bg-0: #f8fbff;
  --light-bg-1: #f3f7ff;
  --light-bg-2: #eef4ff;
  --light-bg-3: #eaf1ff;
  --light-surface: rgba(255, 255, 255, 0.76);
  --light-surface-strong: rgba(255, 255, 255, 0.92);
  --light-border: rgba(15, 23, 42, 0.06);
  --light-border-strong: rgba(37, 99, 235, 0.16);
  --light-heading: #0b172a;
  --light-body: #1e293b;
  --light-muted: #475569;
  --light-blue: #2563eb;
  --light-blue-2: #3b82f6;
  --light-blue-3: #60a5fa;
  --light-purple: #7c3aed;
  --light-purple-2: #8b5cf6;
  --light-cyan: #06b6d4;
  --light-green: #10b981;
  --light-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

body {
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.12) 0%, transparent 32%),
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.1) 0%, transparent 35%),
    linear-gradient(180deg, var(--light-bg-0) 0%, var(--light-bg-2) 55%, var(--light-bg-3) 100%);
  color: var(--light-body);
}

html::-webkit-scrollbar-track {
  background: #edf3ff;
}

html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--light-blue-2), var(--light-purple-2));
}

section {
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

section::after {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.04), transparent 60%);
  opacity: 0.42;
}

.heading {
  color: var(--light-heading);
}

.heading span {
  background: linear-gradient(120deg, var(--light-blue-2), var(--light-purple-2));
  -webkit-background-clip: text;
  background-clip: text;
}

.qoute {
  color: var(--light-muted) !important;
}

header {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
}

header .logo {
  color: var(--light-heading);
}

header .logo span {
  background: linear-gradient(135deg, var(--light-blue-2), var(--light-purple-2));
  -webkit-background-clip: text;
  background-clip: text;
}

header .navbar ul {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
}

header .navbar ul li a {
  color: var(--light-body);
}

header .navbar ul li a.active,
header .navbar ul li a:hover {
  color: var(--light-blue);
  background: rgba(37, 99, 235, 0.08);
}

.btn-contact,
.home .btn,
.morebtn .btn,
.button-area button {
  background: linear-gradient(135deg, var(--light-blue), var(--light-purple));
  color: #fff !important;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.18);
}

.btn-contact:hover,
.home .btn:hover,
.button-area button:hover {
  background: linear-gradient(135deg, var(--light-blue-2), var(--light-purple-2));
}

.home {
  background:
    radial-gradient(circle at 16% 18%, rgba(59, 130, 246, 0.12), transparent 22%),
    radial-gradient(circle at 84% 16%, rgba(124, 58, 237, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(248, 251, 255, 0.94), rgba(238, 244, 255, 0.88));
}

.home::before {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px);
  opacity: 0.32;
}

.home .content h2 {
  color: var(--light-heading);
}

.home .content h2 span {
  background: linear-gradient(125deg, var(--light-blue-2), var(--light-cyan), var(--light-purple-2));
  -webkit-background-clip: text;
  background-clip: text;
}

.home .content p {
  color: var(--light-body);
}

.home .content p span {
  color: var(--light-blue);
}

.home .image img {
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.home .image::before {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.75), rgba(139, 92, 246, 0.6));
  filter: drop-shadow(0 0 1.2rem rgba(59, 130, 246, 0.18));
}

.home .image::after {
  opacity: 0.62;
}

.social-icons a {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--light-blue);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  background: linear-gradient(135deg, var(--light-blue), var(--light-purple));
  color: #fff;
}

.about,
.skills,
.education,
.work,
.experience,
.contact {
  position: relative;
}

.about {
  background:
    radial-gradient(circle at 12% 20%, rgba(59, 130, 246, 0.07), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(241, 245, 249, 0.72));
}

.about .row,
.skills .container,
.education .box-container .box,
.work .box-container .box,
.experience .content,
.contact .container {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.86));
  border: 1px solid var(--light-border);
  box-shadow: var(--light-shadow);
}

.about .row .image img {
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.1);
}

.about .row .content h3,
.education .box-container .box .content h3,
.work .box-container .box .content .tag h3,
.experience .content .tag h2,
.experience .content .desc h3,
.contact .heading {
  color: var(--light-heading);
}

.about .row .content > p,
.education .box-container .box .content p,
.experience .content .desc p,
.contact-direct-mail,
form .field input,
form .message textarea {
  color: var(--light-body);
}

.about .row .content .tag,
.education h4,
.contact-direct-mail {
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.12);
  color: var(--light-blue);
  box-shadow: none;
}

.about .row .content .box-container .box p {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--light-body);
}

.about .row .content .box-container .box p i,
.about .row .content .box-container .box p span,
.education h4::before,
.contact-direct-mail i,
.field input:focus ~ i,
.message textarea:focus ~ i {
  color: var(--light-blue);
}

.skills {
  background:
    radial-gradient(circle at 18% 16%, rgba(59, 130, 246, 0.08), transparent 20%),
    radial-gradient(circle at 82% 72%, rgba(124, 58, 237, 0.08), transparent 22%),
    linear-gradient(180deg, #f3f7ff, #eef4ff);
}

.skills h2 {
  color: var(--light-heading);
}

.skills .container .bar {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.skills .container .bar:hover {
  border-color: rgba(37, 99, 235, 0.16);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(96, 165, 250, 0.08);
}

.skills .container .bar .info span {
  color: var(--light-heading);
}

.education {
  background:
    radial-gradient(circle at 86% 12%, rgba(124, 58, 237, 0.08), transparent 18%),
    radial-gradient(circle at 10% 82%, rgba(59, 130, 246, 0.08), transparent 18%),
    linear-gradient(180deg, #ffffff, #f8fbff 52%, #f1f5f9 100%);
}

.education .heading::after {
  background: linear-gradient(90deg, var(--light-blue-2), var(--light-cyan));
}

.education .box-container .box:hover,
.work .box-container .box:hover,
.experience .content:hover {
  border-color: rgba(37, 99, 235, 0.12);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.1);
}

.education .box-container .box .image {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(139, 92, 246, 0.12));
}

.education .box-container .box .image::after {
  background: linear-gradient(180deg, transparent 28%, rgba(255, 255, 255, 0.7) 100%);
}

.work {
  background:
    radial-gradient(circle at 16% 20%, rgba(59, 130, 246, 0.08), transparent 22%),
    radial-gradient(circle at 84% 12%, rgba(124, 58, 237, 0.07), transparent 20%),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.work h2 {
  color: var(--light-heading);
}

.work .box-container .box {
  background: rgba(255, 255, 255, 0.78);
}

.work .box-container .box .content {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 250, 252, 0.94));
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(10px);
}

.work .viewall .btn {
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--light-blue);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.work .viewall .btn:hover {
  background: linear-gradient(135deg, var(--light-blue), var(--light-purple));
  color: #fff;
}

.experience {
  background:
    radial-gradient(circle at 82% 18%, rgba(6, 182, 212, 0.08), transparent 18%),
    radial-gradient(circle at 12% 78%, rgba(59, 130, 246, 0.08), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 12rem 9% 10rem;
}

.multi-cta-head,
.service-overview-head,
.experience-head {
  text-align: center;
  margin-bottom: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.experience .heading {
  color: var(--light-heading);
  text-align: center;
}

.experience .timeline::after {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.12), rgba(124, 58, 237, 0.24), rgba(6, 182, 212, 0.12));
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.08);
}

.experience .container::after {
  background: #fff;
  border-color: rgba(37, 99, 235, 0.35);
  color: var(--light-blue);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.05), 0 10px 20px rgba(15, 23, 42, 0.06);
}

.experience .container:hover::after {
  background: linear-gradient(135deg, var(--light-blue), var(--light-purple));
  color: #fff;
}

.experience .content {
  border-left: 0.35rem solid var(--light-blue-2);
}

.contact {
  background:
    radial-gradient(circle at 14% 20%, rgba(59, 130, 246, 0.08), transparent 22%),
    radial-gradient(circle at 86% 80%, rgba(124, 58, 237, 0.06), transparent 18%),
    linear-gradient(180deg, #f3f7ff 0%, #eef4ff 100%);
}

.contact .container {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 251, 255, 0.82));
}

form i {
  color: var(--light-muted);
}

form .field input,
form .message textarea {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--light-body);
}

.field input::placeholder,
.message textarea::placeholder {
  color: #64748b;
}

.field input:focus,
.message textarea:focus {
  border: 1px solid rgba(37, 99, 235, 0.3);
  box-shadow: 0 0 0 0.35rem rgba(37, 99, 235, 0.08);
}

.footer {
  background:
    radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.1), transparent 34%),
    linear-gradient(180deg, #10203c 0%, #0b172a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer .box-container .box p,
.footer .box-container .box a,
.footer .credit {
  color: #cbd5e1;
}

.footer .box-container .box h3,
.footer .credit a {
  color: #f8fafc;
}

#scroll-top {
  background: linear-gradient(135deg, var(--light-blue), var(--light-purple));
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.16);
}

.btn-outline {
  background: var(--surface-glass, rgba(255, 255, 255, 0.8)) !important;
  color: var(--text-primary, #0b172a) !important;
  border: 1px solid var(--border-glow, rgba(37, 99, 235, 0.14)) !important;
  box-shadow: var(--shadow-premium, 0 10px 25px rgba(15, 23, 42, 0.08));
  transition: var(--transition-smooth, all 0.3s ease);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 1) !important;
  color: #2563eb !important;
  box-shadow: var(--shadow-hover);
}

.education .box-container .box .content {
  padding: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.education .box-container .box .content h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--hero-text, #0b172a);
  margin-bottom: 1.5rem;
  text-align: center;
}

.education .box-container .box .content p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--hero-text-dim, #475569);
  margin-bottom: 2rem;
}

.education .box-container .box .content h4 {
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
  padding: 0.6rem 1.2rem;
  border-radius: 5rem;
}

.home .hero-ctas .btn span,
.home .hero-ctas .btn-whatsapp span,
.home .hero-ctas .btn-outline span,
.multi-cta-actions .btn span,
.multi-cta-actions .btn-whatsapp span,
.multi-cta-actions .btn-outline span {
  color: inherit;
}

.home .btn-outline,
.multi-cta-actions .btn-outline {
  background: rgba(255, 255, 255, 0.92) !important;
  color: var(--light-heading) !important;
  border: 1px solid rgba(37, 99, 235, 0.14) !important;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.home .btn-outline span,
.multi-cta-actions .btn-outline span {
  color: var(--light-heading) !important;
}

.home .btn-outline i,
.multi-cta-actions .btn-outline i {
  color: var(--light-blue) !important;
}

.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 4rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
  color: var(--light-body);
  font-size: 1.28rem;
  font-weight: 600;
}

.hero-trust-strip i {
  color: var(--light-blue);
}

/* --- ELITE SaaS MICRO-POLISH & REFINEMENT --- */
:root {
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(15, 23, 42, 0.06);
  --glass-blur: blur(16px);
  --card-radius: 2.4rem;
  --section-padding: 12rem 9%;
  --section-gap: 3rem;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-premium: 0 15px 35px -5px rgba(0, 0, 0, 0.05), 0 5px 15px -5px rgba(0, 0, 0, 0.03);
  --text-slate: #4b5563;
  --text-heading: #0f172a;
}

.home-metrics,
.local-trust-band,
.industry-systems,
.multi-cta-band {
  padding: var(--section-padding);
  background: #ffffff;
  position: relative;
}

.home-metrics-shell,
.local-trust-shell,
.industry-systems-shell,
.multi-cta-shell {
  max-width: 120rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.home-metrics-head,
.local-trust-head,
.industry-systems-head,
.multi-cta-head,
.contact-head,
.service-overview-head,
.experience-head,
.skills-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 92rem;
  margin: 0 auto;
  padding-bottom: 6rem;
  position: relative;
  z-index: 5;
}

.service-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 1.4rem;
  background: rgba(37, 99, 235, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 5rem;
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #2563eb;
  margin-bottom: 2.2rem;
}

.service-kicker::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  background: #2563eb;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.4);
}

.heading {
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #0b172a;
  margin-bottom: 2.5rem;
  max-width: 85rem;
}

.heading span {
  color: #2563eb;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.service-overview-lead {
  font-size: 1.75rem;
  line-height: 1.7;
  color: #475569;
  max-width: 74rem;
  margin: 0 auto;
  text-transform: none;
  font-weight: 500;
}

/* Standardized Grids */
.home-metrics-grid,
.local-trust-grid,
.industry-systems-grid,
.multi-cta-grid,
.contact-grid,
.experience .timeline {
  display: grid;
  gap: var(--section-gap);
  align-items: stretch;
  position: relative;
  z-index: 1;
  grid-auto-flow: row;
  margin-top: 2rem;
}

.home-metrics-grid { grid-template-columns: repeat(3, 1fr); }
.local-trust-grid { grid-template-columns: repeat(4, 1fr); }
.industry-systems-grid { grid-template-columns: 1.2fr 0.9fr 0.9fr; }
.multi-cta-grid { grid-template-columns: repeat(3, 1fr); }

/* Premium Card Refinement */
.metric-card,
.stack-card,
.industry-card,
.cta-action-card,
.grid-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 2.4rem;
  padding: 4rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
}

.metric-card:hover,
.stack-card:hover,
.industry-card:hover,
.cta-action-card:hover,
.grid-card:hover {
  transform: translateY(-1.2rem);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.12);
}

.card-title,
.grid-card h3,
.stack-card h3,
.industry-card h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0b172a;
  margin-bottom: 1.4rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.card-desc,
.grid-card p,
.stack-card p,
.industry-card p {
  font-size: 1.58rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 2.4rem;
}

.metric-card::before,
.stack-card::before,
.industry-card::before,
.cta-action-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0.38rem;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.85), rgba(6, 182, 212, 0.55), rgba(245, 158, 11, 0.42));
}

.metric-card:hover,
.stack-card:hover,
.industry-card:hover,
.cta-action-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(37, 99, 235, 0.18);
  background: #ffffff;
}

.stack-icon,
.industry-icon,
.cta-icon-box {
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.metric-card strong,
.stack-card h3,
.industry-card h3,
.cta-action-card h3,
.hub-grid .grid-card h3 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.4rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-transform: none;
}

.metric-card p,
.stack-card p,
.industry-card p,
.cta-action-card p,
.hub-grid .grid-card p {
  font-size: 1.54rem;
  line-height: 1.65;
  color: #64748b;
  margin-bottom: 2.2rem;
  flex-grow: 1;
  text-transform: none;
}

.hub-grid .grid-card {
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.1);
  padding: 3.4rem;
  border-radius: 2.4rem;
  transition: all 0.3s ease;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
}

.hub-grid .grid-card i {
  font-size: 2.4rem;
  color: #2563eb;
  margin-bottom: 2rem;
  width: 5.4rem;
  height: 5.4rem;
  background: #f1f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.4rem;
}

/* Button & Action Refinement */
.stack-cta,
.system-cta,
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.3rem 2.2rem;
  border-radius: 5rem;
  font-size: 1.35rem;
  font-weight: 700;
  transition: var(--transition-smooth);
  text-transform: none;
  width: fit-content;
}

.multi-cta-grid .cta-btn { width: 100%; }

/* Featured Card System */
.featured-stack,
.featured-system,
.primary-action {
  background: linear-gradient(135deg, #ffffff 0%, #f9fbff 100%);
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.stack-badge,
.system-badge {
  display: inline-block;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  padding: 0.5rem 1.2rem;
  border-radius: 5rem;
  margin-bottom: 1.5rem;
}

/* Unified Accents */
.accent-blue .stack-icon, .accent-indigo .industry-icon, .primary-action .cta-icon-box { background: rgba(37, 99, 235, 0.08); color: #2563eb; }
.accent-blue .stack-cta, .accent-indigo .system-cta, .primary-action .cta-btn { background: #2563eb; color: #fff; }
.accent-blue .stack-cta:hover, .accent-indigo .system-cta:hover, .primary-action .cta-btn:hover { background: #1d4ed8; }

.accent-purple .stack-icon { background: rgba(147, 51, 234, 0.08); color: #9333ea; }
.accent-purple .stack-cta.secondary { background: rgba(147, 51, 234, 0.03); color: #9333ea; border: 1px solid rgba(147, 51, 234, 0.1); }
.accent-purple .stack-cta.secondary:hover { background: #9333ea; color: #fff; }

.accent-emerald .industry-icon, .whatsapp-action .cta-icon-box { background: rgba(16, 185, 129, 0.08); color: #059669; }
.accent-emerald .system-cta.secondary, .whatsapp-action .cta-btn { background: rgba(16, 185, 129, 0.04); color: #059669; border: 1px solid rgba(16, 185, 129, 0.12); }
.accent-emerald .system-cta.secondary:hover, .whatsapp-action .cta-btn:hover { background: #059669; color: #fff; }

.accent-amber .industry-icon { background: rgba(245, 158, 11, 0.08); color: #d97706; }
.accent-amber .system-cta.secondary { background: rgba(245, 158, 11, 0.04); color: #d97706; border: 1px solid rgba(245, 158, 11, 0.12); }
.accent-amber .system-cta.secondary:hover { background: #d97706; color: #fff; }

.audit-action .cta-icon-box { background: rgba(15, 23, 42, 0.04); color: var(--text-heading); }
.audit-action .cta-btn { background: #fff; color: var(--text-heading); border: 1px solid rgba(15, 23, 42, 0.12); }

/* Authority Systems Refinement */
.stack-authority-bar, .industry-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
  padding: 2.4rem 3rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,250,255,0.92));
  border-radius: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  margin-top: 2rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
}

.authority-badge, .trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.8rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.7);
  border: 1px solid rgba(96, 165, 250, 0.14);
}

.recovery-hubs .hub-container,
.recovery-hubs .hub-grid,
.location-chips,
.chip-container {
  position: relative;
  z-index: 1;
}

.recovery-hubs .hub-grid {
  align-items: stretch;
}

.recovery-hubs .hub-grid .grid-card {
  min-height: 31rem;
}

.recovery-hubs .hub-grid .grid-card:hover {
  transform: translateY(-0.4rem);
}
.authority-badge span, .trust-lab { font-size: 1.1rem; font-weight: 800; color: #6b7280; text-transform: uppercase; letter-spacing: 0.05rem; }
.authority-badge i, .trust-val { color: #2563eb; font-size: 1.5rem; font-weight: 900; line-height: 1; }

/* Final Responsive Polish */
@media (max-width: 1100px) {
  .local-trust-grid, .industry-systems-grid, .multi-cta-grid { grid-template-columns: 1fr 1fr; }
  .featured-stack, .featured-system { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root { --section-padding: 8rem 5%; --section-gap: 2rem; }
  .local-trust-grid, .industry-systems-grid, .multi-cta-grid, .home-metrics-grid { grid-template-columns: 1fr; }
  .featured-stack, .featured-system { grid-column: span 1; }
  .stack-authority-bar, .industry-trust-bar { flex-direction: column; gap: 2.5rem; padding: 3rem 2rem; }
  .metric-card, .stack-card, .industry-card, .cta-action-card { padding: 3rem; }
  .heading { margin-bottom: 1.5rem; }
}

/* ==================================================
   UNIFIED GRID CARD SYSTEM (RECOVERY)
   ================================================== */
.grid-card {
  position: relative;
  background: #fff;
  padding: 3.4rem;
  border-radius: 2.4rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.grid-card:hover {
  transform: translateY(-0.6rem);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
  border-color: rgba(37, 99, 235, 0.16);
}

.grid-card h3 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #0b172a;
  margin-bottom: 1.4rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.grid-card p {
  font-size: 1.54rem;
  line-height: 1.68;
  color: #64748b;
  margin: 0;
}

.grid-card i {
  font-size: 2.4rem;
  color: #2563eb;
  margin-bottom: 2.2rem;
  width: 5.4rem;
  height: 5.4rem;
  background: #f1f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.4rem;
}
