/* =================================================================
   ZycoAppStudio - Modern Website Styles
   ================================================================= */

/* ===== CSS Variables ===== */
:root {
  /* Colors - Light Mode */
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary-color: #ec4899;
  --accent-color: #06b6d4;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;

  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-alt: #f1f5f9;

  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* Typography */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-heading: "Space Grotesk", "Inter", sans-serif;
  /* --font-primary: "Urbanist", sans-serif;
  --font-heading: "Urbanist", sans-serif; */
  /* --font-heading: "Plus Jakarta Sans", sans-serif; */

  /* Spacing */
  --container-width: 1400px;
  --section-padding: 70px;
  --section-padding-mobile: 60px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* Dark Mode Variables */
[data-theme="dark"] {
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;

  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-alt: #334155;

  --border-color: #334155;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-base),
    color var(--transition-base);
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.5rem, 3vw, 1.5rem);
}
h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}
h5 {
  font-size: 1.125rem;
}
h6 {
  font-size: 1rem;
}

p {
  color: var(--text-secondary);
  font-size: 1.2rem;
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

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

/* ===== Container ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  white-space: nowrap;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--bg-alt);
  border-color: var(--primary-color);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
}

.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

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

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu > li {
  position: relative;
}

.nav-item-services {
  position: static;
}

.mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.mega-caret {
  transition: transform var(--transition-base);
}

.mega-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 1rem);
  width: min(1100px, calc(100vw - 2rem));
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 1.75rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.mega-menu .container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mega-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.mega-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.mega-copy {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 520px;
}

.mega-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.mega-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.mega-card {
  display: flex;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  transition: all var(--transition-base);
}

.mega-card h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.mega-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.mega-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.mega-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--bg-alt), var(--bg-secondary));
  color: var(--primary-color);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.nav-item-services.mega-open .mega-menu,
.nav-item-services:hover .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-item-services.mega-open .mega-caret,
.nav-item-services:hover .mega-caret {
  transform: rotate(180deg);
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.theme-toggle:hover {
  background: var(--bg-alt);
}

.theme-toggle .sun-icon {
  display: block;
}

.theme-toggle .moon-icon {
  display: none;
}

[data-theme="dark"] .theme-toggle .sun-icon {
  display: none;
}

[data-theme="dark"] .theme-toggle .moon-icon {
  display: block;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-base);
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-color);
  top: -200px;
  right: -100px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--secondary-color);
  bottom: -100px;
  left: -100px;
  animation-delay: -5s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: var(--accent-color);
  top: 50%;
  left: 50%;
  animation-delay: -10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-secondary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  /* justify-content: center; */
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  /* justify-content: center; */
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.stat-item p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--text-muted);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    height: 0;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    height: 40px;
    opacity: 0;
  }
}
/* moving-section */
/* 
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-5%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  background: white;
  white-space: nowrap;
  position: relative;

  border-bottom: 1px solid #dadada;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: flex;
  animation: 10s slide infinite linear;
}

.logos-slide img {
  height: 50px;
  margin: 0 40px;
} */
.logos-slide {
  margin-top: 50px;
}
.swiper-container {
  width: 100%;
  height: auto;
}

.swiper-slide {
  overflow: hidden;

  img {
    /* aspect-ratio: 16 / 9; */
    /* width: 100%; */
    height: 50px;
    object-fit: cover;
  }
}

.swiper-free-mode {
  > .swiper-wrapper {
    transition-timing-function: linear;
    margin: 0 auto;
  }
}
/* ===== Sections ===== */
.section-padding {
  padding: var(--section-padding) 0;
}

.section-padding-top {
  padding-top: var(--section-padding);
}

.bg-alt {
  background: var(--bg-alt);
}

.section-header {
  margin-bottom: 4rem;
}

.section-header.text-center {
  text-align: center;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #b455be;
  color: white;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Page Header ===== */
.page-header {
  padding: 150px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-alt));
}

.page-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary-color);
  color: white;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 1rem;
}

.service-card {
  padding: 1.5rem;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.07rem;
}

.service-link {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link:hover {
  gap: 0.75rem;
}

/* ===== Features Grid ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.feature-item {
  position: relative;
  padding-left: 5rem;
}

.feature-number {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  opacity: 0.2;
}

.feature-item h3 {
  margin-bottom: 0.75rem;
}

.feature-item p {
  font-size: 1.07rem;
}

/* ===== Tech Stack ===== */
/* .tech-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.tech-category h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.tech-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tech-tag {
  padding: 0.75rem 1.25rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition-base);
}

.tech-tag:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
} */

/* Updated Tech Stack Background */
/* .bg-light {
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
} */

.tech-section {
  position: relative;
  padding: 0px 20px;
  /* background: #f5f5f5; */
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  animation: float 6s ease-in-out infinite;
  transition: transform 0.3s, box-shadow 0.3s;
}

.floating-icon:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.floating-icon svg {
  width: 40px;
  height: 40px;
  stroke: #6a6ff3;
  fill: none;
}

/* Position icons around the content */
.icon-1 {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}
.icon-2 {
  top: 12%;
  left: 22%;
  animation-delay: 1s;
}
.icon-3 {
  top: 25%;
  left: 5%;
  animation-delay: 2s;
}
.icon-4 {
  top: 45%;
  left: 10%;
  animation-delay: 1.5s;
}
.icon-5 {
  top: 65%;
  left: 12%;
  animation-delay: 3s;
}
.icon-6 {
  top: 75%;
  left: 20%;
  animation-delay: 0.5s;
}
.icon-7 {
  top: 70%;
  left: 32%;
  animation-delay: 2.5s;
}

.icon-8 {
  top: 15%;
  right: 22%;
  animation-delay: 1.2s;
}
.icon-9 {
  top: 12%;
  right: 8%;
  animation-delay: 2.8s;
}
.icon-10 {
  top: 30%;
  right: 5%;
  animation-delay: 0.8s;
}
.icon-11 {
  top: 45%;
  right: 10%;
  animation-delay: 3.5s;
}
.icon-12 {
  top: 60%;
  right: 8%;
  animation-delay: 1.8s;
}
.icon-13 {
  top: 72%;
  right: 20%;
  animation-delay: 2.2s;
}
.icon-14 {
  top: 68%;
  right: 32%;
  animation-delay: 0.3s;
}
.icon-15 {
  top: 85%;
  right: 15%;
  animation-delay: 3.2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
.content-wrapper {
  max-width: 750px;
  text-align: center;
  position: relative;
  z-index: 10;
  padding: 0 20px;
}
.glowly {
  font-family: var(--font-heading);
  /* font-weight: 400;
  font-style: italic; */
}
.section-title {
  font-size: 58px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.3;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.features-list {
  list-style: none;
  margin-bottom: 40px;
}
.feature-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 16px;
  color: #333;
}
.check-icon {
  width: 24px;
  height: 24px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon svg {
  width: 14px;
  height: 14px;
  stroke: #4caf50;
  stroke-width: 3;
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: #1a1a1a;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.cta-button:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) {
  .floating-icon {
    width: 70px;
    height: 70px;
  }

  .floating-icon svg {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 900px) {
  .floating-icon {
    display: none;
  }

  .icon-1,
  .icon-8,
  .icon-2,
  .icon-9 {
    display: flex;
  }

  .section-title {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .floating-icon {
    display: none;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 15px;
  }
}

/* Tech Grid Layout */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.tech-card {
  width: 150px;
  height: 80px;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  font-weight: 600;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background: var(--primary-color);
  color: white;
}

/* Staggering effect */
.tech-card:nth-child(5n + 2) {
  margin-top: 2rem;
}

.tech-card:nth-child(5n + 3) {
  margin-top: 1rem;
}

.tech-card:nth-child(5n + 4) {
  margin-top: 3rem;
}

.tech-card:nth-child(5n + 5) {
  margin-top: 1.5rem;
}
/* Tech Background Floating Elements */
.tech-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.floating-tech-icon {
  position: absolute;
  animation: float 6s ease-in-out infinite;
}

.floating-tech-icon.icon-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-tech-icon.icon-2 {
  top: 20%;
  right: 15%;
  animation-delay: 2s;
}

.floating-tech-icon.icon-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.floating-tech-icon.icon-4 {
  bottom: 10%;
  right: 10%;
  animation-delay: 1s;
}

.floating-tech-icon.icon-5 {
  top: 50%;
  left: 50%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Updated Tech Card with Icon */
.tech-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.tech-card svg {
  flex-shrink: 0;
}

.tech-card span {
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}

/* Additional Floating Background Elements for Tech Stack */
.tech-background::before,
.tech-background::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(99, 102, 241, 0.1),
    rgba(236, 72, 153, 0.1)
  );
  animation: floatShape 8s ease-in-out infinite;
}

.tech-background::before {
  width: 60px;
  height: 60px;
  top: 15%;
  right: 20%;
  animation-delay: 0s;
}

.tech-background::after {
  width: 40px;
  height: 40px;
  bottom: 25%;
  left: 15%;
  animation-delay: 4s;
}

/* Additional floating shapes */
.floating-shape {
  position: absolute;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 50%;
  animation: floatShape 10s ease-in-out infinite;
}

.floating-shape.shape-1 {
  width: 80px;
  height: 80px;
  top: 30%;
  left: 5%;
  animation-delay: 1s;
}

.floating-shape.shape-2 {
  width: 50px;
  height: 50px;
  top: 60%;
  right: 5%;
  animation-delay: 3s;
  border-radius: 0;
  background: rgba(99, 102, 241, 0.05);
  transform: rotate(45deg);
}

.floating-shape.shape-3 {
  width: 30px;
  height: 30px;
  bottom: 40%;
  left: 70%;
  animation-delay: 5s;
}

@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.1);
  }
}
.floating-shape.shape-4 {
  width: 70px;
  height: 70px;
  top: 70%;
  left: 80%;
  animation-delay: 6s;
  background: rgba(99, 102, 241, 0.08);
}

.floating-shape.shape-5 {
  width: 45px;
  height: 45px;
  bottom: 5%;
  left: 60%;
  animation-delay: 8s;
  border-radius: 0;
  background: rgba(6, 182, 212, 0.06);
  transform: rotate(45deg);
}

.floating-tech-icon.icon-6 {
  top: 40%;
  left: 85%;
  animation-delay: 7s;
}

.floating-tech-icon.icon-7 {
  bottom: 30%;
  right: 25%;
  animation-delay: 9s;
}
section.tech-stack.section-padding.bg-light {
  position: relative;
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 2.5rem;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ===== CTA Section ===== */

.cta-main {
  background: linear-gradient(135deg, var(--primary-color), #8881ff);
  color: white;
  border-radius: 50px;
  padding: 50px 0;
}
.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-secondary);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
 
  grid-template-columns: repeat(4, 1fr);
 
  margin-bottom: 3rem;
}


@media (min-width: 768px) {

 .footer-content > :nth-child(2) {
              padding-left:30px;
            }

}
@media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
		gap:16px;
            }

            .footer-content > :first-child {
                grid-column: 1 / -1;
            }

            .footer-content > :nth-child(n+2) {
                width: 100%;
            }
        }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all var(--transition-base);
}

.social-links a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-legal a:hover {
  color: var(--primary-color);
}

/* ===== Story Section ===== */
.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 4rem;
  align-items: center;
}

.story-content p {
  margin-bottom: 1.5rem;
}

.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ===== Image Placeholder ===== */
.image-placeholder {
  aspect-ratio: 16/10;
  /* background: var(--bg-secondary); */
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 2px dashed var(--border-color); */
}

.placeholder-content {
  text-align: center;
  color: var(--text-muted);
}

.placeholder-content svg {
  margin: 0 auto 1rem;
  opacity: 0.3;
}

.placeholder-content p {
  font-size: 0.875rem;
}

/* ===== Mission & Vision ===== */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.mv-card {
  padding: 3rem;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.mv-card h2 {
  margin-bottom: 1rem;
}

/* ===== Values Grid ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  padding: 2rem;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all var(--transition-base);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.value-card p {
  font-size: 0.95rem;
}

/* ===== Timeline ===== */
.support-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 70px;
  width: 2px;
  height: calc(100% + 1rem);
  background: var(--border-color);
}

.timeline-marker {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.timeline-content h3 {
  margin-bottom: 0.75rem;
}

/* ===== Team Stats ===== */
.team-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.stat-card h3 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-card p {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* ===== Service Detail ===== */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 4rem;
  align-items: center;
}

.service-detail-grid.reverse {
  direction: rtl;
}

.service-detail-grid.reverse > * {
  direction: ltr;
}

.service-detail-content .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.service-features {
  margin: 2rem 0;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.feature svg {
  flex-shrink: 0;
  color: var(--primary-color);
}

/* ===== Process Steps ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
  padding: 2rem;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  position: relative;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.process-step h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.process-step p {
  font-size: 0.95rem;
}

/* ===== Portfolio ===== */
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  /* background: var(--bg-secondary); */
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
}

.project-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

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

.project-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 250px;
}

.project-image img {
  height: 250px;
  object-fit: cover;
  width: 100%;
  /* object-position: 80% 100%; */
  object-position: top;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(99, 102, 241, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.view-project {
  padding: 1rem 2rem;
  background: white;
  color: var(--primary-color);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.project-info {
  padding: 2rem;
}

.project-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  padding: 0.25rem 0.75rem;
  background: var(--bg-secondary);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-color);
}

.project-info h3 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.project-info p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.project-tech {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.project-tech span {
  padding: 0.375rem 0.75rem;
  background: var(--bg-secondary);
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-box {
  text-align: center;
  padding: 2rem;
}

.stat-box h3 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
}

.contact-form-wrapper {
  position: relative;
}

.contact-form-wrapper h2 {
  margin-bottom: 1rem;
}

.contact-form-wrapper > p {
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
}

.form-success {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: var(--bg-primary);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: none;
}

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

.form-success svg {
  color: #10b981;
  margin: 0 auto 1.5rem;
}

.contact-info-card {
  padding: 2.5rem;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.contact-info-card h3 {
  margin-bottom: 0.75rem;
}

.contact-info-card > p {
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.info-items {
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
    flex-direction: column;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  color: var(--text-muted);
}

.info-content a,
.info-content p {
  font-size: 1rem;
  color: var(--text-primary);
}

.info-content a:hover {
  color: var(--primary-color);
}

.whatsapp-cta,
.social-connect {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  margin-top: 2rem;
}

.whatsapp-cta h4,
.social-connect h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.availability-card {
  padding: 1.5rem;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.availability-indicator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.status-dot {
  width: 12px;
  height: 12px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.availability-card p {
  font-size: 0.875rem;
}

/* ===== FAQ ===== */
/* .faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.faq-item {
  padding: 2rem;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.faq-item h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.faq-item p {
  font-size: 0.95rem;
} */

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-primary);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    transition: left var(--transition-base);
    border-top: 1px solid var(--border-color);
  }

  .nav-menu > li {
    width: 100%;
  }

  .nav-item-services {
    position: relative;
  }

  .mega-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0.75rem 0;
    display: flex;
  }

  .mega-menu {
    position: relative;
    left: 0;
    transform: none;
    top: 0;
    width: 100%;
    box-shadow: none;
    padding: 1rem 0 0.5rem;
    opacity: 1;
    pointer-events: auto;
    display: none;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    margin-top: -0.5rem;
  }

  .nav-item-services.mega-open .mega-menu {
    display: block;
  }

  .mega-menu .container {
    padding: 0 0.5rem;
  }

  .mega-top {
    flex-direction: column;
    gap: 0.5rem;
  }

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

  .nav-menu.active {
    left: 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .story-grid,
  .mv-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-cta {
    flex-direction: column;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

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

  .nav-actions .btn {
    display: none;
  }
}

/* ===== Portfolio Detail Page ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-secondary);
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

.project-hero {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-alt));
}

.project-hero-content {
  max-width: 900px;
}

.project-meta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.project-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin: 1.5rem 0 2.5rem;
  line-height: 1.7;
}

.project-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  padding: 2.5rem;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  margin-top: 3rem;
}

.info-item h4 {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-item p {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.project-main-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.project-content-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 2rem;
}

.project-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}

.sidebar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-item {
  padding: 0.5rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
}

.project-link-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-bottom: 0.75rem;
  transition: all var(--transition-base);
}

.project-link-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateX(5px);
}

.share-buttons {
  display: flex;
  gap: 0.75rem;
}

.share-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.share-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.project-main-content {
  max-width: 800px;
}

.content-section {
  margin-bottom: 4rem;
}

.content-section h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.content-section h3 {
  margin: 2rem 0 1.5rem;
  font-size: 1.5rem;
}

.content-section p {
  margin-bottom: 1.5rem;
}

.styled-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.styled-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.styled-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.features-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.feature-box {
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.feature-box:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-box h4 {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.feature-box p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.process-timeline {
  position: relative;
  padding-left: 3rem;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.timeline-step {
  position: relative;
  margin-bottom: 3rem;
}

.step-marker {
  position: absolute;
  left: -3rem;
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 1;
}

.step-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  margin-bottom: 0.5rem;
}

.step-duration {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--primary-color);
  color: white;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}

.result-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.result-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.result-card p {
  font-size: 1rem;
  margin: 0;
}

.client-quote {
  background: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  margin: 3rem 0;
}

.client-quote p {
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.client-quote cite {
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.client-quote cite strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.25rem;
}

.tech-breakdown {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.tech-category-detail {
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.tech-category-detail h4 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.tech-category-detail p {
  margin: 0;
  font-size: 0.95rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Responsive - Portfolio Detail */
@media (max-width: 968px) {
  .project-content-grid {
    grid-template-columns: 1fr;
  }

  .project-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .sidebar-card {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .project-hero {
    padding: 120px 0 60px;
  }

  .project-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
  }

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

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .project-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .process-timeline {
    padding-left: 2.5rem;
  }

  .step-marker {
    left: -2.5rem;
    width: 36px;
    height: 36px;
    font-size: 0.875rem;
  }
}

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

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

  .project-gallery {
    grid-template-columns: 1fr;
  }

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

/* ===== Landing Page Styles ===== */
.landing-page {
  overflow-x: hidden;
}

/* Landing Navigation */
.navbar-minimal {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.nav-cta-only {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Landing Hero */
.landing-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 150px 0 100px;
}

.landing-hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.landing-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.landing-hero-subtitle {
  font-size: 1.375rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.hero-trust-badges {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.trust-item svg {
  color: #10b981;
}

/* Social Proof Bar */
.social-proof-bar {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 3rem 0;
}

.proof-stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.proof-stat {
  text-align: center;
}

.proof-stat h3 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.proof-stat p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Benefits Section */
.landing-benefits {
  background: var(--bg-primary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.benefit-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.benefit-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

.benefit-card p {
  font-size: 1rem;
  margin: 0;
}

/* Process Cards */
.process-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.process-card {
  padding: 2.5rem 2rem;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-color);
  transition: all var(--transition-base);
}

.process-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.process-card h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

.process-card > p {
  margin-bottom: 1.5rem;
}

.process-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-card ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.process-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

/* Pricing Section */
/* .landing-pricing {
  background: var(--bg-primary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  position: relative;
  transition: all var(--transition-base);
}

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

.pricing-card.featured {
  border-color: var(--primary-color);
  background: var(--bg-primary);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-10px);
}

.pricing-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--bg-alt);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.pricing-badge.popular {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
}

.pricing-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.pricing-amount {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.pricing-amount .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 0.5rem;
}

.pricing-amount .amount {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-color);
  font-family: var(--font-heading);
}

.pricing-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features svg {
  flex-shrink: 0;
  color: var(--primary-color);
}

.pricing-time {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
} */

/* Testimonials Large */
.landing-testimonials {
  background: var(--bg-alt);
}

.testimonials-large-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1rem;
}

.testimonial-large {
  padding: 3rem;
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.testimonial-large:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.8;
  margin: 1.5rem 0 2rem;
  font-style: italic;
}

.testimonial-author-large {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.author-avatar-large {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.author-details h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.author-details p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.author-result {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #10b981;
  color: white;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* FAQ Landing */
.landing-faq {
  background: var(--bg-primary);
}

.faq-grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.faq-item-landing {
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.faq-item-landing:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.faq-item-landing h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.faq-item-landing p {
  font-size: 0.95rem;
  margin: 0;
}

/* Final CTA */
.landing-final-cta {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: white;
}

.final-cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-left h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-left > p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cta-benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  color: white;
}

.cta-benefit svg {
  flex-shrink: 0;
  color: #10b981;
}

.trust-indicators {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-indicators p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.cta-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.landing-form h3 {
  color: #000000;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.landing-form .form-group {
  margin-bottom: 1.5rem;
}

.landing-form input,
.landing-form select,
.landing-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #dcdcdc;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: #f6f6f6;
  color: #626262;
  transition: all var(--transition-base);
}

.landing-form input:focus,
.landing-form select:focus,
.landing-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.landing-form button {
  margin-top: 1rem;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1rem;
  margin-bottom: 0;
}

/* Footer Minimal */
.footer-minimal {
  background: var(--bg-primary);
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
}

.footer-minimal-content {
  text-align: center;
}

.footer-links-minimal {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-links-minimal a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-links-minimal a:hover {
  color: var(--primary-color);
}

.footer-minimal-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* Tech Showcase Landing */
.tech-showcase {
  background: var(--bg-primary);
}

.tech-categories-landing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.tech-category-landing {
  padding: 2.5rem 2rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.tech-category-landing:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.tech-category-landing h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.tech-tags-landing {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tech-tags-landing span {
  padding: 0.625rem 1.25rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition-base);
}

.tech-tags-landing span:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

/* Use Cases Section */
.use-cases-section {
  background: var(--bg-alt);
}

/* Responsive - Landing Page */
@media (max-width: 968px) {
  .final-cta-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .tech-categories-landing {
    grid-template-columns: 1fr;
  }

  .faq-grid-two {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .pricing-card.featured {
    transform: scale(1);
  }

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

@media (max-width: 768px) {
  .landing-hero {
    padding: 120px 0 80px;
    min-height: auto;
  }

  .landing-hero-title {
    font-size: 2.5rem;
  }

  .landing-hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-cta-group {
    flex-direction: column;
  }

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

  .hero-trust-badges {
    flex-direction: column;
    gap: 1rem;
  }

  .proof-stats {
    flex-direction: column;
  }

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

  .process-cards {
    grid-template-columns: 1fr;
  }

  .testimonials-large-grid {
    grid-template-columns: 1fr;
  }

  .cta-left h2 {
    font-size: 2rem;
  }

  .cta-form-wrapper {
    padding: 2rem;
  }

  .nav-cta-only {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-cta-only .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== Service Detail Pages ===== */
.service-hero {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-alt));
}

.service-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.service-icon-large {
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.service-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin: 1.5rem auto 2.5rem;
  line-height: 1.7;
  max-width: 800px;
}

.service-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.service-content-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 4rem;
}

.service-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.service-includes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-includes li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.service-includes li:last-child {
  border-bottom: none;
}

.service-includes svg {
  flex-shrink: 0;
  color: var(--primary-color);
}

.pricing-box {
  text-align: center;
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  margin-top: 1rem;
}

.pricing-box .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.pricing-box p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.timeline-info {
  margin-top: 1rem;
}

.timeline-info p {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
  margin: 0;
}

.timeline-info p:last-child {
  border-bottom: none;
}

.timeline-info strong {
  color: var(--text-primary);
}

.cta-card {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border-color: var(--primary-color);
}

.cta-card h3,
.cta-card p {
  color: white;
}

.service-main-content {
  max-width: 900px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.approach-card {
  padding: 2.5rem 2rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.approach-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.approach-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.approach-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.approach-card p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.approach-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.approach-tags span {
  padding: 0.375rem 0.75rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 0rem;
  margin: 2rem 0;
}

.feature-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-icon-small {
  width: 50px;
  height: 50px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-color);
}

.feature-content h4 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.feature-content p {
  font-size: 0.95rem;
  margin: 0;
}

.process-steps-horizontal {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  overflow-x: auto;
  padding: 2rem 0;
}

.process-step-h {
  flex: 1;
  min-width: 180px;
  text-align: center;
}

.step-number-h {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.process-step-h h4 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.process-step-h p {
  font-size: 0.875rem;
  margin: 0;
}

.process-arrow {
  font-size: 1.5rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.use-case {
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.use-case h4 {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.use-case p {
  font-size: 0.95rem;
  margin: 0;
}

.tech-grid-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.tech-column h4 {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1rem;
}

.tech-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-column ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.tech-column ul li:last-child {
  border-bottom: none;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.faq-item-detail {
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.faq-item-detail h4 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.faq-item-detail p {
  margin: 0;
  font-size: 0.95rem;
}

.related-section {
  background: var(--bg-alt);
}

/* Responsive - Service Detail Pages */
@media (max-width: 968px) {
  .service-content-grid {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .process-steps-horizontal {
    flex-direction: column;
    align-items: stretch;
  }

  .process-arrow {
    transform: rotate(90deg);
    align-self: center;
  }

  .process-step-h {
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .service-hero {
    padding: 120px 0 60px;
  }

  .service-stats {
    gap: 2rem;
  }

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

  .use-cases-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .service-icon-large {
    width: 80px;
    height: 80px;
  }

  .service-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .tech-grid-detailed {
    grid-template-columns: 1fr;
  }

  .feature-row {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Updated Hero Section Styles with More Floating Elements */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  width: 100%;
}

.hero-content {
  text-align: left;
  max-width: 600px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-color);
  top: -200px;
  right: -100px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--secondary-color);
  bottom: -100px;
  left: -100px;
  animation-delay: -5s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: var(--accent-color);
  top: 50%;
  left: 50%;
  animation-delay: -10s;
}

.orb-4 {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, #06b6d4, #3b82f6);
  top: 20%;
  right: 20%;
  animation-delay: -15s;
}

.orb-5 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #ec4899, #f97316);
  bottom: 30%;
  right: 10%;
  animation-delay: -20s;
}

.floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  animation: floatIcon 15s infinite ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.icon-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.icon-2 {
  top: 60%;
  right: 15%;
  animation-delay: -3s;
}

.icon-3 {
  bottom: 20%;
  left: 15%;
  animation-delay: -6s;
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-20px) rotate(5deg) scale(1.1);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px) rotate(-5deg) scale(0.9);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-30px) rotate(3deg) scale(1.05);
    opacity: 0.9;
  }
}

.phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 25px;
  background: #1a1a1a;
  border-radius: 0 0 15px 15px;
  z-index: 2;
}

.phone-screen {
  position: absolute;
  top: 20px;
  left: 15px;
  right: 15px;
  bottom: 20px;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
}

.app-interface {
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  color: white;
}

.app-header {
  height: 80px;
  position: relative;
}

.app-status-bar {
  position: absolute;
  top: 10px;
  left: 20px;
  right: 20px;
  height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.status-icons {
  display: flex;
  gap: 5px;
}

.app-nav {
  position: absolute;
  bottom: 10px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-around;
}

.nav-item {
  font-size: 14px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  color: #000000;
  font-weight: 700;
}

.nav-item.active {
  opacity: 1;
  font-weight: 600;
}

.app-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow-y: auto;
}

.app-welcome {
  text-align: center;
  margin-bottom: 10px;
}

.app-welcome h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.app-welcome p {
  font-size: 14px;
  opacity: 0.8;
}

.app-card {
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 15px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  animation: cardPulse 4s infinite ease-in-out;
}

.app-card:hover {
  transform: translateY(-2px);
}

.app-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shimmer 3s infinite;
}

.card-icon {
  font-size: 24px;
  margin-right: 15px;
}

.card-content {
  flex: 1;
}

.card-content h5 {
  font-size: 14px;
  margin-bottom: 2px;
  font-weight: 600;
}

.card-content p {
  font-size: 14px;
  opacity: 0.8;
}

.card-arrow {
  font-size: 16px;
  opacity: 0.6;
}

.app-card.primary {
  animation-delay: 0s;
}
.app-card.secondary {
  animation-delay: 0.5s;
}
.app-card.tertiary {
  animation-delay: 1s;
}

.app-progress {
  margin-top: 10px;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 5px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
  transition: width 0.3s ease;
}

.app-progress p {
  font-size: 12px;
  text-align: center;
  opacity: 0.8;
}

.app-navigation {
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.nav-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.nav-dot.active {
  background: white;
  transform: scale(1.5);
}

.particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.typing-text {
  position: relative;
  display: inline-block;
}

.cursor {
  animation: blink 1s infinite;
  color: var(--primary-color);
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.counter {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
  transition: all 0.3s ease;
  font-weight: 700;
}

.btn[data-magnetic] {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn[data-magnetic]::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn[data-magnetic]:hover::before {
  left: 100%;
}

.btn[data-magnetic]:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

/* Mobile responsiveness */
@media (max-width: 968px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-visual {
    order: -1;
  }

  .phone-mockup {
    width: 250px;
    height: 500px;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
  }

  .floating-icon {
    width: 36px;
    height: 36px;
  }

  .floating-icon svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .phone-mockup {
    width: 200px;
    height: 400px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .floating-icon {
    display: none; /* Hide floating icons on very small screens */
  }
}

/* Updated Phone Screen with White Background and Scrolling */

.phone-screen {
  position: absolute;
  top: 20px;
  left: 15px;
  right: 15px;
  bottom: 20px;
  background: #ffffff; /* Changed to white background */
  border-radius: 20px;
  overflow: hidden;
}

.app-interface {
  height: 100%;
  background: #ffffff; /* Changed to white for consistency */
  position: relative;
  display: flex;
  flex-direction: column;
  color: #333; /* Dark text for contrast */
}

.app-header {
  height: 80px;
  background: #f8f9fa; /* Light gray header */
  position: relative;
  border-bottom: 1px solid #e9ecef;
}

.app-status-bar {
  position: absolute;
  top: 10px;
  left: 20px;
  right: 20px;
  height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #6c757d; /* Gray text */
}

.app-nav {
  position: absolute;
  bottom: 10px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-around;
}

.nav-item {
  font-size: 14px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  color: #000000;
  font-weight: 700;
}

.nav-item.active {
  opacity: 1;
  font-weight: 600;
  color: var(--primary-color);
}

.app-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow-y: auto; /* Enable vertical scrolling */
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: rgba(99, 102, 241, 0.3) transparent; /* Firefox */
}

.app-content::-webkit-scrollbar {
  width: 4px; /* Chrome, Safari, Edge */
}

.app-content::-webkit-scrollbar-track {
  background: transparent;
}

.app-content::-webkit-scrollbar-thumb {
  background: rgba(99, 102, 241, 0.3);
  border-radius: 2px;
}

.app-content::-webkit-scrollbar-thumb:hover {
  background: rgba(99, 102, 241, 0.5);
}

.app-welcome {
  text-align: center;
  margin-bottom: 10px;
}

.app-welcome h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #333;
}

.app-welcome p {
  font-size: 14px;
  opacity: 0.8;
  color: #666;
}

.app-card {
  height: 70px;
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 15px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.app-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.app-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(99, 102, 241, 0.05),
    transparent
  );
  animation: shimmer 3s infinite;
}

.card-icon {
  font-size: 24px;
  margin-right: 15px;
}

.card-content {
  flex: 1;
}

.card-content h5 {
  font-size: 14px;
  margin-bottom: 2px;
  font-weight: 600;
  color: #333;
}

.card-content p {
  font-size: 14px;
  opacity: 0.8;
  color: #000000;
  font-weight: 500;
}

.card-arrow {
  font-size: 16px;
  opacity: 0.6;
  color: var(--primary-color);
}

.app-card.primary {
  animation-delay: 0s;
}
.app-card.secondary {
  animation-delay: 0.2s;
}
.app-card.tertiary {
  animation-delay: 0.4s;
}
.app-card.quaternary {
  animation-delay: 0.6s;
}
.app-card.quinary {
  animation-delay: 0.8s;
}

.app-progress {
  margin-top: 10px;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: #e9ecef;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 5px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
  transition: width 0.3s ease;
}

.app-progress p {
  font-size: 12px;
  text-align: center;
  opacity: 0.8;
  color: #666;
}

.app-navigation {
  height: 60px;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.nav-dot {
  width: 6px;
  height: 6px;
  background: #dee2e6;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.nav-dot.active {
  background: var(--primary-color);
  transform: scale(1.5);
}

/* Mobile responsiveness adjustments */
@media (max-width: 968px) {
  .phone-mockup {
    width: 250px;
    height: 500px;
  }

  .app-content {
    padding: 15px;
    gap: 12px;
  }

  .app-card {
    height: 60px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .phone-mockup {
    width: 200px;
    height: 400px;
  }

  .app-header {
    height: 70px;
  }

  .app-navigation {
    height: 50px;
  }
}
/* faq section */

.faq-grid {
  /* display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 80px; */
  padding-top: 50px;
}
.header h1 {
  text-align: center;
  font-weight: 700;
}
.faq-item {
  border-bottom: 1px solid #d0d0d0;
  /* padding-bottom: 30px; */
  padding-top: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover .faq-question {
  color: var(--text-primary);
  transform: translateX(10px);
}

.faq-item:hover .faq-number {
  transform: translateX(-10px);
  color: #666;
}

.faq-item:hover .toggle-icon {
  transform: translateX(10px);
  color: #333;
}

.faq-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.faq-number {
  font-size: 1em;
  color: #999;
  font-weight: 500;
  min-width: 30px;
  margin-top: 2px;
}

.faq-question {
  flex: 1;
  font-size: 1.1em;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.5;
  transition: all 0.3s ease;
  letter-spacing: -0.3px;
}

.toggle-icon {
  font-size: 1.8em;
  color: #999;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg);
  color: var(--text-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  margin-top: 20px;
}

.answer-content {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95em;
  font-weight: 400;
  letter-spacing: -0.2px;
}

@media (max-width: 768px) {
  .container {
    padding: 50px 30px;
    border-radius: 20px;
  }

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

  .header h1 {
    font-size: 1.5em;
  }

  .faq-question {
    font-size: 1em;
  }
}
@media (max-width: 578px) {

.nav-item-services.mega-open .mega-menu, .nav-item-services:hover .mega-menu
 {
    opacity: 1;
    pointer-events: auto;
    transform: translate(0%, 0);
}
  .container {
    padding: 0 20px;
  }
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .hero-subtitle {
    font-size: 15px;
  }
  .hero-cta {
    margin-bottom: 0;
  }
  .hero-stats {
    display: none;
  }
  .phone-mockup {
    width: 271px;
    height: 457px;
  }
  .service-icon {
    width: 50px;
    height: 50px;
  }
  .service-card h3 {
    margin-bottom: 1rem;
    font-size: 20px;
  }
  .service-card p {
    font-size: 1rem;
  }
  .section-padding {
    padding: 30px 0;
  }

  .feature-item p {
    font-size: 1rem;
  }
  .feature-number {
    font-size: 1.5rem;
  }
  .feature-item {
    padding-left: 3rem;
  }
  .features-grid {
    gap: 0;
  }
  h3 {
    font-size: clamp(1.2rem, 3vw, 1.2rem);
  }
  .tech-card:nth-child(5n + 2) {
    margin-top: 0rem;
  }

  .tech-card:nth-child(5n + 3) {
    margin-top: 0rem;
  }

  .tech-card:nth-child(5n + 4) {
    margin-top: 0rem;
  }

  .tech-card:nth-child(5n + 5) {
    margin-top: 0rem;
  }
  .fade-in-up.visible {
    margin-bottom: 0 !important;
  }
  .cta-main {
    padding: 30px 20px;
  }
  .btn {
    width: auto;
    justify-content: center;
  }
  .page-header {
    padding: 105px 0 29px;
  }
  h1 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
  }
  p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8rem;
  }
  h2 {
    font-size: clamp(1.5rem, 4vw, 3rem);
  }
  .mv-card {
    padding: 1.5rem 1rem;
  }
  .value-card {
    gap: 1rem;
    padding: 1rem;
  }
  .mv-icon {
    width: 50px;
    height: 50px;
  }
  .mv-icon img {
    width: 75%;
  }
  .mv-grid {
    gap: 1rem;
  }
  .timeline-marker {
    width: 50px;
    height: 50px;
  }
  .timeline-item {
    gap: 1rem;
  }
  .timeline-content {
    margin-top: 20px;
  }
  .timeline-item:not(:last-child)::before {
    left: 25px;
  }
  .team-stats {
    grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
    gap: 1rem;
  }
  .stat-card h3 {
    font-size: 1.5rem;
  }
  .service-detail-content .lead {
    font-size: 1rem;
  }
  .process-step {
    padding: 1rem;
  }
  .proof-stats {
    flex-direction: row;
  }
  .proof-stat h3 {
    font-size: 2rem;
  }
  .faq-grid {
    padding: 0 20px;
  }
  .testimonial-large {
    padding: 1rem;
  }
  .testimonial-quote {
    font-size: 1rem;
  }
.stat-box h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(151px, 1fr));
    gap: 1rem;
}
.faq-item.active .faq-answer{
margin-top:0;
margin-bottom:15px;
}
.cta-form-wrapper {
        width: 86%;
    }
    .btn {
        width: -webkit-fill-available;
        justify-content: center;
    }
.cta-left.fade-in-up.visible {
    width: 86%;
}

}
.fade-in-up.visible{
margin-bottom: 0px;
}
.swiper-slide img {

display;flex;
    justify-content: center !importent;
}
.swiper-slide{
display:flex;
justify-content:center;
}

