@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:wght@300;400;500;600;700;800&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

/* Animated Cursor Styles */
.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent-purple);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease-out, opacity 0.3s ease-out;
  transform: translate(-50%, -50%);
}

.cursor-follower {
  width: 40px;
  height: 40px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(2px);
}

.cursor.hover {
  transform: translate(-50%, -50%) scale(1.5);
  background: rgba(124, 58, 237, 0.2);
  border-color: var(--accent-purple-light);
}

.cursor-follower.hover {
  transform: translate(-50%, -50%) scale(1.2);
  background: rgba(124, 58, 237, 0.15);
}

@media (max-width: 768px) {

  .cursor,
  .cursor-follower {
    display: none;
  }
}

:root {
  /* Colors */
  --bg-color: #05020c;
  --bg-color-alt: #0b0518;
  --accent-purple: #7c3aed;
  --accent-purple-light: #a78bfa;
  --accent-purple-dark: #5b21b6;
  --accent-blue: #3b82f6;
  --accent-pink: #ec4899;

  /* Gradients */
  --btn-gradient: linear-gradient(135deg, #7c3aed, #4f46e5);
  --btn-gradient-hover: linear-gradient(135deg, #8b5cf6, #6366f1);
  --text-gradient: linear-gradient(135deg, #ffffff 40%, #a78bfa 100%);
  --accent-text-gradient: linear-gradient(90deg, #a78bfa, #60a5fa);
  --card-highlight-gradient: linear-gradient(145deg, #2e1065 0%, #0f0728 100%);

  /* Glassmorphism */
  --card-bg: rgba(15, 10, 30, 0.45);
  --card-border: rgba(255, 255, 255, 0.06);
  --card-border-hover: rgba(124, 58, 237, 0.35);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);

  /* Typography */
  --font-headings: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  /* Spacing */
  --container-width: 1200px;
}

/* Base Styles & Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  background-color: var(--bg-color);
  color: #ffffff;
  font-family: var(--font-body) !important;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;

}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
  background: #2d1b4e;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-purple);
}

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

li {
  list-style: none;
}

button,
.btn {
  font-family: var(--font-headings);
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Reusable Containers & Layout Elements */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

.section-padding {
  padding: 100px 0;
}

/* Glowing Neon Background Elements */
.bg-glow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  z-index: 1;
  opacity: 0.45;
}

.glow-purple {
  background: radial-gradient(circle, var(--accent-purple) 0%, rgba(124, 58, 237, 0) 70%);
}

.glow-blue {
  background: radial-gradient(circle, var(--accent-blue) 0%, rgba(59, 130, 246, 0) 70%);
}

/* Header & Navigation */
.header {
  padding: 40px 10px;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Montserrat !important;
}

.nav-container {
  display: flex;
  flex-direction: row;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.527);
  position: relative;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  padding: 12px 16px;
  height: auto;
  width: max-content;
  align-items: center;
  justify-content: space-between;
}

.nav-container .nav-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  gap: 40px;
  position: relative;
  z-index: 10;
  height: 100%;
}

@media (min-width: 992px) {
  .nav-container .nav-header {
    justify-content: flex-start;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 200;
  color: white;
  transition: color 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-img {
  width: auto;
  width: 160px;
  height: 55px;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: drop-shadow(0px 0px 1px black);
}

.nav-menu {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-left: 40px;
  margin-right: 40px;
  margin-top: 0;
  padding: 0;
  opacity: 1;
  visibility: visible;
  max-height: none;
  overflow: visible;
  transform: none;
  transition: none;
  align-items: center;
}

.nav-cta {
  margin-left: 0;
  font-size: 11px;
  padding: 8px 24px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid rgba(124, 58, 237, 0.4);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(99, 102, 241, 0.08));
  color: var(--accent-purple-light);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  max-height: 40px;
  top: 0;
  min-width: auto;
  width: fit-content;
  line-height: 1;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.nav-cta:hover::before {
  left: 100%;
}

.nav-cta:hover {
  border-color: rgba(124, 58, 237, 0.8);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(99, 102, 241, 0.15));
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.25);
  transform: translateY(-1px);
}

.nav-menu .nav-link {
  padding: 8px 15px;
  background: none;
  border: none;
  text-align: center;
  /* font-weight: 500; */
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 0;
  opacity: 1;
  transform: none;
  transition: all 0.3s ease;
  box-shadow: none;
}

.nav-menu .nav-link::after {
  content: '';
}

.nav-menu .nav-link:hover {
  background: none;
  transform: none;
  color: rgb(255, 255, 255);
}

.nav-menu .nav-link.active {
  background: none;
  color: white;
  font-weight: 600;
  box-shadow: none;
}

.nav-menu .nav-link.active:hover {
  background: none;
  transform: none;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  padding: 8px;
  background: transparent;
  backdrop-filter: none;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  outline: none;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.menu-toggle:active {
  transform: scale(0.95);
}

.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  position: relative;
}

.menu-icon span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: #ffffff;
  border-radius: 2px;
  transform-origin: center;
}

.menu-toggle.active .menu-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .menu-icon span:nth-child(2) {
  display: none;
}

.menu-toggle.active .menu-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.no-scroll {
  overflow: hidden;
}

@media (max-width: 991px) {
  .nav-container {
    flex-direction: column;
    padding: 15px 20px;
    width: 90% !important;
    /* max-width: 400px !important; */
    height: 100px;
    max-height: 100px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: flex-start;
  }

  .nav-container.nav-active {
    height: auto;
    max-height: 600px;
  }

  .nav-container .nav-header {
    justify-content: space-between;
    width: 100%;
  }

  .menu-toggle {
    display: block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 6px;
  }

  .menu-icon {
    width: 24px;
    height: 18px;
  }

  .menu-icon span {
    height: 2px;
    transition: none;
  }

  .menu-toggle:hover {
    transform: scale(1.05);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0;
    width: fit-content;
    max-width: 100%;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
      max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
      margin-top 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0s;
    padding: 10px 28px;
    font-size: 12px;
    height: 40px;
    top: 0;
  }

  .nav-container.nav-active .nav-cta {
    opacity: 1;
    max-height: 100px;
    margin-top: 20px;
    transition-delay: 0.6s;
  }

  .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 0;
    margin-left: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-20px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1),
      max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
      margin-top 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: flex-start;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    max-height: 600px;
    margin-top: 30px;
    padding: 0;
    transform: translateY(0);
  }

  .nav-menu .nav-link {
    padding: 8px 0;
    background: none;
    border: none;
    text-align: left;
    font-weight: 500;
    color: white;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    width: 100%;
    margin: 0;
    border-radius: 0;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    transition-delay: 0s;
  }

  .nav-menu.active .nav-link {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu.active .nav-link:nth-child(1) {
    transition-delay: 0.15s;
  }

  .nav-menu.active .nav-link:nth-child(2) {
    transition-delay: 0.3s;
  }

  .nav-menu.active .nav-link:nth-child(3) {
    transition-delay: 0.45s;
  }

  .nav-menu.active .nav-link:nth-child(4) {
    transition-delay: 0.6s;
  }


}

.btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  font-size: 14px;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary {
  background: var(--btn-gradient);
  color: #ffffff;
  padding: 12px 28px;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
  background: var(--btn-gradient-hover);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  position: relative;
  height: max-content;
  display: flex;
  align-items: center;
  padding-top: 180px;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero2 {
  max-height: 70vh !important;
  padding-bottom: 0;
}

/* Giant glowing portal arch arching over the Hero section */
.hero-arch-outer {
  position: absolute;
  top: -240px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  border: 45px solid transparent;
  border-top: 45px solid rgba(124, 58, 237, 0.55);
  border-left: 45px solid rgba(99, 102, 241, 0.35);
  border-right: 45px solid rgba(236, 72, 153, 0.35);
  filter: blur(45px);
  pointer-events: none;
  z-index: 1;
}

.hero-arch-inner {
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 860px;
  height: 860px;
  border-radius: 50%;
  border: 12px solid rgba(255, 255, 255, 0.85);
  filter: blur(12px);
  pointer-events: none;
  z-index: 2;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin-bottom: 50px;
  z-index: 10;
}

.hero-title {
  font-family: var(--font-headings);
  font-size: 64px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  color: #94a3b8;
  max-width: 650px;
  margin: 0 auto 36px auto;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.hero-ctas .btn-primary {
  padding: 16px 36px;
  font-size: 16px;
}

.hero-ctas .btn-ghost {
  padding: 16px 36px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.02);
}

/* Trust Bar / Social Proof */
.trust-bar {
  width: 100%;
  max-width: 1000px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 24px 40px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--glass-shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  z-index: 10;
  position: relative;
}

.rating-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 180px;
}

.stars {
  color: var(--color-gold);
  font-size: 14px;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #64748b;
  font-weight: 600;
}

.rating-number {
  font-family: var(--font-headings);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-grow: 1;
  padding-left: 40px;
  gap: 30px;
}

.partner-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  opacity: 0.85;
  transition: opacity 0.3s, color 0.3s;
}

.partner-logo:hover {
  opacity: 1;
  color: #ffffff;
}

.partner-logo svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Standard Section Headers */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
  position: relative;
  z-index: 10;
}

.section-header h2 {
  font-family: var(--font-headings);
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.section-header h2 span {
  background: var(--accent-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  color: #94a3b8;
  font-size: 16px;
}

/* Services Grid Section */
.services {
  position: relative;
  background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-color-alt) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 10;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--glass-shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-border-hover);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.15);
}

.card-icon-wrapper {
  width: 50px;
  height: 50px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--accent-purple-light);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover .card-icon-wrapper {
  background: var(--accent-purple);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

.card-arrow {
  position: absolute;
  top: 36px;
  right: 36px;
  color: #64748b;
  font-size: 20px;
  transition: all 0.3s ease;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card:hover .card-arrow {
  color: #ffffff;
  transform: translate(2px, -2px);
}

.service-card h3 {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.service-card p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
}

/* Highlighted Gradient Service Card (AI & Machine Learning) */
.service-card.highlighted {
  background: var(--card-highlight-gradient);
  border: 1px solid rgba(124, 58, 237, 0.35);
  box-shadow: 0 10px 35px rgba(124, 58, 237, 0.2);
}

.service-card.highlighted::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 10%, rgba(124, 58, 237, 0.35) 0%, transparent 60%);
  pointer-events: none;
}

.service-card.highlighted:hover {
  border-color: rgba(124, 58, 237, 0.6);
  box-shadow: 0 15px 45px rgba(124, 58, 237, 0.35);
}

.service-card.highlighted .card-icon-wrapper {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.service-card.highlighted:hover .card-icon-wrapper {
  background: #ffffff;
  color: var(--accent-purple-dark);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.service-card.highlighted .card-arrow {
  color: rgba(255, 255, 255, 0.5);
}

.service-card.highlighted:hover .card-arrow {
  color: #ffffff;
}

/* Stats / "Built on Trust" Section */
.stats-section {
  position: relative;
  background: linear-gradient(180deg, #100826 0%, #05020c 100%);
  padding: 100px 0;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 10;
}

.stat-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}



.stat-label {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #ffffff;
}

.stat-description {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

/* Projects Section */
.projects {
  position: relative;
  background-color: var(--bg-color);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
  position: relative;
  z-index: 10;
}

.project-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 36px;
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--glass-shadow);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-border-hover);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.12);
}

.project-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  display: inline-block;
}

.project-tag.fintech {
  color: var(--accent-purple-light);
}

.project-tag.ecommerce {
  color: #38bdf8;
}

.project-tag.ai {
  color: #f472b6;
}

.project-card h3 {
  font-family: var(--font-headings);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.project-card p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
}

.projects-cta {
  text-align: center;
  position: relative;
  z-index: 10;
}

.projects-cta .btn-primary {
  padding: 14px 36px;
  font-size: 14px;
}

/* Testimonials / Infinite Marquee Section */
.testimonials {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-color-alt) 100%);
}

.marquee-container {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 40px 0;
  z-index: 10;
}

/* Fade gradients on side of marquee */
.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 20;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-color-alt) 0%, transparent 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-color-alt) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee 25s linear infinite;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

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

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

.testimonial-card {
  width: 380px;
  flex-shrink: 0;
  background: rgba(124, 58, 237, 0.04);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 20px;
  padding: 36px;
  padding-top: 54px;
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  margin-top: 30px;
  /* Leave space for absolute avatar */
}

.testimonial-card:hover {
  background: rgba(124, 58, 237, 0.07);
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 12px 35px rgba(124, 58, 237, 0.18);
  transform: translateY(-4px);
}

.testimonial-avatar {
  position: absolute;
  top: -30px;
  left: 36px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--accent-purple);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
  background: linear-gradient(135deg, #4f46e5, #c084fc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  overflow: hidden;
}

.testimonial-card .stars {
  margin-bottom: 16px;
}

.testimonial-text {
  color: #e2e8f0;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-headings);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.author-title {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 2px;
}

/* FAQ Accordion Section */
.faq {
  position: relative;
  background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-color-alt) 100%);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item summary {
  padding: 24px 0;
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--accent-purple-light);
}

.faq-number {
  color: var(--accent-purple-light);
  margin-right: 8px;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--accent-purple-light);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding-bottom: 24px;
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.7;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Call to Action (CTA) Box Section */
.cta-section {
  position: relative;
  background-color: var(--bg-color-alt);
  overflow: hidden;
}

.cta-box {
  background: rgba(15, 10, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  padding: 80px 40px;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.cta-box-glow-arch-outer {
  position: absolute;
  bottom: -400px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  border: 35px solid transparent;
  border-bottom: 35px solid rgba(124, 58, 237, 0.55);
  border-left: 35px solid rgba(99, 102, 241, 0.35);
  border-right: 35px solid rgba(236, 72, 153, 0.35);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.cta-box-glow-arch-inner {
  position: absolute;
  bottom: -380px;
  left: 50%;
  transform: translateX(-50%);
  width: 760px;
  height: 760px;
  border-radius: 50%;
  border: 8px solid rgba(255, 255, 255, 0.85);
  filter: blur(10px);
  pointer-events: none;
  z-index: 2;
}

.cta-box h2 {
  font-family: var(--font-headings);
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 10;
}

.cta-box p {
  color: #94a3b8;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 36px auto;
  position: relative;
  z-index: 10;
}

.cta-box .btn-primary {
  padding: 16px 36px;
  font-size: 15px;
  position: relative;
  z-index: 10;
}

/* Footer Section */
footer {
  background-color: #070312;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 40px 0 20px 0;
  position: relative;
  z-index: 10;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-contact-info .contact-item i {
  font-size: 12px;
  color: #7c3aed;
  width: 24px;
  text-align: center;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 5px;
}

.footer-socials .social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: all 0.3s ease;

}

.footer-socials .social-link:hover {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: white;
  transform: translateY(-3px);
}

.footer-socials .social-link i {
  font-size: 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.menu-footer {
  margin-left: 50px;
}

.footer-col h4 {
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;

}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;

}

.footer-links a {
  font-size: 13px;
  color: #94a3b8;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact-info {
  font-size: 13px;
  color: #94a3b8;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-info a {
  transition: color 0.3s ease;
}

.footer-contact-info a:hover {
  color: #ffffff;
}

.company-description {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
  margin-top: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 20px;
  text-align: center;
}

.copyright {
  font-size: 12px;
  color: #64748b;
}

/* Responsiveness (Media Queries) */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 50px;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 70px 0;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .hero-arch-outer {
    width: 600px;
    height: 600px;
  }

  .hero-arch-inner {
    width: 570px;
    height: 570px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
  }

  .trust-bar {
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
    margin-top: 40px;
  }

  .rating-block {
    align-items: center;
    text-align: center;
    min-width: auto;
  }

  .divider {
    width: 80%;
    height: 1px;
  }

  .partners-logos {
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
    justify-items: center;
    width: 100%;
  }

  .services-grid,
  .stats-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 50px 24px;
  }

  .cta-service-btn {
    margin-top: 15px !important;
  }

  .cta-box .btn-primary {
    padding: 12px 20px;
    font-size: 13px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .cta-box h2 {
    font-size: 32px;
  }

  .cta-box-glow-arch-outer {
    width: 500px;
    height: 500px;
  }

  .cta-box-glow-arch-inner {
    width: 470px;
    height: 470px;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-links,
  .footer-contact-info {
    align-items: flex-start;
  }

  .footer-col {
    margin-left: 0;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* Portfolio Section */
.portfolio {
  position: relative;
  background-color: var(--bg-color);
}

.portfolio-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.portfolio-tab {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-headings);
}

.portfolio-tab:hover {
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.3);
  color: white;
}

.portfolio-tab.active {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  border-color: transparent;
  color: white;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 10;
}

.portfolio-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.portfolio-item.hidden {
  display: none;
}

.portfolio-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  object-position: top;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-info {
  position: relative;
  padding: 24px;
}

.portfolio-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
  font-family: var(--font-headings);
}

.portfolio-info p {
  color: #94a3b8;
  line-height: 1.6;
  font-size: 14px;
}

.portfolio-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: white;
}

.portfolio-item:hover .portfolio-arrow {
  opacity: 1;
  transform: translateX(0);
}

.portfolio-arrow:hover {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

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

  .portfolio-tabs {
    gap: 8px;
  }

  .portfolio-tab {
    padding: 10px 18px;
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .portfolio-tab {
    padding: 10px 16px;
    font-size: 12px;
    width: 100%;
  }
}

/* Page Hero */
.page-hero {
  padding: 220px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.page-hero .hero-title {
  font-size: 56px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00d4ff, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero .hero-subtitle {
  font-size: 18px;
  color: #a0a0b0;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Detail Section */
.services-detail-section {
  background: #0d0d1a;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.service-row:last-child {
  margin-bottom: 0;
}

.service-row:nth-child(even) .service-image {
  order: 2;
}

.service-row:nth-child(even) .service-content {
  order: 1;
}

.service-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
}

.service-content {
  padding: 20px;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00d4ff, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 30px;
  height: 30px;
  stroke: white;
}

.service-content h2 {
  font-size: 36px;
  margin-bottom: 16px;
  color: #fff;
}

.service-content p {
  font-size: 16px;
  color: #a0a0b0;
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 32px;
}

.service-features li {
  font-size: 15px;
  color: #c0c0d0;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #00d4ff, #7c3aed);
  border-radius: 50%;
}

/* View More Button */
.view-more-container {
  text-align: center;
  margin-top: 50px;
}

.view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 12px;
  background: linear-gradient(90deg, #00d4ff, #7c3aed);
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.view-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* Services Detail Section */
.services-detail-section {
  background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-color-alt) 50%, var(--bg-color) 100%);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.service-row:last-child {
  margin-bottom: 0;
}

.service-row:nth-child(even) .service-image {
  order: 2;
}

.service-row:nth-child(even) .service-content {
  order: 1;
}

.service-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.service-row:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 20px;
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(59, 130, 246, 0.15));
  border: 1px solid rgba(124, 58, 237, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-purple-light);
  transition: all 0.3s ease;
}

.service-row:hover .service-icon {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(59, 130, 246, 0.25));
  transform: translateY(-3px);
}

.service-icon svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-content h2 {
  font-family: var(--font-headings);
  font-size: 36px;
  margin-bottom: 16px;
  color: white;
}

.service-content p {
  font-size: 16px;
  color: #94a3b8;
  margin-bottom: 28px;
  line-height: 1.8;
}

.service-features {
  list-style: none;
  margin-bottom: 32px;
  padding: 0;
}

.service-features li {
  font-size: 15px;
  color: #c0c0d0;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.4);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  transition: opacity 0.3s;
  line-height: 1;
}

.lightbox-close:hover {
  opacity: 0.7;
}

.lightbox-caption {
  color: white;
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: max(30px, env(safe-area-inset-bottom, 0px));
  right: max(30px, env(safe-area-inset-right, 0px));
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.04);
}

.whatsapp-float-label {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 20px;
  background: #ffffff;
  color: #1a1a2e;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  border-radius: 50px;
  white-space: nowrap;
}

.whatsapp-float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
}

.whatsapp-float-icon svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
}

/* Service Card Hover Overlay */
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 2, 12, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  border-radius: 18px;
  z-index: 5;
}

@media (hover: hover) {
  .service-card:hover .service-card-overlay {
    opacity: 1;
    visibility: visible;
  }
}

@media (hover: none) {
  .service-card-overlay {
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    margin-top: auto;
    padding-top: 20px;
    height: auto;
    justify-content: flex-start;
  }
}

.service-card-overlay a {
  padding: 12px 28px;
  background: var(--btn-gradient);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-overlay a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.5);
}

/* Timeline Section */
.timeline-section {
  background: linear-gradient(180deg, var(--bg-color-alt) 0%, var(--bg-color) 100%);
  position: relative;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  z-index: 10;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.4) 10%, rgba(124, 58, 237, 0.4) 90%, transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0 24px;
  align-items: center;
  margin-bottom: 48px;
}

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

.timeline-content {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 24px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  border-color: var(--card-border-hover);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
}

.timeline-item:nth-child(even) .timeline-content {
  order: 3;
}

.timeline-item:nth-child(even) .timeline-dot {
  order: 2;
}

.timeline-item:nth-child(even) .timeline-empty {
  order: 1;
}

.timeline-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--card-highlight-gradient);
  border: 2px solid rgba(124, 58, 237, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-purple-light);
  flex-shrink: 0;
}

.last {
  width: 60px;
  height: 60px;
  text-align: center;
}

.timeline-year {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-purple-light);
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-content h4 {
  font-family: var(--font-headings);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

.timeline-empty {
  display: block;
}

/* Page Hero */
.page-hero {
  position: relative;
  padding: 220px 0 100px;
  text-align: center;
  overflow: hidden;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-purple-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.page-hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-purple-light);
  display: inline-block;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.page-hero h1 {
  font-family: var(--font-headings);
  font-size: 62px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}

.page-hero p {
  font-size: 18px;
  color: #94a3b8;
  max-width: 640px;
  margin: 0 auto;
}

/* Big Stats Bar */
.about-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 70px;
  position: relative;
  z-index: 10;
}

.about-stat {
  background: var(--card-bg);
  padding: 40px 32px;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s;
}

.about-stat:hover {
  background: rgba(124, 58, 237, 0.07);
}

.about-stat-num {
  font-family: var(--font-headings);
  font-size: 52px;
  font-weight: 800;
  background: var(--accent-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

/* Mission Section */
.mission-section {
  background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-color-alt) 100%);
  position: relative;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.mission-content h2 {
  font-family: var(--font-headings);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
}

.mission-content h2 span {
  background: var(--accent-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mission-content p {
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.mission-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.mission-pill {
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.25);
  color: var(--accent-purple-light);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
}

.mission-visual {
  position: relative;
}

.mission-card-stack {
  position: relative;
  height: 420px;
}

.m-card {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 28px 32px;
  transition: transform 0.4s ease;
}

.m-card:hover {
  transform: translateY(-4px) !important;
}

.m-card-1 {
  top: 0;
  left: 0;
  right: 0;
  background: var(--card-highlight-gradient);
  border-color: rgba(124, 58, 237, 0.3);
}

.m-card-2 {
  top: 160px;
  left: 40px;
  right: -20px;
  z-index: 2;
}

.m-card-3 {
  top: 290px;
  left: 0;
  right: 40px;
  z-index: 3;
}

.m-card .card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-purple-light);
  font-weight: 700;
  margin-bottom: 8px;
}

.m-card h4 {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.m-card p {
  font-size: 13px;
  color: #64748b;
}

.m-card .m-metric {
  font-family: var(--font-headings);
  font-size: 36px;
  font-weight: 800;
  background: var(--accent-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Values Section */
.values-section {
  background: var(--bg-color);
  position: relative;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 10;
}

.value-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-text-gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-border-hover);
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.12);
}

.value-card:hover::before {
  opacity: 1;
}

.value-number {
  font-family: var(--font-headings);
  font-size: 48px;
  font-weight: 800;
  color: rgba(124, 58, 237, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.value-card h3 {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

.value-card p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.7;
}

/* Team Section */
.team-section {
  background: var(--bg-color);
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 10;
}

.team-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--card-border-hover);
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.15);
}

.team-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 2px solid rgba(124, 58, 237, 0.4);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.team-card h4 {
  font-family: var(--font-headings);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.team-role {
  font-size: 12px;
  color: var(--accent-purple-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.team-bio {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.team-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.3s;
}

.team-social-btn:hover {
  background: var(--accent-purple);
  border-color: var(--accent-purple);
  color: #fff;
  transform: translateY(-2px);
}

.team-social-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

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

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .page-hero h1 {
    font-size: 38px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mission-card-stack {
    height: 320px;
  }

  .timeline::before {
    left: 24px;
    transform: none;
  }

  .timeline-item {
    grid-template-columns: 60px 1fr;
  }

  .timeline-dot {
    order: 1 !important;
  }

  .timeline-content {
    order: 2 !important;
  }

  .timeline-empty {
    display: none !important;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-row:nth-child(even) .service-image,
  .service-row:nth-child(even) .service-content {
    order: initial;
  }

  .service-content h2 {
    font-size: 28px;
  }

  .whatsapp-float {
    bottom: max(20px, env(safe-area-inset-bottom, 0px));
    right: max(20px, env(safe-area-inset-right, 0px));
    gap: 8px;
  }

  .whatsapp-float-label {
    font-size: 13px;
    min-height: 46px;
    padding: 0 16px;
  }

  .whatsapp-float-icon {
    width: 46px;
    height: 46px;
  }

  .whatsapp-float-icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .whatsapp-float {
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
    right: max(16px, env(safe-area-inset-right, 0px));
    gap: 6px;
  }

  .whatsapp-float-label {
    font-size: 12px;
    min-height: 42px;
    padding: 0 14px;
  }

  .whatsapp-float-icon {
    width: 42px;
    height: 42px;
  }

  .whatsapp-float-icon svg {
    width: 22px;
    height: 22px;
  }
}

/* ── Contact Layout ── */
.contact-section {
  background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-color-alt) 100%);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 10;
}

/* ── Contact Info Panel ── */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-heading {
  font-family: var(--font-headings);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 8px;
}

.contact-info-heading span {
  background: var(--accent-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-info-sub {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 24px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  border-color: var(--card-border-hover);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
  transform: translateX(4px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple-light);
  flex-shrink: 0;
  transition: all 0.3s;
}

.contact-info-card:hover .contact-icon {
  background: var(--accent-purple);
  border-color: var(--accent-purple);
  color: #fff;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-text strong {
  display: block;
  font-family: var(--font-headings);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.contact-info-text span,
.contact-info-text a {
  font-size: 14px;
  color: #64748b;
  transition: color 0.3s;
}

.contact-info-text a:hover {
  color: var(--accent-purple-light);
}

/* Office hours badge */
.office-hours-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 12px;
  padding: 14px 20px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.6);
  animation: pulse-status 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-status {

  0%,
  100% {
    box-shadow: 0 0 8px rgba(52, 211, 153, 0.6);
  }

  50% {
    box-shadow: 0 0 16px rgba(52, 211, 153, 0.9);
  }
}

.office-hours-badge span {
  font-size: 13px;
  color: #34d399;
  font-weight: 600;
}

/* Social row */
.contact-socials-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-social-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  transition: all 0.3s;
  text-decoration: none;
}

.contact-social-chip:hover {
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.35);
  color: var(--accent-purple-light);
  transform: translateY(-2px);
}

.contact-social-chip svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ── Contact Form ── */
.contact-form-panel {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 52px 44px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

.contact-form-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-text-gradient);
}

.form-title {
  font-family: var(--font-headings);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.3px;
}

.form-group label span {
  color: var(--accent-purple-light);
}

.form-control {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #fff;
  transition: all 0.3s ease;
  outline: none;
  width: 100%;
}

.form-control::placeholder {
  color: #334155;
}

.form-control:focus {
  border-color: rgba(124, 58, 237, 0.5);
  background: rgba(124, 58, 237, 0.04);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

select.form-control option {
  background: #0b0518;
  color: #fff;
}

/* Subject chips */
.subject-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.subject-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 13px;
  color: #64748b;
  cursor: pointer;
  transition: all 0.25s;
  user-select: none;
}

.subject-chip:hover,
.subject-chip.selected {
  background: rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.4);
  color: var(--accent-purple-light);
}

/* Submit */
.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.form-privacy {
  font-size: 12px;
  color: #334155;
}

.form-privacy a {
  color: #475569;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-privacy a:hover {
  color: var(--accent-purple-light);
}

.btn-submit {
  background: var(--btn-gradient);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 15px 40px;
  font-family: var(--font-headings);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-submit:hover {
  background: var(--btn-gradient-hover);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
  transform: translateY(-2px);
}

.btn-submit svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-success .success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.1);
  border: 2px solid rgba(52, 211, 153, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success .success-icon svg {
  width: 32px;
  height: 32px;
  stroke: #34d399;
  fill: none;
  stroke-width: 2.5;
}

.form-success h3 {
  font-family: var(--font-headings);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.form-success p {
  color: #64748b;
  font-size: 15px;
}

/* Form validation */
.form-group.has-error .form-control {
  border-color: rgba(239, 68, 68, 0.6);
  background: rgba(239, 68, 68, 0.04);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.field-error {
  display: block;
  font-size: 12px;
  color: #f87171;
  margin-top: 2px;
  line-height: 1.4;
}

.form-alert {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.form-alert-error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #fca5a5;
}

.btn-submit.is-loading {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
}

.btn-submit:disabled {
  cursor: not-allowed;
}

.form-success-banner {
  display: none;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.25);
  animation: fadeIn 0.4s ease-out;
}

.form-success-banner.show {
  display: flex;
}

.form-success-banner-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success-banner-icon svg {
  width: 20px;
  height: 20px;
  stroke: #34d399;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-success-banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-success-banner-text strong {
  font-size: 15px;
  color: #ecfdf5;
}

.form-success-banner-text span {
  font-size: 13px;
  color: #94a3b8;
}

/* Success page */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.success-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  z-index: 1;
}

.success-card {
  position: relative;
  max-width: 560px;
  width: 100%;
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 56px 44px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
}

.success-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-text-gradient);
}

.success-card-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.success-checkmark {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.1);
  border: 2px solid rgba(52, 211, 153, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  animation: successPop 0.5s ease-out;
}

.success-checkmark svg {
  width: 40px;
  height: 40px;
  stroke: #34d399;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes successPop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }

  70% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #34d399;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.success-card h1 {
  font-family: var(--font-headings);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  margin-bottom: 16px;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.success-lead {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 32px;
}

.success-lead strong {
  color: #cbd5e1;
}

.success-details {
  list-style: none;
  text-align: left;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.success-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
}

.success-details li i {
  color: var(--accent-purple-light);
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}

.success-details a {
  color: var(--accent-purple-light);
  text-decoration: none;
}

.success-details a:hover {
  text-decoration: underline;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.success-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  justify-content: center;
}

.success-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

@media (max-width: 600px) {
  .success-card {
    padding: 40px 24px;
  }

  .success-actions .btn {
    width: 100%;
  }
}

/* ── Map / Office Section ── */
.offices-section {
  background: var(--bg-color);
  position: relative;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 10;
}

.office-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 36px 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.office-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent-text-gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

.office-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-border-hover);
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.12);
}

.office-card:hover::before {
  opacity: 1;
}

.office-flag {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.office-city {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.office-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-purple-light);
  margin-bottom: 16px;
  display: block;
}

.office-address {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

.office-address a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-purple-light);
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
  transition: gap 0.3s;
}

.office-address a:hover {
  gap: 10px;
}

.office-card-full {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  z-index: 10;
}

.office-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ── Contact Responsive ── */
@media (max-width: 1024px) {
  .offices-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-panel {
    padding: 36px 28px;
  }
}

@media (max-width: 768px) {
  .offices-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-submit-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-submit {
    justify-content: center;
  }
}

/* ── Services Zig-Zag Layout ── */
.services-zigzag {
  position: relative;
  background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-color-alt) 100%);
}

.service-zigzag-item {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
  position: relative;
}

.service-zigzag-item:last-child {
  margin-bottom: 0;
}

.service-zigzag-item.reversed {
  direction: rtl;
}

.service-zigzag-item.reversed .service-zigzag-image,
.service-zigzag-item.reversed .service-zigzag-content {
  direction: ltr;
}

.service-zigzag-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease;
}

.service-zigzag-image:hover {
  transform: scale(1.02);
}

.service-zigzag-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.service-zigzag-item:hover .service-zigzag-image img {
  transform: scale(1.05);
}

.service-zigzag-number {
  font-family: var(--font-headings);
  font-size: 64px;
  font-weight: 800;
  background: var(--accent-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  line-height: 1;
}

.service-zigzag-content h3 {
  font-family: var(--font-headings);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-zigzag-content p {
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
}

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

.service-zigzag-features li {
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: #cbd5e1;
  font-weight: 500;
}

.service-zigzag-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--accent-purple);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.6);
}

/* ── Approach Grid ── */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 10;
}

.approach-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.approach-card:hover {
  transform: translateY(-8px);
  border-color: var(--card-border-hover);
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.15);
}

.approach-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-purple-light);
  transition: all 0.3s ease;
}

.approach-card:hover .approach-icon {
  background: var(--accent-purple);
  border-color: var(--accent-purple);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
}

.approach-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.approach-card h3 {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.approach-card p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.7;
}

/* ── Responsive for Zig-Zag ── */
@media (max-width: 1024px) {
  .service-zigzag-item {
    gap: 40px;
  }

  .service-zigzag-number {
    font-size: 48px;
  }

  .service-zigzag-content h3 {
    font-size: 26px;
  }
}

@media (max-width: 991px) {

  .service-zigzag-item,
  .service-zigzag-item.reversed {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }

  .service-zigzag-item .service-zigzag-image,
  .service-zigzag-item.reversed .service-zigzag-image {
    order: -1;
  }

  .service-zigzag-number {
    font-size: 40px;
  }

  .service-zigzag-content h3 {
    font-size: 24px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }
}