:root {
  --blue: #1872d9;
  --blue-dark: #0b54a5;
  --purple: #7a2fbe;
  --purple-dark: #5f26ac;
  --green: #4caf2e;
  --orange: #f6a31a;
  --text: #1f2430;
  --muted: #5f6878;
  --white: #ffffff;
  --surface: #f8fbff;
  --border: #e8eef6;
  --shadow-soft: 0 18px 50px rgba(24, 114, 217, 0.08);
  --shadow-logo: 0 20px 45px rgba(24, 114, 217, 0.08), 0 14px 28px rgba(122, 47, 190, 0.10), 0 8px 18px rgba(246, 163, 26, 0.08), 0 4px 14px rgba(76, 175, 46, 0.08);
  --gradient-main: linear-gradient(135deg, var(--blue), var(--purple));
  --gradient-logo: linear-gradient(135deg, var(--blue), var(--purple), var(--orange), var(--green));
  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 28px;
  --container: 1180px;
  --transition: 260ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--text);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 12px;
  z-index: 9999;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 88px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple-dark);
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gradient-logo);
  box-shadow: 0 0 0 7px rgba(122, 47, 190, 0.08);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.4rem, 4vw + 1rem, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(1.9rem, 2vw + 1rem, 3rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(24, 114, 217, 0.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--white);
  background: var(--gradient-logo);
  box-shadow: var(--shadow-logo);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-size: 1.08rem;
  color: var(--text);
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  font-weight: 600;
  color: var(--muted);
  transition: color var(--transition);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--gradient-main);
  box-shadow: 0 15px 32px rgba(24, 114, 217, 0.18), 0 8px 20px rgba(122, 47, 190, 0.15);
}

.btn-secondary {
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(24, 114, 217, 0.12);
  box-shadow: var(--shadow-soft);
}

.hero {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  overflow: clip;
}

.hero-grid,
.section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-bg {
  position: absolute;
  border-radius: 999px;
  filter: blur(32px);
  opacity: 0.18;
  pointer-events: none;
}

.hero-bg-1 {
  width: 280px;
  height: 280px;
  top: 72px;
  left: -90px;
  background: var(--blue);
  animation: floatBlob 8s ease-in-out infinite;
}

.hero-bg-2 {
  width: 320px;
  height: 320px;
  right: -100px;
  bottom: 40px;
  background: var(--purple);
  animation: floatBlob 9s ease-in-out infinite reverse;
}

.hero-text {
  font-size: 1.05rem;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 28px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-points li,
.feature-item,
.service-card,
.project-card,
.contact-card {
  background: var(--white);
  border: 1px solid rgba(24, 114, 217, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-logo);
}

.hero-points li {
  padding: 16px 18px;
  font-weight: 700;
  color: var(--text);
}

.hero-media {
  position: relative;
  min-height: 580px;
}

.hero-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(24, 114, 217, 0.08);
  box-shadow: var(--shadow-logo);
}

.hero-card img,
.about-media img {
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  inset: 40px 0 40px 70px;
  animation: floatSoft 6s ease-in-out infinite;
}

.hero-card-float {
  width: 46%;
  height: 210px;
  left: 0;
  bottom: 20px;
  animation: floatSoft 5s ease-in-out infinite reverse;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(24, 114, 217, 0.08);
  box-shadow: var(--shadow-logo);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-badge-top {
  top: 14px;
  right: 12px;
}

.hero-badge-bottom {
  bottom: 6px;
  right: 70px;
}

.section-copy p:not(:last-child) {
  margin-bottom: 18px;
}

.feature-list,
.card-grid {
  display: grid;
  gap: 20px;
}

.feature-list {
  margin-top: 26px;
}

.feature-item,
.service-card,
.project-card,
.contact-card {
  padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

/* ===== Card Hover Effect (Premium Look) ===== */
.feature-item:hover,
.service-card:hover,
.project-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #ffffff;
  border-color: rgba(122, 47, 190, 0.3);
}

/* Make all text inside white */
.feature-item:hover h3,
.feature-item:hover p,
.service-card:hover h3,
.service-card:hover p,
.project-card:hover h3,
.project-card:hover p,
.project-card:hover .project-link,
.contact-card:hover h3,
.contact-card:hover p,
.contact-card:hover a {
  color: #ffffff;
}

/* Icons styling on hover */
.service-card:hover .icon-wrap,
.contact-card:hover .icon-wrap {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Project logo stays visible */
.project-card:hover .project-logo {
  background: #ffffff;
}

.about-media {
  min-height: 520px;
}

.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-logo);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.icon-wrap,
.project-logo {
  width: 120px;
  height: 120px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(24,114,217,0.12), rgba(122,47,190,0.12), rgba(246,163,26,0.12), rgba(76,175,46,0.12));
  box-shadow: var(--shadow-soft);
}

.icon-wrap {
  font-size: 1.5rem;
}

.project-card {
  display: block;
}

.project-logo {
  padding: 12px;
  margin-bottom: 18px;
  background: var(--white);
}

.project-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.project-link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 800;
  color: var(--purple-dark);
}

.contact-card a {
  color: var(--blue-dark);
  font-weight: 700;
  word-break: break-word;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 42px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer h2 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-nav a {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms ease, transform 800ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatBlob {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-18px) scale(1.06); }
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .section-grid {
    gap: 34px;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(24, 114, 217, 0.08);
    border-radius: 22px;
    box-shadow: var(--shadow-logo);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding-top: 22px;
  }

  .hero-grid,
  .section-grid,
  .project-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 430px;
    order: -1;
  }

  .hero-card-main {
    inset: 56px 0 70px 48px;
  }

  .hero-card-float {
    width: 44%;
    height: 160px;
  }

  .about-media {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .header-inner {
    min-height: 72px;
  }

  .hero-points,
  .services-grid,
  .project-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 360px;
  }

  .hero-card-main {
    inset: 32px 0 90px 18px;
  }

  .hero-card-float {
    width: 52%;
    height: 130px;
    left: 0;
    bottom: 10px;
  }

  .hero-badge {
    padding: 10px 14px;
    font-size: 0.78rem;
  }

  .hero-badge-top {
    top: 4px;
    right: 0;
  }

  .hero-badge-bottom {
    right: 18px;
    bottom: -2px;
  }

  .feature-item,
  .service-card,
  .project-card,
  .contact-card {
    padding: 20px;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .footer-inner {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 150px;
  width: auto;
  object-fit: contain;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}


/* ===== WORKING PROCESS SECTION ===== */

.process {
  background: linear-gradient(180deg, #f7f8ff 0%, #ffffff 100%);
}

.process-section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Container */
.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  gap: 20px;
  margin-top: 40px;
  padding: 50px 10px 10px;
}

/* Horizontal line */
.process-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 120px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(122,47,190,0.1),
    rgba(122,47,190,0.4),
    rgba(122,47,190,0.1)
  );
}

/* Each step */
.process-item {
  position: relative;
  text-align: center;
  max-width: 220px;
  margin: 0 auto;
}

/* Alternate layout (top/bottom) */
.process-item-1,
.process-item-3,
.process-item-5 {
  padding-top: 100px;
}

.process-item-2,
.process-item-4 {
  padding-top: 0;
}

/* Step number (small dot) */
.process-count {
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #7a2fbe;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(122, 47, 190, 0.3);
  z-index: 2;
}

/* Adjust for lower items */
.process-item-2 .process-count,
.process-item-4 .process-count {
  top: 120px;
}

/* Circle icon */
.process-circle {
  width: 90px;
  height: 90px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #ffffff;
  display: grid;
  place-items: center;
  font-size: 2rem;
  box-shadow: 0 20px 40px rgba(120, 100, 200, 0.08);
  border: 1px solid rgba(122, 47, 190, 0.08);
}

/* Text */
.process-item h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.process-item p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
  color: #666;
}

/* Tablet */
@media (max-width: 1100px) {
  .process-flow {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
  }

  .process-line {
    display: none;
  }

  .process-item,
  .process-item-1,
  .process-item-2,
  .process-item-3,
  .process-item-4,
  .process-item-5 {
    padding-top: 0;
  }

  .process-count {
    position: static;
    transform: none;
    margin: 0 auto 10px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .process-flow {
    grid-template-columns: 1fr;
  }

  .process-circle {
    width: 80px;
    height: 80px;
  }
}