:root {
  --blue-primary: #0a84ff;
  --blue-glow: #00b4ff;
  --blue-deep: #003580;
  --orange-accent: #ff6a00;
  --gold-accent: #ffb800;
  --dark-bg: #05080f;
  --dark-card: #0d1420;
  --dark-panel: #0a1225;
  --text-white: #e8f4ff;
  --text-muted: #7a99bb;
  --border-glow: rgba(0, 180, 255, 0.25);
  --green-accent: #00e5a0;
  --purple-accent: #7c5cfc;
  --font-main: 'Exo 2', sans-serif;
  --font-display: 'Orbitron', monospace;
  --font-mono: 'Share Tech Mono', monospace;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background: var(--dark-bg);
  color: var(--text-white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  background: rgba(5, 8, 15, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glow);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  line-height: 1.1;
}

.logo-text .brand {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
}

.logo-text .sub {
  display: block;
  font-size: 10px;
  color: var(--blue-glow);
  letter-spacing: 6.5px;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

nav a:hover,
nav a.active {
  color: var(--blue-glow);
}

nav a.active {
  border-bottom: 1px solid var(--blue-glow);
  padding-bottom: 2px;
}

.hero {
  background:
    linear-gradient(rgba(5, 8, 15, 0.35), rgba(5, 8, 15, 0.55)),
    url("../images/hero-bg.png") center / cover no-repeat;
}

.about-img-wrap {
  background-image: url("../images/mission.png");
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  background:
    linear-gradient(rgba(5, 8, 15, 0.35), rgba(5, 8, 15, 0.55)),
    url("../images/hero-bg.png") center / cover no-repeat;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  background: rgba(5, 8, 15, 0.28);
}

.hero::after {
  background: linear-gradient(180deg, rgba(5, 8, 15, 0.15), rgba(5, 8, 15, 0.55));
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 32px;
  text-align: center;
}

.hero-title {
  position: relative;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(76px, 12vw, 150px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #fff 30%, var(--blue-glow) 70%, var(--blue-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 0.9s ease 0.1s both;
}

.hero-title::after {
  content: "JUNLA";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: inherit;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: blur(20px);
  opacity: 0.4;
}

.hero-subtitle,
.hero-subtitle span {
  color: #fff !important;
  font-size: 28px;
  font-weight: 500;
}

.hero-subtitle {
  margin-bottom: 8px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-desc {
  max-width: 500px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  animation: fadeInUp 1s ease 0.4s both;
}

.nav-cta,
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  font-family: var(--font-main);
  cursor: pointer;
  transition: all 0.25s;
}

.nav-cta,
.btn-primary {
  background: var(--blue-primary);
  color: #fff;
  border: 0;
  box-shadow: 0 0 25px rgba(10, 132, 255, 0.5);
}

.nav-cta {
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
}

.btn-primary,
.btn-outline {
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
}

.btn-outline {
  color: var(--text-white);
  background: transparent;
  border: 1px solid rgba(0, 180, 255, 0.4);
}

.nav-cta:hover,
.btn-primary:hover {
  background: var(--blue-glow);
  box-shadow: 0 0 40px rgba(0, 180, 255, 0.7);
}

.btn-primary:hover,
.btn-outline:hover {
  transform: translateY(-2px);
}

.btn-outline:hover {
  color: var(--blue-glow);
  border-color: var(--blue-glow);
}

.section {
  padding: 100px 48px;
}

.section-label,
.about-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--blue-glow);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.section-label {
  text-align: center;
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 60px;
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  text-align: center;
  color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 28px 18px;
  text-align: center;
  cursor: pointer;
  background: #f8faff;
  border: 1px solid rgba(10, 132, 255, 0.15);
  border-radius: 12px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, var(--card-color, var(--blue-primary)), transparent);
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-color, var(--blue-primary));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: rgba(10, 132, 255, 0.1);
  border: 1px solid var(--border-glow);
  border-radius: 12px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #0d1420;
}

.service-card p {
  font-size: 12px;
  line-height: 1.6;
  color: #4a6080;
}

.service-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  color: var(--blue-glow);
  border-bottom: 1px solid rgba(0, 180, 255, 0.3);
}

grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .navbar {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
  }

  .navbar nav {
    display: none !important;
  }

  .navbar .nav-cta {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex: 0 0 auto;
    width: auto !important;
    max-width: none !important;
    padding: 9px 12px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    z-index: 1001;
  }

  .logo {
    min-width: 0;
    flex: 1 1 auto;
  }

  .logo-text .brand {
    font-size: 22px;
    letter-spacing: 2px;
  }

  .logo-text .sub {
    font-size: 9px;
    letter-spacing: 4px;
  }
}

@media (max-width: 360px) {
  .navbar .nav-cta {
    padding: 8px 9px;
    font-size: 11px;
  }

  .logo-text .brand {
    font-size: 19px;
  }

  .logo-text .sub {
    font-size: 8px;
    letter-spacing: 3px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 560px;
    padding-top: 110px;
    background-position: center top;
  }

  .hero-inner {
    max-width: 100%;
    padding: 0 20px;
  }

  .hero-title {
    font-size: clamp(58px, 18vw, 92px);
    line-height: 0.95;
    letter-spacing: 1px;
  }

  .hero-subtitle {
    max-width: 340px;
    margin: 0 auto 24px;
    font-size: clamp(16px, 4.8vw, 22px);
    line-height: 1.25;
    font-weight: 700;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 520px) {
  .services-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: clamp(46px, 17vw, 64px);
    letter-spacing: 0;
  }

  .hero-subtitle {
    max-width: 300px;
    font-size: 15px;
  }
}

/* ── STATS ── */
.stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  padding: 34px 48px;
  background: var(--dark-panel);
  border-top: 1px solid var(--border-glow);
  border-bottom: 1px solid var(--border-glow);
}

.stat-item {
  flex: 1 1 160px;
  max-width: 220px;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon number"
    "icon label";
  column-gap: 14px;
  align-items: center;
  padding: 0 28px;
  text-align: left;
  border-right: 1px solid rgba(0, 180, 255, 0.18);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-icon {
  grid-area: icon;
  font-size: 34px;
  line-height: 1;
  color: var(--blue-glow);
}

.stat-number {
  grid-area: number;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 18px rgba(0, 180, 255, 0.35);
}

.stat-label {
  grid-area: label;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.3;
  color: var(--text-muted);
  letter-spacing: 0;
}

@media (max-width: 900px) {
  .stats-bar {
    justify-content: flex-start;
    padding: 28px 20px;
  }

  .stat-item {
    flex-basis: 50%;
    max-width: none;
    padding: 18px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 180, 255, 0.14);
  }
}

@media (max-width: 520px) {
  .stat-item {
    flex-basis: 100%;
  }
}

/* ── ABOUT ── */
.about-wrap {
  padding: 90px 48px;
  background: #ffffff;
}

.about-section {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.4fr);
  gap: 72px;
  align-items: center;
}

.about-label {
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #075dff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-title {
  margin-bottom: 20px;
  font-family: var(--font-main);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  color: #071126;
}

.about-text {
  max-width: 430px;
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.75;
  color: #26344d;
}

.about-img-wrap {
  position: relative;
  min-height: 320px;
  border-radius: 10px;
  overflow: visible;
  background-image: url("../images/mission.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 14px 36px rgba(0, 20, 50, 0.16);
}

.about-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0, 20, 50, 0.1), rgba(0, 20, 50, 0.35));
  pointer-events: none;
}

.mission-card {
  position: absolute;
  right: -40px;
  bottom: -16px;
  z-index: 2;
  max-width: 310px;
  padding: 24px 28px;
  background: #061426;
  border: 1px solid rgba(0, 180, 255, 0.18);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(0, 20, 50, 0.28);
}

.mission-card h4 {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
}

.mission-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #d7e8ff;
}

@media (max-width: 900px) {
  .about-wrap {
    padding: 70px 20px;
  }

  .about-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0;
  }

  .about-text {
    max-width: 100%;
  }

  .about-img-wrap {
    min-height: 280px;
    overflow: hidden;
  }

  .mission-card {
    right: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
  }
}

@media (max-width: 520px) {
  .about-wrap {
    padding: 56px 16px;
  }

  .about-title {
    font-size: 28px;
    line-height: 1.15;
  }

  .about-text {
    font-size: 14px;
    line-height: 1.65;
  }

  .about-img-wrap {
    min-height: 240px;
    border-radius: 8px;
  }

  .mission-card {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: 100%;
    margin-top: 14px;
    padding: 18px 20px;
  }
}

/* ── PROJECTS ── */
.projects-section {
  padding: 54px 48px 48px;
  background: #041325;
}

.projects-header {
  max-width: 1200px;
  margin: 0 auto 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.projects-header .section-label {
  margin-bottom: 6px;
  text-align: left;
  color: var(--blue-glow);
}

.projects-header .section-title {
  margin-bottom: 0;
  text-align: left;
  font-family: var(--font-main);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-glow);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s, transform 0.2s;
}

.view-all:hover {
  color: #fff;
  transform: translateX(3px);
}

.projects-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.project-card {
  overflow: hidden;
  background: #071426;
  border: 1px solid rgba(0, 180, 255, 0.28);
  border-radius: 8px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-glow);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.45);
}

.project-thumb {
  width: 100%;
  height: 170px;
  overflow: hidden;
  background: #0d1420;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-info {
  padding: 16px 18px 18px;
}

.project-info h3 {
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.project-info p {
  min-height: 40px;
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #d9e8f7;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-glow);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s, transform 0.2s;
}

.project-link:hover {
  color: #fff;
  transform: translateX(3px);
}

@media (max-width: 1100px) {
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .projects-section {
    padding: 48px 20px;
  }

  .projects-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-thumb {
    height: 190px;
  }
}

/* ── TECH STACK ── */
.tech-section {
  padding: 20px 48px 24px;
  text-align: center;
  background: #ffffff;
}

.tech-title {
  margin-bottom: 18px;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  color: #071126;
}

.tech-logos {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 52px);
  overflow-x: auto;
  padding: 4px 0 8px;
  scrollbar-width: none;
}

.tech-logos::-webkit-scrollbar {
  display: none;
}

.tech-logos img {
  width: auto;
  height: 34px;
  max-width: 120px;
  object-fit: contain;
  flex: 0 0 auto;
}

/* ── FOOTER ── */
footer {
  background: #041325;
  border-top: 1px solid rgba(0, 180, 255, 0.18);
  padding: 32px 48px 14px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.25fr 1.35fr;
  gap: 44px;
}

.footer-brand .logo {
  margin-bottom: 0;
}

.footer-brand .brand {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 4px;
}

.footer-brand .sub {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 8px;
  text-align: center;
}

.footer-brand p {
  max-width: 280px;
  margin: 14px 0 18px;
  font-size: 13px;
  line-height: 1.55;
  color: #d9e8f7;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  border: 0;
  color: #041325;
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}

.social-btn:hover {
  transform: translateY(-2px);
  background: var(--blue-glow);
  color: #fff;
}

.footer-col h4 {
  margin-bottom: 16px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 7px;
}

.footer-col ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #d9e8f7;
  font-size: 13px;
  line-height: 1.2;
  transition: color 0.2s, transform 0.2s;
}

.footer-col ul li a:hover {
  color: var(--blue-glow);
  transform: translateX(3px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-row .icon {
  margin-top: 2px;
  color: var(--blue-glow);
  font-size: 14px;
  line-height: 1;
}

.contact-row span {
  color: #d9e8f7;
  font-size: 13px;
  line-height: 1.45;
}

.contact-info .btn-primary {
  width: 100%;
  max-width: 230px;
  margin-top: 6px;
  padding: 10px 18px;
  font-size: 13px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 180, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p,
.footer-bottom-links a {
  color: #d9e8f7;
  font-size: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: var(--blue-glow);
}

@media (max-width: 900px) {
  footer {
    padding: 36px 20px 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .navbar .logo-text {
    width: 118px;
    line-height: 1;
    flex-shrink: 0;
  }

  .navbar .logo-text .brand {
    width: 100%;
    display: block;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2.5px;
  }

  .navbar .logo-text .sub {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
  }
}

@media (max-width: 420px) {
  .navbar .logo-text {
    width: 104px;
  }

  .navbar .logo-text .brand {
    font-size: 26px;
    letter-spacing: 2px;
  }

  .navbar .logo-text .sub {
    font-size: 26px;
  }
}

@media (max-width: 420px) {
  .navbar .nav-cta {
    padding: 8px 10px;
    font-size: 11px;
  }
}


@media (max-width: 900px) {
  .about-img-wrap {
    position: relative;
    overflow: hidden;
    min-height: 320px;
  }

  .mission-card {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: auto;
    max-width: min(320px, calc(100% - 32px));
    margin: 0;
    z-index: 2;
  }
}

@media (max-width: 520px) {
  .about-img-wrap {
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    padding: 16px;
  }

  .mission-card {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
  }
}



/*404 Page */

.error-page {
  background: var(--dark-bg);
  color: var(--text-white);
}

.error-hero {
  min-height: 100vh;
  padding: 140px 24px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(rgba(5, 8, 15, 0.72), rgba(5, 8, 15, 0.9)),
    url("../images/hero-bg.png") center / cover no-repeat;
}

.error-inner {
  max-width: 720px;
}

.error-code {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: clamp(88px, 18vw, 180px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 6px;
  color: var(--blue-glow);
  text-shadow: 0 0 32px rgba(0, 180, 255, 0.7);
}

.error-inner h1 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 54px);
  color: #fff;
}

.error-inner p {
  margin: 0 auto 30px;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

@media (max-width: 520px) {
  .error-actions .btn-primary,
  .error-actions .btn-outline {
    width: 100%;
    max-width: 280px;
  }
}

/*Index Page */
.index-page {
  background: #ffffff;
  color: #071126;
}

.index-hero {
  padding: 150px 48px 70px;
  text-align: center;
  background:
    linear-gradient(rgba(5, 8, 15, 0.72), rgba(5, 8, 15, 0.88)),
    url("../images/hero-bg.png") center / cover no-repeat;
  color: #fff;
}

.inner-container {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.index-hero h1 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 74px);
  font-weight: 900;
}

.index-hero p {
  color: var(--text-muted);
  font-size: 18px;
}

.index-content {
  padding: 70px 48px;
}

.post-list {
  display: grid;
  gap: 24px;
}

.post-card {
  padding: 28px;
  border: 1px solid rgba(10, 132, 255, 0.16);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(0, 25, 70, 0.08);
}

.post-card h2 {
  margin-bottom: 8px;
  font-size: 26px;
}

.post-card h2 a {
  color: #071126;
}

.post-card h2 a:hover,
.post-read-more:hover {
  color: var(--blue-primary);
}

.post-meta {
  margin-bottom: 14px;
  color: #5e6f89;
  font-size: 13px;
}

.post-excerpt {
  color: #26344d;
  line-height: 1.7;
}

.post-read-more {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue-primary);
  font-weight: 700;
}

.pagination {
  margin-top: 24px;
}

@media (max-width: 700px) {
  .index-hero,
  .index-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .post-card {
    padding: 22px;
  }
}


/*Privacy Policy Page */
.privacy-page {
  padding: 150px 24px 80px;
  background: linear-gradient(rgba(5, 8, 15, 0.35), rgba(5, 8, 15, 0.55)), var(--dark-bg);
}

.inner-container {
  width: min(900px, 100%);
  margin: 0 auto;
}

.privacy-page h1 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
}

.last-updated {
  margin-bottom: 38px;
  font-size: 14px;
}

.privacy-page h2 {
  margin: 30px 0 10px;
  font-size: 22px;
}

.privacy-page p {
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.75;
}

.privacy-page a {
  color: var(--blue-primary);
  font-weight: 700;
}

/*Terms of Services */
.privacy-page,
.terms-page {
  padding: 150px 24px 80px;
  background: linear-gradient(rgba(5, 8, 15, 0.35), rgba(5, 8, 15, 0.55)), var(--dark-bg);
}

.inner-container {
  width: min(900px, 100%);
  margin: 0 auto;
}

.privacy-page h1,
.terms-page h1 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
}

.last-updated {
  margin-bottom: 38px;
  font-size: 14px;
}

.privacy-page h2,
.terms-page h2 {
  margin: 30px 0 10px;
  font-size: 22px;
}

.privacy-page p,
.terms-page p {
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.75;
}

.privacy-page a,
.terms-page a {
  color: var(--blue-primary);
  font-weight: 700;
}

/*About Us Page */
.about-page {
  padding: 150px 24px 90px;
}

.inner-container {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.inner-label {
  margin-bottom: 12px;
  color: var(--blue-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-page h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1.05;
}

.about-page .lead {
  max-width: 760px;
  margin-bottom: 56px;
  font-size: 20px;
  line-height: 1.65;
}

.about-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 46px;
  align-items: start;
  margin-bottom: 54px;
}

.about-page h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.about-page p {
  margin-bottom: 26px;
  font-size: 16px;
  line-height: 1.75;
}

.about-page-card {
  padding: 28px;
  border-radius: 10px;
  background: #041325;
  color: #fff;
  box-shadow: 0 16px 38px rgba(0, 20, 50, 0.14);
}

.about-page-card h3 {
  margin-bottom: 18px;
  font-size: 22px;
}

.about-page-card ul {
  list-style: none;
}

.about-page-card li {
  padding: 10px 0;
  color: #d9e8f7;
  border-bottom: 1px solid rgba(0, 180, 255, 0.14);
}

.about-page-card li:last-child {
  border-bottom: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.values-grid div {
  padding: 26px;
  border: 1px solid rgba(10, 132, 255, 0.16);
  border-radius: 10px;
  background: #041325;
}

.values-grid h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 22px;
}

.values-grid p {
  margin-bottom: 0;
  font-size: 14px;
}

@media (max-width: 800px) {
  .about-page {
    padding: 130px 20px 70px;
  }

  .about-page-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-page .lead {
    font-size: 18px;
  }
}

/*Contact Us */
.contact-page {
  padding: 150px 24px 90px;
}

.contact-page h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1.05;
}

.contact-page .lead {
  max-width: 680px;
  margin-bottom: 50px;
  font-size: 20px;
  line-height: 1.65;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.contact-card,
.contact-form-card {
  border-radius: 10px;
  box-shadow: 0 16px 38px rgba(0, 20, 50, 0.12);
}

.contact-card {
  padding: 30px;
  background: #041325;
  color: #fff;
}

.contact-form-card {
  padding: 30px;
  background: #041325;
  color: #fff;
  border: 1px solid rgba(10, 132, 255, 0.14);
}

.contact-card h2,
.contact-form-card h2 {
  margin-bottom: 22px;
  font-size: 26px;
}

.contact-list p {
  margin-bottom: 20px;
  color: #d9e8f7;
  line-height: 1.6;
}

.contact-list a {
  color: var(--blue-glow);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(10, 132, 255, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: #071126;
  background: #fff;
  outline: none;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.12);
}

@media (max-width: 800px) {
  .contact-page {
    padding: 130px 20px 70px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-page .lead {
    font-size: 18px;
  }
}


/*Services Page */
.services-page {
  padding: 150px 24px 90px;
}

.services-page h1 {
  max-width: 800px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1.05;
}

.services-page .lead {
  max-width: 720px;
  margin-bottom: 52px;
  color: #fff;
  font-size: 20px;
  line-height: 1.65;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-detail-card {
  padding: 30px;
  border-radius: 10px;
  background: #071126;
  border: 1px solid rgba(10, 132, 255, 0.14);
  box-shadow: 0 12px 34px rgba(0, 25, 70, 0.08);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.service-detail-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue-primary);
  box-shadow: 0 18px 42px rgba(0, 25, 70, 0.14);
}

.service-detail-icon {
  margin-bottom: 18px;
  color: var(--blue-primary);
  font-size: 38px;
  line-height: 1;
}

.service-detail-card h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
}

.service-detail-card p {
  color: #fff;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .services-page {
    padding: 130px 20px 70px;
  }

  .services-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-page .lead {
    font-size: 18px;
  }
}

@media (max-width: 560px) {
  .services-page-grid {
    grid-template-columns: 1fr;
  }
}


/*Get In Touch Page */
.get-touch-page {
  padding: 150px 24px 90px;
}

.get-touch-page h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1.05;
}

.get-touch-page .lead {
  max-width: 760px;
  margin-bottom: 52px;
  color: #fff;
  font-size: 20px;
  line-height: 1.65;
}

.get-touch-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.get-touch-info,
.get-touch-form-card {
  border-radius: 10px;
  box-shadow: 0 16px 38px rgba(0, 20, 50, 0.12);
}

.get-touch-info {
  padding: 30px;
  background: #041325;
  color: #fff;
}

.get-touch-form-card {
  padding: 30px;
  background: #041325;
  border: 1px solid rgba(10, 132, 255, 0.14);
}

.get-touch-info h2,
.get-touch-form-card h2 {
  margin-bottom: 22px;
  font-size: 26px;
}

.touch-list {
  display: grid;
  gap: 22px;
}

.touch-list h3 {
  margin-bottom: 7px;
  color: #fff;
  font-size: 18px;
}

.touch-list p {
  color: #d9e8f7;
  font-size: 14px;
  line-height: 1.65;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(10, 132, 255, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: #071126;
  background: #fff;
  outline: none;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.12);
}

@media (max-width: 800px) {
  .get-touch-page {
    padding: 130px 20px 70px;
  }

  .get-touch-grid {
    grid-template-columns: 1fr;
  }

  .get-touch-page .lead {
    font-size: 18px;
  }
}


/*Let’s Work Together */
.work-together-page {
  padding: 150px 24px 90px;
}

.work-together-page h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1.05;
}

.work-together-page .lead {
  max-width: 760px;
  margin-bottom: 52px;
  color: #fff;
  font-size: 20px;
  line-height: 1.65;
}

.work-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.work-panel,
.work-form-card {
  border-radius: 10px;
  box-shadow: 0 16px 38px rgba(0, 20, 50, 0.12);
}

.work-panel {
  padding: 30px;
  background: #041325;
  color: #fff;
}

.work-form-card {
  padding: 30px;
  background: #f8faff;
  border: 1px solid rgba(10, 132, 255, 0.14);
}

.work-panel h2,
.work-form-card h2 {
  margin-bottom: 22px;
  font-size: 26px;
}

.work-steps {
  display: grid;
  gap: 24px;
}

.work-steps span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue-glow);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
}

.work-steps h3 {
  margin-bottom: 7px;
  color: #fff;
  font-size: 18px;
}

.work-steps p {
  color: #d9e8f7;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 800px) {
  .work-together-page {
    padding: 130px 20px 70px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-together-page .lead {
    font-size: 18px;
  }
}

/*Projects Page */
.projects-page {
  padding: 150px 24px 90px;
}

.projects-page h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1.05;
}

.projects-page .lead {
  max-width: 760px;
  margin-bottom: 52px;
  color: #fff;
  font-size: 20px;
  line-height: 1.65;
}

.projects-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.project-detail-card {
  overflow: hidden;
  border-radius: 12px;
  background: #041325;
  border: 1px solid rgba(0, 180, 255, 0.22);
  box-shadow: 0 16px 38px rgba(0, 20, 50, 0.18);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.project-detail-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue-glow);
  box-shadow: 0 20px 46px rgba(0, 20, 50, 0.28);
}

.project-detail-thumb {
  height: 260px;
  background: #0d1420;
  overflow: hidden;
}

.project-detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-detail-body {
  padding: 24px;
}

.project-detail-body span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue-glow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.project-detail-body h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 26px;
}

.project-detail-body p {
  margin-bottom: 18px;
  color: #d9e8f7;
  font-size: 15px;
  line-height: 1.7;
}

.project-detail-body a {
  color: var(--blue-glow);
  font-weight: 800;
}

.project-detail-body a:hover {
  color: #fff;
}

@media (max-width: 800px) {
  .projects-page {
    padding: 130px 20px 70px;
  }

  .projects-page-grid {
    grid-template-columns: 1fr;
  }

  .projects-page .lead {
    font-size: 18px;
  }

  .project-detail-thumb {
    height: 220px;
  }
}


/*Solutions Page */
.solutions-page {
  padding: 150px 24px 90px;
}

.solutions-page h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1.05;
}

.solutions-page .lead {
  max-width: 780px;
  margin-bottom: 52px;
  color: #fff;
  font-size: 20px;
  line-height: 1.65;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.solution-card {
  min-height: 260px;
  padding: 30px;
  border-radius: 10px;
  background: #26344d;
  border: 1px solid rgba(10, 132, 255, 0.14);
  box-shadow: 0 12px 34px rgba(0, 25, 70, 0.08);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue-primary);
  box-shadow: 0 18px 42px rgba(0, 25, 70, 0.14);
}

.solution-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue-primary);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
}

.solution-card h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
}

.solution-card p {
  color: #fff;
  font-size: 15px;
  line-height: 1.7;
}

.solutions-cta {
  margin-top: 34px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 10px;
  background: #041325;
  color: #fff;
  box-shadow: 0 16px 38px rgba(0, 20, 50, 0.16);
}

.solutions-cta h2 {
  margin-bottom: 8px;
  font-size: 28px;
  color: #fff;
}

.solutions-cta p {
  color: #d9e8f7;
  line-height: 1.6;
}

.solutions-cta .btn-primary {
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .solutions-page {
    padding: 130px 20px 70px;
  }

  .solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solutions-page .lead {
    font-size: 18px;
  }

  .solutions-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}


/*Blog */
.blog-page {
  color: #fff;
}

.blog-hero {
  padding: 150px 24px 60px;
}

.blog-hero h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1.05;
  color: #fff;
}

.blog-hero .lead {
  max-width: 760px;
  color: #fff;
  font-size: 20px;
  line-height: 1.65;
}

.blog-list-section {
  padding: 0 24px 90px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  overflow: hidden;
  border-radius: 12px;
  background: #f8faff;
  border: 1px solid rgba(10, 132, 255, 0.14);
  box-shadow: 0 12px 34px rgba(0, 25, 70, 0.08);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue-primary);
  box-shadow: 0 18px 42px rgba(0, 25, 70, 0.14);
}

.blog-thumb {
  display: block;
  height: 210px;
  overflow: hidden;
  background: #041325;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
}

.blog-meta {
  margin-bottom: 10px;
  color: var(--blue-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-card h2 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.2;
}

.blog-card h2 a {
  color: #071126;
}

.blog-excerpt {
  color: #26344d;
  font-size: 15px;
  line-height: 1.7;
}

.blog-read-more {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue-primary);
  font-weight: 800;
}

.blog-card h2 a:hover,
.blog-read-more:hover {
  color: var(--blue-glow);
}

.pagination {
  margin-top: 36px;
}

.empty-state {
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(10, 132, 255, 0.14);
}

@media (max-width: 1000px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .blog-hero {
    padding: 130px 20px 50px;
  }

  .blog-list-section {
    padding: 0 20px 70px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero .lead {
    font-size: 18px;
  }
}

/* ── SINGLE BLOG POST ── */
.single-post-page {
  color: #fff;
}

.single-post-hero {
  padding: 150px 24px 54px;
  background:
    linear-gradient(rgba(5, 8, 15, 0.78), rgba(5, 8, 15, 0.92)),
    url("../images/hero-bg.png") center / cover no-repeat;
  color: #fff;
}

.single-post-meta {
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--blue-glow);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.single-post-meta a {
  color: var(--blue-glow);
}

.single-post-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.08;
  color: #fff;
}

.single-post-excerpt {
  max-width: 760px;
  color: #d9e8f7;
  font-size: 20px;
  line-height: 1.65;
}

.single-post-featured {
  margin-top: -34px;
  position: relative;
  z-index: 2;
}

.single-post-featured img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(0, 20, 50, 0.28);
}

.single-post-content-wrap {
  padding: 70px 24px 90px;
}

.single-post-layout {
  max-width: 860px;
}

.single-post-content {
  color: #fff;
  font-size: 18px;
  line-height: 1.85;
}

.single-post-content > * {
  margin-bottom: 22px;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
  margin-top: 42px;
  margin-bottom: 14px;
  color: #071126;
  line-height: 1.25;
}

.single-post-content h2 {
  font-size: 34px;
}

.single-post-content h3 {
  font-size: 26px;
}

.single-post-content h4 {
  font-size: 21px;
}

.single-post-content p {
  margin-bottom: 22px;
}

.single-post-content a {
  color: var(--blue-primary);
  font-weight: 800;
}

.single-post-content ul,
.single-post-content ol {
  padding-left: 24px;
}

.single-post-content li {
  margin-bottom: 10px;
}

.single-post-content blockquote {
  margin: 34px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--blue-primary);
  background: #f8faff;
  color: #071126;
  font-size: 20px;
  line-height: 1.65;
}

.single-post-content img {
  border-radius: 10px;
  box-shadow: 0 12px 34px rgba(0, 25, 70, 0.12);
}

.single-post-content code {
  padding: 2px 6px;
  border-radius: 5px;
  background: #edf5ff;
  color: #003580;
  font-size: 0.9em;
}

.single-post-content pre {
  overflow-x: auto;
  padding: 20px;
  border-radius: 10px;
  background: #041325;
  color: #e8f4ff;
}

.single-post-content pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}

@media (max-width: 700px) {
  .single-post-hero {
    padding: 130px 20px 46px;
  }

  .single-post-content-wrap {
    padding: 56px 20px 70px;
  }

  .single-post-excerpt {
    font-size: 18px;
  }

  .single-post-content {
    font-size: 16px;
    line-height: 1.75;
  }

  .single-post-content h2 {
    font-size: 28px;
  }

  .single-post-content h3 {
    font-size: 23px;
  }
}


/*Software Development Services */
.service-single-page {
  padding: 150px 24px 90px;
}

.service-single-page h1 {
  max-width: 940px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 64px);
  line-height: 1.08;
}

.service-single-page .lead {
  max-width: 760px;
  margin-bottom: 52px;
  color: #fff;
  font-size: 20px;
  line-height: 1.65;
}

.service-single-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 34px;
  align-items: start;
}

.service-single-content {
  color: #fff;
}

.service-single-content h2,
.service-process h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 30px;
  line-height: 1.2;
}

.service-single-content p {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.8;
}

.service-single-content ul,
.service-single-card ul {
  margin-bottom: 30px;
  padding-left: 22px;
}

.service-single-content li,
.service-single-card li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.service-single-card {
  position: sticky;
  top: 100px;
  padding: 30px;
  border-radius: 12px;
  background: #041325;
  color: #fff;
  box-shadow: 0 16px 38px rgba(0, 20, 50, 0.16);
}

.service-single-card h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 26px;
}

.service-single-card li {
  color: #d9e8f7;
}

.service-single-card .btn-primary {
  width: 100%;
}

.service-process {
  margin-top: 60px;
  padding-top: 42px;
  border-top: 1px solid rgba(10, 132, 255, 0.14);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.process-grid div {
  padding: 26px;
  border-radius: 10px;
  background: #041325;
  border: 1px solid rgba(10, 132, 255, 0.14);
  box-shadow: 0 12px 34px rgba(0, 25, 70, 0.08);
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue-primary);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
}

.process-grid h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 20px;
}

.process-grid p {
  color: #fff;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .service-single-page {
    padding: 130px 20px 70px;
  }

  .service-single-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-single-card {
    position: static;
  }

  .service-single-page .lead {
    font-size: 18px;
  }
}