:root {
  --navy: #002e6b;
  --navy-deep: #001b38;
  --electric: #0a66c2;
  --gradient-start: #053b8a;
  --gradient-end: #1d78f2;
  --soft-gray: #f5f7fa;
  --white: #ffffff;
  --text-dark: #0a1224;
  --text-muted: rgba(10, 18, 36, 0.72);
  --shadow-elevated: 0 18px 45px rgba(0, 0, 0, 0.08);
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1240px;
  --section-padding: clamp(55px, 6vw, 80px);
  --transition: all 0.4s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(140% 140% at 50% 0%, rgba(13, 57, 120, 0.16), var(--soft-gray));
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1.7;
  min-height: 100vh;
}

.icon-flex {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px !important;
}

.icon-flex h3 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.logo img {
  /* height: 91px; */
  width: 180px;
  object-fit: contain;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal img {
  opacity: 0;
  transform: translateY(20px);
}

.reveal.in-view img {
  opacity: 1;
  transform: translateY(0);
}

a {
  text-decoration: none;
  color: inherit;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgb(18 28 37);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0, 26, 55, 0.08);
}

.nav-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 24px;
  color: var(--navy);
}

.logo-pill {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 500;
  /* color: var(--text-muted); */

  color: var(--white);
}

.nav-links a {
  position: relative;
  padding-bottom: 6px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--electric));
  transition: var(--transition);
  border-radius: 999px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: var(--white);
  font-weight: 600;
  box-shadow: var(--shadow-elevated);
  transition: var(--transition);
}

.nav-cta:hover {
  transform: translateY(-3px);
}

.section {
  padding: var(--section-padding) 32px;
  position: relative;
}

.section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top, rgba(13, 102, 194, 0.08), transparent 50%);
  opacity: 0.8;
  z-index: -1;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  margin-bottom: 54px;
  max-width: 780px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--electric);
}

.section-label::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--electric));
}

.section-title {
  font-size: clamp(44px, 4.4vw, 64px);
  line-height: 1.08;
  margin: 18px 0 18px;
  color: var(--navy);
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-muted);
}

.btn {
  border: none;
  padding: 18px 38px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: var(--white);
  box-shadow: var(--shadow-elevated);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(5, 59, 138, 0.25);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  background: rgba(255, 255, 255, 0.15) !important;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}




/* Universal Hero Banner System */
.universal-hero {
  position: relative;
  padding: 60px 32px 80px;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.universal-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.universal-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px);
}

.universal-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(0 0 0 / 75%), rgb(0 36 89 / 85%));
  z-index: 1;
  /* filter: blur(5px); */
}

.universal-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  color: var(--white);
}

.universal-hero__badge {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.universal-hero__content h1 {
  font-size: clamp(58px, 6vw, 72px);
  line-height: 1.1;
  margin: 0 0 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.universal-hero__content .subtitle {
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.5;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;

}

.universal-hero__content .subtitle.about {
  margin-left: auto;
  margin-right: auto;
}

.universal-hero__actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.universal-hero__glass-tiles {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.universal-hero__glass-tile {
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
}

.universal-hero__glass-tile i {
  font-size: 18px;
}

.universal-hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
  justify-content: center;
}

.universal-hero__stat {
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  min-width: 180px;
}

.universal-hero__stat strong {
  display: block;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
}

.universal-hero__stat span {
  font-size: 14px;
  opacity: 0.9;
}

.hero {
  padding: 160px 32px 180px;
  background: linear-gradient(180deg, var(--gradient-start), var(--gradient-end));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% -10%;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.25), transparent 60%);
  opacity: 0.7;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='700' height='700' viewBox='0 0 700 700' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.25'%3E%3Cpath d='M0 75H700M0 175H700M0 275H700M0 375H700M0 475H700M0 575H700M75 0V700M175 0V700M275 0V700M375 0V700M475 0V700M575 0V700' stroke='white' stroke-width='0.5'/%3E%3C/g%3E%3C/svg%3E") center/contain;
  mix-blend-mode: soft-light;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(54px, 5.5vw, 72px);
  line-height: 1.05;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.hero-text p {
  font-size: 23px;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 40px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.micro-copy {
  display: flex;
  gap: 26px;
  margin-top: 28px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.76);
}

.hero-visual {
  position: relative;
  padding: 38px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  box-shadow: 0 50px 140px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.hero-mesh {
  border-radius: var(--radius-md);
  padding: 60px;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.4), rgba(4, 14, 40, 0.14));
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

.hero-mesh img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elevated);
  animation: float 8s ease-in-out infinite;
}

.blur-orb {
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent);
  filter: blur(34px);
  animation: float 9s ease-in-out infinite;
}

.blur-orb:nth-child(1) {
  top: -30px;
  right: 40px;
}

.blur-orb:nth-child(2) {
  bottom: -50px;
  left: -20px;
  animation-delay: 1.5s;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.trust-section .glass-card {
  background: var(--white);
  border: 1px solid rgba(0, 46, 107, 0.08);
}

.glass-card {
  padding: 38px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-elevated);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.glass-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 102, 194, 0.1), transparent);
  opacity: 0;
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-10px);
}

.glass-card:hover::after {
  opacity: 1;
}

.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0A66C2, #1D78F2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(10, 102, 194, 0.25);
  flex-shrink: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 34px;
}

.services-grid-5 {
  grid-template-columns: repeat(3, 1fr);
}

.services-grid-5 .service-card:nth-child(n + 4) {
  grid-column: span 1;
}

@media (max-width: 1024px) {
  .services-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid-5 .service-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .universal-hero {
    padding: 100px 24px 120px;
    border-radius: 0 0 30px 30px;
    min-height: 500px;
  }

  .universal-hero__content h1 {
    font-size: clamp(42px, 8vw, 58px);
  }

  .universal-hero__content .subtitle {
    font-size: 20px;
  }

  .universal-hero__actions {
    flex-direction: column;
  }

  .universal-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .universal-hero__stats {
    flex-direction: column;
    gap: 16px;
  }

  .universal-hero__stat {
    width: 100%;
  }

  .universal-hero__glass-tiles {
    flex-direction: column;
  }

  .universal-hero__glass-tile {
    width: 100%;
    justify-content: center;
  }

  .services-grid-5 {
    grid-template-columns: 1fr;
  }

  .services-grid-5 .service-card:nth-child(5) {
    grid-column: 1;
    max-width: 100%;
  }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-elevated);
  position: relative;
  overflow: hidden;
  transition: transform 0.45s ease;
  height: 100%;
  position: relative;
}

/* Arrow container */
.draw-arrow {
  position: absolute;
  bottom: 18px;
  right: 18px;
  color: var(--electric);
}

/* SVG path draw setup */
.draw-arrow path {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  transition: stroke-dashoffset 0.6s ease;
}

/* Trigger draw on hover */
.service-card-wrapper:hover .draw-arrow path {
  stroke-dashoffset: 0;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.01);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

.service-card h3 {
  margin: 26px 0 16px;
  font-size: 26px;
  color: var(--navy);
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 26px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(10, 102, 194, 0.12);
  font-size: 14px;
  font-weight: 600;
  color: var(--electric);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 500;
}

.service-features li i {
  color: var(--electric);
  font-size: 18px;
  flex-shrink: 0;
}

.tech-section .section-header {
  margin-bottom: 32px;
}

.tech-cloud {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.tech-pill {
  background: var(--white);
  border-radius: 999px;
  padding: 14px 24px;
  box-shadow: var(--shadow-elevated);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0, 46, 107, 0.08);
  font-size: 16px;
}

.tech-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13, 102, 194, 0.15), transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.tech-pill:hover {
  transform: translateY(-6px);
  color: var(--electric);
}

.tech-pill:hover::after {
  opacity: 1;
}

.testimonials {
  position: relative;
  padding: var(--section-padding) 32px;
  overflow: hidden;
}

.testimonial-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.testimonial-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 59, 138, 0.15), rgba(29, 120, 242, 0.12), rgba(245, 247, 250, 0.95));
  z-index: 0;
}

.testimonial-bg .blur-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.testimonial-bg .blur-orb:nth-child(1) {
  width: 400px;
  height: 400px;
  background: rgba(5, 59, 138, 0.3);
  top: -150px;
  left: -100px;
  animation-delay: 0s;
}

.testimonial-bg .blur-orb:nth-child(2) {
  width: 350px;
  height: 350px;
  background: rgba(29, 120, 242, 0.25);
  bottom: -120px;
  right: -80px;
  animation-delay: 7s;
}

.testimonial-bg .blur-orb:nth-child(3) {
  width: 300px;
  height: 300px;
  background: rgba(10, 102, 194, 0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 14s;
}

.testimonial-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-padding) 32px;
  position: relative;
  z-index: 1;
}

.testimonial-container .section-header {
  color: var(--text-dark);
  margin-bottom: 48px;
}

.testimonial-container .section-title {
  color: var(--text-dark);
}

.testimonial-container .section-subtitle {
  color: var(--text-muted);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(5, 59, 138, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  position: relative;
  color: var(--text-dark);
}

.testimonial-card.hero-card {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12), 0 12px 30px rgba(5, 59, 138, 0.15);
}

.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12), 0 12px 30px rgba(5, 59, 138, 0.2);
}

.testimonial-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 17px;
  margin-top: 20px;
}

.testimonial-card strong {
  color: var(--text-dark);
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
}

.testimonial-card .testimonial-header p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

.quote-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(5, 59, 138, 0.15), rgba(29, 120, 242, 0.15));
  color: var(--electric);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(5, 59, 138, 0.15);
  object-fit: cover;
}

.ready-scale {
  padding: 100px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ready-scale__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.15;
  pointer-events: none;
}

.ready-scale__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(40px);
}

.ready-scale::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 59, 138, 0.12), transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.ready-scale__inner {
  position: relative;
  z-index: 1;
  /* max-width: 640px; */
  margin: 0 auto;
}

.ready-scale__inner h3 {
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.4em;
  margin: 16px 0;
  margin-top: 0px !important;
}

.ready-scale__inner p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

footer {
  background: #121c25;
  color: rgba(255, 255, 255, 0.82);
  padding: 90px 32px 40px;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 40px;
}

.footer-column ul li a:hover {
  color: var(--electric);
}

.footer-column h4 {
  color: var(--white);
  margin-bottom: 18px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}

.about-hero {
  padding: 140px 32px 120px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 140px;
  background: url("data:image/svg+xml,%3Csvg width='1440' height='200' viewBox='0 0 1440 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 80C160 140 320 160 480 140C640 120 800 60 960 60C1120 60 1280 120 1440 160V200H0V80Z' fill='%23F7FAFF'/%3E%3C/svg%3E") no-repeat center/cover;
}

.about-hero__content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-hero__text h1 {
  font-size: clamp(50px, 5vw, 64px);
  margin: 16px 0 20px;
}

.about-hero__text p {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 20px;
  backdrop-filter: blur(14px);
}

.stat strong {
  display: block;
  font-size: 32px;
  margin-bottom: 4px;
  color: var(--white);
}

.about-hero__visual {
  position: relative;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.about-hero__visual img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elevated);
}

.about-intro {
  background: var(--soft-gray);
  position: relative;
}

.about-intro__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: center;
}

.intro-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.intro-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(10, 102, 194, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--electric);
}

.intro-points {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.intro-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-dark);
}

.intro-media {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 40px;
  background: linear-gradient(135deg, rgba(5, 59, 138, 0.9), rgba(29, 120, 242, 0.8));
  color: white;
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
}

.intro-media img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elevated);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.mv-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-elevated);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(5, 59, 138, 0.08);
}

.mv-card .icon-badge {
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
}

.values-section .section-header {
  text-align: center;
  margin: 0 auto 48px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(0, 46, 107, 0.06);
}

.value-card .icon-badge {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.culture-section {
  background: var(--soft-gray);
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.culture-points {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.culture-points li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 600;
}

.culture-media {
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 30px;
  box-shadow: var(--shadow-elevated);
  position: relative;
  overflow: hidden;
}

.culture-media::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 46, 107, 0.1);
  pointer-events: none;
}

/* Services Page Styles */
.services-hero {
  padding: 140px 32px 120px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.services-hero::before,
.services-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.services-hero::before {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.15);
  top: -100px;
  right: 10%;
}

.services-hero::after {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  bottom: -150px;
  left: 8%;
}

.services-hero__content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.services-hero__text h1 {
  font-size: clamp(48px, 5vw, 64px);
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 700;
}

.services-hero__text p {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 16px;
}

.services-hero__visual {
  position: relative;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.services-hero__visual img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elevated);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.service-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(0, 46, 107, 0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(5, 59, 138, 0.2);
}

.service-card .icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(5, 59, 138, 0.15), rgba(29, 120, 242, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--electric);
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-card>p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 15px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
}

.service-features li i {
  color: var(--electric);
  font-size: 18px;
}

.service-card .btn-gradient {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.value-grid .value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 46, 107, 0.06);
  text-align: center;
  transition: var(--transition);
}

.value-grid .value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-grid .value-card .icon-badge {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(5, 59, 138, 0.12), rgba(29, 120, 242, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--electric);
  margin: 0 auto 16px;
}

.value-grid .value-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.feature-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--electric);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(5, 59, 138, 0.12), rgba(29, 120, 242, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--electric);
  flex-shrink: 0;
}

.feature-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

/* Process Page Styles */
.process-hero {
  padding: 120px 32px 100px;
  background: linear-gradient(135deg, rgba(5, 59, 138, 0.08), rgba(29, 120, 242, 0.05));
  position: relative;
  overflow: hidden;
}

.process-hero::before,
.process-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.process-hero::before {
  width: 300px;
  height: 300px;
  background: rgba(5, 59, 138, 0.2);
  top: -100px;
  right: 10%;
}

.process-hero::after {
  width: 250px;
  height: 250px;
  background: rgba(29, 120, 242, 0.15);
  bottom: -80px;
  left: 8%;
}

.process-hero__content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.process-hero__text h1 {
  font-size: clamp(48px, 5vw, 60px);
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--text-dark);
}

.process-hero__text p {
  font-size: 20px;
  color: var(--text-muted);
  margin-top: 16px;
}

.process-hero__visual {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.process-hero__visual img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elevated);
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  padding: 0 0 48px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(5, 59, 138, 0.25);
  position: relative;
  z-index: 2;
}

.timeline-number span {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}

.timeline-connector {
  position: absolute;
  left: 32px;
  top: 64px;
  width: 2px;
  height: calc(100% - 64px);
  background: linear-gradient(180deg, var(--gradient-start), var(--gradient-end));
  opacity: 0.3;
  z-index: -1;
}

.timeline-item:last-child .timeline-connector {
  display: none;
}

.timeline-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(0, 46, 107, 0.08);
  transition: var(--transition);
  position: relative;
}

.timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(5, 59, 138, 0.15);
}

.timeline-icon {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0A66C2, #1D78F2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  /* margin-bottom: 20px; */
  box-shadow: 0 8px 30px rgba(10, 102, 194, 0.25);
}

.timeline-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.timeline-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 17px;
  margin: 0;
}

/* Modal Styles */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
  border-radius: 24px;
  padding: 48px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.modal.show .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 46, 107, 0.08);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: var(--text-dark);
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(0, 46, 107, 0.15);
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 32px;
}

.modal-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(5, 59, 138, 0.1), rgba(29, 120, 242, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: var(--shadow-elevated);
}

.modal-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.modal-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.modal-header p {
  color: var(--text-muted);
  font-size: 17px;
}

.modal-form {
  display: grid;
  gap: 20px;
}

.modal-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-form label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.modal-form input,
.modal-form textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 46, 107, 0.12);
  font-size: 16px;
  font-family: inherit;
  background: var(--soft-gray);
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.modal-form input:focus,
.modal-form textarea:focus {
  outline: none;
  border-color: var(--electric);
  box-shadow: 0 0 0 4px rgba(10, 102, 194, 0.1);
  background: var(--white);
}

.modal-form textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.modal-form .btn-gradient {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  padding: 18px 32px;
  font-size: 18px;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 768px) {
  .nav-bar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .process-timeline {
    margin-top: 48px;
  }

  .timeline-item {
    flex-direction: column;
    gap: 20px;
    padding-left: 0;
  }

  .timeline-connector {
    left: 32px;
    height: calc(100% - 32px);
  }

  .timeline-card {
    margin-left: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-details-card,
  .contact-form-card {
    padding: 32px 24px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .section::after {
    display: none;
  }

  .cta {
    padding: 100px 24px;
  }
}

:root {
  --primary-blue: #5865e7;
  --gradient-deep: #053b8a;
  --gradient-light: #1d78f2;
  --card-bg: #ffffff;
  --soft-bg: #f5f9ff;
  --text-dark: #07122f;
  --text-muted: rgba(7, 18, 47, 0.7);
  --shadow-lg: 0 24px 60px rgba(5, 59, 138, 0.25);
  --shadow-md: 0 14px 38px rgba(10, 102, 194, 0.18);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.08);
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1200px;
  --section-padding: clamp(calc(72px * 0.4),
      calc(8vw * 0.4),
      calc(120px * 0.4));
  --transition-base: all 0.35s ease;
}

.hover-text:hover {
  color: var(--primary-blue);
  cursor: pointer;
}

.hover-text {
  display: -webkit-box;
  /* max-height: 2.6em; */
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--soft-bg);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 18px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgb(18 28 37);
  ;
  box-shadow: 0 10px 30px rgba(5, 59, 138, 0.08);
  backdrop-filter: blur(10px);
}

.nav-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-pill {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gradient-deep), var(--gradient-light));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding-bottom: 6px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--primary-blue);
  color: white;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.nav-cta:hover {
  transform: translateY(-2px);
}

.hero {
  background: linear-gradient(135deg, var(--gradient-deep), var(--gradient-light));
  color: white;
  padding: var(--section-padding) 32px calc(var(--section-padding) * 1.2);
  position: relative;
  overflow: hidden;
}

.hero::after,
.hero::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}

.hero::before {
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.15);
  top: -80px;
  right: 16%;
}

.hero::after {
  width: 380px;
  height: 380px;
  background: rgba(255, 255, 255, 0.08);
  bottom: -120px;
  left: 12%;
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(48px, 5vw, 64px);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero p {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition-base);
}

.btn-primary {
  background: white;
  color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: white;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 50px 120px rgba(5, 59, 138, 0.4);
  overflow: hidden;
}

.hero-visual img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  animation: float 6s ease-in-out infinite;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.section {
  padding: var(--section-padding) 32px;
  position: relative;
}

.section.waves {
  background: white;
  clip-path: path("M0,0 C 200,80 400,80 600,0 L 600,100 L 0,100 Z");
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 48px;
}

.underline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.underline::after {
  content: "";
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gradient-deep), var(--gradient-light));
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.floating-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.floating-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.floating-card .icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(13, 94, 210, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.services-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  border: 1px solid rgba(5, 59, 138, 0.08);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(5, 59, 138, 0.08), transparent);
  opacity: 0;
  transition: var(--transition-base);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.service-card:hover::after {
  opacity: 1;
}

.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.pill {
  padding: 12px 22px;
  border-radius: 999px;
  background: white;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  color: var(--primary-blue);
}

.testimonials {
  background: linear-gradient(135deg, rgba(5, 59, 138, 0.1), rgba(3, 17, 43, 0.5));
  color: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  min-height: 240px;
}

.testimonial-card img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: 18px;
}

.cta {
  margin-top: var(--section-padding);
  padding: 64px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gradient-deep), var(--gradient-light));
  color: white;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta::after,
.cta::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  filter: blur(80px);
}

.cta::before {
  top: -60px;
  left: 10%;
}

.cta::after {
  bottom: -80px;
  right: 12%;
}

.cta h3 {
  font-size: 42px;
  margin-bottom: 18px;
  margin-top: 0px !important;
}

.cta p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.85);
}

.cta .btn-primary {
  background: white;
  color: var(--primary-blue);
}

footer {
  background: #121c25;
  color: white;
  padding: 72px 32px;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.footer-column h4 {
  font-size: 20px;
  margin-bottom: 18px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom {
  margin-top: 32px;
  /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
  padding-top: 18px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.wave-divider {
  position: relative;
  height: 140px;
}

.wave-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.page-hero {
  padding: 140px 32px 80px;
  background: linear-gradient(180deg, rgba(5, 59, 138, 0.08), transparent);
  position: relative;
}

.page-hero h1 {
  font-size: clamp(48px, 4.5vw, 60px);
  margin-bottom: 16px;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.value-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gradient-deep), var(--gradient-light));
}

.timeline-step {
  position: relative;
  margin-bottom: 40px;
  padding-left: 32px;
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 4px solid white;
  background: linear-gradient(135deg, var(--gradient-deep), var(--gradient-light));
  box-shadow: var(--shadow-sm);
}

.timeline-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* Contact Page Styles */
.contact-hero {
  padding: 120px 32px 100px;
  background: linear-gradient(135deg, rgba(5, 59, 138, 0.08), rgba(29, 120, 242, 0.05));
  position: relative;
  overflow: hidden;
}

.contact-hero::before,
.contact-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.contact-hero::before {
  width: 300px;
  height: 300px;
  background: rgba(5, 59, 138, 0.2);
  top: -100px;
  right: 10%;
}

.contact-hero::after {
  width: 250px;
  height: 250px;
  background: rgba(29, 120, 242, 0.15);
  bottom: -80px;
  left: 8%;
}

.contact-hero__content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-hero__text h1 {
  font-size: clamp(48px, 5vw, 60px);
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--text-dark);
}

.contact-hero__text p {
  font-size: 20px;
  color: var(--text-muted);
  margin-top: 16px;
}

.contact-hero__visual {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact-hero__visual img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elevated);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 48px;
}

.contact-details-card,
.contact-form-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(0, 46, 107, 0.08);
}

.contact-details-card h3,
.contact-form-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.card-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 32px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0A66C2, #1D78F2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 8px 30px rgba(10, 102, 194, 0.25);
}

.contact-info strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
}

.office-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 46, 107, 0.1);
}

.office-badge {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(5, 59, 138, 0.1), rgba(29, 120, 242, 0.1));
  color: var(--electric);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(5, 59, 138, 0.15);
}

.contact-form {
  display: grid;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 46, 107, 0.12);
  font-size: 16px;
  font-family: inherit;
  background: var(--soft-gray);
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--electric);
  box-shadow: 0 0 0 4px rgba(10, 102, 194, 0.1);
  background: var(--white);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
  font-family: inherit;
}

.contact-form .btn-gradient {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  padding: 18px 32px;
  font-size: 18px;
}

form {
  display: grid;
  gap: 18px;
}

input,
textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(7, 18, 47, 0.1);
  font-size: 16px;
  font-family: inherit;
  background: var(--soft-bg);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.18);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.btn-gradient {
  background: linear-gradient(135deg, var(--gradient-deep), var(--gradient-light));
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.btn-gradient:hover {
  transform: translateY(-4px);
}

.service-detail-card {
  border-top: 6px solid var(--primary-blue);
}

.service-detail-card .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin-bottom: 18px;
  background: rgba(10, 102, 194, 0.12);
}

.gradient-strip {
  height: 6px;
  width: 80px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gradient-deep), var(--gradient-light));
  margin-bottom: 18px;
}

.wave-background {
  position: relative;
  background: white;
}

.wave-background::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg width='1440' height='60' viewBox='0 0 1440 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0L60 5C120 10 240 20 360 27.5C480 35 600 40 720 35C840 30 960 15 1080 12.5C1200 10 1320 20 1380 25L1440 30V60H1380C1320 60 1200 60 1080 60C960 60 840 60 720 60C600 60 480 60 360 60C240 60 120 60 60 60H0V0Z' fill='%23F5F9FF'/%3E%3C/svg%3E") no-repeat center/cover;
}

.badge-stack {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(10, 102, 194, 0.1);
  color: var(--primary-blue);
  font-weight: 600;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .nav-bar {
    flex-direction: column;
    gap: 16px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .cta h3 {
    font-size: 32px;
  }

  .timeline {
    padding-left: 0;
  }

  .timeline::before {
    left: 0;
  }

  .timeline-step {
    padding-left: 40px;
  }

  .timeline-step::before {
    left: -4px;
  }
}


.btn {
  position: relative;
}

.btn-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.btn.loading .btn-text {
  /* visibility: hidden; */
  display: none;
}

.btn.loading .btn-loader {
  display: inline-block;
}

.btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

.super-toast .toast-close {
  color: #9ca3af;
  font-size: 14px;
  margin-left: 10px;
  opacity: 0.8;
}

.super-toast .toast-close:hover {
  opacity: 1;
  color: #111827;
}

.form-group {
  position: relative;
}

.error {
  color: #ef4444;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

input.error-border,
textarea.error-border {
  border-color: #ef4444;
}




@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* --- Section Container --- */
.vt-row-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.vt-row-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* --- Header --- */
.vt-row-header {
  margin-bottom: 50px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 30px;
}

.vt-row-label {
  color: #3b82f6;
  /* Bright Blue */
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.vt-row-heading {
  font-size: 2.5rem;
  color: #111827;
  margin: 0 0 10px 0;
  font-weight: 800;
}

.vt-row-text {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
}

/* --- The Row Design --- */
.vt-tech-row {
  display: flex;
  align-items: center;
  /* Vertically center content */
  padding: 35px 20px;
  border-bottom: 1px solid #e5e7eb;
  transition: background-color 0.3s ease;
}

.vt-tech-row:hover {
  background-color: #f9fafb;
  /* Very subtle grey on hover */
}

/* --- Left Side: Text Info --- */
.vt-row-info {
  width: 30%;
  /* Takes up 30% of width */
  padding-right: 20px;
}

.vt-row-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 6px 0;
}

.vt-row-desc {
  font-size: 0.9rem;
  color: #9ca3af;
  font-weight: 500;
}

/* --- Right Side: Logos --- */
.vt-row-logos {
  width: 70%;
  /* Takes up 70% of width */
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.vt-row-logos img {
  height: 32px;
  width: auto;
  object-fit: contain;
  /* filter: grayscale(100%); */
  /* opacity: 0.5; */
  transition: all 0.3s ease;
  max-width: 100px;
}

/* Hover Effects */
.vt-tech-row:hover .vt-row-logos img {
  filter: grayscale(0%);
  opacity: 1;
}

.vt-row-logos img:hover {
  transform: scale(1.1);
  cursor: pointer;
}

/* --- Responsive Breakpoints --- */

/* Tablet & Mobile */
@media (max-width: 768px) {
  .vt-tech-row {
    flex-direction: column;
    /* Stack vertically */
    align-items: flex-start;
    padding: 25px 0;
  }

  .vt-row-info {
    width: 100%;
    margin-bottom: 20px;
  }

  .vt-row-logos {
    width: 100%;
    gap: 20px;
  }

  .vt-row-heading {
    font-size: 2rem;
  }
}

/* --- Infinite Scroll Tech Logos (Global) --- */
.tech-scroll-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 50px;
  padding: 30px 0;
  /* Fade mask for smooth edges */
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.tech-scroll-track {
  display: flex;
  width: max-content;
  gap: 60px;
  animation: scroll 35s linear infinite;
  align-items: center;
}

.tech-scroll-track:hover {
  animation-play-state: paused;
}

.tech-logo-item {
  height: 60px;
  width: auto;
  transition: all 0.3s ease;
  filter: grayscale(100%);
  opacity: 0.6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-logo-item img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

.tech-logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Service Card Link Wrapper */
.service-card-wrapper {
  display: block;
  height: 100%;
  color: inherit;
}

.service-card-wrapper:hover {
  text-decoration: none;
}

/* Ensure the card takes full height of the wrapper */
.service-card-wrapper .service-card {
  height: 100%;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

/* Hover effect on the wrapper triggers the card transform */
.service-card-wrapper:hover .service-card {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 30px 60px rgba(5, 59, 138, 0.15);
}

/* Remove default link styles from the h3 since the wrapper handles the link */
.service-card-wrapper h3 {
  color: var(--navy);
  text-decoration: none;
}

.service-card-wrapper:hover h3 {
  text-decoration: none;
}

/* Animated Arrow */
.service-card-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(10, 102, 194, 0.1);
  color: var(--electric);
  font-size: 18px;
  z-index: 10;

  /* Initial State: Hidden and slightly shifted */
  opacity: 0;
  transform: translate(-10px, 10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover State */
.service-card-wrapper:hover .service-card-arrow {
  opacity: 1;
  transform: translate(0, 0);
}